SShortSingh.
Back to feed

Developer builds 31 browser-based tools in a weekend to avoid ad-heavy alternatives

0
·1 views

A developer created DevKits, a free collection of 31 developer utilities spanning categories like JSON formatting, encoding, security, and AI token counting, all accessible at devkits.vip. The project was motivated by frustration with existing tools that display ads, track users, and upload sensitive input data such as JWTs to remote servers. Every tool in DevKits runs entirely client-side in the browser, with no accounts, cookies, or cross-site tracking required. The site is built with Next.js 15, TypeScript, and Tailwind CSS, hosted on Vercel, with an initial JavaScript payload kept under 130KB per page. All 31 tools are managed through a single configuration file, making it possible to add a new tool in roughly 20 minutes.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

DEV Tutorial Shows How to Build Async Web Forms Without Page Reloads

A tutorial published on DEV Community walks developers through building form submission workflows that avoid full-page reloads using JavaScript's native Fetch API and async/await syntax. The guide explains how traditional synchronous form submissions block the main thread, reset client-side state, and degrade user experience on slow mobile connections. The demonstrated implementation disables the submit button during the network request to prevent double-submissions and provides real-time feedback based on server response. Error handling is built in at both the HTTP status and network levels, with the UI reliably reset in a finally block regardless of outcome. The tutorial positions this async approach as a production-ready pattern capable of delivering sub-200ms perceived response times.

0
ProgrammingDEV Community ·

Developer Fixes Silent Regex Bug in Formbricks That Crashed Live Surveys

A contributor discovered a runtime bug in Formbricks, an open-source survey platform with over 12,000 GitHub stars, where invalid regex patterns entered by survey creators were accepted without validation. The flaw existed because the schema only checked that the pattern field was a non-empty string, without verifying it was a legitimate regular expression. This meant a malformed pattern like '[invalid' could be saved to the database and only cause a JavaScript SyntaxError when a real user attempted to submit a response, silently crashing the survey. The fix adds two helper functions that wrap RegExp construction in try/catch blocks, rejecting invalid patterns and flags at the schema level before they reach the database. Placing the validation at the schema layer ensures malformed inputs are blocked even if submitted directly via the API, bypassing any frontend checks.

0
ProgrammingHacker News ·

Developer builds canvas-based note app separating short and long-form notes

A developer has launched a canvas-based note-taking and organizer app after an extended period of solo development. The app distinguishes between sticky notes for quick thoughts and A4-style notes for longer documents, displayed on a visual canvas rather than in a linear list. It includes a quick-access mode using local storage for fast note capture and a PDF export feature offering three custom layout styles. File organization is handled visually through a hierarchy of notes, stacks, and labels that mirrors a traditional folder structure. The developer has shared the project on Hacker News seeking community feedback to help guide further development.

0
ProgrammingDEV Community ·

How a Developer Fixed Soft 404 and Duplicate Page Errors in Google Search Console

A developer discovered that member profile pages on their site were flagged by Google Search Console as Soft 404 and Duplicate without user-selected canonical errors, three weeks after publishing a dynamic sitemap. The root cause was that public anonymous profiles were intentionally minimal, hiding personal information from logged-out visitors, making them appear empty or near-identical to Google's crawler. Rather than enriching the pages — which was not permitted by design — the fix involved adding a noindex,follow meta tag and removing the URLs from the sitemap. The developer also noted that most Search Console coverage warnings, such as redirects, crawl budget decisions, and intentional 403 blocks, are benign by design and require no action. The key takeaway is that pages deliberately lacking content for anonymous visitors have no place in a search index built for those same users.

Developer builds 31 browser-based tools in a weekend to avoid ad-heavy alternatives · ShortSingh