frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Meta can't stop states' $1.4T lawsuit from going to trial

https://arstechnica.com/tech-policy/2026/08/meta-cant-stop-states-1-4-trillion-lawsuit-from-going...
1•oenton•1m ago•0 comments

World Encyclopaedia of Puppetry Arts

https://wepa.unima.org/en/
1•nephihaha•2m ago•0 comments

Rootless Container Sandbox for Claude Code and Codex

https://www.reddit.com/r/ClaudeAI/comments/1vm2w0e/a_lightweight_rootless_container_sandbox_for/
1•syumei•5m ago•0 comments

CVE-2026-53361 AF_Unix GC vs. MSG_PEEK use-after-free container escape

https://github.com/sgkdev/bad_garbage
1•eyberg•6m ago•0 comments

DoorDash Flux: Delegating Engineering Work to Cloud Based Agents

https://careersatdoordash.com/blog/delegating-engineering-work-to-cloud-based-agents/
1•rayval•6m ago•0 comments

DARPA heavy lift challenge ends with winner at a 3.84:1 payload to weight ratio

https://dronexl.co/2026/08/10/darpa-lift-challenge-results-avidrone/
1•daau•10m ago•0 comments

LSPs for LLMs

https://ianbarber.blog/2026/08/11/lsps-for-llms/
1•matt_d•12m ago•0 comments

Hannah Arendt's American Education

https://www.newyorker.com/magazine/2026/08/17/hannah-arendt-life-of-the-mind-thomas-meyer-book-re...
1•mitchbob•13m ago•1 comments

Supreme Computation – Fail-closed governance for AI execution

https://github.com/KnowledgeeKZA3224/scqos-reference-implementation
1•Knowledgee_KZA•13m ago•0 comments

Trump's childhood vaccine order: what it does and what doctors say

https://www.reuters.com/legal/litigation/trumps-childhood-vaccine-order-what-it-does-what-doctors...
1•gverrilla•14m ago•0 comments

Ask HN: How do you handle uncertain GPU capacity needs months in advance?

1•plainviewinstru•19m ago•0 comments

Spy cameras on Royal Navy drones sent data to China

https://www.telegraph.co.uk/news/2026/08/09/spy-cameras-on-navy-drones-secretly-sent-data-to-china
2•delichon•19m ago•0 comments

Show HN: DisplayWave – open-source and simple tool for Mac display management

https://github.com/kah-ve/DisplayWave
1•warpbin•22m ago•0 comments

Show HN: Memftprt, a consistent, process-tree-wide memory footprint on Linux

https://github.com/menzew/memoryfootprint
1•benzewdu•27m ago•0 comments

Measuring the Wrong Thing: Internal Harmfulness Scores Anti-Rank Successful

https://arxiv.org/abs/2608.09624
1•sbulaev•31m ago•0 comments

I built a PII pdf parser for your agent

https://www.pdfagent.net/
2•mattmerrick•32m ago•1 comments

Male redback spider's dramatic death somersault during sex coded in its DNA

https://www.abc.net.au/news/science/2026-08-12/redback-spiders-backflip-katipo-sex/107022976
3•Gaishan•32m ago•0 comments

Move 37 Is the Moment AI Changes Everything. It's Suddenly Happening Everywhere

https://www.wsj.com/tech/ai/move-37-ai-demis-hassabis-google-deepmind-alphago-ec832a41
2•RyanShook•33m ago•0 comments

Dogs can tell when you're happy, sad or frustrated

https://www.washingtonpost.com/lifestyle/2026/08/11/dogs-can-tell-when-you-happy-scared-or-sad-ne...
4•wslh•33m ago•2 comments

Crew, a multiplayer workspace for humans and AI agents to work together

https://github.com/JamelHammoud/crew
2•alihammoud21•38m ago•0 comments

The 7T AI Gamble Is Failing. Big Tech Is Trapped

https://www.youtube.com/watch?v=OunJtLnyPT4
4•cable2600•41m ago•0 comments

The StubHub Customers Who Battled for Tickets–and Battle Harder for a Refund

https://www.wsj.com/business/stubhub-tickets-resell-refund-de5ef8c3
2•fortran77•41m ago•1 comments

Talk to ELIZA

https://findingeliza.org/try.html
3•droidjj•50m ago•0 comments

Statin use vs. death rate from cardiovascular diseases (2019)

https://ourworldindata.org/grapher/statin-use-cardiovascular-disease-death-rate
6•js2•50m ago•1 comments

We found a bug in FFmpeg with a vibecoded fuzzer

https://code.ffmpeg.org/FFmpeg/FFmpeg/issues/23945
4•dclavijo•54m ago•0 comments

What job postings say about AI at work – Live report

https://corvi.careers/reports/ai-job-trends/
1•sp1982•59m ago•0 comments

Ask HN: Could DNA be represented as "an embedding" in an AI model?

3•greenmoonx•1h ago•1 comments

Electric is joining team Neon at Databricks

https://neon.com/blog/electric-joins-neon
2•thunderbong•1h ago•0 comments

Show HN: Copero Game: Free Football Career Simulator

https://coperogame.com/en
1•light001•1h ago•0 comments

A carbon nanotube network combines fracture resistance with extreme hardness

https://www.ibtimes.sg/china-scientists-create-unbreakable-crystal-stronger-diamond-how-it-works-...
1•yogthos•1h 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