<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Eli_M</title>
    <description>The latest articles on DEV Community by Eli_M (@eli_m).</description>
    <link>https://dev.to/eli_m</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3932575%2Ff13536ed-2860-4eeb-99f8-76d92d0842c9.png</url>
      <title>DEV Community: Eli_M</title>
      <link>https://dev.to/eli_m</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/eli_m"/>
    <language>en</language>
    <item>
      <title>**“Dev Toolbox” — Developer Tools Collection: A Complete Test of 12 Practical Gadgets**</title>
      <dc:creator>Eli_M</dc:creator>
      <pubDate>Fri, 15 May 2026 07:22:22 +0000</pubDate>
      <link>https://dev.to/eli_m/dev-toolbox-developer-tools-collection-a-complete-test-of-12-practical-gadgets-4c6c</link>
      <guid>https://dev.to/eli_m/dev-toolbox-developer-tools-collection-a-complete-test-of-12-practical-gadgets-4c6c</guid>
      <description>

&lt;p&gt;&lt;strong&gt;Last time we talked about the portal site formatnow.dev. Today, let's dive into one of its sub-sites – Dev Toolbox (dev.formatnow.dev). The name sounds pretty simple, right? It's exactly a "developer toolbox," packing all those little daily development tasks into one kit. I spent half a day trying them out one by one, going through all 12 tools. Let me share my real thoughts.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The positioning is very clear. As a developer, the functions I need daily are just a few: JSON formatting, some routine encoding and decoding – things that assist my everyday development. Having too many functions is actually meaningless to me. To be honest, this site isn't that different in functionality from the JSON.cn I usually use. The interface might be a bit cooler, but what's good is that I can quickly find other useful online tools through it without having to search everywhere. I think that's a great point.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F47hris45drep569zuq9a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F47hris45drep569zuq9a.png" alt=" " width="800" height="541"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;First Impression&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;As soon as the page loads, that purple-tinted frosted glass navigation bar lights up. The overall style is consistent with the portal site – dark theme, matte glass texture – giving it a real developer-tool vibe. On the left is a "Quick Switch" menu listing all 12 tools, letting you jump to any of them. In the top-right corner is a Chinese/English toggle button. I tried it, and the English translation is quite complete, not a sloppy machine translation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Going Through the 12 Tools One by One&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. JSON Formatter – Makes viewing formatted JSON comfortable&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Those of you working on backends or calling APIs definitely deal with JSON every day. Sometimes, getting a minified JSON blob from an interface can make your eyes hurt. I pasted a JSON data snippet into the input box:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;{"name":"Zhang San","age":30,"email":"test@example.com","active":true}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Clicking the &lt;strong&gt;Format&lt;/strong&gt; button instantly arranged it neatly, with proper indentation and line breaks. There's also a &lt;strong&gt;Minify&lt;/strong&gt; function to compress it into a single line, and &lt;strong&gt;Validate&lt;/strong&gt; to check if the JSON syntax is correct. When debugging interfaces or checking logs during development, this tool is pretty handy.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Base64 Encoder / Decoder&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Base64 encoding and decoding – commonly used on both frontend and backend. I tried the string "Hello FormatNow Dev Toolbox!". Clicking &lt;strong&gt;Encode&lt;/strong&gt; gave the result instantly, and clicking &lt;strong&gt;Decode&lt;/strong&gt; restored the original text. The two-way verification works perfectly. When you need to handle Base64 images or check token fields in APIs, just switch to Dev Toolbox and do it, no need to open some bulky tool.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. URL Encoder&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I use this quite often – when calling API endpoints or writing crawlers, special characters in URL parameters need encoding. I tried "Hello World" (Chinese characters). Encoding turned them into &lt;code&gt;%E4%BD%A0%E5%A5%BD%E4%B8%96%E7%95%8C&lt;/code&gt;, and decoding returned the correct Chinese. Mixed Chinese and English works fine too.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Regex Tester – Know immediately if your regex is wrong&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Regular expressions – honestly, I worry every time I write one. This tool has a real-time testing area. Write the regex pattern on the left, paste the test text on the right, and click &lt;strong&gt;Test&lt;/strong&gt; to see the matches. I tried matching &lt;code&gt;Format\w+&lt;/code&gt; against "Hello FormatNow and FormatNowDev" – it matched two results. What's the benefit? When writing log parsing rules, doing text filtering, or form validation, if you can't visually figure out the matching logic, run it here to get clarity.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Timestamp Converter – Convert between timestamps and dates&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Unix timestamps – &lt;code&gt;1551398400&lt;/code&gt; can stump a lot of people – "What day is that exactly?" I tested the forward conversion: input &lt;code&gt;1700000000&lt;/code&gt;, click &lt;strong&gt;Test&lt;/strong&gt;, and it immediately shows &lt;code&gt;2023/11/15 6:13:20 AM&lt;/code&gt;. Going backward is just as smooth – pick a date and it converts back to a timestamp. There's also a "Current Time" button showing the current timestamp at a glance. Super useful when passing time parameters in API calls.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6. Hash Generator – MD5, SHA-256, SHA-512 with one click&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Data integrity verification, password hashing – hashes are used everywhere in development. I typed a short piece of text, clicked &lt;strong&gt;Generate&lt;/strong&gt;, and the MD5, SHA-256, and SHA-512 hash results appeared simultaneously. No need to remember command lines or go through multi-step online tool processes – see a direct comparison of three algorithm results on one page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;7. JWT Parser – Decode a token to see what's inside&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;JWT tokens look like a bunch of gibberish, but they actually contain a Header and Payload. The page comes with a sample JWT. I clicked &lt;strong&gt;Decode&lt;/strong&gt;, and the signing algorithm (HS256) from the Header and user info (sub, name, iat) from the Payload were all displayed in an expanded view. When debugging SSO logins or checking user authentication tokens, decoding gives you an immediate view of what's inside.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;8. SQL Formatter – A lifesaver for writing SQL&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is one of my favorite tools. When writing SQL, sometimes you have JOIN after JOIN and a pile of WHERE conditions – if the indentation is messed up, it's unreadable. I clicked &lt;strong&gt;Load Example&lt;/strong&gt;, and a multi-table join SQL template appeared:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight sql"&gt;&lt;code&gt;&lt;span class="k"&gt;SELECT&lt;/span&gt; &lt;span class="p"&gt;...&lt;/span&gt;
&lt;span class="k"&gt;FROM&lt;/span&gt; &lt;span class="n"&gt;Users&lt;/span&gt; &lt;span class="n"&gt;u&lt;/span&gt;
&lt;span class="k"&gt;JOIN&lt;/span&gt; &lt;span class="n"&gt;Orders&lt;/span&gt; &lt;span class="n"&gt;o&lt;/span&gt; &lt;span class="k"&gt;ON&lt;/span&gt; &lt;span class="n"&gt;u&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;id&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;o&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;user_id&lt;/span&gt;
&lt;span class="p"&gt;...&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Clicking &lt;strong&gt;Format&lt;/strong&gt; instantly rearranged everything – keywords in uppercase, indentation aligned, subqueries indented separately. No need to manually adjust formatting – it becomes clean in one second. It supports multiple SQL dialects: MySQL, PostgreSQL, MariaDB, BigQuery, T-SQL, PL/SQL. You can also customize keyword case, indentation spaces, and line spacing. Honestly, since I write a lot of SQL, I might open this tool frequently.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;9. Code Formatter – Code formatting&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Supports formatting for HTML, CSS, and JavaScript. There's a default HTML example. I clicked &lt;strong&gt;Format&lt;/strong&gt; to try it – all indentation aligned, tag nesting relationships clear at a glance. When your frontend code gets messy, paste it in, click once, and it aligns perfectly. The &lt;strong&gt;Minify&lt;/strong&gt; function can compress it back into one line, which is also useful for reducing production code size.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;10. JSON to TypeScript – Convert interface data directly to type definitions&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In frontend-backend separated development, the backend often returns a JSON blob, and the frontend has to manually write TypeScript types. With this tool, paste the JSON in, click &lt;strong&gt;Convert to TypeScript&lt;/strong&gt;, and the interface definition is automatically generated. I tried it with a JSON object – it converted it to an &lt;code&gt;interface&lt;/code&gt; definition, with all field types inferred correctly (strings automatically typed as &lt;code&gt;string&lt;/code&gt;, numbers as &lt;code&gt;number&lt;/code&gt;). If you need to quickly coordinate with backend, this tool can save a lot of manual typing of interface types.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;11. API Tester – Send requests when you need to&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It's basically a lightweight version of Postman. I tried a &lt;strong&gt;GET&lt;/strong&gt; request to &lt;code&gt;https://httpbin.org/get&lt;/code&gt;. Clicking &lt;strong&gt;Send&lt;/strong&gt; returned a 200 status code, with the full response body displayed – request headers, source IP, parameters all there, taking only 40ms. It also supports &lt;strong&gt;POST, PUT, DELETE, PATCH&lt;/strong&gt; methods. There are four tabs – &lt;strong&gt;Params, Headers, Body, Auth&lt;/strong&gt; – for configuring request parameters. For simple API testing, you don't need to switch to Postman; this handles it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;12. Format Converter – Convert between JSON, YAML, and XML&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A tool for converting between the three data formats. I put in a JSON snippet, clicked &lt;strong&gt;Auto Convert&lt;/strong&gt;, and the XML format came out. Need to read a config file from YAML? Need to convert between JSON and XML? Just click. Each of the three formats has its use cases in different projects, and this tool connects them together.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Overall Impressions&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I ran through all 12 tools – no gimmicks. They produce results when they should, format when they should, decode when they should. The UI style is consistent, the operation logic is clear, and each tool gives results with a single button click – no need to read manuals or tutorials.&lt;/p&gt;

