frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

An Executive Decision Maker (2022)

https://circuitcellar.com/research-design-hub/projects/executive-decision-maker/
1•TMWNN•1m ago•0 comments

Magnet-Metadata-API: Torrent Metadata API Service

https://github.com/felipemarinho97/magnet-metadata-api
1•toomuchtodo•9m ago•1 comments

Show HN: Salvobase – MongoDB-compatible DB in Go maintained by AI agents

1•inder1•19m ago•0 comments

Show HN: Using Isolation forests to flag anomalies in log patterns

https://rocketgraph.app/ml
1•kvaranasi_•20m ago•1 comments

Data Analysis of the State of the Iranian Conflict on March 8, 2026

https://datarepublican.substack.com/p/data-analysis-of-the-state-of-the
1•delichon•21m ago•0 comments

Falling Out of the Coconut Tree: What the Popular Kamala Harris Meme Means

https://www.psychologytoday.com/us/blog/race-gender-and-popular-culture/202408/falling-out-of-the...
1•marysminefnuf•22m ago•1 comments

Show HN: OpenVerb – A deterministic action layer for AI agents

https://www.openverb.org/
1•cplhancel•25m ago•0 comments

Show HN: LLM-costs – Compare LLM API costs from terminal (npx, zero install)

https://github.com/followtayeeb/llm-costs
1•followtayeeb•30m ago•0 comments

Show HN: Chat AI Agent inside mobile device testing sessions

https://robotactions.com/
1•krishpavuluri•31m ago•0 comments

Show HN: Andon – Toyota Production System for LLM Coding Agents

https://github.com/allnew-llc/andon-for-llm-agents
1•allnew_llc•31m ago•0 comments

I am an AI agent that sells data via x402 micropayments

https://pam-x402.vercel.app
1•PamnLambert•32m ago•0 comments

Thinnings: Sublist Witnesses and de Bruijn Index Shift Clumping

https://www.philipzucker.com/thin1/
1•todsacerdoti•33m ago•0 comments

AI Needs Management Consultants After All

https://www.wsj.com/tech/ai/ai-needs-management-consultants-after-all-bd28ecb9
1•petethomas•40m ago•0 comments

AluminatiAi – per-job GPU cost tracking for ML teams

1•AluminatiAi•43m ago•0 comments

The Cloco Loop – Code /Review Loop Using Claude and Codex

https://github.com/amazedsaint/clocoloop
1•amazedsaint•45m ago•0 comments

Show HN: Tighten skill to read AI-generated code faster

https://github.com/markrogersjr/skills/blob/main/skills/tighten/SKILL.md
1•markrogersjr•51m ago•0 comments

Spatial Programming [video]

https://www.youtube.com/watch?v=eQgxFuw8f1U
2•elcaro•52m ago•0 comments

Show HN: AlphaPerch – Track product execution for companies you follow using AI

https://alphaperch.com
2•sebasnar•53m ago•0 comments

Show HN: Compose Launcher – A macOS app to run multiple Docker Compose files

https://github.com/yingbo/compose-launcher
1•yingbo•56m ago•0 comments

Time Travel: Temporal Mutability in the Absence of Hardware [pdf]

https://wbnns.com/time-travel.pdf
1•wbnns•57m ago•0 comments

1190: Time (prize-winning Xkcd comic animation)

https://deplicator.github.io/xkcd-time-at-your-pace/
1•felineflock•58m ago•0 comments

Monocod

1•twoelf•1h ago•5 comments

MinusPod: Automatically Remove Ads from Podcasts

https://github.com/ttlequals0/MinusPod
4•Ttlequals0•1h ago•1 comments

The Rise of the Techno-Pastoral

https://noreturn.blog/p/the-rise-of-the-techno-pastoral
1•SuperShibe•1h ago•0 comments

I built a browser-based version of MARS MIPS simulator

https://webmars.nfiles.top/
2•nenepbl•1h ago•0 comments

Raymarching meets Dyalog APL (2024)

https://bl0v3.com/Blog/raymarching-in-dyalog-apl/
1•Duanemclemore•1h ago•0 comments

Tiled – Flexible Level Editor

http://www.mapeditor.org/
1•netule•1h ago•0 comments

Open source Claude Code swarms WTF

https://github.com/m0at/hermes-lite
1•sfffs•1h ago•1 comments

Work Life Balance in Japan's Tech Industry

https://japan-dev.com/blog/work-life-balance-in-the-japanese-tech-industry
1•etdev•1h ago•0 comments

Rust Bibliography

https://rustc-dev-guide.rust-lang.org/appendix/bibliography.html#rust-bibliography
1•vinhnx•1h 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