frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Five years before I saw Smalltalk

https://lists.selflanguage.org/pipermail/self-interest/2020-November/004777.html
1•tosh•4m ago•0 comments

Agent Patterns for AI Agent Development

https://agentpatterns.ai/
1•ankitg12•4m ago•0 comments

AI Agents Have Two Souls. You Only Control One

https://auth0.com/blog/ai-agents-have-two-souls-you-control-only-one/
1•andychiare•7m ago•0 comments

Mythos Finds a Curl Vulnerability

https://daniel.haxx.se/blog/2026/05/11/mythos-finds-a-curl-vulnerability/
1•TangerineDream•10m ago•0 comments

The 1,001 Days of the Turkey

1•DIGITALIGENCE•11m ago•0 comments

Software Development Is Becoming a Factory Job

https://www.vincentschmalbach.com/software-development-is-becoming-a-factory-job/
2•vincent_s•12m ago•0 comments

Predictions about AI and software development

https://adamfletcher.com/writing/10-ai-predication-may-2026/
3•afletcher•15m ago•0 comments

Spec-Driven Development with Spec Kit and Claude Code

https://medium.com/vibecodingpub/spec-driven-development-with-spec-kit-and-claude-code-7e2957fd2c9b
2•SaeedZF•16m ago•0 comments

South Park Theme Song Remix

https://www.youtube.com/watch?v=GWmU7tW_0RQ
2•ninjahawk1•22m ago•0 comments

Donald Trump Buffalo

https://www.youtube.com/watch?v=yezUKYJpzZ8
1•riasatsk•22m ago•0 comments

Best Sugar Daddy Apps and Dating Sites of 2026

https://bestsugardaddyapps.com/
1•hankerapp•23m ago•0 comments

Biblio, a 3D bookshelf app, organise your ePub files, PDFs, or physical book

https://biblio.ink/
1•perthz•26m ago•1 comments

Resilience Engineering Papers

https://github.com/lorin/resilience-engineering
1•azhenley•27m ago•0 comments

Garry Tan's GBrain – most important idea of the year

https://twitter.com/garrytan/status/2053127519872614419
1•oger•29m ago•1 comments

Fighting Hyrum's Law in LLVM

https://maskray.me/blog/2026-05-10-fighting-hyrums-law-in-llvm
1•ingve•30m ago•0 comments

Report shows banned non-fiction books doubled over last school year in US

https://www.theguardian.com/books/2026/may/07/banned-non-fiction-books-doubles
1•doener•31m ago•0 comments

I built a Gmail cleaner that runs automatically every Monday

https://inboxclean.email
1•festivilia•33m ago•0 comments

Segue – An illustrated free vocabulary builder

https://segue.app
1•stoicfungi•39m ago•0 comments

State aware AI agent shitfest – with rules – that helps move code

https://github.com/hghallTAZ/THE_ROOM
2•hghall•45m ago•0 comments

Reimplement GitHub for Agents

https://github.com/ngaut/agent-git-service
1•ngaut•51m ago•0 comments

Designing the Right PostgreSQL Index Using Query Plans and Statistics

https://beh74.github.io/pgassistant-blog/post/query_advisor/
1•bertrandhartwig•52m ago•0 comments

Up to 256 MB FERRIT modular F-RAM storage preserves data up to 200 years

https://www.cnx-software.com/2026/05/11/up-to-256-mb-ferrit-modular-f-ram-storage-device-preserve...
2•jandeboevrie•55m ago•0 comments

Everest 2026: The Critical Logistics of the Golden Window When to Go

https://www.wfy24.com/en/article/everest-2026-golden-window-dead-zone-survival-guide
2•weatherfun•57m ago•0 comments

The Firmbyte Gap: Why the Most Valuable Connections Never Happen

https://bjro.dev/posts/the-firmbyte-gap/
2•rapnie•1h ago•0 comments

Why you're probably going to lose money on Polymarket

https://www.msn.com/en-us/money/investment/why-you-re-probably-going-to-lose-money-on-polymarket/...
1•Gaishan•1h ago•1 comments

Voting Before the Secret Ballot

https://www.historytoday.com/archive/feature/voting-secret-ballot
1•Petiver•1h ago•0 comments

Basic linear algebra algorithms (since C++26)

https://en.cppreference.com/cpp/numeric/linalg
1•tosh•1h ago•0 comments

ShinyHunters claims – 9k schools affected by Instructure Canvas data breach

https://edscoop.com/shinyhunters-claims-nearly-9000-schools-affected-by-canvas-data-breach/
1•Gaishan•1h ago•0 comments

Everyone gets faster writes: We turned off FPW's in Neon

https://neon.com/blog/turning-off-fpw-for-faster-writes
1•tosh•1h ago•0 comments

What Makes Axavive Different from Other Supplements?

1•DeclanGrimley•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