frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Euros

https://my-notes.dragas.net/2026/02/22/179-euros/
1•speckx•48s ago•0 comments

5 Takeaways on America's Boom in Billionaires

https://www.nytimes.com/2026/03/02/us/billionaire-boom-takeaways.html
1•bookofjoe•1m ago•1 comments

Ask HN: What is your AI workflow for software projects?

1•LostMyLogin•1m ago•0 comments

TX Ken Paxton calls Conduent 25M PII "largest hack in US history"

https://www.extremetech.com/internet/data-breach-exposes-25-million-americans-in-what-texas-calls...
1•burnt-resistor•1m ago•0 comments

Show HN: Btrc – I built a language with AI in a few weeknights that outputs C11

https://github.com/schiffy91/btrc
1•schiffy•2m ago•0 comments

I can't read books written in the first-person perspective

https://good.afternoonrobot.co.uk/i-cant-read-books-written-in-the-first-person-perspective/
1•robotmay•2m ago•0 comments

Real Good AI

https://www.realgoodai.org
1•sininxn•3m ago•0 comments

Show HN: Mailfeed – Your reading list, owned by you

https://github.com/toothbrush-inc/mailfeed
1•davidd8•4m ago•1 comments

Mexico Mandates Biometric SIM Registration for All Phone Numbers

https://reclaimthenet.org/mexico-mandates-biometric-sim-registration-for-all-phone-numbers
3•mikece•4m ago•0 comments

Testing the Datadog Explain Plan Visualizer with Oracle Execution Plans

https://tanelpoder.com/posts/testing-datadog-plan-visualizer-with-oracle-execution-plans/
2•tanelpoder•5m ago•0 comments

Age Verification: Protection Tool or Surveillance in Disguise?

https://itsfoss.com/news/our-take-on-age-verification/
2•mikece•6m ago•0 comments

Machine-made snow makes ski racing faster and riskier

https://theconversation.com/what-olympic-athletes-see-that-viewers-dont-machine-made-snow-makes-s...
2•PaulHoule•6m ago•0 comments

Ask HN: How do you monitor AI features in production?

2•llmskeptic•7m ago•0 comments

Repurposing Claude Code for Better Spotify Recommendations

https://fredbenenson.com/blog/2026/03/02/repurposing-claude-code-for-better-spotify-recommendations/
2•mecredis•7m ago•0 comments

Vibe coding toward the incident horizon

https://www.spinellis.gr/blog/20260302/
3•DSpinellis•7m ago•0 comments

Show HN: MassMAP – Masscan as a Service LOL

https://masscan.org
2•acid_vegas•7m ago•0 comments

Breaking up with Big Tech – Progress update

https://thedent.net/posts/breaking-up-with-big-tech-progress-update
2•speckx•8m ago•0 comments

Parse, Don't Guess

https://event-driven.io/en/parse_dont_guess/
1•ingve•8m ago•0 comments

John Baskerville's type punches released digitally

1•parkersweb•9m ago•0 comments

Show HN: Benchmarking the Keep memory system with LoCoMo

https://keepnotes.ai/blog/2026-02-28-benchmark/
1•inguz•10m ago•0 comments

Show HN: Agent Protocols Tech Tree

https://harvard-lil.github.io/agent-protocols/
1•JackC•10m ago•0 comments

Why every AI coding breakthrough feels normal within 90 days

https://www.augmentcode.com/blog/why-every-ai-coding-breakthrough-feels-normal-within-90-days
1•knes•10m ago•0 comments

Show HN: SwarmWatch – Live view of your coding agents at work

https://github.com/SwarmPack/SwarmWatch
1•prastik•11m ago•0 comments

Apple AI servers unused in warehouses due to low Apple Intelligence usage

https://9to5mac.com/2026/03/02/some-apple-ai-servers-are-reportedly-sitting-unused-on-warehouse-s...
11•_____k•14m ago•0 comments

Show HN: ParseForce – Turn emails into structured JSON and send them to webhooks

https://www.parseforce.io
1•nikola470•15m ago•1 comments

From coder to orchestrator: the mindset shift software engineers must make

https://fafa.bearblog.dev/from-coder-to-orchestrator-the-mindset-shift-software-engineers-must-make/
1•evakhoury•16m ago•0 comments

Solid in FP: Liskov Substitution – A Principle Beyond Inheritance

https://cekrem.github.io/posts/solid-in-fp-liskov-substitution/
2•birdculture•16m ago•0 comments

Outline-oriented codebase for a coding agent

https://blog.fooqux.com/blog/outline-oriented-codebase/
1•dotneter•17m ago•0 comments

Show HN: Metanoia Research

https://www.metanoia-research.com/
1•metanoia_•17m ago•0 comments

An Identity Crisis in Engineering

https://bgthread.github.io/an-identity-crisis-in-engineering/
1•treenode•18m ago•0 comments
Open in hackernews

Show HN: routr - a fast local replacement for DuckDuckGo bangs

https://t128n.github.io/routr/
2•trbndev•10mo ago

Comments

trbndev•10mo ago
routr is a lightweight, offline search router inspired by DuckDuckGo's bangs. It's fully browser-based (no server requests needed other than the initial one) and routes queries like `!gh tokio` to GitHub, `!yt` to YouTube, `!hn` to Hacker News, etc.

What sets it apart:

- Runs entirely locally (no network, no tracking)

- Lets you define your own bangs and destinations

- Optionally rewrites queries for better precision (with AI)

Example:

Typing `article about german war in the stone age !!g` becomes: `site:en.wikipedia.org "german" AND "war" AND "stone age"`

More on query rewriting and performance:

https://tl128n.github.io/writings/2025-05-02_optimizing_sear...

Leftium•10mo ago
That link is broken. Correct link: https://t128n.github.io/writings/2025-05-02_optimizing_searc...
trbndev•10mo ago
Ah damn what a bummer that I can‘t edit the original comment anymore. Thank you for pointing it out… didn‘t even see that extra `l` there in the url
Leftium•10mo ago
> Typing `article about german war in the stone age !!g` becomes: `site:en.wikipedia.org "german" AND "war" AND "stone age"`

I wonder how much of that could be done without AI, just (locally) using https://www.npmjs.com/package/compromise

---

Also I couldn't find your source for bang data; Kagi maintains an updated list: https://github.com/kagisearch/bangs

I'm working on an enhanced version of bangs. Since there are so many "dead" bangs, I'm thinking of using a bang whitelist and suggestions from the full list if not found in the whitelist.

trbndev•10mo ago
What an interesting library. Thanks for mentioning it here… will definitely look into it!

—-

The bangs are at

https://github.com/t128n/routr/blob/main/src/sw/routes.ts

Mostly ripped from duckduckgo.com/bang.js and then pretty-formatted with Prettier… with some sane-defaults added like a bang for ChatGPT or T3 Chat

Leftium•10mo ago
Related project (also works locally):

- https://unduck.link/

- https://github.com/t3dotgg/unduck

- https://youtu.be/_DnNzRaBWUU

---

Note unduck works without service workers: https://github.com/t3dotgg/unduck/blob/91a66c25de8b0e7ac5ba5...

Is there any advantage to using service workers?

edit: Ah... unduck doesn't work from the browser search bar.

trbndev•10mo ago
Unduck actually also uses service workers to cache the app locally

https://github.com/t3dotgg/unduck/blob/91a66c25de8b0e7ac5ba5...

—-

> Is there any advantage to using service workers?

With service workers we can intercept the `fetch` request, before the index.html gets rendered/loaded. One should (in theory) be redirected some micro-seconds faster than doing the redirect in the index.html js