Posts

Showing posts from April, 2025

HTML Minior

Image
Please enable JavaScript Compress HTML Compress CSS Compress JS COMPRESS HTML RESTORE HTML Minior is a tool to minify or compress your HTML code. By default, it implements this trimming method: function minifyHTML(html) { return ( html // Removes HTML comments. .replace(/<!--[\s\S]*?-->/g, "") // Collapses all whitespace (spaces, newlines, tabs) into single spaces. .replace(/\s+/g, " ") // Removes spaces between tags. .replace(/>\s+</g, "><") // Trims leading-trailing whitespace. .trim() ) } Compress CSS If checked (picked), it will implement CSSO package to accomplish CSS code minification within HTML code which is wrapped in style tag. Compress JS If checked (picked), it will impl...

HTML Formatter

Image
Please enable JavaScript Indentation FORMAT HTML RESTORE HTML Formatter is a tool to format (beautify or structuralise) your HTML code. Indentation Specifies how many horizontal indentation spaces used for the structured nesting.

JavaScript Polisher

Image
Please enable JavaScript Indentation Maximum Length per Line POLISH JAVASCRIPT RESTORE JavaScript Polisher is a tool to structuralise (format) your compressed or unformatted JavaScript code into a readable code. Indentation Specifies how many spaces for the nested horizontal indentation. Maximum Length per Line Specifies maximum characters can be accommodated per line of code.

JavaScript Minifier

Image
Please enable JavaScript Compress Only Mangle Inner Scope Mangle Top Level MINIFY JAVASCRIPT RESTORE JavaScript Minifier is a tool to minify or compress your JavaScript code with optional mangling. Compress Only Only compresses your original JavaScript code, no mangling (switching keywords for variables, function names, etc.) is involved. Mangle Inner Scope Compresses your original JavaScript code and does inner scope mangling. The mangle will be applied to variables and whatnots within function block(s), but each of outest (top level) function name itself will stay intact. Lesser size than Compress Only option. Mangle Top Level Compresses your original JavaScript code and mangles everything. This option should produce the smallest size of compressed code compared to the prior options. Unicode Each option automatically converts the Unicode...

BANANAGRAMATOR 🍌

Image
Please enable JavaScript 🍌 BANANAGRAMATOR Please activate JavaScript... RUN CLEAR MUSA POTENTIA How to Use Type or paste the text to rearrange on the input box. Maximum of 3,628,800 (three million, six hundred and twenty-eight thousand, eight hundred) rearrangements ( 10! ). Acceptable characters: A-Z or 0-9 or any other characters (besides white space ) that can be rendered on HTML . Supports emoji or UNICODE character like 😡‍πŸ’«πŸ€·‍♂️🫠➼▶α΄±α΄Ήα΄Όα΅€α΅’α΅₯β‚‘ We can use the Pattern... input to gate the permutation results. The gate will match only permutations that begin with the pattern πŸ€” This will be applied as a prefix filter — only permutations starting with the pattern will be returned πŸ˜ƒ For instance, we want to get the rearranged letters from monkey , if we put key fo...

Noble Digit: Number In So Many Words

Image
Please enable JavaScript. πŸ‡¬πŸ‡§ British πŸ‡ΊπŸ‡Έ American (Formal) πŸ‡ΊπŸ‡Έ American (Informal) 🍻 Drunk Bard πŸ”’ Number to Word ▶️ πŸ“‹ COPY 🏰 NOBLE DIGIT How to Use Type or paste your number on the input. The wording for the number input will be shown right away. This accommodates any real number expressed in standard decimal notation — positive, negative, and fractional as decimals (e.g. 0.75, not ¾). The process is triggered by: Input change. Style option change. ▶️ button click. There are four styles available: πŸ‡¬πŸ‡§ British. πŸ‡ΊπŸ‡Έ Formal American. πŸ‡ΊπŸ‡Έ Informal American. 🍻 Drunk Bard. πŸ”’ Number to Word. Because 🍻 Drunk Bard can utter inconsistent ululation, we might employ the ▶️ button t...