frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: AlertChecker – get emailed when a plain-English statement comes true

https://alertchecker.com
1•alertchecker•57s ago•0 comments

Show HN: PyScrappy, self-healing web scraping selectors plus an MCP server

https://github.com/mldsveda/PyScrappy
1•vedaant00•2m ago•0 comments

Everything You Need to Know About 2-5 Horn Voicings

https://www.toshiclinchproductions.com/2-5-horn-voicings
1•lioeters•4m ago•0 comments

How Diplomats See the World

https://asteriskmag.com/issues/15/how-diplomats-see-the-world
1•sebg•5m ago•0 comments

Google's Favicon API

https://gist.github.com/iuzn/bbd4df2823bd69643a8553d6967f68eb
2•thecopy•10m ago•0 comments

What happens when an LLM never sees material beyond fifth grade?

https://littlelearner-ll.github.io/
7•porridgeraisin•11m ago•0 comments

A century after Goscinny, Asterix remains a witty guide to resisting authority

https://economictimes.indiatimes.com/opinion/et-commentary/a-century-after-goscinnys-birth-asteri...
2•thunderbong•15m ago•0 comments

Growth of CVEs fixed in Postgres looks exponential

https://twitter.com/samokhvalov/status/2088870235705319924
1•samokhvalov•18m ago•0 comments

A Third World Embedded Engineer Responds to RISC-V They Should Have Known Better

https://rvembedded.com/blog_post/12/
1•fork-bomber•20m ago•0 comments

I'm 15 building the place where ambitious people find the people build with

https://www.linkupbuild.com/
1•tanakabuilds•31m ago•0 comments

A portable, sensitive, low power, analog Geiger counter

https://ludens.cl/Electron/geiger2/geiger2.html
1•crorella•35m ago•0 comments

AI Agents have a half-life

https://construct.computer/blog/agent-task-half-life/
2•ankushKun•35m ago•0 comments

DOJ deploys tactic to strip naturalized Americans of citizenship [video]

https://www.youtube.com/watch?v=bZDq3e0wYgc
3•mgh2•38m ago•0 comments

Connecting my Illumos box to a Japanese ISP

https://skalski.dev/connecting-my-illumos-box-to-a-japanese-isp/
2•mskalski•39m ago•0 comments

An Anecdote Against Slop Artifacts

https://www.markusde.ca/pages/noslop.html
1•DamonHD•41m ago•0 comments

Is this the end of human code review?

https://arxiv.org/abs/2608.12440
1•bonjourjoel•44m ago•3 comments

Cloning could be used to save species–or make human "organ sacks"

https://www.technologyreview.com/2026/08/14/1141919/cloning-save-species-or-make-human-organ-sacks/
2•joozio•47m ago•0 comments

Show HN: See what your Linux machine measured at boot (through TPM eventlog)

https://jiankun.lu/eventlog-parser/
1•jklu•49m ago•0 comments

Two years as prime minister in a hit new game – then my cabinet deserted me

https://www.bbc.co.uk/news/articles/cq56pzqy6jvo
2•zeristor•51m ago•0 comments

Show HN: Laptop is the last place your secrets are still in plaintext

https://github.com/jitpass/jit
28•bukershok•53m ago•20 comments

Why Aging May Be a Program, Not a Breakdown

https://www.quantamagazine.org/why-aging-may-be-a-program-not-a-breakdown-20260814/
3•pykello•1h ago•0 comments

Beancount in Rust

https://rustledger.github.io
1•NamlchakKhandro•1h ago•0 comments

AI Stock Research Assistant · Streamlit

https://ai-stock-research-kiaan.streamlit.app
2•KiaanKothari•1h ago•1 comments

The Cell: Inside North Korea's Remote Worker Command Center

https://www.rubrik.com/blog/company/26/7/the-cell-inside-north-koreas-remote-worker-command-center
2•shivanshuag•1h ago•0 comments

Show HN: An Universal Linux Application Uninstaller

https://github.com/swadhinbiswas/veet
1•0xER•1h ago•0 comments

A leaked Composio key returned live Gmail, GitHub and CircleCI tokens

https://www.cyera.com/research/the-hidden-attack-surface-of-agentic-ai-securing-ai-agent-integrat...
2•shimi12•1h ago•0 comments

Want things to go well? Plan like a defensive pessimist

https://psyche.co/guides/want-things-to-go-well-plan-like-a-defensive-pessimist
2•vinhnx•1h ago•1 comments

A Jupyter kernel for C++ running in the Web browser (2025)

https://blog.jupyter.org/c-in-jupyter-interpreting-c-in-the-web-c9d93542f20b
1•theanonymousone•1h ago•0 comments

How to Overcome Your Brain's Fixation on Bad Things (2020)

https://greatergood.berkeley.edu/article/item/how_to_overcome_your_brains_fixation_on_bad_things
1•vinhnx•1h ago•0 comments

Big tech meets Milton Friedman

https://www.semafor.com/article/08/11/2026/big-tech-meets-milton-friedman
2•andsoitis•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