frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Earliest octopi were giant top predators in Cretaceous oceans

https://www.science.org/doi/10.1126/science.aea6285
1•Gaishan•28s ago•0 comments

The UK Government Wants to Destroy Free Speech on YouTube [video]

https://www.youtube.com/watch?v=EKIKveClo6c
1•Bender•1m ago•0 comments

Show HN: Mandelbrot set renderer written in pure [BSD] Makefiles

https://github.com/b-aaz/bmake-extravaganza
1•b-aaz•8m ago•0 comments

Meta Tests Pocket, an Experimental App for AI-Generated Mini-Games

https://www.ghacks.net/2026/07/05/meta-tests-pocket-an-experimental-app-for-ai-generated-mini-gam...
1•LorenDB•9m ago•0 comments

Agentic Autonomy Levels

https://addyo.substack.com/p/agentic-autonomy-levels
1•backlit4034•13m ago•0 comments

LLMs Are Not a Default Execution Engine

https://unmeshed.io/blog/using-ai-wisely-starts-before-the-first-prompt
2•jusonchan81•14m ago•0 comments

Categorical, semantic perception of meaning of call types in zebra finches [pdf]

https://www.science.org/doi/10.1126/science.ads8482
1•thunderbong•16m ago•0 comments

I (er Claude) wrote an RSS de-duper

http://rsshose.com
1•scumola•17m ago•1 comments

Rust is in TIOBE Index top 10

https://www.tiobe.com/tiobe-index/
2•zdkaster•18m ago•0 comments

I created a free tool that pairs your Nasic and past performance to win contract

https://www.fedfinder.net/
1•sentinelowl•20m ago•0 comments

Claude Fable 5 Backlash Grows

https://tech.yahoo.com/ai/claude/articles/claude-fable-5-backlash-grows-213000534.html
1•cybermango•25m ago•0 comments

NASA's Webb Studies How Planet Survived Death of Its Star

https://science.nasa.gov/missions/webb/nasas-webb-studies-how-planet-survived-death-of-its-star/
1•gmays•27m ago•0 comments

Swapheic – Convert images in the browser, everything happens locally, no uploads

https://swapheic.com/
1•rajsuper123•28m ago•0 comments

Scratch Linux Kernel Modules (scratchnative.at.github)

https://scratch.mit.edu/projects/706685974/editor/
1•oliculipolicula•29m ago•0 comments

The New BMW iX5 Hydrogen

https://www.bmwgroup.com/en/news/general/2026/the-new-bmw-ix5-hydrogen.html
2•plun9•30m ago•0 comments

First-ever reverse-aging drug was just injected into a human

https://www.businessinsider.com/first-ever-reverse-aging-treatment-injected-into-a-human-2026-6
4•cybermango•32m ago•0 comments

What Is Neocloud?

https://www.cisco.com/site/us/en/learn/topics/computing/what-is-neocloud.html
1•plun9•32m ago•0 comments

Breakthrough drug reverses aging in skin and dramatically speeds healing

https://www.sciencedaily.com/releases/2026/05/260519003215.htm
2•cybermango•33m ago•0 comments

The AI-Native Founder

https://www.wensenwu.com/thoughts/ai-native-founder
3•matmult•33m ago•0 comments

Tencent Hy3

https://huggingface.co/tencent/Hy3
3•droidjj•34m ago•0 comments

Math Master

https://www.angryflower.com/1666.html
1•oliculipolicula•36m ago•0 comments

Emerging evidence links tire pollution to Alzheimer's risk

https://medicalxpress.com/news/2026-07-emerging-evidence-links-pollution-alzheimer.html
1•OutOfHere•42m ago•1 comments

UUIDs, ULIDs and Sqids: A Practical Deep Dive

https://wendelladriel.com/blog/uuids-ulids-and-sqids-a-practical-deep-dive
2•shaunpud•46m ago•0 comments

Strata – An app that talks me out of dying outdoors

https://strata.highloop.co/
3•cloocher•48m ago•2 comments

The healing power of watching the boys of 'Jackass' do stupid things

https://www.yahoo.com/entertainment/general/article/the-healing-power-of-watching-the-boys-of-jac...
3•herbertl•50m ago•1 comments

Show HN: Tarot.free – Free Tarot Readings

https://tarot.free/
2•nadermx•51m ago•1 comments

The Hard Parts of Streaming Audio in Voice Agents

2•gokuljs•52m ago•0 comments

Binvariants: Register-Level Invaraint-Guided Fuzzing for Binaries

https://github.com/FuturesLab/Binvariants
2•matt_d•54m ago•0 comments

Env.style: Deployment environment disambiguation via favicon

https://www.env.style/
2•handfuloflight•56m ago•0 comments

Cewsco – the AI that keeps up with you

https://cewsco.com/
2•kalkalka•59m ago•2 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