frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Native Svelte Apps with Bare

https://github.com/holepunchto/sveltekit-adapter-bare
1•Drache93•1m ago•0 comments

Why Modbus Refuses to Die

https://flowfuse.com/blog/2026/01/why-modbus-still-exist/
1•swq115•1m ago•0 comments

Furniture in the Closet.

https://substack.news-items.com/p/furniture-in-the-closet
1•petethomas•2m ago•0 comments

Richard Feynman and the Connection Machine (2017)

https://longnow.org/ideas/richard-feynman-and-the-connection-machine/
1•tosh•2m ago•0 comments

Show HN: Suparagent AI- Alternative to Manus and Genspark

https://suparagent.ai/
1•sunny678•2m ago•0 comments

Anthropic Testing Removing Claude Code from Pro Plan

https://arstechnica.com/ai/2026/04/anthropic-tested-removing-claude-code-from-the-pro-plan/
1•lightbulbish•4m ago•0 comments

Data-Parallel Thinking (2024) [pdf]

https://gfxcourses.stanford.edu/cs149/fall24content/media/dataparallel/08_dataparallel_uvO76Qr.pdf
1•tosh•4m ago•0 comments

Bitwarden CLI NPM package has been compromised

https://opensourcemalware.com/npm/@bitwarden/cli
4•6mile•4m ago•1 comments

Warren Buffett: Why Stocks Beat Gold, Bonds and Bitcoin (2018)

https://acquirersmultiple.com/2018/01/warren-buffett-why-stocks-beat-gold-bonds-and-bitcoin/
1•andsoitis•6m ago•0 comments

Machining Mechanisms in Field-Assisted Cutting of Brittle Materials

https://www.mdpi.com/2072-666X/17/3/361
1•PaulHoule•6m ago•0 comments

Indonesia set to rule on Wikipedia access following Thursday talks

https://theonlinecitizen.com/2026/04/23/indonesia-set-to-rule-on-wikipedia-access-following-thurs...
1•exploraz•8m ago•0 comments

Local firewall that blocks sensitive data from leaving via AI agents

https://github.com/Katherine-Holland/ClaudeCoworkGuard
1•coworkguard•8m ago•0 comments

Recursive Self-Improvement

https://www.hyperdimensional.co/p/on-recursive-self-improvement-part
1•andsoitis•8m ago•0 comments

Creating Baby Geniuses to Thwart the AI Threat?

https://www.motherjones.com/politics/2026/04/gene-editing-optimization-thiel-altman-armstrong-and...
1•speckx•9m ago•1 comments

Show HN: Allplix – 60 file tools that run in the browser

https://www.allplix.com/en
1•shadoxise•10m ago•0 comments

Show HN: DecisionBox – Autonomous AI agent runs data discovery on your warehouse

https://github.com/decisionbox-io/decisionbox-platform
2•seltug•12m ago•0 comments

Ask HN: Are LLMs Just Philosophical Zombies?

1•slipknotfan•13m ago•2 comments

Regression Testing – An Introductory Guide

https://keploy.io/blog/community/regression-testing-an-introductory-guide
1•sophielane•13m ago•0 comments

The Quiet Standardization of AI Agent Skills

https://www.agensi.io/learn/the-quiet-standardization-of-ai-agent-skills
1•Samuellrose•13m ago•0 comments

Forge: CLI for Multiple Git Forges

https://nesbitt.io/2026/03/13/forge.html
1•8organicbits•13m ago•0 comments

Gecko: A fast GLR parser with automatic syntax error recovery

https://vnmakarov.github.io/parsing/compilers/c/open-source/2026/04/22/gecko-glr.html
1•ibobev•13m ago•0 comments

The Billionaire Math Geek Who Turned AI into a Money-Printing Machine

https://www.wsj.com/finance/alex-gerko-xtx-markets-ai-d155626a
2•pondsider•14m ago•0 comments

RGC-Basic v2.0: Mod Tracker Music and Modern Games Capabilities

https://retrogamecoders.com/announcing-rgc-basic-v2/
2•ibobev•14m ago•0 comments

We Removed the Immune System

https://gothburz.substack.com/p/we-removed-the-immune-system
1•gmays•15m ago•1 comments

GameHub – Play Windows Games on Mac

https://www.gamemac.com/en/
1•norman784•15m ago•0 comments

The Atari 1200XL

https://www.goto10retro.com/p/inside-the-atari-1200xl
2•ibobev•15m ago•0 comments

Anthropic: Long-running Claude for scientific computing

https://www.anthropic.com/research/long-running-Claude
1•theorchid•17m ago•0 comments

Why Keynes Was Wrong

https://thecritic.co.uk/why-keynes-was-wrong/
1•RickJWagner•17m ago•0 comments

Ask HN: What's your favorite Emacs package?

3•blenderob•19m ago•0 comments

Can a geometric manifold solve AI hallucinations better than probability?

1•enitylabsindia•21m 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