frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

You can now create and chat with an AI Mommy on Chatbrat

https://chatbrat.ai/bratlog/chat-with-ai-mommy-free
1•henrypissler•1m ago•0 comments

Show HN: Codebase Posters – turn any Git repo into generative poster art

https://github.com/unable12/codebase-posters
1•unable0•1m ago•0 comments

What is Property Based Testing? (2016)

https://hypothesis.works/articles/what-is-property-based-testing/
1•downbad_•5m ago•0 comments

Bacteria turning uranium into stable compound

https://scitechdaily.com/bacteria-turn-toxic-uranium-into-a-surprisingly-stable-compound/
1•Gaishan•9m ago•0 comments

Ask HN: How do you use LLMs for private discussions?

2•emerongi•10m ago•2 comments

Europe's productivity keeps outpacing the US

https://sethackerman.substack.com/p/europes-productivity-keeps-outpacing
1•ZeljkoS•11m ago•0 comments

Advice to New Managers: Don't Joke About Firing People (2020)

https://staysaasy.com/engineering/2020/06/09/Don%27t-Joke.html
1•downbad_•14m ago•0 comments

Where did my segfault go?

https://rmpr.xyz/Where-did-my-segfault-go/
2•birdculture•15m ago•0 comments

Good for business or profit at any cost: Private equity's controversial side

https://www.theguardian.com/business/ng-interactive/2026/jun/29/private-equity-visual-explainer-u...
3•gmays•15m ago•0 comments

Show HN: Bananarr – Peel Back the Tech Stack of Any Website

https://bananarr.com/
1•ernsheong•16m ago•0 comments

Show HN: Sleep external displays connected to a MacBook after closing lid

https://github.com/KristijanKocev/lidwatch
1•justAnotherHero•16m ago•0 comments

The Trouble with Effortless Code

https://codeplusconduct.substack.com/p/the-trouble-with-effortless-code
1•mooreds•22m ago•0 comments

A top Russian oligarch breaks the silence

https://www.economist.com/1843/2026/07/09/a-top-russian-oligarch-breaks-the-silence
3•mooreds•24m ago•1 comments

Show HN: Personal Biohacking Lab

https://selfassay.com
1•ainthusiast•27m ago•0 comments

I trained a 113M-parameter earthquake LLM from absolute scratch

https://github.com/jiazhe868/nanogpt-seis
2•jzsfg•29m ago•0 comments

"A Clockwork Orange" Nadsat Dictionary

https://www.mattiavaccari.net/mis/nadsat.html
2•yubblegum•30m ago•0 comments

I built a community ranking platform for everything – would love brutal feedback

https://peakd.io
1•GroguMaster•32m ago•0 comments

Believe the Hype About Teen Takeovers

https://www.theatlantic.com/ideas/2026/07/teen-takeovers-violence-dc/687866/
4•paulpauper•35m ago•0 comments

American Loneliness

https://www.theatlantic.com/ideas/2026/07/america-birthday-250-roadtrip/687877/
2•paulpauper•35m ago•1 comments

UI Degrades over Time

https://grumpy.website/1723
2•petilon•36m ago•1 comments

AI is the new Printing Press (another trite take)

https://idan.substack.com/p/ai-is-the-new-printing-press
1•idanb•38m ago•0 comments

Profiling the "Abundance" housing bottleneck with real data

https://laxmena.com/same-capacity-less-throughput
1•laxmena•42m ago•0 comments

Show HN: Almanac – A self-updating wiki from your files

https://usealmanac.com
1•reveriedev•42m ago•0 comments

Full Emoji List, v17.0

https://unicode.org/emoji/charts/full-emoji-list.html
2•mooreds•43m ago•0 comments

Archaeology team unearths 'prototype' of world-famous Stonehenge monument

https://apnews.com/article/stonehenge-britain-discovery-summer-solstice-36f8517159a9e750c1042bebd...
2•zdw•46m ago•0 comments

I made a free Islamic prayer app to quit saying "I'll pray in 5 minutes"

https://better-prayer.com
2•Adam-Hincu•47m ago•1 comments

Why recruiters can't find workers and new grads can't find jobs (it's not AI)

https://www.washingtonpost.com/education/2026/07/12/why-recruiters-cant-find-workers-new-grads-ca...
2•rustoo•47m ago•2 comments

Nuclear war survival guide reveals seven everyday items if disaster strikes

https://www.dailymail.com/sciencetech/article-15795297/Forgotten-nuclear-war-survival-guide-revea...
7•Bender•53m ago•5 comments

Crayola Marker Airbrush Kit

https://www.crayola.com/products/toys/marker-airbrush-kit-747669
1•turtleyacht•53m ago•0 comments

MacSurf 2.0 – Netsurf for Mac OS 9 Released

https://github.com/mplsllc/macsurf/releases/tag/v2.0
2•mplsllc•56m 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