Update README.md

This commit is contained in:
Illya Marchenko 2024-10-12 16:08:42 +03:00
parent 1c5b0ba2ec
commit 7290787aa4
Signed by: stuzer05
GPG Key ID: A6ABAAA9268F9F4F
7 changed files with 52 additions and 42 deletions

@ -18,40 +18,50 @@ bun run dev
``` ```
## Tool List ## Tool List
* **General:** **General:**
* Explain crontab
* Table to Markdown table * Table to Markdown table
* Table to Mediawiki table * Table to Mediawiki table
* Dummy image generator
* humans.txt generator * humans.txt generator
* File base64 encode/decode
* QR code generator **Docker:**
* Unix timestamp converter
* Sed generator
* .htaccess generator
* **Strings:**
* Fix ru-en keyboard
* String length
* Sort lines
* Convert to lower/upper case
* Remove duplicate lines
* Pad string
* Numeronym (i18n)
* Convert to NATO alphabet
* URL encode/decode
* URL query viewer
* **PHP:**
* String to PHP array
* PHP array to JSON
* PHP serialize
* **Docker:**
* Rename volume * Rename volume
* **GO:**
**Go:**
* JSON to Go struct * JSON to Go struct
* SQL tables to Go struct
* **JSON:** **JSON:**
* JSON minifier * JSON minifier
* JSON formatter * JSON formatter
* **SQL:**
**PHP:**
* Str to PHP array
* PHP array to Json
* PHP serialize
**SQL:**
* SQL formatter * SQL formatter
* SQL split IN * SQL split IN
**Strings:**
* Fix ru-en keyboard
* Str length
* Str sort lines
* Str to lower/upper
* Str remove duplicate lines
* Str pad
* Str numeronym (i18n)
* Str to NATO alphabet
* URL encode/decode
* URL query viewer
**Unix:**
* Explain crontab
* File base64 encode/decode
* Unix timestamp
* Sed generator
* .htaccess generator
**Generators:**
* QR code
* IBAN generator
* Dummy image

@ -14,7 +14,7 @@ const router = createRouter({
{ {
path: "/explain_crontab", path: "/explain_crontab",
name: "explain_crontab", name: "explain_crontab",
component: () => import("../views/general/ExplainCrontab.vue") component: () => import("../views/unix/ExplainCrontab.vue")
}, },
{ {
path: "/table_to_markdown_table", path: "/table_to_markdown_table",
@ -44,22 +44,22 @@ const router = createRouter({
{ {
path: "/unix_timestamp", path: "/unix_timestamp",
name: "unix_timestamp", name: "unix_timestamp",
component: () => import("../views/general/UnixTimestamp.vue") component: () => import("../views/unix/UnixTimestamp.vue")
}, },
{ {
path: "/file_base64_encode_decode", path: "/file_base64_encode_decode",
name: "file_base64_encode_decode", name: "file_base64_encode_decode",
component: () => import("../views/general/FileBase64EncodeDecode.vue") component: () => import("../views/unix/FileBase64EncodeDecode.vue")
}, },
{ {
path: "/sed_generator", path: "/sed_generator",
name: "sed_generator", name: "sed_generator",
component: () => import("../views/general/SedGenerator.vue") component: () => import("../views/unix/SedGenerator.vue")
}, },
{ {
path: "/htaccess_generator", path: "/htaccess_generator",
name: "htaccess_generator", name: "htaccess_generator",
component: () => import("../views/general/HtaccessGenerator.vue") component: () => import("../views/unix/HtaccessGenerator.vue")
}, },
/** /**