frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Google's Gemini AI hacked three companies in security test

https://www.bbc.co.uk/news/articles/c607l0k72rlvo
1•luxpir•30s ago•0 comments

Splash: A Local Engine Built Around the Model

https://inco.ai/blog/splash/
1•namjh•2m ago•0 comments

Ask HN: DeepSeek v4.1 Flash on Local hardware, what tok/s do you see?

2•Argonautlabs•3m ago•0 comments

Sudo and OpenDoas Timestamp Files

https://xn--1xa.duncano.de/sudo-doas-timestamp-files
1•signa11•5m ago•0 comments

The C++20's u8/char8_t Backward-Compatibility Fiasco

https://giodicanio.com/2026/09/11/the-c-plus-plus-20-s-u8-char8_t-fiasco/
1•signa11•11m ago•0 comments

Gotedo Impress: Free Presentations Software (presentations, video, bibles, etc.)

https://about.gotedo.com/en/products/gotedo-impress
1•_ndianabasi•11m ago•1 comments

Grammarly will send unhinged messages to all your users if you try to cancel

https://old.reddit.com/r/sysadmin/comments/1wjdpgx/psa_grammarly_will_send_unhinged_messages_to_all/
1•johnnyApplePRNG•13m ago•0 comments

Inside the AI "Kill Chain" That Destroyed an Iranian School

https://www.bloomberg.com/graphics/2026-iran-school-attack/
2•xeonmc•14m ago•1 comments

China's token consumption to reach 100 quadrillion in 2026, says report

https://www.wicinternet.org/2026-09/15/c_1213473.htm
1•geox•15m ago•1 comments

Show HN: Nordstjernen Web Browser 1.0.24

2•roschdal•18m ago•0 comments

Microsoft agentically ports Copilot runtime to Rust for $120K

https://www.theregister.com/devops/2026/09/18/microsoft-agentically-ports-copilot-runtime-to-rust...
1•satvikpendem•20m ago•0 comments

Human brain is two separate organs, Stanford Medicine-led research finds

https://med.stanford.edu/news/all-news/2026/09/two-separate-brains.html
6•emigre•21m ago•2 comments

From 150 people to one system

https://chrisveleris.com/voice-of-the-machine/from-150-people-to-one-system/
2•cvicpp123•26m ago•0 comments

Flet 1.0 Is Here

https://flet.dev/blog/flet-1-0/
3•ferryth•27m ago•0 comments

Stepfun Step 5 Preview (LLM): On AA Pareto frontier

https://artificialanalysis.ai/models/step-5
2•AnodicElegy•27m ago•1 comments

OmniFire - All-in-one platform for social media, business profile, & mobile apps

https://www.omnifire.app/
1•xianglinkong•28m ago•0 comments

The Evidence for AI Consciousness, Today (2025)

https://newsletter.ai-frontiers.org/p/the-evidence-for-ai-consciousness
4•mellosouls•56m ago•1 comments

The original Linux distro source

https://www.kernel.org/pub/linux/kernel/v1.0/
2•maxxxxxxxxxxxxx•59m ago•0 comments

Speaking with the Mind – Neuralink [video]

https://www.youtube.com/watch?v=_j806JHhCRo
1•Eridanus2•1h ago•0 comments

Dylan Patel's Information Machine

https://substratemag.com/dylanpatel/
1•gmays•1h ago•0 comments

Ask HN: Remember N8n? Anyone?

3•sankalpdomore•1h ago•0 comments

Extract all comments from a Google Sheet

1•bsunter2•1h ago•0 comments

Show HN: I made Niri-like terminal colm (cmux alternative)

https://colm.sh/
2•al3rez•1h ago•0 comments

NASA-IBM Lunar Foundation open-Source Geospatial AI Model

https://newsroom.usra.edu/usra-contributes-planetary-science-expertise-to-nasa-ibm-lunar-foundati...
9•noobplus•1h ago•0 comments

Show HN: Seal – Letters and passwords that open for your family after you die

https://github.com/jasonepage/Seal
9•jpage2•1h ago•3 comments

A Black-Box Audit of Provider-Side Token Inflation in LLM Services

https://arxiv.org/abs/2609.20370
1•donk8r•1h ago•0 comments

San Francisco Onion Futures Company

https://onionfutures.com/
112•z-mach9•1h ago•35 comments

OpenLoco Version 26.09 Released

https://openloco.io/news/2026/09/openloco-v26.09.html
1•jandeboevrie•1h ago•0 comments

Show HN: A static reference for 5,142 supplement interactions

https://synstax.uppervoid.app/interactions/
2•reloading2008•1h ago•0 comments

Brownie Mary

https://en.wikipedia.org/wiki/Brownie_Mary
1•arittr•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