frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ShinyHunters tells The Reg: We hacked the FBI to 'protect our business'

https://www.theregister.com/cyber-crime/2026/09/25/shinyhunters-tells-the-reg-we-hacked-the-fbi-t...
1•geekinchief•15s ago•1 comments

Canadian language school files for bankruptcy, leaving students stranded

https://www.cbc.ca/news/canada/british-columbia/language-school-bankrupcy-9.7351082
1•hmokiguess•2m ago•0 comments

Created an online job aggregator platform and I need ideas

https://labelingjobs.net
1•nikolaospet•3m ago•0 comments

Show HN: Paper-docx – agent-native Python-docx fork with 78% fewer DOCX failures

https://github.com/paper-instruments/paper-docx
2•i_rush_carriers•3m ago•0 comments

Beef Grading Shields

https://www.ams.usda.gov/grades-standards/beef/shields-and-marbling-pictures
1•kamaraju•4m ago•0 comments

Show HN: CK3DNA – searchable CK3 character DNA and coat of arms codes

https://ck3dna.com/
1•richardharmer•7m ago•1 comments

Approaching a 10 Second Linux Kernel Build

https://www.phoronix.com/review/near-10-sec-kernel-build
1•fork-bomber•7m ago•0 comments

Show HN: Digitron – a virtual analog synth and sequencer

https://apps.apple.com/us/app/digitron-synthesizer/id6737997923
1•sillydevices•7m ago•0 comments

AI Infra Is Nothing Like the Classic Cloud Infra

https://ramansharma.substack.com/p/ai-infra-is-nothing-like-the-classic
1•intrepidsoldier•7m ago•0 comments

Lobsters: Rename vibecoding to LLMs (Greasemonkey script)

https://greasyfork.org/en/scripts
1•birdculture•8m ago•0 comments

Bringing HTTP's caching rules to DuckDB functions with VGI

https://query.farm/blog/http-caching-duckdb-vgi/
1•rustyconover•10m ago•0 comments

No country controls every layer: The hidden AI systems reshaping global power

https://www.abc.net.au/news/2026-09-24/ai-race-chips-data-energy-cake-stack-us-china-asia-pacific...
1•greysunsets•11m ago•0 comments

Fedora considers replacing LibreOffice with Collabora Office

https://digitalescapetools.com/2026/09/fedora-libreoffice-collabora-office-debate.html
1•xabd•11m ago•0 comments

Trump administration gutted data collection on US education

https://www.theguardian.com/us-news/ng-interactive/2026/sep/25/student-math-reading-test-scores
6•nxobject•12m ago•0 comments

Code is the future and present of hardware engineering

https://charlesazam.com/blog/engineering-as-code-manifesto/
1•couAUIA•12m ago•0 comments

Zelensky says Russia has widened attacks to hit Ukraine's data centres

https://www.bbc.com/news/articles/c84gkwgk7d06o
12•dabinat•12m ago•0 comments

Show HN: Get a .has-a.computer sub-domain for your website

https://has-a.computer/
1•aspizu•12m ago•0 comments

Poor Privacy Practices Leaves Revolut Customers Vulnerable (2020)

https://safereddit.com//r/Revolut/comments/gu5yyw/very_poor_privacy_practices_leaves_revolut/
1•exceptione•14m ago•1 comments

Drex: Open jev-like claims win on decision index

https://www.nace.ai/drex
1•rgbrgb•15m ago•0 comments

Gaming is expensive, ya, I'm Good

https://yaimgood.bearblog.dev/gaming-is-expensive-ya-im-good/
1•speckx•16m ago•0 comments

Show HN: Obsidian Plugin for OpenModelica

https://community.obsidian.md/plugins/modelica-studio
1•cs3f16•16m ago•0 comments

New photos show damage at U.S. positions caused by Iranian attacks