&lt;p&gt;What pleasantly surprised me were &lt;strong&gt;SQL Formatter&lt;/strong&gt; and &lt;strong&gt;API Tester&lt;/strong&gt; – their functionality is quite complete. Especially SQL Formatter – it even has PostgreSQL and BigQuery dialects, which is usually a configuration option found in separate paid tools. The response time display in API Tester is also a nice touch – seeing that 40ms data gives you a clear idea of the interface response speed.&lt;/p&gt;

&lt;p&gt;If I had to mention a small regret – there's no data interoperability between tools yet. For example, the JSON response from API Tester can't be sent directly to JSON Formatter for formatting with one click; you have to copy and paste yourself. However, considering this is a static site without global state management, that's normal. Copying and pasting takes just a second.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Who is it for?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Frontend and backend developers, API debugging, data processing, and anyone who occasionally needs to check a timestamp or hash value. Especially for those who write a lot of SQL, or those who frequently switch between frontend and backend during collaborative debugging – having this toolbox as a shortcut in your bookmarks is pretty convenient.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Next time I'll test another sub-site of FormatNow. Any guesses which one?&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>softwaredevelopment</category>
      <category>tooling</category>
      <category>webdev</category>
    </item>
    <item>
      <title>A Domain Family: 16 Professional Tool Sites, 200+ Online Tools All Free – Online Tools Review - FormatNow</title>
      <dc:creator>Eli_M</dc:creator>
      <pubDate>Fri, 15 May 2026 07:18:33 +0000</pubDate>
      <link>https://dev.to/eli_m/a-domain-family-16-professional-tool-sites-200-online-tools-all-free-online-tools-review--1kd5</link>
      <guid>https://dev.to/eli_m/a-domain-family-16-professional-tool-sites-200-online-tools-all-free-online-tools-review--1kd5</guid>
      <description>

