frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

One email to summarize all your emails

https://suminone.click/
1•evgy•35s ago•0 comments

We tried London's first driverless bus

https://www.londoncentric.media/p/londons-first-driverless-bus
1•BerislavLopac•3m ago•0 comments

We re living in a tick nightmare

https://www.nytimes.com/2026/07/11/opinion/ticks-disease-lyme-alpha-gal.html
1•yeknoda•4m ago•0 comments

I created a font called Ghost Font that only humans can read

https://twitter.com/ericlu/status/2075876651574210643
1•mcenedella•5m ago•1 comments

I miss post-internet art

https://spectator.com/article/i-miss-post-internet-art/
1•thinkingemote•7m ago•0 comments

Only 5L,If you want to take 5090 to college, Try this case – FE9 Build [video]

https://www.youtube.com/watch?v=McSLH-_unfk
1•ksec•8m ago•0 comments

Microsoft admits Windows 11 has a GDID tracker with no off switch

https://www.windowslatest.com/2026/07/10/you-cant-fully-disable-microsofts-gdid-windows-11-tracke...
1•GBiT•8m ago•0 comments

The crypto billionaires building a world where money buys you a vote

https://www.bbc.co.uk/news/articles/cly8eqyj8e2o
2•BerislavLopac•9m ago•0 comments

New York Times and Other Publishers Ask Court to Penalize OpenAI

https://www.nytimes.com/2026/07/09/technology/new-york-times-openai.html
1•1vuio0pswjnm7•12m ago•1 comments

Let's build a simple interpreter for APL – part 1

https://mathspp.com/blog/lsbasi-apl-part1
1•mpweiher•13m ago•0 comments

USAA closed 51% of home insurance claims without making a payment in 2025

https://www.expressnews.com/business/article/san-antonio-usaa-insurance-claims-rejected-22293061.php
2•gscott•13m ago•0 comments

Good Questions

https://www.economist.com/business/2026/07/09/the-secret-to-good-questions
1•andsoitis•13m ago•0 comments

40 Years of AVM/Fritz: From BTX Hobby Project to Router Icon

https://www.heise.de/en/news/40-Years-of-AVM-Fritz-From-BTX-Hobby-Project-to-Router-Icon-11357116...
1•sebastian_z•14m ago•0 comments

Dora Compliance for Email: Mapping Sender Authentication to Article 9-10-11

https://dmarcguard.io/blog/dora-email-authentication/
1•meysamazad•15m ago•0 comments

How the Rule-Breaking Octopus Is Rewriting the Evolution of Intelligence

https://nautil.us/how-the-rule-breaking-octopus-is-rewriting-the-evolution-of-intelligence-1282633
1•Brajeshwar•15m ago•0 comments

I was wrong about game development

https://mijndertstuij.nl/posts/i-was-wrong-about-game-development/
2•meysamazad•17m ago•0 comments

What I Expect from an Editor as a Programmer

https://plaindrops.de/blog/2026/programming/
1•meysamazad•17m ago•0 comments

How Does AI Work? [video]

https://www.youtube.com/watch?v=YmLp8qe87A0
1•luispa•18m ago•0 comments

Ask HN: My father died and I need to find my path

1•c4kar•18m ago•1 comments

Thomas Midgley Jr

https://en.wikipedia.org/wiki/Thomas_Midgley_Jr.
1•chistev•22m ago•0 comments

DoS Attack on Crates.io

https://status.crates.io/incidents/h2fxgl2jtc5q
2•garo-pro•25m ago•1 comments

PR Reminder Bot – Node.js tool that Slack-nags you about stale PRs

https://github.com/Enox77/pr-reminder-bot
1•Enox77•25m ago•0 comments

The world bank has ditched its climate targets

https://www.economist.com/finance-and-economics/2026/07/06/the-world-bank-has-ditched-its-climate...
1•andsoitis•26m ago•0 comments

Show HN: Agent OS – a local-first harness for reliable software agents

https://github.com/earthwalker17/agent-os
1•MonoEarthwalker•27m ago•0 comments

The largest available Minecraft world, totalling 15 TB

https://2b2t.place/1million
1•_____k•27m ago•0 comments

Litert.js, Google's High Performance Web AI Inference

https://developers.googleblog.com/litertjs-googles-high-performance-web-ai-inference/
1•simonpure•28m ago•0 comments

Can Nix Be a Better Arch Linux AUR?

https://grigio.org/can-nix-be-a-better-arch-linux-aur/
1•grigio•28m ago•0 comments

GitHub – PolymathicAI/The_well: A 15TB Collection of Physics Simulation Datasets

https://github.com/PolymathicAI/the_well/
1•bilsbie•31m ago•0 comments

Seaboard maker Roli fights to avoid second collapse

https://www.thetimes.com/business/companies-markets/article/seaboard-maker-roli-fights-to-avoid-s...
1•startupfreak•33m ago•0 comments

You Might Be a Late Bloomer

https://www.theatlantic.com/ideas/archive/2024/06/successs-late-bloomers-motivation/678798/
1•jaynate•35m 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