frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: MakerStack: a pay-once maker page (SSR, OG images, custom domains)

https://makerstack.altuzar.dev/
1•altuzar•1m ago•0 comments

The Rise of Zero Fertility Desire in China

https://www.researchsquare.com/article/rs-8921502/v1
2•toomuchtodo•3m ago•2 comments

An honesty-first pipeline for AI-transcribing a small letter archive

https://aboxofletters.com/
1•tangentdesignco•4m ago•0 comments

Sovereign and European AI where your Data Stays under European law

https://melious.ai/
1•marcfrommelious•5m ago•0 comments

Freelance front end and GenAI dev, open for client work

http://upwork.com/freelancers/surajg3
1•gsuraj•6m ago•0 comments

BorrowSanitizer Status Update – July 2026

https://borrowsanitizer.com/status/july_2026.html
1•arto•6m ago•0 comments

2026 Europhysics Prize honors discovery of third fundamental class of magnetism

https://www.eurekalert.org/news-releases/1137502
2•bookofjoe•10m ago•0 comments

Why Casper forked Rust's rand crate

https://casualhacks.net/blog/2026-07-27-why-i-forked-rand.html
1•fanf2•11m ago•0 comments

Show HN: Free AI Prompt Gen – A local-first, open-source prompt engineering tool

https://freeaipromptgen.com/
2•linuxterminal•12m ago•0 comments

Visa to Cut 7% of Workforce

https://www.bloomberg.com/news/articles/2026-07-28/visa-to-cut-7-of-workforce-as-ceo-seeks-to-rev...
2•tosh•15m ago•0 comments

An Odd Kind of Sympathy

https://willthefirst.github.io/synchronizing-metronomes/
1•willthefirst•15m ago•0 comments

Nimdai: Renowned British Gurkha climber and Netflix star confirmed dead

https://news.sky.com/story/nirmal-purja-former-british-special-forces-soldier-dead-after-avalanch...
1•frogfish•15m ago•0 comments

HTML Day 2026 Shanghai

https://rect.repair/html-2026/
1•adrianhon•16m ago•0 comments

Show HN: AllMCPs – Directory of MCP Servers

https://allmcps.com
1•ghosts_•23m ago•0 comments

U.S. lawmakers request information from DoorDash on use of Chinese AI models

https://www.cnbc.com/2026/07/31/us-lawmakers-doordash-chinese-ai-models.html
1•tito•24m ago•0 comments

Scott Jenson – How the Desktop UX needs to evolve [video]

https://www.youtube.com/watch?v=-IOLRcFC6OY
1•JeremyTheo•24m ago•0 comments

AI Has Passed Every Exam. It Has Never Had an Idea

https://manasbihani.substack.com/p/ai-has-passed-every-exam-it-has-never
4•manasb25•26m ago•0 comments

My Personal Software Journey: Self-Hosting Agent-Built Apps on a Mac Mini

https://metedata.substack.com/p/016-my-personal-software-journey
2•young_mete•28m ago•0 comments

A Country Within Myself

https://www.metanoia-research.com/dispatch-005-a-country-within-myself/
2•metanoia_•29m ago•0 comments

Ask HN: When did we go from agentic loops to graphs?

1•grandimam•29m ago•0 comments

Explosive donated to museum brings bomb squad to Eudunda Family Heritage Gallery

https://www.abc.net.au/news/2026-07-31/historian-discovers-explosive-in-museum-donations-sa/10696...
1•Tomte•29m ago•0 comments

The Screen Act Threatens Privacy Far Beyond Adult Websites

https://www.eff.org/deeplinks/2026/07/screen-act-threatens-privacy-far-beyond-adult-websites
2•Brajeshwar•29m ago•0 comments

Show HN: Agentmetry – local-first flight recorder for AI coding agents

https://agentmetry.ai/
1•blitzcrieg1•33m ago•0 comments

Did you know about Dulus? The AI harness that is giving free agentic AI?

1•devdulus•34m ago•0 comments

Dates That Don't Exist (2015)

https://blog.yossarian.net/2015/06/09/Dates-That-Dont-Exist
2•EndXA•34m ago•0 comments

The Future of Technosignature Searches: Constraining the Fermi Paradox

https://arxiv.org/abs/2606.00463
1•root-parent•38m ago•0 comments

Ruby on Rails RCE

https://github.com/rails/rails/security/advisories/GHSA-xr9x-r78c-5hrm
1•campuscodi•38m ago•0 comments

In Turkey, your coffee comes with a side of destiny

https://www.cnn.com/2025/08/26/travel/turkey-coffee-istanbul-ottoman-empire
2•koolhead17•40m ago•0 comments

Earth Overshoot Day

https://en.wikipedia.org/wiki/Earth_Overshoot_Day
2•soupspaces•40m ago•0 comments

Datacenters in Space

https://cacm.acm.org/news/datacenters-in-space/
2•visha1v•41m ago•0 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•52m 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•52m 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•45m ago
id guess that most resolvers have a least recently used (LRU) policy
stavros•44m ago
But they must still have a TTL, they can't just store stale records forever.
axeldelat•35m 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•33m ago
Yep, that's my mental model as well, thanks.
inigyou•8m 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.