frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The superfast and compatible < 100kb pure HTML/oldJS Jellyfin front-end

https://www.reddit.com/r/jellyfin/comments/1vtcltb/meet_jellydinosaur_the_superfast_very_compatible/
1•wise_blood•5m ago•0 comments

Japan tried to build an operating system for the world, the US intervened

https://www.xda-developers.com/japan-tried-build-operating-system-entire-world-us-government-inte...
1•rdmuser•5m ago•0 comments

Meta's Global Playbook for Fighting Child Safety Laws

https://www.techtransparencyproject.org/articles/inside-metas-global-playbook-for-fighting-child-...
1•femto•6m ago•0 comments

Submit privacy-focused companies and projects on PrivBid.com

https://privbid.com/
1•CR1337•12m ago•0 comments

Code Doesn't Speak – It Compiles: Why Small Models Win

https://www.innerkore.com/blog/code-doesnt-speak-it-compiles-small-models-win/
1•gagan2020•13m ago•0 comments

Seed: Minimal, self-modifying agent harness

https://github.com/vivekhaldar/seed
1•gandalfgeek•16m ago•0 comments

Ask HN: Claude Code in Video Editor

1•eliseinicolae•17m ago•1 comments

Show HN: I built an open source video editor that you can control with an LLM

https://github.com/DonkeyCut/Donkey
1•dthedavid•17m ago•0 comments

Building with Papert at My Elbow

https://somewildideas.com/articles/building-with-papert-at-my-elbow
1•the-mitr•22m ago•0 comments

35hp and $12,000 of Pure Joy [video]

https://www.youtube.com/watch?v=ZPVpcTDi1kw
2•primogen•28m ago•0 comments

Show HN: Just describe your idea and let AI build a playable game for you

https://run.ceo/coder/
2•Marvin_RunAI•32m ago•0 comments

California Draws More Startup Investment Than All Other 49 States Combined

https://www.wsj.com/tech/ai/californias-ai-dominance-fuels-366-billion-venture-capital-bonanza-82...
3•mmooss•40m ago•0 comments

Ask HN: Has Microsoft forgotten how to test software?

3•pudgywalsh•42m ago•3 comments

Ask HN: What is the job market like in your country?

1•xvxvx•42m ago•0 comments

Donald Trump Effectively Just Told Iran to Get a Nuclear Weapon

https://www.theatlantic.com/ideas/2026/08/trump-north-korean-iran-nuclear-weapons/688339/
5•handfuloflight•43m ago•0 comments

Ask HN: Thoughts on Friend Making Apps?

2•siddhibansal9•45m ago•3 comments

Show HN: I completed my cross platform C++ 17 fiber job system

https://github.com/jay403894-bit/JLib-Scheduler
1•jay403894•1h ago•0 comments

Swiss tourist sentenced to year in jail for insulting Bali sacred Day of Silence

https://www.euronews.com/my-europe/2026/08/20/swiss-tourist-sentenced-to-year-in-jail-for-insulti...
1•Markoff•1h ago•1 comments

OpenCode go provides Hy3 with 8X usage

https://opencode.ai/go
2•dares2573•1h ago•0 comments

Changes in shadow-utils password-expiration features

https://lwn.net/Articles/1086949/
1•pykello•1h ago•0 comments

Why Is Everyone in Silicon Valley Talking Like That?

https://www.theatlantic.com/technology/2026/08/ai-jargon-in-everday-speech/688358/
2•jonah•1h ago•0 comments

Limitless Telepresence with Minds to Space

https://limitlesstelepresence.com/
1•MaysonL•1h ago•0 comments

Indigenous Circuits

https://computerhistory.org/blog/indigenous-circuits/
1•lying4fun•1h ago•0 comments

The Sloppiest Thing About AI

https://blog.oxplot.com/the-sloppiest-thing-about-ai/
1•oxplot•1h ago•0 comments

Meta's app for creating generative AI minigames is now available in the US

https://www.engadget.com/2241098/meta-pocket-app-for-creating-generative-ai-minigames-available-i...
1•thm•1h ago•0 comments

Tesla discontinues its Solar Roof tiles, not economically viable

https://electrek.co/2026/08/20/tesla-discontinues-solar-roof-panels-only/
3•mfiguiere•1h ago•1 comments

Kafka Flow – An interactive visualization of Kafka

https://kafka-flow.com/
1•bytegogogo•1h ago•0 comments

Advertising Is Hard – a pay-to-rank leaderboard that resets every 90 days

https://advertisingishard.com
1•dylan_builds•1h ago•0 comments

Compress and Forget: Bitsandbytes Quantization Amplifies Proactive Interference

https://arxiv.org/abs/2608.18578
1•sbulaev•1h ago•0 comments

People prefer A.I. art because people prefer bad art (2024)

https://maxread.substack.com/p/people-prefer-ai-art-because-people
3•gavinsyancey•1h ago•3 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