frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A proxy that makes Forgejo speak the GitHub API

https://github.com/ThatXliner/anvil
1•thatxliner•49s ago•0 comments

The AI founders who walked away from Bezos-backed Prometheus to model universe

https://www.reuters.com/business/ai-founders-who-walked-away-bezos-backed-prometheus-model-univer...
1•petethomas•4m ago•0 comments

Extension 'ms-VSCode-remote.remote-SSH' CANNOT use API proposal

https://github.com/microsoft/vscode/issues/329735
1•themostunique•8m ago•0 comments

Students prefer Gemini over ChatGPT and Claude for AI essays in blind tests

https://studyarena.com/blog/chatgpt-vs-claude-vs-gemini-college-essays-2026
1•pasharayan•8m ago•0 comments

BetterReads: Read/Import/Track/Understand

https://www.betterreads.online
1•zlu•10m ago•1 comments

Data Centers Are Driving an Alarming Gas Power Expansion in the US

https://www.wired.com/story/us-data-centers-drive-gas-power-expansion/
1•newsomix9xl•13m ago•0 comments

Neuromancer Official Teaser

https://www.youtube.com/watch?v=g79GPZSQHBk
2•wslh•14m ago•0 comments

Ask HN: What is one simple thing LLMs are insanely bad at?

4•davidest•14m ago•1 comments

Plans for nuclear-powered merchant ships must confront risks

https://www.nature.com/articles/d41586-026-02388-6
1•mmooss•15m ago•0 comments

What platform has the best AI CMO?

1•probablygrillin•19m ago•0 comments

ILSpy in the Browser

https://osenkov.com/ilspy/
1•l33t_d0nut•21m ago•0 comments

Visual Analysis of Binary Files

https://binvis.io/#/
1•vismit2000•21m ago•0 comments

Show HN: Implementation of Kimi K3 in PyTorch

https://www.youtube.com/watch?v=U6sobPCsdaY
1•prasoon21•24m ago•0 comments

Darkbloom (AI inference on idle Macs) – security audit with PRs submitted

https://gist.github.com/mudiam/1ffc898333ac3d5bdc5d7fac96d33360
2•mudiam•29m ago•0 comments

RL Environments are all you need

https://twitter.com/madiator/status/2084657077637746957
1•gmays•30m ago•0 comments

Libracy – An ad-free, minimalist book tracker without social feeds

https://play.google.com/store/apps/details?id=com.libracy.app&hl=en_US
2•cehnzzdev•36m ago•0 comments

AWS Activate Credits

https://aws.amazon.com/
4•m4sk1994•37m ago•0 comments

Scottish photographer shot portraits of Alabama gingers to find American unity

https://www.al.com/news/2026/08/scottish-photographer-shot-stunning-portraits-of-alabama-gingers-...
2•thunderbong•43m ago•1 comments

Show HN: Browser automation with no chromedriver and no Node driver

https://github.com/angeldevmobile/Orion
3•usxr1515•46m ago•0 comments

Bitcoin's $80k Test: A Renewed Rally Puts Prediction Markets on Alert

https://predx-article.fika.bar/bitcoin-s-80-000-test-a-renewed-rally-puts-prediction-mark-01M0VF5...
3•joeymabia1•47m ago•0 comments

RL Contributes to Illegible Reasoning Traces in Hard Problems

https://arxiv.org/abs/2510.27338
2•make3•49m ago•0 comments

Flipping Pages / Audrey Gu

https://audreygu.io/entry/flipping_pages
4•cwervo•53m ago•1 comments

Cursor drops mandatory arbitration and class-action waiver, sends disputes to TX

https://tostracker.app/briefing/anysphere-cursor-arbitration-removed-2026-08
2•tldrthelaw•55m ago•1 comments

Agentic Context Management: Memory and Cost as Architecture Problems

https://arxiv.org/abs/2607.21503
4•gdad•57m ago•1 comments

Curves of Constant Width

https://www.ztlawton.com/socw/curves-of-constant-width.html
4•vismit2000•58m ago•0 comments

Wikinews

https://en.wikipedia.org/wiki/Wikinews
4•wseqyrku•59m ago•3 comments

Dog Can Tell When You're Happy

https://time.com/article/2026/08/10/your-dog-can-tell-when-youre-happy/
3•gmays•1h ago•0 comments

Managed Deep Agents is now in public beta

https://www.langchain.com/blog/managed-deep-agents-is-now-in-public-beta
2•gmays•1h ago•0 comments

Think, Don't Speak

https://sspai.net/think-dont-speak/
4•firexcy•1h ago•1 comments

Terafab by Tesla

https://terafab.ai/
5•dhruv3006•1h 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