https://www.cbsnews.com/news/new-photos-damage-u-s-kuwait-saudi-arabia-iran-drone-missile-attacks/
1•johnny313•18m ago•0 comments

Ask HN: Which model do you use for work?

2•george_max•18m ago•2 comments

Microsoft disrupts AI-assisted platform that compromised 12,000 accounts

https://arstechnica.com/security/2026/09/microsoft-disrupts-ai-assisted-platform-that-compromised...
2•noashavit•18m ago•0 comments

Resell sneakers until you're a billionaire on OBLOCK

https://mattbusel.itch.io/oblock
1•Shmungus•18m ago•1 comments

Cambridge Analytica 2.0 – When the AI Assistant Becomes a Intelligence Graph

https://futurium.ec.europa.eu/en/apply-ai-alliance/community-content/cambridge-analytica-20-when-...
1•sangamdas•21m ago•0 comments

Levyra: Open-source music player for Android and Windows

https://github.com/LUC4N3X/Levyra-deepsound
1•LUC4N3X•22m ago•0 comments

Best TV shows of the 21st century

https://www.nytimes.com/interactive/2026/arts/television/best-tv-shows-21st-century.html
1•dewey•25m ago•0 comments

Treat Agents Like Direct Reports

https://toppingdesign.com/writing/agents-are-reports/
1•audionerd•25m ago•0 comments

Sherline Auction of Its Manufacturing Machines

https://www.bidspotter.com/en-us/auction-catalogues/american-auctioneers-group/catalogue-id-bscam...
2•mhb•25m ago•0 comments
Open in hackernews

Show HN: Stop shipping AI slop, Executor makes agents prove it works

https://github.com/Atri10/executor
1•LambdaLogic•1h ago

Comments

LambdaLogic•1h ago
AI slop in code has a pretty recognizable shape: code that was never actually verified, merged because the agent sounded confident.

“Done, all tests pass.”

Except they don’t.

It’s usually not malicious. The agent just can’t reliably tell the difference between what it intended to do and what it actually did. So the fix isn’t necessarily a better prompt. It’s taking verification authority away from the agent itself.

That’s what The Executor does.

It’s a set of Markdown skills + POSIX bash scripts that takes a feature through:

intake → spec → plan → execution → review → verification → handoff

The important part is that state transitions are enforced by scripts that fail with a non-zero exit code, rather than by instructions the agent is expected to follow.

It works with Claude Code, Codex, or pretty much any harness that can read skill files. No daemon. No SaaS.

How it makes agents prove their work:

Reviewers see the diff, not the implementer’s claims.

The implementation agent’s “looks good” report is not evidence. Review verdicts are stored as files, and a FAIL verdict physically blocks exec-branch merge. The merge command simply refuses to run.

Every finding has to point somewhere specific.

There’s one ID namespace per initiative, and every finding references the exact spec requirement it violates.

For example:

INIT-0004-P01-T03-R02 fails INIT-0004-SPEC-01-R07

No vague “this doesn’t look right” findings with nowhere to attach them.

Verification happens from scratch.

Each spec criterion gets its verification command run against the current commit, producing one of:

PROVEN / FAILED / NOT-RUN / UNAVAILABLE

And this matters: a single NOT-RUN means you cannot call the feature “complete.” Nothing gets upgraded by inference.

Fix loops don’t continue forever.

At round 4, the process escalates to a different model. Hitting the cap requires an explicit recorded ruling, so findings can’t just disappear because the agent got tired of fixing them.

Context resets don’t reset reality.

After a context reset or model switch, the controller re-reads the ledger instead of trusting the model to remember what happened.

exec-run check audits the registry, ledger, and verdict files against each other and exits with 1 while naming the inconsistency.

There is a cost, though: ceremony and tokens.

This isn’t really for “change one line and ship.” It’s aimed at features that live for days and pass through multiple rounds of implementation, review, and verification.

MIT licensed.

Roast it. Where does this break down at your scale?