frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Andrej Karpathy Joins Anthropic

https://www.thevccorner.com/p/breaking-andrej-karpathy-joins-anthropic
2•vinni2•36s ago•0 comments

Google Antigravity CLI

https://antigravity.google/blog/introducing-google-antigravity-cli
1•jbirnick•1m ago•0 comments

Google introduces Gemini Spark, a 24/7 agentic assistant with Gmail integration

https://techcrunch.com/2026/05/19/google-introduces-gemini-spark-a-24-7-agentic-assistant-with-gm...
1•gfortaine•2m ago•0 comments

Show HN: Logbox – let Claude monitor your dev logs

https://github.com/struct-dot-ai/logbox
2•nimeshmc•2m ago•0 comments

Likely AI-generated short story won a major prize

https://twitter.com/nabeelqu/status/2056397504824963296
1•thatoneengineer•2m ago•0 comments

Show HN: Melogen – Generate MIDI melodies for free

https://www.melogen.ai/
1•squirrelon•5m ago•0 comments

Show HN: FastBack end – schema-first back end runtime with OpenAPI output

https://github.com/darula-hpp/fastbackend
1•ombedzi•5m ago•0 comments

The Gemini app becomes more agentic, delivering proactive, 24/7 help

https://blog.google/innovation-and-ai/products/gemini-app/next-evolution-gemini-app/
2•gfortaine•8m ago•0 comments

Disney Erased FiveThirtyEight

https://www.natesilver.net/p/disney-erased-fivethirtyeight
3•7777777phil•9m ago•0 comments

Which campaigns actually drive your leads?

https://www.digitalpilot.app/
1•iamjeylabrecque•11m ago•0 comments

Show HN: Coding agent where a second agent QAs every PR in a real browser

https://www.notesasm.com/
1•kavin_key•11m ago•0 comments

The missing men of the American marriage market

https://www.npr.org/sections/planet-money/2026/05/19/g-s1-122695/the-missing-men-of-the-american-...
2•sizzle•12m ago•0 comments

Scientists worried about de-extinction ethics as biotech co. touts breakthrough

https://www.rnz.co.nz/news/science-and-technology/595719/scientists-concerned-about-de-extinction...
3•billybuckwheat•12m ago•0 comments

Automate your computer using real code – not drag-and-drop blocks

https://github.com/hassananayi/codeonix
1•hassananayi•12m ago•1 comments

The Trouble with Emotion AI

https://www.computerworld.com/article/4171382/the-trouble-with-emotion-reading-ai.html
2•mikelgan•12m ago•1 comments

Lapdog: Local Coding Agent Assistant

https://lapdog.datadoghq.com/
1•astuyvenberg•13m ago•1 comments

Ruby vs. Java vs. TypeScript: Building Claude Cowork Docx Plugin

https://tanin.nanakorn.com/ruby-java-typescrip-claude-docx-plugin/
2•tanin•14m ago•0 comments

Mistral AI Python package compromised on PyPI [2026-05-12]

https://github.com/mistralai/client-python/issues/523
2•r2vcap•14m ago•0 comments

Finding Unpinned and Unpinnable GitHub Actions Across Your Org

https://www.pavel.gr/blog/finding-unpinned-and-unpinnable-github-actions
1•howlett•16m ago•0 comments

From Compute Overhang to Compute Crunch

https://secondthoughts.ai/p/the-ai-race
1•speckx•16m ago•0 comments

Chrome Dev Blog: Declarative Partial Updates (Interleaved HTML Streaming)

https://bsky.app/profile/did:plc:ilj6i6evo5xxl5iixp2y76nt/post/3mm7rxrubqs2v
1•avarev•17m ago•0 comments

Show HN: Search 67K .AI domains by AI-extracted tags and descriptions

https://ratemyaisite.com/explore
1•prolly97•19m ago•0 comments

Gemini Omni Flash is coming soon

https://gemini-omni-flash.net/
1•Jenny249•20m ago•0 comments

A case against the case against full-body MRI screening

https://medium.com/the-tideline/why-the-smartest-people-i-know-are-ignoring-their-doctors-on-full...
1•biancaleeman•20m ago•1 comments

TinyFish Vault: Your Web Agent Can Now Log in Without Touching Your Passwords

https://www.tinyfish.ai/blog/tinyfish-vault-your-web-agent-can-now-log-in-without-touching-your-p...
1•gargigupta•20m ago•0 comments

AI slop is flooding maths YouTube [video]

https://www.youtube.com/watch?v=mRO_QonhC2c
5•Imustaskforhelp•23m ago•1 comments

Google pushes update to Antigravity instead it reinstalls and locks everyone out

https://twitter.com/antigravity/status/2056795168326754759
4•thekevan•24m ago•2 comments

The TTY Demystified (2008)

https://www.linusakesson.net/programming/tty/index.php
2•20after4•25m ago•0 comments

Your AI Frustration Is My Opportunity

https://metedata.substack.com/p/012-your-ai-frustration-is-my-opportunity
1•young_mete•26m ago•0 comments

Stop 'tokenmaxxing' and deploy AI sensibly instead

https://www.nature.com/articles/s42256-026-01253-5
4•mikelgan•27m 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