&lt;p&gt;&lt;strong&gt;Preface&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Let me start with the conclusion: FormatNow is the largest-scale online tool site cluster I've discovered recently, built by an individual.&lt;/p&gt;

&lt;p&gt;It's not one of those "hodgepodges" that stuff hundreds of tool links onto a single webpage, giving you a headache just looking at it. Instead, each niche direction has its own independent sub-site, with its own domain name, its own UI, its own brand name, and then they're aggregated together on the formatnow.dev main site as a portal.&lt;/p&gt;

&lt;p&gt;From March to May this year, 16 sub-sites were launched in just over two months. Development tools, image processing, text processing, PDF, QR codes, network diagnostics, unit conversion, SEO detection, horoscopes, fun quizzes, anonymous rants, countdowns... pretty much everything you'd expect is covered. This is the first article, so let's first take a look at the quality of the portal homepage.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fi38xu029ug0qwo27dwcd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fi38xu029ug0qwo27dwcd.png" alt=" " width="800" height="475"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;I. First Impression: This Site Cluster is "Organized"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;To be honest, there's a site inside called &lt;a href="https://cal.formatnow.dev" rel="noopener noreferrer"&gt;https://cal.formatnow.dev&lt;/a&gt;. Feel free to check it out. It's used to look up food calories. The author never imagined there would be a site like this. Of course, maybe it's because I'm relatively thin – I can eat whatever I want and never gain weight, so I don't care about these things. But when I recommended it to my partner, who is always trying to lose weight, she said it was an absolute treasure.&lt;/p&gt;

&lt;p&gt;I contacted the site owner via email. He said the content of this site could be further enriched, but it relies on everyone brainstorming ideas and putting forward requirements. He would be responsible for organizing and launching them to make them convenient for everyone. Personally, I think the site owner is very nice.&lt;/p&gt;

