frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Casio 'CasioNaut' G-Shock GMC-2500 GAC-2500 Series: Price, Specs, Availability

https://www.wired.com/story/casio-g-shock-casionaut-looks-like-a-patek-philippe-classic/
1•joozio•29s ago•0 comments

Any Nix package, live in the browser

https://fzakaria.com/2026/09/04/any-nix-package-live-in-your-browser
2•domenkozar•56s ago•0 comments

Tinymongo

https://tinymongo.org/
1•schapman1974•2m ago•1 comments

GitHub Status – Disruption with Copilot Code Review

https://www.githubstatus.com/incidents/zw1hbx2yyhvr
1•kyisaiah47•2m ago•0 comments

Where Will RISC-V Be in 20 Years? Poll Results

https://thechipletter.substack.com/p/where-will-risc-v-be-in-20-years
1•rbanffy•3m ago•0 comments

Show HN: Layerz – Native App Designer

https://www.layerz.app/
1•jaeyoung_choi•4m ago•0 comments

Bitcoin mining data center condemned after leaking 3M gallons of water

https://www.tomshardware.com/tech-industry/data-centers/bitcoin-mining-data-center-condemned-afte...
3•rbanffy•5m ago•0 comments

How algorithms are making our environments bland

https://theconversation.com/how-algorithms-are-making-our-environments-bland-289917
1•geox•5m ago•0 comments

An off the self BYOA platform

1•theguysudo•5m ago•0 comments

The Man That Invented the Popup

https://galratner.substack.com/p/the-man-that-invented-the-popup
1•blartpaul•6m ago•0 comments

Washington Post says Piker used AI generated audio but admits it has no proof

https://twitter.com/washingtonpost/status/2096304873557877132
2•slowin•7m ago•0 comments

All of Claude's "Never Do This" in Fable 5.1 System Prompt

https://artifactbin.dev/@vivek/MLWEU6-claude-s-nevers
2•nuwandavek•8m ago•0 comments

Connecting Kubernetes dependencies to application telemetry

1•chipfixer•8m ago•0 comments

Big Brother is going to college: The federal plan to track students for life

https://www.washingtonexaminer.com/op-eds/4710733/college-transparency-act-student-privacy-risks/
3•iamnothere•9m ago•1 comments

Apex City – Build a city that works

https://apexcity.reallexi.io
1•m22386•11m ago•0 comments

FDA Recalls IV Fluids over Possible Fiberglass, Stainless Steel Contaminants

https://www.healthline.com/health-news/fda-recalls-iv-saline-fluids-fiberglass-stainless-steel-co...
4•speckx•12m ago•0 comments

The Association for Computational Heresy

https://sigbovik.org/
2•jerlendds•15m ago•1 comments

Apple and Atari Connections – By Paul Lefebvre – Goto 10

https://www.goto10retro.com/p/apple-and-atari-connections
2•rbanffy•19m ago•0 comments

Ask HN: (Why) Was the LLM breakthrough useful for images, audio, etc.?

1•rogerrogerr•19m ago•0 comments

Jelly Baby

https://jelly.scottsun.io
1•memalign•20m ago•0 comments

Guess the Song in 0.1 Seconds

https://playdaily.org/songless
5•Hemmaamlin•21m ago•1 comments

Sunday programmer emergency: production is down. (quiz)

https://textlog.cc/post/3267?hn
2•stagas•21m ago•0 comments

OpenAI: We monitor internal coding agents for misalignment

https://openai.com/index/how-we-monitor-internal-coding-agents-misalignment/
2•lukaspetersson•23m ago•0 comments

Big brother watch report reveals free speech is in "downward spiral" in the UK

https://bigbrotherwatch.org.uk/press-releases/campaigners-urge-burnham-to-review-uks-anti-free-sp...
3•DeepLogin•24m ago•1 comments

Feature complete, as long as you add more features

https://site.sebasmonia.com/posts/2026-09-06-feature-complete--as-long-as-you-add-more-features.html
1•meetpateltech•25m ago•0 comments

Show HN: Robot-duck soccer in the browser, powered by MuJoCo and learned walking

https://fpvsim.com/sim-duck
1•mosfets•26m ago•0 comments

.gitignore Generator by Codra

https://codra.run/free-tools/gitignore-generator
2•devarshishimpi•28m ago•0 comments

Homelab deployments: a tutorial made of prompts

https://tomjohnell.com/homelab-deployments-a-tutorial-made-of-prompts/
2•tjohnell•29m ago•0 comments

Ask HN: How to prepare for coding/system design interviews on a mobile phone

1•k_dev•30m ago•0 comments

AI Is Making Us Less Human

https://www.theatlantic.com/ideas/2026/09/open-ai-consciousness-morality/688535/
2•paulpauper•32m 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