frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Accountability

https://addisoncrump.info/research/on-accountability/
1•birdculture•49s ago•0 comments

Not American Enough

https://www.theatlantic.com/politics/2026/08/naturalized-citizens-ban-elected-office-trump/688415/
1•Jtsummers•50s ago•0 comments

Show HN: OpenWand – A mission to remove chat interface from working with AI

https://github.com/SunnyLich/OpenWand
1•OpenWand•1m ago•0 comments

There Aren’t Really 30 Million Vegetarians in Brazil

https://jacobeliason.com/posts/2026-08-27-vegetarians-in-brazil/
2•jcbe•2m ago•0 comments

Why social media harms are hard to regulate

https://www.dw.com/en/why-social-media-harms-are-hard-to-regulate/a-78482023
3•billybuckwheat•3m ago•0 comments

Rendering MNIST as a Matrix style screensaver

https://github.com/nathanrooy/mnist-matrix
1•squidhunter•3m ago•0 comments

Warp for Desktop and Cloudflare for Teams

https://blog.cloudflare.com/warp-for-desktop/
1•bagana•5m ago•0 comments

Ads and tracking infiltrated TVs. Now they're coming for monitors

https://arstechnica.com/gadgets/2026/08/ads-and-tracking-infiltrated-tvs-now-theyre-coming-for-mo...
2•theanonymousone•7m ago•0 comments

Anthropic Gets Ready to Vie for Defense Contracts Again

https://prospect.org/2026/08/27/anthropic-reenlists-for-war-defense-department-ai/
1•h2si•7m ago•0 comments

Single file apps with Gleam and Bun

https://alistair.sh/gleam-bun-apps
1•crowdhailer•7m ago•0 comments

Why do OpenAI's GPT-2 weights beat mine? Part four: digging into dropout

https://www.gilesthomas.com/2026/08/why-do-openai-gpt2-weights-beat-mine-4-ift-dropout
1•gpjt•8m ago•0 comments

I said Route 53 was a database. Colin took it personally

https://shitposting.ai/r53fs/
2•cperciva•8m ago•0 comments

A philosopher's guide to thinking for yourself in an age built to think for you

https://bigthink.com/series/full-interview/philosophy-of-stupidity/
2•thunderbong•9m ago•0 comments

Ask HN: Was Quad9 ECS down for anyone else today at UTC 1PM?

2•opengrass•9m ago•0 comments

NASA Astronaut Jonny Kim Departs Agency to Continue Military Service

https://www.nasa.gov/news-release/nasa-astronaut-jonny-kim-departs-agency-to-continue-military-se...
1•MarcoDewey•10m ago•0 comments

Liquid Glass and the Mac's low priority

https://ilyabirman.net/meanwhile/all/liquid-glass-on-mac/
1•speckx•11m ago•0 comments

We bought the same "verified" lead list three times

https://verdictonly.com/
1•jonasun147852•12m ago•0 comments

OpenAI's Reboot

https://time.com/article/2026/08/26/openai-sam-altman-interview/
1•giuliomagnifico•13m ago•0 comments

FSF job opportunity: Systems Integration Administrator

https://www.fsf.org/news/2026-job-opportunity-fsf-systems-integration-administrator
1•infognu•13m ago•0 comments

Welcome to Needle Nation

https://www.nytimes.com/2026/08/17/well/needle-injections-peptides-glp1-drugs-botox.html
1•bookofjoe•13m ago•1 comments

The flat-pack skyscraper: how wood can shape the cities of the future

https://www.theguardian.com/news/ng-interactive/2026/aug/27/the-flat-pack-skyscraper-how-wood-can...
1•pseudolus•15m ago•0 comments

Rob Pike's 5 Rules of Programming

https://web.archive.org/web/20260314210910/https://users.ece.utexas.edu/~adnan/pike.html
2•r3trohack3r•15m ago•0 comments

PS1 type rendering in Godot 4

https://calinp.eu/blog/psx-type-rendering/
1•Funes-•15m ago•0 comments

London: Drawn Like a Painting

https://sheets.works/data-viz/london
1•lordbubbles•18m ago•0 comments

How to Deploy Your Model

https://htdym.sailresearch.com/
1•bobstax•19m ago•0 comments

Anthropic Announces Hardware Interface Standard (Model Hardware Standard, MHS)

https://twitter.com/AnthropicAI/status/2093038426140651791
4•zof3•21m ago•0 comments

History of the Atlantic Cable and Undersea Communications

https://atlantic-cable.com/
1•CaesarA•22m ago•0 comments

Poll: Are You Aphantastic

3•andrewla•23m ago•4 comments

A Training Cluster for This Economy

https://derekrodriguez.dev/a-training-cluster-for-this-economy/
1•dwrodri•24m ago•0 comments

Don't use a free iPhone that just turns up at your home

https://appleinsider.com/articles/26/08/27/psa-dont-use-a-free-iphone-that-just-turns-up-at-your-...
3•speckx•25m ago•0 comments
Open in hackernews

I measured what my Claude.md, skills and hooks are worth

https://github.com/jameskomo/config-drift-checker
8•smartwordworld•53m ago

Comments

smartwordworld•53m ago
This came out of a simple question I could not answer: after a Claude Code release, does my setup still do what I think it does?

My CLAUDE.md, a conventions skill and a guard hook are how code gets written on my projects now. Claude Code shipped 25 versions in the last 30 days, the model behind an alias changes with no changelog, and a teammate can edit a skill in a PR nobody tests. The only signal I had was "it feels different".

So I built config-drift-checker. It writes eval cases from your existing setup (Anthropic's own claude plugin eval format), runs the real agent against them in a throwaway copy of your repo, and a GitHub Action re-runs them on every Claude Code release and every PR that touches the setup. Red check, PR comment, an HTML report with every grader's verdict and the model's response. Your machine, your CI, your API key. No server.

The part I found most useful was running the cases with and without the setup loaded. On a small Spring Boot service: the guard hook was the only thing that reliably stopped git reset --hard (1.00 with, 0.33 without). The conventions skill changed how a three-file feature came out (1.00 vs 0.50). A negative case confirmed the skill does not fire on a Dockerfile request.

Things I learned that I did not expect: - Scores lie without reasons. A hook test passed, then 8 of the next 9 runs showed the model refusing the command on its own before the hook ran. Same score, different cause. The report keeps the reasons for this. - Eval workspaces are not sandboxes. A run without the hook once tore down a real Docker stack from a temp directory because the compose file pinned a project name. There is now a safety net in every run. - Graders fail for the wrong reason more often than setups do: prose that quotes the rule, negations, nested parentheses in Java signatures. You want to re-score, not re-run.

wiradikusuma•12m ago
Isn't this what `/doctor` supposed to do?