├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── auto-assign.yml │ ├── deploy.yml │ ├── refresh_contributors.yml │ └── welcome.yml ├── .gitignore ├── .htaccess ├── AWESOME.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── TOOL_TEMPLATE.md ├── cookie-manager ├── index.html └── script.js ├── index.html ├── package.json ├── poster.png ├── robots.txt ├── script.js ├── sitemap.xml ├── style.css └── tools ├── HEX-to-shades-generator ├── index.html ├── script.js └── style.css ├── Performance Benchmark Tool ├── benchmark.js └── index.html ├── SVGPathVisualizerEditor ├── index.html └── script.js ├── SimpleDiscountCalculator ├── index.html └── script.js ├── Video-to-Gif converter ├── index.html ├── script.js └── style.css ├── api-fetch-tester └── index.html ├── ascii-binary-hex ├── index.html └── script.js ├── aspect-ratio-calculator ├── README.md ├── index.html └── script.js ├── ast-explorer ├── index.html ├── script.js └── style.css ├── base64-encoder ├── index.html └── script.js ├── censor-tool ├── index.html └── script.js ├── character-case-checker ├── index.html └── script.js ├── character-count ├── index.html └── script.js ├── clamp-generator ├── index.html └── script.js ├── code-beautifier ├── index.html └── script.js ├── code-diff-viewer ├── README.md ├── index.html └── script.js ├── code-to-image ├── README.md ├── index.html └── script.js ├── color-contrast-checker ├── index.html └── script.js ├── color-palette-generator ├── index.html └── script.js ├── commit-formatter ├── README.md ├── index.html └── script.js ├── credit-card-validator ├── index.html └── script.js ├── cron-translator ├── index.html └── script.js ├── css-animations ├── index.html └── script.js ├── css-gradient-generator └── index.html ├── css-grid-generator ├── index.html └── script.js ├── css-specificity-calculator ├── index.html └── script.js ├── csv-viewer ├── index.html └── script.js ├── date-difference ├── index.html ├── script.js └── style.css ├── dice-tool ├── README.md ├── index.html ├── script.js └── style.css ├── emi-calculator ├── index.html └── script.js ├── equation-solver ├── index.html └── script.js ├── even-odd-checker ├── index.html └── script.js ├── exif-remover ├── index.html └── script.js ├── favicon-previewer ├── index.html └── script.js ├── file-encryptor ├── index.html └── script.js ├── file-zipper ├── index.html └── script.js ├── form-builder ├── index.html └── script.js ├── gantt-chart-generator ├── README.md ├── index.html └── script.js ├── geolocation ├── README.md ├── index.html ├── leaflet │ ├── images │ │ ├── layers-2x.png │ │ ├── layers.png │ │ ├── marker-icon-2x.png │ │ ├── marker-icon.png │ │ └── marker-shadow.png │ ├── leaflet-src.esm.js │ ├── leaflet-src.esm.js.map │ ├── leaflet-src.js │ ├── leaflet-src.js.map │ ├── leaflet.css │ ├── leaflet.js │ └── leaflet.js.map └── script.js ├── git-branch-visualizer ├── README.md ├── index.html └── script.js ├── github-profile-card ├── index.html └── script.js ├── hash-generator ├── index.html ├── script.js └── style.css ├── hex-to-rgb-converter ├── index.html ├── script.js └── style.css ├── hotkeys-tester ├── index.html └── script.js ├── image-base64-converter ├── index.html └── script.js ├── image-color-palette ├── index.html └── script.js ├── image-compressor ├── index.html └── script.js ├── image-cropper ├── index.html └── script.js ├── image-performance-audit ├── README.md ├── index.html └── script.js ├── image-steganography ├── index.html └── script.js ├── image-to-pdf ├── index.html └── script.js ├── internet-speed ├── index.html ├── script.js └── style.css ├── json-csv-converter ├── index.html └── script.js ├── json-formatter ├── index.html └── script.js ├── json-schema-validator ├── index.html └── script.js ├── json-yaml-converter ├── index.html └── script.js ├── kanban-board ├── README.md ├── index.html └── script.js ├── line-sorter-unique ├── index.html ├── script.js └── style.css ├── lorem-ipsum-generator ├── index.html ├── script.js └── style.css ├── markdown-previewer ├── index.html └── script.js ├── meme-generator ├── index.html └── script.js ├── mock-data generator ├── index.html └── script.js ├── morse-code-translator ├── index.html └── script.js ├── number-base-converter ├── index.html └── script.js ├── number-squarer-cuber ├── README.md ├── index.html └── script.js ├── palindrome-checker ├── index.html └── script.js ├── pass-strength-indicator ├── index.html └── script.js ├── password-generator ├── README.md ├── index.html ├── script.js └── style.css ├── percentage-calc ├── index.html ├── script.js └── style.css ├── percentage-calculator ├── index.html └── script.js ├── pomodoro-timer ├── index.html └── script.js ├── prime-finder ├── index.html ├── prime-worker.js └── script.js ├── px to rem ├── index.html ├── script.js └── style.css ├── qr-code-generator ├── index.html ├── screenshots │ └── desktop-main.png └── script.js ├── random-color-generator ├── index.html ├── script.js └── style.css ├── random-number-generator ├── index.html └── script.js ├── relative-date ├── index.html └── script.js ├── sentiment-analyzer ├── index.html └── script.js ├── string-length-counter ├── index.html ├── script.js └── style.css ├── string-reverser ├── index.html └── script.js ├── svg-shape-generator ├── index.html ├── script.js └── style.css ├── temperature-converter ├── index.html └── script.js ├── testcase-analyzer ├── index.html └── script.js ├── text-diff-checker ├── index.html └── script.js ├── text-extractor ├── index.html └── scripts.js ├── text-repeater ├── index.html └── script.js ├── text-to-ascii-converter ├── index.html └── script.js ├── text-trimmer ├── index.html ├── script.js └── style.css ├── timer-stopwatch ├── index.html └── script.js ├── timezone-converters ├── index.html ├── script.js └── style.css ├── unit-converters ├── index.html ├── script.js └── style.css ├── unix-timestamp-converter ├── README.md ├── index.html ├── script.js └── style.css ├── url-encoder-decoder ├── index.html └── script.js ├── url-query-editor ├── index.html └── script.js ├── uuid-generator ├── index.html ├── script.js └── style.css ├── web-scraper ├── README.md ├── index.html └── script.js ├── web-speech-api ├── README.md ├── index.html └── script.js ├── webp-converter ├── index.html ├── script.js └── style.css ├── webpage-to-markdown ├── README.md ├── TESTING.md ├── index.html ├── screenshots │ ├── conversion-process.png │ ├── conversion-result.png │ ├── mobile-view.png │ ├── tool-interface.png │ └── url-input.png └── script.js ├── word-counter ├── index.html └── script.js ├── word-frequency-analyzer ├── README.md ├── index.html └── script.js ├── word-scrambler ├── index.html └── script.js └── xml-to-json-converter ├── index.html └── script.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/auto-assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/.github/workflows/auto-assign.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/refresh_contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/.github/workflows/refresh_contributors.yml -------------------------------------------------------------------------------- /.github/workflows/welcome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/.github/workflows/welcome.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/.htaccess -------------------------------------------------------------------------------- /AWESOME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/AWESOME.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /TOOL_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/TOOL_TEMPLATE.md -------------------------------------------------------------------------------- /cookie-manager/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/cookie-manager/index.html -------------------------------------------------------------------------------- /cookie-manager/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/cookie-manager/script.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/package.json -------------------------------------------------------------------------------- /poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/poster.png -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/robots.txt -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/script.js -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/sitemap.xml -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/style.css -------------------------------------------------------------------------------- /tools/HEX-to-shades-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/HEX-to-shades-generator/index.html -------------------------------------------------------------------------------- /tools/HEX-to-shades-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/HEX-to-shades-generator/script.js -------------------------------------------------------------------------------- /tools/HEX-to-shades-generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/HEX-to-shades-generator/style.css -------------------------------------------------------------------------------- /tools/Performance Benchmark Tool/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/Performance Benchmark Tool/benchmark.js -------------------------------------------------------------------------------- /tools/Performance Benchmark Tool/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/Performance Benchmark Tool/index.html -------------------------------------------------------------------------------- /tools/SVGPathVisualizerEditor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/SVGPathVisualizerEditor/index.html -------------------------------------------------------------------------------- /tools/SVGPathVisualizerEditor/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/SVGPathVisualizerEditor/script.js -------------------------------------------------------------------------------- /tools/SimpleDiscountCalculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/SimpleDiscountCalculator/index.html -------------------------------------------------------------------------------- /tools/SimpleDiscountCalculator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/SimpleDiscountCalculator/script.js -------------------------------------------------------------------------------- /tools/Video-to-Gif converter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/Video-to-Gif converter/index.html -------------------------------------------------------------------------------- /tools/Video-to-Gif converter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/Video-to-Gif converter/script.js -------------------------------------------------------------------------------- /tools/Video-to-Gif converter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/Video-to-Gif converter/style.css -------------------------------------------------------------------------------- /tools/api-fetch-tester/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/api-fetch-tester/index.html -------------------------------------------------------------------------------- /tools/ascii-binary-hex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/ascii-binary-hex/index.html -------------------------------------------------------------------------------- /tools/ascii-binary-hex/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/ascii-binary-hex/script.js -------------------------------------------------------------------------------- /tools/aspect-ratio-calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/aspect-ratio-calculator/README.md -------------------------------------------------------------------------------- /tools/aspect-ratio-calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/aspect-ratio-calculator/index.html -------------------------------------------------------------------------------- /tools/aspect-ratio-calculator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/aspect-ratio-calculator/script.js -------------------------------------------------------------------------------- /tools/ast-explorer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/ast-explorer/index.html -------------------------------------------------------------------------------- /tools/ast-explorer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/ast-explorer/script.js -------------------------------------------------------------------------------- /tools/ast-explorer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/ast-explorer/style.css -------------------------------------------------------------------------------- /tools/base64-encoder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/base64-encoder/index.html -------------------------------------------------------------------------------- /tools/base64-encoder/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/base64-encoder/script.js -------------------------------------------------------------------------------- /tools/censor-tool/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/censor-tool/index.html -------------------------------------------------------------------------------- /tools/censor-tool/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/censor-tool/script.js -------------------------------------------------------------------------------- /tools/character-case-checker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/character-case-checker/index.html -------------------------------------------------------------------------------- /tools/character-case-checker/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/character-case-checker/script.js -------------------------------------------------------------------------------- /tools/character-count/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/character-count/index.html -------------------------------------------------------------------------------- /tools/character-count/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/character-count/script.js -------------------------------------------------------------------------------- /tools/clamp-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/clamp-generator/index.html -------------------------------------------------------------------------------- /tools/clamp-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/clamp-generator/script.js -------------------------------------------------------------------------------- /tools/code-beautifier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/code-beautifier/index.html -------------------------------------------------------------------------------- /tools/code-beautifier/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/code-beautifier/script.js -------------------------------------------------------------------------------- /tools/code-diff-viewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/code-diff-viewer/README.md -------------------------------------------------------------------------------- /tools/code-diff-viewer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/code-diff-viewer/index.html -------------------------------------------------------------------------------- /tools/code-diff-viewer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/code-diff-viewer/script.js -------------------------------------------------------------------------------- /tools/code-to-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/code-to-image/README.md -------------------------------------------------------------------------------- /tools/code-to-image/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/code-to-image/index.html -------------------------------------------------------------------------------- /tools/code-to-image/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/code-to-image/script.js -------------------------------------------------------------------------------- /tools/color-contrast-checker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/color-contrast-checker/index.html -------------------------------------------------------------------------------- /tools/color-contrast-checker/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/color-contrast-checker/script.js -------------------------------------------------------------------------------- /tools/color-palette-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/color-palette-generator/index.html -------------------------------------------------------------------------------- /tools/color-palette-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/color-palette-generator/script.js -------------------------------------------------------------------------------- /tools/commit-formatter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/commit-formatter/README.md -------------------------------------------------------------------------------- /tools/commit-formatter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/commit-formatter/index.html -------------------------------------------------------------------------------- /tools/commit-formatter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/commit-formatter/script.js -------------------------------------------------------------------------------- /tools/credit-card-validator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/credit-card-validator/index.html -------------------------------------------------------------------------------- /tools/credit-card-validator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/credit-card-validator/script.js -------------------------------------------------------------------------------- /tools/cron-translator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/cron-translator/index.html -------------------------------------------------------------------------------- /tools/cron-translator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/cron-translator/script.js -------------------------------------------------------------------------------- /tools/css-animations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/css-animations/index.html -------------------------------------------------------------------------------- /tools/css-animations/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/css-animations/script.js -------------------------------------------------------------------------------- /tools/css-gradient-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/css-gradient-generator/index.html -------------------------------------------------------------------------------- /tools/css-grid-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/css-grid-generator/index.html -------------------------------------------------------------------------------- /tools/css-grid-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/css-grid-generator/script.js -------------------------------------------------------------------------------- /tools/css-specificity-calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/css-specificity-calculator/index.html -------------------------------------------------------------------------------- /tools/css-specificity-calculator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/css-specificity-calculator/script.js -------------------------------------------------------------------------------- /tools/csv-viewer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/csv-viewer/index.html -------------------------------------------------------------------------------- /tools/csv-viewer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/csv-viewer/script.js -------------------------------------------------------------------------------- /tools/date-difference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/date-difference/index.html -------------------------------------------------------------------------------- /tools/date-difference/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/date-difference/script.js -------------------------------------------------------------------------------- /tools/date-difference/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/date-difference/style.css -------------------------------------------------------------------------------- /tools/dice-tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/dice-tool/README.md -------------------------------------------------------------------------------- /tools/dice-tool/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/dice-tool/index.html -------------------------------------------------------------------------------- /tools/dice-tool/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/dice-tool/script.js -------------------------------------------------------------------------------- /tools/dice-tool/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/dice-tool/style.css -------------------------------------------------------------------------------- /tools/emi-calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/emi-calculator/index.html -------------------------------------------------------------------------------- /tools/emi-calculator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/emi-calculator/script.js -------------------------------------------------------------------------------- /tools/equation-solver/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/equation-solver/index.html -------------------------------------------------------------------------------- /tools/equation-solver/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/equation-solver/script.js -------------------------------------------------------------------------------- /tools/even-odd-checker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/even-odd-checker/index.html -------------------------------------------------------------------------------- /tools/even-odd-checker/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/even-odd-checker/script.js -------------------------------------------------------------------------------- /tools/exif-remover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/exif-remover/index.html -------------------------------------------------------------------------------- /tools/exif-remover/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/exif-remover/script.js -------------------------------------------------------------------------------- /tools/favicon-previewer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/favicon-previewer/index.html -------------------------------------------------------------------------------- /tools/favicon-previewer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/favicon-previewer/script.js -------------------------------------------------------------------------------- /tools/file-encryptor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/file-encryptor/index.html -------------------------------------------------------------------------------- /tools/file-encryptor/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/file-encryptor/script.js -------------------------------------------------------------------------------- /tools/file-zipper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/file-zipper/index.html -------------------------------------------------------------------------------- /tools/file-zipper/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/file-zipper/script.js -------------------------------------------------------------------------------- /tools/form-builder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/form-builder/index.html -------------------------------------------------------------------------------- /tools/form-builder/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/form-builder/script.js -------------------------------------------------------------------------------- /tools/gantt-chart-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/gantt-chart-generator/README.md -------------------------------------------------------------------------------- /tools/gantt-chart-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/gantt-chart-generator/index.html -------------------------------------------------------------------------------- /tools/gantt-chart-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/gantt-chart-generator/script.js -------------------------------------------------------------------------------- /tools/geolocation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/geolocation/README.md -------------------------------------------------------------------------------- /tools/geolocation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/geolocation/index.html -------------------------------------------------------------------------------- /tools/geolocation/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/geolocation/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /tools/geolocation/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/geolocation/leaflet/images/layers.png -------------------------------------------------------------------------------- /tools/geolocation/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/geolocation/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /tools/geolocation/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/geolocation/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /tools/geolocation/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/geolocation/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /tools/geolocation/leaflet/leaflet-src.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/geolocation/leaflet/leaflet-src.esm.js -------------------------------------------------------------------------------- /tools/geolocation/leaflet/leaflet-src.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/geolocation/leaflet/leaflet-src.esm.js.map -------------------------------------------------------------------------------- /tools/geolocation/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/geolocation/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /tools/geolocation/leaflet/leaflet-src.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/geolocation/leaflet/leaflet-src.js.map -------------------------------------------------------------------------------- /tools/geolocation/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/geolocation/leaflet/leaflet.css -------------------------------------------------------------------------------- /tools/geolocation/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/geolocation/leaflet/leaflet.js -------------------------------------------------------------------------------- /tools/geolocation/leaflet/leaflet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/geolocation/leaflet/leaflet.js.map -------------------------------------------------------------------------------- /tools/geolocation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/geolocation/script.js -------------------------------------------------------------------------------- /tools/git-branch-visualizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/git-branch-visualizer/README.md -------------------------------------------------------------------------------- /tools/git-branch-visualizer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/git-branch-visualizer/index.html -------------------------------------------------------------------------------- /tools/git-branch-visualizer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/git-branch-visualizer/script.js -------------------------------------------------------------------------------- /tools/github-profile-card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/github-profile-card/index.html -------------------------------------------------------------------------------- /tools/github-profile-card/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/github-profile-card/script.js -------------------------------------------------------------------------------- /tools/hash-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/hash-generator/index.html -------------------------------------------------------------------------------- /tools/hash-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/hash-generator/script.js -------------------------------------------------------------------------------- /tools/hash-generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/hash-generator/style.css -------------------------------------------------------------------------------- /tools/hex-to-rgb-converter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/hex-to-rgb-converter/index.html -------------------------------------------------------------------------------- /tools/hex-to-rgb-converter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/hex-to-rgb-converter/script.js -------------------------------------------------------------------------------- /tools/hex-to-rgb-converter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/hex-to-rgb-converter/style.css -------------------------------------------------------------------------------- /tools/hotkeys-tester/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/hotkeys-tester/index.html -------------------------------------------------------------------------------- /tools/hotkeys-tester/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/hotkeys-tester/script.js -------------------------------------------------------------------------------- /tools/image-base64-converter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/image-base64-converter/index.html -------------------------------------------------------------------------------- /tools/image-base64-converter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/image-base64-converter/script.js -------------------------------------------------------------------------------- /tools/image-color-palette/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/image-color-palette/index.html -------------------------------------------------------------------------------- /tools/image-color-palette/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/image-color-palette/script.js -------------------------------------------------------------------------------- /tools/image-compressor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/image-compressor/index.html -------------------------------------------------------------------------------- /tools/image-compressor/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/image-compressor/script.js -------------------------------------------------------------------------------- /tools/image-cropper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/image-cropper/index.html -------------------------------------------------------------------------------- /tools/image-cropper/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/image-cropper/script.js -------------------------------------------------------------------------------- /tools/image-performance-audit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/image-performance-audit/README.md -------------------------------------------------------------------------------- /tools/image-performance-audit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/image-performance-audit/index.html -------------------------------------------------------------------------------- /tools/image-performance-audit/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/image-performance-audit/script.js -------------------------------------------------------------------------------- /tools/image-steganography/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/image-steganography/index.html -------------------------------------------------------------------------------- /tools/image-steganography/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/image-steganography/script.js -------------------------------------------------------------------------------- /tools/image-to-pdf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/image-to-pdf/index.html -------------------------------------------------------------------------------- /tools/image-to-pdf/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/image-to-pdf/script.js -------------------------------------------------------------------------------- /tools/internet-speed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/internet-speed/index.html -------------------------------------------------------------------------------- /tools/internet-speed/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/internet-speed/script.js -------------------------------------------------------------------------------- /tools/internet-speed/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/internet-speed/style.css -------------------------------------------------------------------------------- /tools/json-csv-converter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/json-csv-converter/index.html -------------------------------------------------------------------------------- /tools/json-csv-converter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/json-csv-converter/script.js -------------------------------------------------------------------------------- /tools/json-formatter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/json-formatter/index.html -------------------------------------------------------------------------------- /tools/json-formatter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/json-formatter/script.js -------------------------------------------------------------------------------- /tools/json-schema-validator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/json-schema-validator/index.html -------------------------------------------------------------------------------- /tools/json-schema-validator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/json-schema-validator/script.js -------------------------------------------------------------------------------- /tools/json-yaml-converter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/json-yaml-converter/index.html -------------------------------------------------------------------------------- /tools/json-yaml-converter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/json-yaml-converter/script.js -------------------------------------------------------------------------------- /tools/kanban-board/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/kanban-board/README.md -------------------------------------------------------------------------------- /tools/kanban-board/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/kanban-board/index.html -------------------------------------------------------------------------------- /tools/kanban-board/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/kanban-board/script.js -------------------------------------------------------------------------------- /tools/line-sorter-unique/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/line-sorter-unique/index.html -------------------------------------------------------------------------------- /tools/line-sorter-unique/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/line-sorter-unique/script.js -------------------------------------------------------------------------------- /tools/line-sorter-unique/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/line-sorter-unique/style.css -------------------------------------------------------------------------------- /tools/lorem-ipsum-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/lorem-ipsum-generator/index.html -------------------------------------------------------------------------------- /tools/lorem-ipsum-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/lorem-ipsum-generator/script.js -------------------------------------------------------------------------------- /tools/lorem-ipsum-generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/lorem-ipsum-generator/style.css -------------------------------------------------------------------------------- /tools/markdown-previewer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/markdown-previewer/index.html -------------------------------------------------------------------------------- /tools/markdown-previewer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/markdown-previewer/script.js -------------------------------------------------------------------------------- /tools/meme-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/meme-generator/index.html -------------------------------------------------------------------------------- /tools/meme-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/meme-generator/script.js -------------------------------------------------------------------------------- /tools/mock-data generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/mock-data generator/index.html -------------------------------------------------------------------------------- /tools/mock-data generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/mock-data generator/script.js -------------------------------------------------------------------------------- /tools/morse-code-translator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/morse-code-translator/index.html -------------------------------------------------------------------------------- /tools/morse-code-translator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/morse-code-translator/script.js -------------------------------------------------------------------------------- /tools/number-base-converter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/number-base-converter/index.html -------------------------------------------------------------------------------- /tools/number-base-converter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/number-base-converter/script.js -------------------------------------------------------------------------------- /tools/number-squarer-cuber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/number-squarer-cuber/README.md -------------------------------------------------------------------------------- /tools/number-squarer-cuber/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/number-squarer-cuber/index.html -------------------------------------------------------------------------------- /tools/number-squarer-cuber/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/number-squarer-cuber/script.js -------------------------------------------------------------------------------- /tools/palindrome-checker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/palindrome-checker/index.html -------------------------------------------------------------------------------- /tools/palindrome-checker/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/palindrome-checker/script.js -------------------------------------------------------------------------------- /tools/pass-strength-indicator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/pass-strength-indicator/index.html -------------------------------------------------------------------------------- /tools/pass-strength-indicator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/pass-strength-indicator/script.js -------------------------------------------------------------------------------- /tools/password-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/password-generator/README.md -------------------------------------------------------------------------------- /tools/password-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/password-generator/index.html -------------------------------------------------------------------------------- /tools/password-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/password-generator/script.js -------------------------------------------------------------------------------- /tools/password-generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/password-generator/style.css -------------------------------------------------------------------------------- /tools/percentage-calc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/percentage-calc/index.html -------------------------------------------------------------------------------- /tools/percentage-calc/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/percentage-calc/script.js -------------------------------------------------------------------------------- /tools/percentage-calc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/percentage-calc/style.css -------------------------------------------------------------------------------- /tools/percentage-calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/percentage-calculator/index.html -------------------------------------------------------------------------------- /tools/percentage-calculator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/percentage-calculator/script.js -------------------------------------------------------------------------------- /tools/pomodoro-timer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/pomodoro-timer/index.html -------------------------------------------------------------------------------- /tools/pomodoro-timer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/pomodoro-timer/script.js -------------------------------------------------------------------------------- /tools/prime-finder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/prime-finder/index.html -------------------------------------------------------------------------------- /tools/prime-finder/prime-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/prime-finder/prime-worker.js -------------------------------------------------------------------------------- /tools/prime-finder/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/prime-finder/script.js -------------------------------------------------------------------------------- /tools/px to rem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/px to rem/index.html -------------------------------------------------------------------------------- /tools/px to rem/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/px to rem/script.js -------------------------------------------------------------------------------- /tools/px to rem/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/px to rem/style.css -------------------------------------------------------------------------------- /tools/qr-code-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/qr-code-generator/index.html -------------------------------------------------------------------------------- /tools/qr-code-generator/screenshots/desktop-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/qr-code-generator/screenshots/desktop-main.png -------------------------------------------------------------------------------- /tools/qr-code-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/qr-code-generator/script.js -------------------------------------------------------------------------------- /tools/random-color-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/random-color-generator/index.html -------------------------------------------------------------------------------- /tools/random-color-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/random-color-generator/script.js -------------------------------------------------------------------------------- /tools/random-color-generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/random-color-generator/style.css -------------------------------------------------------------------------------- /tools/random-number-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/random-number-generator/index.html -------------------------------------------------------------------------------- /tools/random-number-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/random-number-generator/script.js -------------------------------------------------------------------------------- /tools/relative-date/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/relative-date/index.html -------------------------------------------------------------------------------- /tools/relative-date/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/relative-date/script.js -------------------------------------------------------------------------------- /tools/sentiment-analyzer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/sentiment-analyzer/index.html -------------------------------------------------------------------------------- /tools/sentiment-analyzer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/sentiment-analyzer/script.js -------------------------------------------------------------------------------- /tools/string-length-counter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/string-length-counter/index.html -------------------------------------------------------------------------------- /tools/string-length-counter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/string-length-counter/script.js -------------------------------------------------------------------------------- /tools/string-length-counter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/string-length-counter/style.css -------------------------------------------------------------------------------- /tools/string-reverser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/string-reverser/index.html -------------------------------------------------------------------------------- /tools/string-reverser/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/string-reverser/script.js -------------------------------------------------------------------------------- /tools/svg-shape-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/svg-shape-generator/index.html -------------------------------------------------------------------------------- /tools/svg-shape-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/svg-shape-generator/script.js -------------------------------------------------------------------------------- /tools/svg-shape-generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/svg-shape-generator/style.css -------------------------------------------------------------------------------- /tools/temperature-converter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/temperature-converter/index.html -------------------------------------------------------------------------------- /tools/temperature-converter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/temperature-converter/script.js -------------------------------------------------------------------------------- /tools/testcase-analyzer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/testcase-analyzer/index.html -------------------------------------------------------------------------------- /tools/testcase-analyzer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/testcase-analyzer/script.js -------------------------------------------------------------------------------- /tools/text-diff-checker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/text-diff-checker/index.html -------------------------------------------------------------------------------- /tools/text-diff-checker/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/text-diff-checker/script.js -------------------------------------------------------------------------------- /tools/text-extractor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/text-extractor/index.html -------------------------------------------------------------------------------- /tools/text-extractor/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/text-extractor/scripts.js -------------------------------------------------------------------------------- /tools/text-repeater/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/text-repeater/index.html -------------------------------------------------------------------------------- /tools/text-repeater/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/text-repeater/script.js -------------------------------------------------------------------------------- /tools/text-to-ascii-converter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/text-to-ascii-converter/index.html -------------------------------------------------------------------------------- /tools/text-to-ascii-converter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/text-to-ascii-converter/script.js -------------------------------------------------------------------------------- /tools/text-trimmer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/text-trimmer/index.html -------------------------------------------------------------------------------- /tools/text-trimmer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/text-trimmer/script.js -------------------------------------------------------------------------------- /tools/text-trimmer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/text-trimmer/style.css -------------------------------------------------------------------------------- /tools/timer-stopwatch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/timer-stopwatch/index.html -------------------------------------------------------------------------------- /tools/timer-stopwatch/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/timer-stopwatch/script.js -------------------------------------------------------------------------------- /tools/timezone-converters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/timezone-converters/index.html -------------------------------------------------------------------------------- /tools/timezone-converters/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/timezone-converters/script.js -------------------------------------------------------------------------------- /tools/timezone-converters/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/timezone-converters/style.css -------------------------------------------------------------------------------- /tools/unit-converters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/unit-converters/index.html -------------------------------------------------------------------------------- /tools/unit-converters/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/unit-converters/script.js -------------------------------------------------------------------------------- /tools/unit-converters/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/unit-converters/style.css -------------------------------------------------------------------------------- /tools/unix-timestamp-converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/unix-timestamp-converter/README.md -------------------------------------------------------------------------------- /tools/unix-timestamp-converter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/unix-timestamp-converter/index.html -------------------------------------------------------------------------------- /tools/unix-timestamp-converter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/unix-timestamp-converter/script.js -------------------------------------------------------------------------------- /tools/unix-timestamp-converter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/unix-timestamp-converter/style.css -------------------------------------------------------------------------------- /tools/url-encoder-decoder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/url-encoder-decoder/index.html -------------------------------------------------------------------------------- /tools/url-encoder-decoder/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/url-encoder-decoder/script.js -------------------------------------------------------------------------------- /tools/url-query-editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/url-query-editor/index.html -------------------------------------------------------------------------------- /tools/url-query-editor/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/url-query-editor/script.js -------------------------------------------------------------------------------- /tools/uuid-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/uuid-generator/index.html -------------------------------------------------------------------------------- /tools/uuid-generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/uuid-generator/script.js -------------------------------------------------------------------------------- /tools/uuid-generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/uuid-generator/style.css -------------------------------------------------------------------------------- /tools/web-scraper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/web-scraper/README.md -------------------------------------------------------------------------------- /tools/web-scraper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/web-scraper/index.html -------------------------------------------------------------------------------- /tools/web-scraper/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/web-scraper/script.js -------------------------------------------------------------------------------- /tools/web-speech-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/web-speech-api/README.md -------------------------------------------------------------------------------- /tools/web-speech-api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/web-speech-api/index.html -------------------------------------------------------------------------------- /tools/web-speech-api/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/web-speech-api/script.js -------------------------------------------------------------------------------- /tools/webp-converter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/webp-converter/index.html -------------------------------------------------------------------------------- /tools/webp-converter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/webp-converter/script.js -------------------------------------------------------------------------------- /tools/webp-converter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/webp-converter/style.css -------------------------------------------------------------------------------- /tools/webpage-to-markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/webpage-to-markdown/README.md -------------------------------------------------------------------------------- /tools/webpage-to-markdown/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/webpage-to-markdown/TESTING.md -------------------------------------------------------------------------------- /tools/webpage-to-markdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/webpage-to-markdown/index.html -------------------------------------------------------------------------------- /tools/webpage-to-markdown/screenshots/conversion-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/webpage-to-markdown/screenshots/conversion-process.png -------------------------------------------------------------------------------- /tools/webpage-to-markdown/screenshots/conversion-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/webpage-to-markdown/screenshots/conversion-result.png -------------------------------------------------------------------------------- /tools/webpage-to-markdown/screenshots/mobile-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/webpage-to-markdown/screenshots/mobile-view.png -------------------------------------------------------------------------------- /tools/webpage-to-markdown/screenshots/tool-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/webpage-to-markdown/screenshots/tool-interface.png -------------------------------------------------------------------------------- /tools/webpage-to-markdown/screenshots/url-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/webpage-to-markdown/screenshots/url-input.png -------------------------------------------------------------------------------- /tools/webpage-to-markdown/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/webpage-to-markdown/script.js -------------------------------------------------------------------------------- /tools/word-counter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/word-counter/index.html -------------------------------------------------------------------------------- /tools/word-counter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/word-counter/script.js -------------------------------------------------------------------------------- /tools/word-frequency-analyzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/word-frequency-analyzer/README.md -------------------------------------------------------------------------------- /tools/word-frequency-analyzer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/word-frequency-analyzer/index.html -------------------------------------------------------------------------------- /tools/word-frequency-analyzer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/word-frequency-analyzer/script.js -------------------------------------------------------------------------------- /tools/word-scrambler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/word-scrambler/index.html -------------------------------------------------------------------------------- /tools/word-scrambler/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/word-scrambler/script.js -------------------------------------------------------------------------------- /tools/xml-to-json-converter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/xml-to-json-converter/index.html -------------------------------------------------------------------------------- /tools/xml-to-json-converter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heysaiyad/dev-toolkit/HEAD/tools/xml-to-json-converter/script.js --------------------------------------------------------------------------------