frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Taming Production Database Migrations

https://www.lirbank.com/taming-production-database-migrations
1•andrelandgraf•15s ago•0 comments

Jj jj jj jj jj

https://caiustheory.com/jj-jj-jj-jj-jj/
1•birdculture•1m ago•0 comments

Florida Is Executing Prisoners at a Record Pace

https://www.propublica.org/article/florida-death-penalty-executions-ron-desantis
1•petethomas•1m ago•0 comments

Death by Clawd: Hacker News Safe from AI Replacement

https://deathbyclawd.com/?url=news.ycombinator.com
1•adamhowell•1m ago•0 comments

Is there a "is fable up tracker" or notification hook?

1•217•1m ago•0 comments

Palantir vs. Republik [Swiss News Magazine]

https://www.republik.ch/2026/06/13/palantir-gegen-die-republik-das-urteil
1•Arodex•2m ago•1 comments

Reduce GVisor Cold Starts with GPU Snapshotting

https://cerebrium.ai/blog/reducing-gpu-cold-starts-with-memory-snapshots-restoring-cuda-workloads...
4•jono_irwin•5m ago•0 comments

Explaining relationship-based access control with a MIDI keyboard [video]

https://www.youtube.com/watch?v=nPL3W_oHSrE
1•melsmo•7m ago•0 comments

Show HN: I built a way for coding agents to use secrets with O seeing them

https://github.com/pdumicz/secret-shuttle
1•pdumicz•7m ago•1 comments

Show HN: Hunch, search your email by a hunch; with a conversation

https://margaine.com/hunch/
1•tlar•8m ago•0 comments

How the World Cup Builds Nations

https://www.nominalnews.com/p/wolrd-cup-football-nations-ethnicity
1•NomNew•10m ago•0 comments

Uber Shakes Up AI Data Labeling Business, Dismissing Top Leaders

https://www.bloomberg.com/news/articles/2026-07-01/uber-shakes-up-ai-data-labeling-business-dismi...
1•htrp•10m ago•1 comments

Why I like snake_case

https://graybeard.ing/why-i-like-snake_case/
2•rglover•12m ago•1 comments

My Notes After Databricks Data and AI Summit 2026

https://zilliz.com/blog/databricks-data-ai-summit-2026-data-layer
1•redskyluan•13m ago•0 comments

Vektorgeist

https://vektorgeist.com
1•Floukie•15m ago•0 comments

Grand Elemental, primordial matter churning like a living planet core

https://sand-morph.up.railway.app/grand-elemental-original
1•echohive42•16m ago•0 comments

Our First 66 Azure Deployments Show Interesting Patterns

https://webbynode.com/articles/our-first-azure-observations-strong-compute-emerging-network-signals
1•gsgreen•18m ago•1 comments

ZCode: GLM-5.2's own harness is officially live

https://twitter.com/zai_org/status/2072349453361557898
2•andrem•18m ago•1 comments

Proposed new satellite fleets could overwhelm the night sky

https://www.science.org/content/article/proposed-new-satellite-fleets-could-overwhelm-night-sky
2•Brajeshwar•19m ago•0 comments

Tidal hits subscribers with a 200% price increase

https://www.neowin.net/news/tidal-is-getting-a-price-hike/
1•bundie•19m ago•1 comments

Pidgin 3.0 Alpha 2 (2.96.0) has been released

https://discourse.imfreedom.org/t/pidgin-3-0-alpha-2-2-96-0-has-been-released/398
3•rw_grim•22m ago•0 comments

CorvinOS – self-hosted agentic OS where EU AI Act and GDPR compliance by design

https://github.com/CorvinLabs/CorvinOS
2•shumway•22m ago•0 comments

Amsterdam Invented the Fire Department

https://worksinprogress.co/issue/how-amsterdam-invented-the-fire-department/
2•Tomte•22m ago•0 comments

Ask HN: Freelancer? Seeking freelancer? (July 2026)

4•jon_north•23m ago•1 comments

Show HN: A cp wrapper that appends –reflink=always if possible to speed it up

https://github.com/CallMeAlphabet/fastcp
1•CallMeAlphabet•23m ago•0 comments

Microsoft plans job cuts, impacting <2.5% of workforce

https://www.businessinsider.com/microsoft-job-cuts-layoffs-sales-consulting-2026-6
2•akyuu•23m ago•0 comments

Te Lapa

https://en.wikipedia.org/wiki/Te_lapa
1•helterskelter•23m ago•0 comments

The Wealth of the Richest People in AI

https://futuresearch.ai/ai-researcher-net-worth/
2•ddp26•24m ago•0 comments

The Circle Bracket for World Cup - Open Source

https://www.thecirclebracket.com/
2•shaohua•24m ago•1 comments

F

https://news.ycombinator.com/submit
2•lokesh453•24m ago•1 comments
Open in hackernews

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

https://t128n.github.io/routr/
2•trbndev•1y ago

Comments

trbndev•1y 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•1y ago
That link is broken. Correct link: https://t128n.github.io/writings/2025-05-02_optimizing_searc...
trbndev•1y 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•1y 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•1y 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•1y 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•1y 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