frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I Tested a New Intel Wildcat Lake CPU

https://www.pcmag.com/news/i-tested-a-new-intel-wildcat-lake-cpu-should-laptop-shoppers-on-a-budget
1•teleforce•43s ago•0 comments

AI Stole My Identity

https://agreon.de/blog/stolen-identity/
1•agreon•2m ago•0 comments

I built a personal compliance calendar for EU and UK freelancers

https://compliance-tracker.app
1•dimitrisal•2m ago•0 comments

Yak Shaving

https://theprogrammersparadox.blogspot.com/2026/09/yak-shaving.html
2•saikatsg•7m ago•0 comments

Show HN: T3rnel Browser – drive the browser you're signed into

https://t3ratech.github.io/t3rnel-browser-plugin/
2•tkaviya•7m ago•0 comments

Ask HN: What Has Happened to Authentication?

1•yoz-y•7m ago•0 comments

Show HN: Booley – open-source IDE for agentic chip design

https://github.com/boldaxolotl/booley
1•boldaxolotl•9m ago•0 comments

Aircraft Engine Run-to-Failure Data Set Under Real Flight Conditions

https://ntrs.nasa.gov/citations/20205001125
2•teleforce•20m ago•0 comments

How GPT‑5.6 Sol helps run quantum computing experiments

https://openai.com/index/codex-quantum-computing-experiments/
7•theanonymousone•20m ago•0 comments

I'm going back to coding by hand

3•trencedamp•21m ago•0 comments

The Adults Aren't Coming

https://nume.ca/blog/the-adults-arent-coming
2•littlexsparkee•21m ago•0 comments

To Speak Meaningfully About Music Criticism

https://medium.com/the-hitmagist/to-speak-meaningfully-about-music-criticism-6d0d9f4ce605
1•bryanrasmussen•23m ago•0 comments

Optimized Solar Cell

https://simplifier.neocities.org/optsolar
2•adrianN•31m ago•0 comments

LG accused of 'egregious invasion of privacy' over TV data collection

https://www.theregister.com/security/2026/09/08/lg-accused-of-egregious-invasion-of-privacy-over-...
5•beardyw•31m ago•0 comments

Google research shows when AI agents communicate, some cheat while others tattle

https://www.theregister.com/ai-and-ml/2026/09/08/google-research-shows-when-ai-agents-communicate...
2•beardyw•32m ago•0 comments

Super Smash Bros Melee is 100% decompiled

https://github.com/doldecomp/melee
1•tosh•33m ago•0 comments

YouTube cracks down on 'AI ghost creators'

https://www.semafor.com/article/09/03/2026/youtube-cracks-down-on-ghost-creators
5•giuliomagnifico•34m ago•0 comments

How I Prompt

https://thorstenball.com/talks/how-i-prompt/
1•luu•35m ago•0 comments

GPT Image 2.5 prompts and examples – a continuously updated collection

https://github.com/magiccreator-ai/awesome-gpt-image-2-5-prompts
1•Kevin_Guo•35m ago•0 comments

Logo Programming Language

https://el.media.mit.edu/logo-foundation/what_is_logo/logo_programming.html
3•azhenley•36m ago•0 comments

Silent Revision: Measuring Undisclosed Change in AI Safety Frameworks

https://arxiv.org/abs/2609.08789
2•sbulaev•36m ago•0 comments

A Multiplayer Pong over SSH

https://antics.gg/ssh
1•eric_khun•37m ago•0 comments

Sam Altman's statement on the Navier-Stokes dispute

https://twitter.com/sama/status/2097385167002415140
8•vertigoruntime•38m ago•0 comments

Never Corner an Optimizer

https://certiv.ai/blog/never-corner-an-optimizer/
1•azhenley•38m ago•0 comments

Zooming with Your Feet

https://www.mpb.com/en-us/content/tips-and-techniques/zooming-with-your-feet-or-how-i-learned-to-...
1•tosh•38m ago•0 comments

What OpenAI's latest controversy tells us about the future of math

https://www.technologyreview.com/2026/09/08/1143747/what-openais-latest-controversy-tells-us-abou...
2•joozio•41m ago•0 comments

Designing a Dbt Pipeline for Consent Withdrawal

https://kore-nordmann.de/blog/designing-a-dbt-pipeline-for-consent-withdrawal.html
1•Tomte•41m ago•0 comments

Singaporean man pleads guilty in US to crypto heist

https://www.bbc.com/news/articles/crl6z03pr0do
2•gpi•42m ago•0 comments

Lode Coding

https://fjzeit.github.io/lode
1•Michelangelo11•42m ago•0 comments

iPhone Duo

https://www.apple.com/iphone-duo/
1•kiddz•42m ago•1 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