惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗
博客园 - 聂微东
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Google DeepMind News
Google DeepMind News
Recent Announcements
Recent Announcements
IT之家
IT之家
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
爱范儿
爱范儿
Vercel News
Vercel News
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky
U
Unit 42
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
F
Fortinet All Blogs
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built a detention-pay calculator for truckers in a day ...
ItsEvilDuck · 2026-05-31 · via DEV Community

Every "what should I build" thread on here is full of AI wrappers fighting over the same five SaaS founders. Meanwhile there's a guy sitting at a loading dock right now, doing arithmetic in his head, who is about to undercharge his broker by a few hundred bucks because nobody built him a 30-second tool.

I built that tool. It's a free detention-pay calculator for truck drivers. This is the build log — the niche-selection, the single-file stack, and two decisions (an SVG gauge and a no-mail-service auth scheme) that were more interesting than the app deserves.

I'm not a trucker. I build small free web tools for industries other may find unglamourous or not enticing enough. That honesty matters later.

The problem (worth $2–6k/yr to one user)

Truckers get a "free time" window at a dock — usually 2 hours. Past that, the broker owes detention pay (~$50–100/hr). Drivers leave an estimated $2,000–6,000/year of it unclaimed, mostly because the math + the paperwork is annoying enough to skip.

So the spec wrote itself:

  • In/out times + free hours + rate → dollars owed.
  • Export a dispute-ready PDF they can email the broker.
  • Work on a phone, no login, instant.

Validating before writing a line

The mistake I almost made: assume the niche is empty because I'd never heard of it. I checked. It is not empty — DockClaim ($49/mo, GPS tracking), Detention Buddy, a couple of $9.99/mo App Store apps, even a free email-gated web calculator or two.

That killed my first instinct ("be the only one") but clarified the real wedge: everything is a paid app download or email-gated. The opening was a genuinely free, no-signup, instant web version that also generates the claim PDF. Not "the only detention tool" — the one with the least friction. I'll say more on why I'm careful about that claim at the end.

Lesson: validate to find your angle, not just a go/no-go. "Crowded but all friction-heavy" is a fine market.

The stack: one HTML file

No framework. The whole app is a single self-contained .html — markup, CSS, vanilla JS, jsPDF from a CDN. It deploys as a static asset. Cold-loads instantly on a trucker's phone on dock wifi, which is the only performance budget that matters here.

The core math is anticlimactic, which is the point — including the one edge case people forget, the overnight dock wait:

function detentionOwed(arriveMin, leaveMin, freeHrs, rate) {
  let wait = leaveMin - arriveMin;
  if (wait < 0) wait += 24 * 60;            // crossed midnight at the dock
  const billable = Math.max(0, wait / 60 - freeHrs);
  const charged = Math.ceil(billable);      // brokers bill by the hour
  return charged * rate;
}

The PDF is the actual product. jsPDF, a few doc.text() calls laying out a claim, and a footer line — "Generated free at quackbuilds.com…". That watermark is the entire distribution strategy: every claim a driver emails a broker carries the tool into a logistics company's inbox. The artifact does the marketing.

Decision 1: an SVG instrument gauge instead of a progress bar

The audience reads dashboards all day, so the result is a round gauge — a dim "free-clock" arc that hands off to a glowing amber "billable" arc, with a seven-segment LED readout (DSEG font) in the center.

The trick is splitting one dial into two arcs with stroke-dasharray + stroke-dashoffset. A 270° sweep, the free segment first, the billable segment offset to start exactly where free ends:

const R = 84, C = 2 * Math.PI * R, ARC = 0.75 * C; // 270° of the circle

const freeLen = (Math.min(freeMin, wait) / wait) * ARC;
const billLen = (Math.max(0, wait - freeMin) / wait) * ARC;

gaugeFree.setAttribute("stroke-dasharray", `${freeLen} ${C}`);
gaugeBill.setAttribute("stroke-dasharray", `${billLen} ${C}`);
gaugeBill.setAttribute("stroke-dashoffset", `${-freeLen}`); // negative = start later

Both <circle>s are transform="rotate(135 100 100)" so the gap sits at the bottom. CSS transition on the dash properties animates the fill for free. No charting lib.

Decision 2: cross-device sync with no email service

Users wanted their saved loads to survive across phone → laptop. That needs identity. The repo's other apps use crypto wallet connect — great, except truckers are roughly the least crypto-native audience alive. And there was no mail service wired up, so magic-links were off the table without adding (and paying for) one.

So: email + a recovery code. On first backup the server mints a high-entropy code, returns it once, and stores only an HMAC of it. Restore = email + code. Cheap, no mail provider, and the code is the secret so it's not guessable like a bare email would be.

const hash = (email: string, code: string) =>
  createHmac("sha256", PEPPER)
    .update(`${email.toLowerCase()}:${code.toUpperCase()}`)
    .digest("hex");

// store `hash` only; on restore compare with timingSafeEqual()

Wallet connect is still there as a second option for the few who want it. Everyone else types an email and copies a code.

The gotcha that almost shipped

The repo's shared Supabase client uses the anon key. Convenient — and it means any table that client touches is reachable through public PostgREST. Fine for public data; not fine for a table of user logs. Someone could enumerate rows with the anon key that ships in the browser bundle.

Fix was two lines: route the API through the service-role client, and in the migration alter table … enable row level security; with no policies. No policies = anon/authenticated denied entirely; the service role bypasses RLS. The table becomes reachable only through the server route that mediates the code check. Easy to forget, easy to verify — I had the API smoke-tested for bad_code, not_found, and the happy path before trusting it.

Why "unglamourous" is the moat

Three things fall out of picking an unglamorous niche:

  1. The spec is knowable. I'm not guessing what a "better AI assistant" means. Detention pay has rules. You build to them and you're done.
  2. Distribution is built in. The PDF goes where the buyers are (brokers/logistics ops) without me running ads to them.
  3. Nobody's bored-industry-pilling the competition. The incumbents are sleepy paid apps. Friction is the whole opening.

It shipped in about a day as a single file plus one API route and one migration.

The honesty footnote (it's a feature)

When I drafted the launch post I wrote "the only free no-signup web version." Then I checked, found a couple of free web calculators, and cut the claim. If you're going to build in public, the fastest way to torch your credibility is a superlative someone disproves in a reply. "Mostly paid apps or email-gated, so I made a free no-login one that also generates the claim PDF" is true and still sells. Ship the true version of the pitch. Only reason for your email or crypto wallet address is strictly for persistence across browser closes or swapping devices (Other than those two use cases) it is not needed at all.


If you want to poke at it: detention-pay calculator — type 08:00 → 12:30 and watch the gauge.

What's the most unglamourous-but-real niche you've shipped for? I'm collecting them. They very well may be my next tool to hit my page!

www.QuackBuilds.com - Built by @itsevilduck