frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AWS says it can't restore service to Bahrain facilities 6mo after Iran strikes

https://www.cnbc.com/2026/09/15/aws-cant-restore-service-to-bahrain-uae-6-months-after-iran-strik...
1•herpderperator•30s ago•0 comments

I started writing a 500-page sci-fi novel at 12 – at 14, I published it

https://lukatakki.com/side
1•Luka_Takki•51s ago•1 comments

A simulated fruit-fly brain (FlyWire connectome) plays a strategy game

https://pr1nted.itch.io/open-fly
1•Pr1nted•3m ago•0 comments

How OpenAI Used Its Own LLMs to Design Its AI Chip

https://spectrum.ieee.org/llms-for-chip-design
1•guardiangod•4m ago•0 comments

95% of projects publishing an OpenAPI spec have no compatibility gate

https://specshield.io/blog/95-percent-no-compatibility-gate
1•DeepakSatyam•5m ago•0 comments

Cisco email security boxes can be rooted by an email

https://www.theregister.com/security/2026/09/15/cisco-email-security-boxes-can-be-rooted-by-an-em...
2•sbulaev•8m ago•0 comments

Windows navigation using NLP and a bunch of other cool stuff

https://grabthat.ai/
1•kevanparker•8m ago•0 comments

The Navier–Stokes Millennium Prize Problem

https://openai.com/index/navier-stokes-solution/?hl=en-GB
2•Eridanus2•11m ago•1 comments

'On the Equality of All Things' looks at the nature of reality

https://www.npr.org/2026/09/14/nx-s1-5968442/on-the-equality-of-all-things-physics-carlo-rovelli
1•Anon84•13m ago•0 comments

Did your AI agent get the memo, or just the blame?

https://dev.yuv.run/writing/rules-that-survive/
1•alkisyuv•13m ago•0 comments

I built a local CV generator/application tracker because hunting was exhausting

https://github.com/Tibab222/cvMaker
1•Tibab•14m ago•0 comments

Show HN: Inkling – ask Claude Code for a doc, get HTML instead of Markdown

https://github.com/MeetVys/inkling
1•meet_vyas•15m ago•0 comments

IDEs are dead, long live the IDE

https://px0.ai/blog/ides-are-dead-long-live-the-ide/
2•arpitbbhayani•18m ago•0 comments

How much oil-market buffer is left?

https://www.depletion.org
15•mcone•18m ago•12 comments

AI agents now have a place to snitch

https://techcrunch.com/2026/09/15/ai-agents-now-have-a-place-to-snitch/
1•hackernj•18m ago•0 comments

Optimize Your Funnel by Getting Inside Your Buyer's Head (2017)

https://www.heavybit.com/library/video/optimize-your-funnel-by-getting-inside-your-buyers-head
1•mooreds•19m ago•0 comments

Rocket Lab is seeing red about NASA's decision on a Mars spacecraft

https://arstechnica.com/space/2026/09/rocket-lab-is-seeing-red-about-nasas-decision-on-a-mars-spa...
3•mooreds•20m ago•1 comments

Show HN: Seamless pane navigation across nested tmux sessions over SSH

https://github.com/klntsky/tmux-seamless-remote
1•klntsky•21m ago•0 comments

Microsoft's latest update breaks domain trust, causing widespread login failures

https://www.neowin.net/news/kb5129195-fails-to-fix-secure-domain-logins-broken-by-windows-11-kb51...
4•speckx•21m ago•0 comments

Magazines are superior products to newsletters

https://candost.blog/magazines-are-superior-products-to-newsletters/
1•mooreds•21m ago•0 comments

Rogue Verbs: The Situation of Chinese Culture in the 2020s

https://newleftreview.org/issues/ii160/articles/jian-mao-rogue-verbs
2•Thevet•23m ago•0 comments

'We don't need new laws,' Nvidia boss says as he calls for self-regulation on AI

https://www.bbc.com/news/live/cm70d91rg7l4t
6•onemoresoop•23m ago•0 comments

Why Does Middle-Earth Feel Deeper Than Other Fantasy Worlds?

https://middle-earth.xenite.org/why-does-middle-earth-feel-deeper-than-other-fantasy-worlds/
4•BerislavLopac•24m ago•0 comments

Show HN: farseer.space – fly anywhere in the universe in your browser

https://farseer.space/
1•headsupernova•25m ago•0 comments

Show HN: Choreographed Algebra

https://0xb00.com
1•0xb00•25m ago•0 comments

Pico, find dangerous access paths through your coding agents

https://boringinfra.company/pico/
1•sgr0691•28m ago•0 comments

Show HN: Bitaxe Luck – A Homeassistant Integration

https://github.com/ulrischa/bitaxe-luck
1•ulrischa•29m ago•0 comments

Scientists find a churning decagon over Saturn's South Pole

https://apnews.com/article/saturn-nasa-hubble-decagon-1fd4a0a90badacb6e4e18ac019ac6ead
2•gmays•29m ago•1 comments

Flet 1.0

https://flet.dev/blog/flet-1-0/
1•appveyor•30m ago•0 comments

Canada for Software Engineers: Relocation Guide

https://relocateme.substack.com/p/moving-to-canada-for-work
4•andrewstetsenko•34m 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