&lt;p&gt;Opening formatnow.dev, you're greeted by a dark frosted glass style, with a dark purple background and purple gradients as the main color scheme. It loads quite fast, with no three-second ads or pop-ups demanding you "register/login for access." Just for this, it's already better than many online tool sites.&lt;/p&gt;

&lt;p&gt;At the very top of the homepage is a 5-page rotating hero carousel that plays automatically. Each background image is different:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Development Tools page: code grid + scattered dots + &amp;lt; /&amp;gt; large text&lt;/li&gt;
&lt;li&gt;Design &amp;amp; Image page: several large overlapping colored circles&lt;/li&gt;
&lt;li&gt;Conversion page: arrow paths + concentric circles&lt;/li&gt;
&lt;li&gt;Fun page: many scattered little stars + wavy lines&lt;/li&gt;
&lt;li&gt;Network page: node-and-line network diagram&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The transitions are quite smooth, with a fade-in effect, automatically switching every 5 seconds. There are also a few drifting glowing orbs on the background, moving around slowly – adding some depth without being distracting. Honestly, this design isn't annoying.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;II. Categorization and Navigation: 10 Modules, Clearly Arranged&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Scrolling down, the 16 sub-sites are listed under 10 categories. Each category has a gradient-colored vertical bar decoration in front, making it visually easy to distinguish:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Development Tools&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Dev Toolbox:&lt;/strong&gt; I'll test this one in-depth in my second article – JSON formatting, Base64 encoding/decoding, URL encoding, regex testing, timestamp conversion, hash generation, JWT parsing, SQL formatting, code formatting, JSON to TS, API testing, format conversion – a total of 12 tools, all processed locally in the browser without being sent to a server.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;TextNow:&lt;/strong&gt; 40+ text tools, text analysis, case conversion, Unicode fancy script (Gothic, double-struck, etc.), Zalgo, Leet, word count, text comparison, password generation, slug generation, palindrome detection... 9 modules.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0q651771is5fe74168ca.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0q651771is5fe74168ca.png" alt=" " width="800" height="505"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Image Processing&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;CompressNow:&lt;/strong&gt; Compression, resizing, cropping, format conversion, 30+ presets adapting to mainstream social media dimensions.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;IconGen:&lt;/strong&gt; One-click generation of app icons for iOS/Android/HarmonyOS/PWA/macOS various platforms.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;3. Design Tools&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;ColorNow:&lt;/strong&gt; Color picking, palette generation, gradients, WCAG contrast checking.&lt;/li&gt;
&lt;li&gt;IconGen is also listed under the Design category.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;4. Document Tools&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;PDF Tools:&lt;/strong&gt; PDF merging, splitting, compression, format conversion. Also processed browser-side without uploading to a server.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;5. Calculation &amp;amp; Conversion&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;ConvertNow:&lt;/strong&gt; 114 conversion tools! 8 major modules – Unit Conversion (16), Finance (17), Time (17), Life (17), Mathematics (18), Text (14), Color (7), Number &amp;amp; Encoding (8). Each tool has its own route for SEO purposes.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;6. QR Codes&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;QRNow:&lt;/strong&gt; Generates QR codes for WiFi, business cards, email, URLs, payments, etc., and can also decode, beautify, and batch print.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;7. SEO &amp;amp; Utilities&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;SEO Check:&lt;/strong&gt; SEO detection tools, checks title tags, meta tags, OG tags, hreflang, JSON-LD, keywords, social previews, interlinking detection within the site cluster, etc.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CalNow:&lt;/strong&gt; Calorie lookup for over 1300 types of food, daily nutrition tracking, BMR calculation. Data source is USDA.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;NetNow:&lt;/strong&gt; 21 network diagnostic tools – IP lookup, DNS lookup, SSL certificate inspection, Whois, HTTP status codes, security header scanning.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3pkx22r2vaxdqtjyno0y.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3pkx22r2vaxdqtjyno0y.png" alt=" " width="800" height="604"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;8. Fun Quizzes&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;QuizNow:&lt;/strong&gt; MBTI personality test, mental age, love compatibility, knowledge Q&amp;amp;A.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;9. Fun &amp;amp; Creative&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;MemeNow:&lt;/strong&gt; Chinese meme generator. Classics like "Zhen Xiang" (It smells so good), "I want it all," Black guy question mark... all the classic templates are there.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;StarNow:&lt;/strong&gt; Daily horoscopes, zodiac compatibility, personality analysis.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;RantNow:&lt;/strong&gt; Anonymous rant/confession card generator. Type a few words to generate a beautifully formatted shareable card.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;10. Productivity Tools&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;EveNow:&lt;/strong&gt; Countdown tracker for college entrance exams (Gaokao), regular exams, holidays, anniversaries.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each card comes with an SVG icon (no emojis, looks much cleaner), with both Chinese and English titles and descriptions. When you hover over a card, there's a gradient glowing border animation and it slightly lifts – the details are well executed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;III. Some Small Details&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Quick Access:&lt;/strong&gt; At the bottom, there are 16 quick links; clicking through them, there are no dead links.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Language Switching:&lt;/strong&gt; The Chinese/EN toggle button in the top right corner. Default is English. The entire site switches after toggling; the logic is quite clean. No awkward mixing of Chinese and English.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Footer:&lt;/strong&gt; Complete interlinking of the site cluster, all 16 sub-sites are listed. Also includes Contact, Privacy, Terms, Sitemap. And the sub-sites link to each other in their footers as well – forming a closed loop.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;IV. A Few Words from a Technical Perspective (Developers might want to take a look)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Digging into the page source code, this site cluster has a solid technical foundation:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Each sub-site is equipped with JSON-LD structured data, and each site has dual schema (WebSite + WebApplication)&lt;/li&gt;
&lt;li&gt;Both Chinese and English hreflang tags are present&lt;/li&gt;
&lt;li&gt;robots.txt and sitemap.xml are complete&lt;/li&gt;
&lt;li&gt;Uses the Geist font (Vercel's new font system)&lt;/li&gt;
&lt;li&gt;CSS animations are hand-coded: glowing borders, floating orbs, hover scaling&lt;/li&gt;
&lt;li&gt;For an individual site owner to achieve this level, it's quite standardized. This isn't just slapping on a WordPress theme and calling it a day.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;V. The Good Parts&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Large coverage&lt;/strong&gt; – 16 sub-sites, 200+ tools, covering everything from coding to love life (horoscopes)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Unified design&lt;/strong&gt; – All sub-sites share a consistent tone, giving a sense of branding, not a patchwork&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pure front-end&lt;/strong&gt; – All processing done in the browser, no server uploads, no registration required&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bilingual support&lt;/strong&gt; – Every site can switch between Chinese and English&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Comprehensive SEO&lt;/strong&gt; – Structured data, sitemap, hreflang all configured&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fast loading&lt;/strong&gt; – Static export, no waiting for backend rendering&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Clean&lt;/strong&gt; – No registration/login needed, no intrusive ad pop-ups&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;VI. Areas for Improvement&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The statistics display on the portal is blank – that area is empty, probably a missing component or a bug&lt;/li&gt;
&lt;li&gt;Tool depth is somewhat uneven – Dev Toolbox's 12 tools are relatively lightweight, each simply "input → output"; advanced users might find it lacking&lt;/li&gt;
&lt;li&gt;SEO Check is relatively thin – compared to other sub-sites, this one has slightly fewer features&lt;/li&gt;
&lt;li&gt;Lacks community features – no comments, sharing, interaction, etc. But then again, adding community features to a tool site is always a dilemma&lt;/li&gt;
&lt;li&gt;Some sub-sites could be further developed – for example, RantNow's card sharing, EveNow's custom events – these could be made richer&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;VII. Which Site for Which User?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here's a rough summary:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Developers&lt;/strong&gt; → Dev Toolbox (JSON/Base64/Regex), TextNow (text processing), NetNow (network diagnostics)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Designers&lt;/strong&gt; → CompressNow (image processing), IconGen (icon generation), ColorNow (color palettes), PDF Tools&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Website owners/Content creators&lt;/strong&gt; → SEO Check, QRNow, NetNow, TextNow&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;General users&lt;/strong&gt; → ConvertNow (conversions), CalNow (calorie lookup), QuizNow (quizzes), StarNow (horoscopes)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Students&lt;/strong&gt; → EveNow (countdowns to push you to study), ConvertNow (homework help), TextNow (word count for essays)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;As a personal project of a tool site cluster, FormatNow is commendable in scale, design, and technical execution. With 16 sub-sites spanning development tools to horoscopes, a unified design language and a fairly standardized technical stack make it stand out among a sea of "amateur" online tool sites.&lt;/p&gt;

&lt;p&gt;As the "main entrance," the portal homepage has the foundational elements: carousel, category cards, statistics area, quick access links, and footer interlinking. It's just that the statistics section needs fixing – a minor bug, nothing major.&lt;/p&gt;

&lt;p&gt;If some of the sub-sites deepen their functionality further, this would truly be a tool matrix worth bookmarking.&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>sideprojects</category>
      <category>tooling</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
