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 * humans.txt generator
* Dummy image generator
* humans.txt generator **Docker:**
* File base64 encode/decode * Rename volume
* QR code generator
* Unix timestamp converter **Go:**
* Sed generator * JSON to Go struct
* .htaccess generator
* **Strings:** **JSON:**
* Fix ru-en keyboard * JSON minifier
* String length * JSON formatter
* Sort lines
* Convert to lower/upper case **PHP:**
* Remove duplicate lines * Str to PHP array
* Pad string * PHP array to Json
* Numeronym (i18n) * PHP serialize
* Convert to NATO alphabet
* URL encode/decode **SQL:**
* URL query viewer * SQL formatter
* **PHP:** * SQL split IN
* String to PHP array
* PHP array to JSON **Strings:**
* PHP serialize * Fix ru-en keyboard
* **Docker:** * Str length
* Rename volume * Str sort lines
* **GO:** * Str to lower/upper
* JSON to Go struct * Str remove duplicate lines
* SQL tables to Go struct * Str pad
* **JSON:** * Str numeronym (i18n)
* JSON minifier * Str to NATO alphabet
* JSON formatter * URL encode/decode
* **SQL:** * URL query viewer
* SQL formatter
* SQL split IN **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")
}, },
/** /**