frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Linus Torvalds Reaffirms That Linux Is Not "Anti-AI"

https://www.phoronix.com/news/Linux-Is-Not-Anti-AI
3•moelf•2m ago•1 comments

Modelplane

https://modelplane.ai
3•hasheddan•7m ago•0 comments

Flock to Pay for Vandalized Flock Cameras

https://ipvm.com/reports/flock-pay-vandalized-cameras
2•jhonovich•7m ago•0 comments

People in Many Countries Now View China More Positively Than the U.S.

https://www.pewresearch.org/global/2026/07/15/people-in-many-countries-now-view-china-more-positi...
1•dabinat•9m ago•0 comments

AVAL: A new open-source format for interactive video on the web

https://pixelpoint.io/aval/
1•nopinsight•11m ago•0 comments

75% of PlayStation 3 games are now playable on PC

https://videocardz.com/newz/rpcs3-says-75-of-playstation-3-games-are-now-playable-on-pc
1•LordDefender•11m ago•0 comments

Does Anthropic Buy Legitimacy Through Hiring?

https://artificialrhetoric.substack.com/p/every-anthropic-hire-is-a-legitimacy
1•Ben_Pota•11m ago•0 comments

Language Server Protocol Specification – 3.18

https://microsoft.github.io/language-server-protocol/specifications/lsp/3.18/specification/
1•qbane•11m ago•0 comments

Capture Clauses as Effects (Rust)

https://blog.yoshuawuyts.com/capture-clauses-as-effects/
1•dabinat•12m ago•0 comments

Useful Is Not Sufficient

https://tante.cc/2026/07/15/useful-is-not-sufficient/
3•rapnie•13m ago•0 comments

Optimizing a Ring Buffer for Throughput (2021)

https://rigtorp.se/ringbuffer/
2•mattrighetti•16m ago•0 comments

Save Standard Time

https://savestandardtime.com/
2•throw0101d•16m ago•0 comments

Maybe we could tone down the JavaScript (2016)

https://eev.ee/blog/2016/03/06/maybe-we-could-tone-down-the-javascript/
1•downbad_•17m ago•0 comments

Do YC companies get preference on the homepage?

1•e_i_pi_2•17m ago•0 comments

American AI is expensive. Some startups are turning to cheap Chinese models

https://www.npr.org/2026/07/15/nx-s1-5886476/startups-cheap-chinese-ai-models
2•makerdiety•17m ago•0 comments

US Debt Clock Live

https://www.us-debt-clock.com/
2•ourmandave•17m ago•0 comments

When agents talk: tool calls, handoffs, and two wallets

https://www.kulikowski.me/blog/agents-talking-to-each-other
1•kinlan•18m ago•0 comments

Funny item co-occurrences in 3.2M Instacart orders

https://rogerdickey.com/funny-item-co-occurrences-in-3-million-instacart-orders/
1•rogerdickey•21m ago•0 comments

Show HN: Pullrun – Run OCI Images as Containers or Firecracker MicroVMs

https://github.com/pullrun/pullrun
2•liquid64•22m ago•0 comments

Eight Writers on Facing the Blank Page

https://www.youtube.com/watch?v=TDH7yAWsyG0
1•brudgers•22m ago•0 comments

Show HN: 3,225 trials of LLMs guessing author age – confident and wrong

https://github.com/BraveAnn011/llm-author-misattribution
1•BrianneLee011•24m ago•0 comments

Show HN: Stillwind – PCB part selection as constraint solving

https://stillwind.ai
5•hannesfur•24m ago•2 comments

Show HN: Summa, a tool that annotates over whatever you're reading

https://summa.josephruocco.net
2•jruocco•25m ago•1 comments

Vacuum of the Imagination: Why Space Rockets Could Have Flown Centuries Earlier

https://angadh.com/rockets-1
1•angadh•26m ago•0 comments

Show HN: Painterly – Turn pictures into digital paintings without generative AI

https://github.com/jbunke/painterly
2•flinkerflitzer•26m ago•0 comments

The Download: a useful quantum machine and a record-breaking subsea tunnel

https://www.technologyreview.com/2026/07/15/1140498/the-download-useful-quantum-computer-subsea-t...
1•joozio•26m ago•0 comments

Reverse Engineering Crazy Taxi, Part 3

https://wretched.computer/post/crazytaxi3
2•marklit•29m ago•0 comments

I Switched from Hugo to Astro

https://hmmr.online/posts/why-astro-not-hugo/
1•ZanderHammer•30m ago•0 comments

Rustwright: Playwright rewritten in Rust that uses 70% less memory

https://github.com/Skyvern-AI/rustwright
1•suchintan•30m ago•0 comments

Show HN: Zappio – a native iOS player for M3U/Xtream playlists

https://zappio.maritsol.at
1•zappio_iptv•32m ago•0 comments
Open in hackernews

How we're saving 50k$ of Claude API every month

https://github.com/regolo-ai/brick-SR1
3•FrancescoMassa•1h ago

Comments

FrancescoMassa•1h ago
Brick is a cheap & smart spatial router that plugged into claude code redirects the query to the best model in your pool. You can use it to save tokens, use other providers in claude code without changing models by hand or making your plans way longer in code time
danilovilhena•1h ago
How does it deal with prompt caching? Do you have any resource for this, I'd like to check it out.

I've heard changing models messes up caching and costs more.

verdverm•26m ago
If you switch models, you have no cache. There is no way to change this as they depend on sending the tokens through the weights and saving the computation results. Different model, different tokens, different weights, different calculation.
FrancescoMassa•13m ago
Actually yes because context is kept on kV cache
verdverm•5m ago
you cannot transfer KV cache from one model to another
FrancescoMassa•13m ago
For sure that’s absolutely true because you’re switching context from a kV cache to another one. We introduced 2 algorythms for solving this : 1) sticky : switches model only when convenient 2) smartsqueeze : fast advanced compression for reingesting context