frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Cursor removed cost information from the usage page and CSV export

https://forum.cursor.com/t/usage-page-to-token-amount-what/167153
172•EugeneOZ•2h ago•65 comments

The Art of 64-bit Assembly

https://nostarch.com/art-64-bit-assembly-v2
99•0x54MUR41•4h ago•48 comments

Kaisel – Routes as Values. Dart 3 Native Router for Flutter

https://kaisel.dev/
20•TheWiggles•1h ago•0 comments

Explorative modeling: Train on the best of K guesses

https://alexiglad.github.io/blog/2026/explorative_modeling/
35•DSemba•2h ago•8 comments

RipGrep musl binaries occasionally segfault during very-large searches

https://github.com/BurntSushi/ripgrep/issues/3494
187•throwaway2037•5h ago•124 comments

Pgtestdb's template cloning approach to testing is fast

https://brandur.org/fragments/pgtestdb
28•brandur•2h ago•8 comments

A Surveillance Treaty in Disguise: Canada Signs UN Cybercrime Convention

https://www.michaelgeist.ca/2026/07/a-surveillance-treaty-in-disguise-the-trouble-with-canadas-qu...
170•iamnothere•3h ago•86 comments

A directory of people who love RSS

https://andrewshell.org/2026/07/i-%e2%99%a5-rss/
103•speckx•1h ago•46 comments

Register deprivation: spills and runtime under forced register scarcity

https://rjp.io/blog/2026-07-19-register-deprivation
13•surprisetalk•2d ago•1 comments

Study uncovers lost 'golden age' of languages

https://news.yale.edu/2026/07/23/study-uncovers-lost-golden-age-languages
37•gmays•2d ago•32 comments

Charlie Stross – On the non-use of AI in my writing process

https://www.antipope.org/charlie/blog-static/2026/08/on-the-non-use-of-ai-in-my-wri.html
97•jwx48•5h ago•73 comments

Rear center fuel tank adds roughly 20k liters and extends range by 1k NM

https://www.airbus.com/en/newsroom/press-releases/2026-06-worlds-longest-range-aircraft-the-airbu...
24•r2sk5t•4d ago•23 comments

Manual: •.,:;?·

https://type.today/en/journal/dots
92•behnamoh•2d ago•19 comments

Flint: A Visualization Language for the AI Era

https://microsoft.github.io/flint-chart/
227•vinhnx•15h ago•65 comments

RamenHaus

https://ramen.haus/
173•oler•9h ago•84 comments

qm – Multiplayer agent harness for work

https://github.com/yc-software/qm
634•tosh•1d ago•146 comments

Kontigo (YC S24) Is Hiring

https://www.ycombinator.com/companies/kontigo/jobs/xAo6tMt-founding-engineer
1•jecastillof•6h ago

Solid Queue 1.6.0 now supports fiber workers

https://github.com/rails/solid_queue/releases/tag/v1.6.0
72•earcar•10h ago•31 comments

Linux on ESP32

https://github.com/GrieferPig/esp32-s31-linux
51•boveyking•4d ago•18 comments

A tiny holdout building in the middle of Macy’s is back in view

https://ephemeralnewyork.wordpress.com/2026/07/27/hidden-by-billboards-for-over-100-years-the-tin...
160•donohoe•3d ago•45 comments

Toast IDE Gets Markdown Spell Checking

https://github.com/paradise-runner/toast
5•dividedcomet•2h ago•2 comments

The development pipeline is a production system

https://sundry.jerryorr.com/2026/07/31/development-pipeline-is-a-production-system
140•firefoxd•14h ago•66 comments

Elevators

https://john.fun/elevators
1516•Jrh0203•1d ago•382 comments

Software for One

https://www.ajwaxman.com/writing/software-for-one
207•awaxman11•3d ago•210 comments

How to Exist

https://www.raptitude.com/2026/07/how-to-exist/
330•walterbell•17h ago•195 comments

Run Kimi K3 using 29 GB of RAM at 0.50 tok/s

https://github.com/sqliteai/waste
305•marcobambini•1d ago•147 comments

Astro Loop

https://pubdeer.com/
25•BaseBaal•5h ago•6 comments

G'mic 4.0: Squaring the Pixel, Easier

https://gmic.eu/gmic40/
74•dtschump•3d ago•4 comments

Ten advances in mathematics and theoretical computer science

https://openai.com/index/ten-advances-in-mathematics/
346•milkshakes•10h ago•229 comments

BMW Is Showing Commercials on Their Car's Dash Screens as a Treat

https://www.theautopian.com/bmw-is-showing-commercials-on-their-cars-dash-screens-and-they-want-y...
26•CharlesW•2h ago•12 comments
Open in hackernews

DNS propagation checker that shows the results as a box of 24 donuts

https://donutdns.com
4•axeldelat•1h ago

Comments

inigyou•1h ago
There is no such thing as DNS propagation, only DNS cache invalidation, and by polling it, you are making your old records stay in more caches and for longer.

BGP, on the other hand, propagates.

stavros•1h ago
Why does the cache mean "nobody requested this in a while, I can drop it" rather than "this may have changed upstream, I'll drop it"?
processunknown•1h ago
id guess that most resolvers have a least recently used (LRU) policy
stavros•1h ago
But they must still have a TTL, they can't just store stale records forever.
axeldelat•51m ago
You're right, it's TTL not LRU. The authoritative server publishes a TTL with the record — "you may keep this for N seconds" — and when it's up the resolver has to ask again no matter how popular it is.

LRU does show up in resolvers, but as memory management: cache is full, evict the least recently used early. It can only make something disappear sooner than its TTL, never later.

It's time-based because there's no back-channel. An authoritative server has no idea who's holding a copy of its records, so it can't push an invalidation.

stavros•50m ago
Yep, that's my mental model as well, thanks.
inigyou•24m ago
The server you are polling from may delegate the request to a server that has the old data in cache. Now the old data is in two caches.