frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Economic growth is a power law

https://julienreszka.github.io/economic-simulator/armey-curve.html
1•julienreszka•4m ago•0 comments

Why C Remains the Gold Standard for Cryptographic Software

https://www.wolfssl.com/why-c-remains-the-gold-standard-for-cryptographic-software/
2•LinuxJedi•6m ago•1 comments

40 Years Ago, a Nuclear Catastrophe at Chernobyl

https://www.nytimes.com/2026/04/26/world/europe/40-years-ago-a-nuclear-catastrophe-at-chernobyl.html
1•HelloUsername•7m ago•0 comments

Codex MSN Interface

https://codexmessenger.net/
1•blef•12m ago•0 comments

Headless websites and the cost of engineering vanity

https://www.jonoalderson.com/conjecture/headless-websites/
1•misone•13m ago•0 comments

Quick tutorial to get a blog online from Org Mode thanks to Org Social

https://en.andros.dev/blog/c68f00c3/quick-tutorial-to-get-a-blog-online-from-org-mode-thanks-to-o...
1•andros•14m ago•0 comments

APL is more French than English

https://www.jsoftware.com/papers/perlis78.htm
1•tosh•15m ago•0 comments

The Knight Programming Language

https://github.com/knight-lang/knight-lang/tree/master
1•tosh•16m ago•0 comments

Exposing Floating Point – Bartosz Ciechanowski

https://ciechanow.ski/exposing-floating-point/
2•subset•19m ago•0 comments

Seven database engines in a single Rust binary

https://github.com/nodeDB-Lab/nodedb
1•mansarip•23m ago•0 comments

Tip: Web requests should not be measured in Hz [Hertz]

https://mastodon.catgirl.cloud/@sophie/116467789133733136
1•robin_reala•26m ago•0 comments

Self-Updating Screenshots

https://interblah.net/self-updating-screenshots
1•bjhess•38m ago•1 comments

Open grid data has a public benefit

https://nworbmot.org/blog/open-grid-data.html
1•lyoncy•38m ago•0 comments

Airprompt – SSH into your Mac from your phone for AI agent prompts

https://www.npmjs.com/package/airprompt
2•hatefrad•41m ago•1 comments

Show HN: A community powered global network of probes

https://github.com/jsdelivr/globalping
1•jimaek•43m ago•0 comments

The Scrum-to-POM Transition Is a Role Repositioning Event

https://age-of-product.com/scrum-to-pom-transition/
1•swolpers•44m ago•0 comments

Pytest-cloudreport – local HTML reports and flaky-test detection for pytest

https://github.com/ahmad212o/pytest-cloudreport
1•ahmad212o•46m ago•0 comments

Blueprint: AI Hardware Design

https://www.blueprint.am/
1•handfuloflight•49m ago•0 comments

US is making Europe pay dearly for its half-hearted electrification

https://www.programmablemutter.com/cp/195461224
2•hackandthink•51m ago•0 comments

The reporters at this news site are AI bots. OpenAI's super PAC is funding it

https://twitter.com/TheMidasProj/status/2047692328396034490
1•pretext•56m ago•0 comments

San Francisco must preserve the birthplace of the Mission burrito

https://www.sfchronicle.com/food/restaurants/article/el-faro-mission-burrito-creator-22206173.php
3•divbzero•56m ago•0 comments

Enterprises Are Rethinking Kubernetes

https://www.infoworld.com/article/4161056/enterprises-are-rethinking-kubernetes.html
3•milkglass•59m ago•0 comments

Talk a stranger for fun or everything else

https://bakbak.fun/
3•chintan39•1h ago•1 comments

The West Forgot How to Make Things. Now It's Forgetting How to Code

https://techtrenches.dev/p/the-west-forgot-how-to-make-things
87•milkglass•1h ago•32 comments

The Coding Assistant Breakdown: More Tokens Please

https://newsletter.semianalysis.com/p/the-coding-assistant-breakdown-more
1•gmays•1h ago•0 comments

WTF Are Metaballs?

https://www.youtube.com/watch?v=LW03EEKjy9o
2•gdubs•1h ago•3 comments

Iran war hits Dubai chocolate pistachio supplies

https://www.ft.com/content/438ef32a-59e5-41b3-a0da-569716385347
1•KnuthIsGod•1h ago•0 comments

CO operating system age-verification open-source exemption doesn't include Linux

https://twitter.com/LundukeJournal/status/2048199650117554678
6•gasull•1h ago•0 comments

Why Rome Never Industrialized [video]

https://www.youtube.com/watch?v=uR8-AF6NJcc
2•Khaine•1h ago•1 comments

A Taiwanese Vestige in the Geedge Supply Chain

https://interseclab.org/research/madlink-a-taiwanese-vestige-in-the-geedge-supply-chain/
3•gslin•1h ago•0 comments
Open in hackernews

Show HN: API Testing and Security with AI

https://qodex.ai/
8•siddhant_mohan•11mo ago

Comments

anuragdt•11mo 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•11mo 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•11mo 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