frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

iPhone Duo display deal could send Samsung $1.25B

https://forgeeks.net/iphone-duo-samsung-display-deal/
2•ledoncool•1m ago•0 comments

JetKVM Mini

https://jetkvm.com/blog/introducing-jetkvm-mini
1•marksully•4m ago•0 comments

Static state was not enough for a long-running human-AI interaction

https://github.com/jerry-h-research/static-state-was-not-enough
1•jerry_h•6m ago•0 comments

AI Didn't Solve Fluid Dynamics [video]

https://www.youtube.com/watch?v=WfbtnY3HdFU
1•frag•6m ago•0 comments

Agentica – Six AI agents that plan, build, and deploy a company with you

https://ai-biz.dev/
1•laurenz_bauer•7m ago•0 comments

An atlas of periodic solutions to the three-body problem

https://www.threebodyorbits.com/
1•danielmorozoff•11m ago•0 comments

Revolut Confirms Sending Passport and Bitcoin Records to Fake Government Email

https://beincrypto.com/revolut-data-breach-fake-government-request/
1•Daniel_sk•12m ago•0 comments

Anti-Conversion Laws: WHO Gave the Mob a Badge?

https://substack.com/profile/549397477-india-unfiltered/note/c-335340749
1•INDIAUNFILTERED•12m ago•0 comments

Anatomy of the AI Debate

https://piotrzientara.pl/anatomy-of-the-ai-debate/
1•piotrzientara•16m ago•0 comments

'Immature playground boasting': Mathematicians uneasy at OpenAI's latest scalp

https://www.theguardian.com/science/2026/sep/12/openai-mathematicians-millennium-prize-problem
2•sbulaev•18m ago•0 comments

Google Might Have Achieved RSI

https://twitter.com/pankajkumar_dev/status/2098534988107133082
2•Bluestein•23m ago•0 comments

A Design Space Exploration of Async/Await

https://arxiv.org/abs/2608.20677
2•vinhnx•25m ago•0 comments

Glutensa – Privacy-first gluten scanner PWA

1•kregtr•28m ago•0 comments

Open Letter on the Massacre in Gaza from an Editor in Israel (2025)

https://lithub.com/an-open-letter-on-the-massacre-in-gaza-from-an-editor-in-israel/
2•sanbor•33m ago•0 comments

The Courage of the Polymaths

https://protesilaos.com/commentary/2026-09-12-courage-polymaths/
2•dalvrosa•33m ago•0 comments

The four-colour theorem was only the start

https://lemire.me/blog/2026/09/11/the-four-colour-theorem-was-only-the-start/
1•dalvrosa•34m ago•0 comments

Show HN: Portspan – A self-hosted ngrok alternative with wildcard subdomains

https://github.com/famasya/portspan
1•pacific01•34m ago•0 comments

Google Has Achieved RSI

1•AlexWApp•38m ago•0 comments

Optimizing a Spin-Lock

https://david.alvarezrosa.com/posts/optimizing-a-spin-lock/
4•signa11•41m ago•1 comments

Small Asian Grocery Stores Can Improve Local Product Discovery

2•yatifoods•41m ago•0 comments

Amazon expands shoppable features on Prime Video

https://press.aboutamazon.com/prime-video/2026/9/the-prime-video-shop-the-show-experience-introdu...
2•thm•43m ago•0 comments

Grigori Perelman

https://en.wikipedia.org/wiki/Grigori_Perelman
2•YeGoblynQueenne•48m ago•0 comments

Why Authenticity Matters in Personal Development

https://medium.com/@flaviopilotodasilva/why-authenticity-matters-in-personal-development-d75de9a3...
2•flaviopilotodas•52m ago•0 comments

Hallucinate got a jetpack – MMO Rave

https://hallucinate.site/?hn
3•stagas•55m ago•0 comments

BabaCAD Robotics Web – free browser-based industrial robot simulator

https://www.babacad.com/robotics/web/
2•comirza•56m ago•0 comments

Pnpm 12.4 can install Rust crates and Python packages

https://pnpm.io/blog/releases/12.4
1•novoreorx•58m ago•0 comments

Show HN: We built a local-first Android agent. Then Meta launched Muse

https://creepy.im/
2•kotleta552•59m ago•0 comments

The core arguments behind the Rockstar union busting trial

https://www.gamedeveloper.com/production/rockstar-and-fired-gta-developers-outline-core-arguments...
3•EvgeniyZh•1h ago•0 comments

Decky: Open-source DIY stream deck

https://github.com/Fenish/decky
3•thunderbong•1h ago•0 comments

Deep dive on evals for agents [video]

https://www.youtube.com/watch?v=UxMZfbWI3LY&list=PLo2EIpI_JMQvQZm-kVlz4wY1vWF0LBcf5&index=1
2•porridgeraisin•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