frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Trump signs EO for fewer childhood vaccines, falsely linking shots to autism

https://www.cnbc.com/2026/08/10/trump-vaccine-executive-order-autism.html
1•TrackerFF•2m ago•0 comments

Terence Tao creates his first meme

https://mathstodon.xyz/@tao/117068266071803252
2•u1hcw9nx•6m ago•0 comments

London still dominates Britain's datacenter map, but the regions are powering up

https://www.theregister.com/systems/2026/08/10/london-still-dominates-britains-datacenter-map-but...
1•01-_-•7m ago•0 comments

Anthropic's New Tool Could Expose AI-Written Novels

https://www.businessinsider.com/anthropic-watermarking-feature-stops-undetected-ai-generated-writ...
1•01-_-•8m ago•0 comments

CortexBrain: A monitoring pipeline that integrates with your AI agents

https://github.com/CortexFlow/CortexBrain
1•LorenzoTettaman•8m ago•1 comments

The US hired 2k gamers to fix the air traffic control crisis

https://www.polygon.com/fortnite-united-states-air-traffic-control/
1•croes•8m ago•0 comments

First measurement of antineutrinos from spent nuclear fuel

https://www.mpi-hd.mpg.de/mpi/en/public-relations/news/news-item/first-measurement-of-antineutrin...
1•croes•16m ago•0 comments

A Simple TODO Application

https://codemadness.org/todo-application.html
2•hskimse•16m ago•0 comments

Scope and Lifetime Restrictions in Swift

https://github.com/rjmccall/swift-evolution/blob/scope-restrictions/scope-restriction-models.md
1•matt_d•23m ago•1 comments

Unikernel

https://en.wikipedia.org/wiki/Unikernel
1•tosh•25m ago•0 comments

Australian Wealth Tracker

https://auravest.ai
1•mozzinator•26m ago•1 comments

Excited to see the results of the agent memory leaderboard

https://x.com/AgentMemoryL
1•IreneAI•27m ago•0 comments

An oil field became California's first carbon vault

https://calmatters.org/environment/2026/08/california-resources-corporation-carbon-terra-vault/
1•geox•27m ago•0 comments

Instant Sudoku

https://sudokuaz.com/
2•Boryto•29m ago•0 comments

The pain of integration with the Reddit API

https://growomat.com/blog/reddit-ads-api-integration-lessons
1•nickdefo•30m ago•0 comments

Show HN: XIRP Agentic Harness by Spotify

https://xirp.spotify.com/
2•slowey•31m ago•0 comments

Scientists find 200k barrels of radioactive waste in the ocean

https://geekspin.co/scientists-find-200000-barrels-of-radioactive-waste/
3•_tk_•33m ago•1 comments

helppeer.ai

https://helppeer.ai/llms.txt
1•tosh•35m ago•0 comments

The mathematical beauty of hyperbezier curves

https://linebender.org/blog/hyperbezier/
3•coffeeaddict1•37m ago•0 comments

Stealing Reasoning Traces from Proprietary LLM APIs

https://arxiv.org/abs/2608.09867
1•sbulaev•38m ago•0 comments

Notes from China, Q3 2026

https://milan.cvitkovic.net/china_notes_q3_2026/
2•ridiculous_leke•39m ago•0 comments

AI Slop Backlash Is Starting to Change Platform Policy

https://ai-updates.net/ai-slop-backlash-changing-platform-policy/
2•ashurandi•40m ago•0 comments

Ask HN: Anyone have solution to Opus verbosity in Claude Code?

2•firemelt•40m ago•0 comments

The mathematical physics of rainbows and glories(2001) [pdf]

https://tlakoba.w3.uvm.edu/AppliedUGMath/auxpaper_rainbow_glory_review.pdf
1•num42•42m ago•0 comments

Local models will not win

https://www.seangoedecke.com/local-models-will-not-win/?trk=feed_main-feed-card_feed-article-content
4•sylvainkalache•43m ago•1 comments

AI professors are negotiating the new realities of academic research

https://www.technologyreview.com/2026/08/10/1141597/ai-professors-are-negotiating-the-new-realiti...
4•joozio•43m ago•0 comments

Invoice Software for Freelancers – InvoiceAce v2 Released

https://invoiceace.app
1•nimsarajay•44m ago•0 comments

The Water Footprint of AI

https://doi.org/10.1016/j.watres.2026.125866
3•MASNeo•45m ago•0 comments

Looking for free TTS? Try this one

https://neuronai.uz/en/tts/
1•yutabek•46m ago•0 comments

Sign of the Times: An Account of the First (In the USA) Tech Workers' Strike

https://longhaulmag.com/first-tech-workers-strike/
3•chobeat•46m ago•0 comments
Open in hackernews

Show HN: API Testing and Security with AI

https://qodex.ai/
8•siddhant_mohan•1y ago

Comments

anuragdt•1y ago
Generating tests is good, but how to handle the updating tests? Also how will you handle the flakiness and side effects of AI models?
siddhant_mohan•1y ago
We handles flakiness with retries, smart waits, and isolation, while side effects are avoided using clean setups, teardowns, and state-safe mocks. Each tests scenarios are independent of each other and can be configured in a way to have prerequisite to setup the system and the post callback to cleanup the system

About updating test scenarios, we map it with your github commits and when a new commits come, we use the diff to figure out if tests failing are because of a bug or because of a new feature.

kshitijzeoauto•1y ago
It claims to plug into your CI pipeline, detect what changed, and generate relevant test cases using LLMs.

As someone who’s struggled with stale or missing tests—especially in fast-moving codebases—I find this idea quite compelling. But I’m also curious about how it handles:

Contextual understanding across large codebases (e.g., multiple modules touched in a PR) Avoiding flaky or non-deterministic tests Matching team-specific coding styles or conventions