frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Advect – autodiff for NumPy and Array API programs

https://yaugenst.github.io/advect/0.1.0/playground/
1•yaugenst-flex•1m ago•0 comments

Canada's wildfire season is taking a heavy toll on First Nations

https://grist.org/global-indigenous-affairs-desk/canadas-wildfire-season-is-taking-a-heavy-toll-o...
2•speckx•2m ago•0 comments

Curl: Nobody Wants to Work with Windows

https://www.heise.de/en/news/curl-Nobody-wants-to-work-with-Windows-11409147.html
2•smartmic•3m ago•0 comments

Professor turns childhood Double Dutch idea into a real machine [video]

https://www.youtube.com/watch?v=DKULb7zybBc
1•bryanrasmussen•3m ago•0 comments

Five Programming Books That Changed How I Think

https://adamtornhill.substack.com/p/five-programming-books-that-changed
3•birdculture•3m ago•0 comments

Grok Bot

https://twitter.com/bot/status/2087224798078517251
2•punnerud•6m ago•0 comments

Show HN: ThinkingType, an eval measuring if fonts change VLM judgments

https://github.com/wdanfort/thinkingtype
1•bwuckner-sf•6m ago•1 comments

Lightricks/LTX-2.5 – Video, Audio and World Simulation

https://huggingface.co/Lightricks/LTX-2.5
1•embedding-shape•6m ago•0 comments

An unreleased Anthropic model made progress on one of math's biggest unsolved

https://techcrunch.com/2026/08/11/an-unreleased-anthropic-model-made-progress-on-one-of-maths-big...
2•sbulaev•6m ago•0 comments

The whole of PyTorch on one page

https://tensor.khalilli.ai/blog/part-0-the-map/
5•akhalilli•8m ago•0 comments

Show HN: The Complexity Behind Products

https://s-1.vercel.app/
1•Altaba•9m ago•0 comments

Gamgee

https://www.ycombinator.com/companies/gamgee
2•ray__•10m ago•0 comments

Automated bookkeeping harness connected to mercury, whop, stripe and more

https://fionas.xyz/promotions
1•second_brain2•10m ago•0 comments

Zero Day Clock

https://zerodayclock.com/
3•mooreds•12m ago•0 comments

Hoover Dam is losing power. Inside the 'slowest-moving train wreck in history'

https://www.msn.com/en-us/money/general/ar-AA29M1PK
2•Stratoscope•12m ago•0 comments

Designing Connection Authentication for C1 Bridge

https://www.c1.ai/engineering/designing-connection-authentication-for-c1-bridge
1•russell_h•16m ago•0 comments

Game Developers Conference – Royalty Free Sound Effects

https://sonniss.com/gameaudiogdc/
3•hyperific•19m ago•0 comments

Search over the Visual World: off-the-shelf VLMs beat video embeddings

https://arxiv.org/abs/2608.08075
5•ashu_trv•21m ago•0 comments

Can you trust what AI tells you? [video]

https://www.youtube.com/watch?v=cIMlBw2nqfA
1•thesdev•21m ago•0 comments

Making Holograms with a Pen Plotter

https://blog.jordan.matelsky.com/Penplotter-holography/
2•DemiGuru•22m ago•0 comments

Personal Mac Security: Run a Practical Local Check

https://stackandink.com/blog/audit-personal-mac-security-nist-mscp/
1•Igor_Wiwi•23m ago•0 comments

When Crumbling Infrastructure Meets Cyber Exposure

https://controlsystemssecurity.com/posts/one-county-multiple-points-of-failure-2026-08-11.html
1•Glomz-guy•25m ago•0 comments

The Tradeoffs Facing Japan's Economy

https://www.emergingtrajectories.com/lh/japan-economy-tradeoffs/
12•cl42•26m ago•0 comments

OpenAI Brings ChatGPT Desktop App to Linux

https://www.phoronix.com/news/ChatGPT-Desktop-Linux-Preview
2•DemiGuru•26m ago•0 comments

Zap Rocks. Add Water. Get Clean Hydrogen

https://spectrum.ieee.org/stimulated-geologic-hydrogen
3•Jimmc414•27m ago•1 comments

Show HN: Pulp – Zero-allocation C11 telemetry engine (28M logs/SEC to disk)

https://github.com/superwired-labs/Pulp
2•superwired_labs•28m ago•1 comments

Operation Matryoshka: Russia using 'BBC news' fakes to pervert key German vote

https://euobserver.com/231951/operation-matryoshka-russia-using-bbc-news-fakes-to-pervert-key-ger...
2•01-_-•29m ago•0 comments

Weekend at Bernie's

https://nesbitt.io/2026/05/08/weekend-at-bernies.html
2•zbentley•29m ago•0 comments

Alpha Compute to buy gas rights for $55M data center campus

https://www.reuters.com/legal/litigation/alpha-compute-buy-pennsylvania-land-gas-rights-55-millio...
1•ashurandi•29m ago•0 comments

Microsoft August 2026 Patch Tuesday fixes 400 flaws, 3 zero-days

https://www.bleepingcomputer.com/news/microsoft/microsoft-august-2026-patch-tuesday-fixes-400-fla...
3•speckx•29m ago•0 comments
Open in hackernews

TDD inside the agent loop – theater or actual value?

https://martinfowler.com/articles/exploring-gen-ai/tdd-in-the-agent-loop.html
2•groomlake•54m ago

Comments

westurner•22m ago
I don't know why you would run an agent loop without TDD? Should you write code without test coverage? So something must run the tests to be sufficient anyway?

> TLDR; Based on Opus's judgment of the quality of the outcomes, there was no clearly discernable difference based on TDD workflow versus no TDD workflow. On the contrary, more than once Opus ranked the non-TDD workflow solutions slightly higher in design and test quality. There was also no meaningful difference in mutation scores across the solutions.

That's really surprising. Was there a difference in cost?

Does it matter whether you ask the agent to write the tests first or last? Is one way TDD and the other not?

Without property testing or fuzzing or formal methods, could the code metrics in this experiment have been sufficient?

Perhaps there's a TDD gauntlet loop that's as justified as tests for QC; https://news.ycombinator.com/item?id=49261545

groomlake•55s ago

  I don't know why you would run an agent loop without TDD? Should you write code without test coverage? So something must run the tests to be sufficient anyway?
You can have the agent write them after. The article is specifically about TDD, meaning writing a small test that will fail, making it pass, (refactoring), and repeating until the feature is finished.

  Was there a difference in cost?
The author claims TDD used 3x tokens, but points out it might not be 3x the cost due to caching. It's near the end of the article.