frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ClickFix attacks infecting PCs and Macs are going viral

https://arstechnica.com/security/2026/09/clickfix-attacks-infecting-pcs-and-macs-are-going-viral/
1•joozio•52s ago•0 comments

How SaaS startup guys get first 100 customers first, make fkn $500k ARR fast?

2•nandakishor_ml•5m ago•2 comments

Anthropic boss Dario Amodei calls for AI development to slow down

https://www.bbc.com/news/articles/c14dpgm0rg4o
2•champagnepapi•5m ago•0 comments

MousePDF – Edit, Merge and Convert PDFs

https://www.mousepdf.com/
2•eustoria•6m ago•0 comments

Torph – Dependency-Free Text Morphing

https://torph.lochie.me/
2•eustoria•7m ago•0 comments

The Real Utopias Project

http://realutopias.org/the-real-utopias-project/
2•jruohonen•9m ago•1 comments

Show HN: Chess960v2.com – 960×960 asymmetric chess, 600/960 rounds done

https://chess960v2.com/en
2•lavren1974•9m ago•0 comments

The big and growing business of ICE ankle monitors

https://www.scrippsnews.com/investigations/ice-inc/the-big-and-growing-business-of-ice-ankle-moni...
2•eustoria•11m ago•0 comments

Bird Haiku Poems Inspired by Nature 5 7 5

https://alongthebarrenroad.com/2025/04/08/bird-haiku-poems-inspired-by-nature/
2•srean•12m ago•0 comments

Ask HN: Why does account age matter?

2•lemmeasku•12m ago•0 comments

The AI bringing Zen to First Horizon's call centers

https://www.americanbanker.com/news/the-ai-bringing-zen-to-first-horizons-call-centers
2•croes•12m ago•0 comments

On Not Being a Homeowner

https://www.newyorker.com/news/the-weekend-essay/on-not-being-a-homeowner
3•Brajeshwar•14m ago•0 comments

Soft-Deprecating Re.match()

https://hugovk.dev/blog/2026/soft-deprecating-re.match/
2•birdculture•16m ago•0 comments

Show HN: Determinstic LLM inference for lowest price Gemma 4, with Windows XP

https://www.tokendelivery.ai/
2•carsonpoole•17m ago•0 comments

We made Canonry open source

https://canonry.ai/blog/canonry-5-mit-open-source-aeo-geo
2•arberx•18m ago•1 comments

You Didn't Deploy the AI Agent You Evaluated

https://www.anuclei.com/blog/you-didnt-deploy-the-agent-you-evaluated
2•jequals5•23m ago•0 comments

I built Coach Roger, an AI wellness for days when staying consistent is hard

https://coachroger.app/
1•InsanelyWicked•24m ago•0 comments

Sam Altman and Elon Musk Support Dario Amodei's Proposal to Pace AI Development

https://twitter.com/kuberwastaken/status/2098812781223174325
5•kuberwastaken•24m ago•3 comments

Show HN: Gedcom Tools – Check and repair family-tree files in the browser

https://gedcom.tools/
1•kulesh•28m ago•0 comments

The Hex Kit and I

https://gnomestones.substack.com/p/the-hex-kit-and-i
2•jruohonen•29m ago•0 comments

Up: After six decades, the seminal series bows out with 70 Up

https://www.theguardian.com/tv-and-radio/2026/sep/07/seminal-series-ends-six-decades-70-up
1•julianpye•31m ago•0 comments

Ed Zitron is accusing Jacob Coxon of "grift"

https://xcancel.com/antibot/captcha
2•yurivish•32m ago•0 comments

In Conversation: Nvidia

https://read.aurelionresearch.com/p/in-conversation-nvidia
1•gmays•33m ago•0 comments

Meta is asking some of its employees to become managers again in a new reorg

https://www.businessinsider.com/meta-asks-some-ai-employees-to-become-managers-again-2026-9
3•toomanyrichies•34m ago•0 comments

Show HN: Peko – checks iOS and Android apps against store policy

https://peko.so/
1•IAmPrestonBrown•35m ago•0 comments

Make Your First Edit to OpenStreetMap in the Next 15 Minutes

https://high5apps.github.io/josm-plugin-website-wizard/
18•juliantigler•37m ago•3 comments

A Shipyard? A Bunch of New Houses? In California, Not This Year

https://www.nytimes.com/2026/09/05/business/economy/california-forever-shipyard-newsom.html
1•JumpCrisscross•38m ago•0 comments

Swiftfin Fork with Tailscale Support

https://github.com/apenwarr/swiftfin
2•tosh•38m ago•0 comments

100 years after John Coltrane's birth, secret tapes are emerging

https://www.theguardian.com/music/2026/sep/11/100-years-after-john-coltranes-birth-secret-tapes-a...
1•cdrnsf•38m ago•0 comments

Pocket Envelopes – Local-first envelope budgeting in one HTML file

https://github.com/mvichosfm/pocket-envelopes
2•mvichosfm•42m 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