frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Los Angeles District Bans Most A.I. For Students

https://www.nytimes.com/2026/09/03/us/lausd-schools-ban-ai-artificial-intelligence.html
1•bookofjoe•9m ago•3 comments

Basic News – a Telegram bot with customizable news digests

https://basicnews.world/
1•xenohunter•10m ago•0 comments

A pre-registered test: can a business's rules be recovered from its data?

https://justinsmith.build/writing/everything-a-business-knows/
1•s14jsmith•13m ago•0 comments

What runs when you open a repository

https://veltron.cc/research/what-runs-when-you-open-a-repository
1•nulvec•13m ago•0 comments

Show HN: Time Wizard

https://huggingface.co/jadidbourbaki/time-wizard
1•jadidbourbaki•13m ago•0 comments

Show HN: Mongotar – Files to Prompt, and Back

https://github.com/sebastiancarlos/mongotar
1•httbs•14m ago•0 comments

Ask HN: Wolfram Cloud Is Out

1•smithmayowa•17m ago•0 comments

Almost half of ICANN-accredited registrars under the control of a single busines

https://domainincite.com/31912-dropcatch-acquires-300-more-registrars
4•dendark•17m ago•0 comments

SwiftTUI

https://swifttui.sh/
1•frizlab•19m ago•0 comments

Cloud Engineer

1•endowed7•19m ago•0 comments

Exhibit of 2026 AI Agents

https://agent-museum-2026.halstonsellentin.chatgpt.site
1•hsellentin•19m ago•0 comments

Understanding RabbitMQ in Simple Terms

https://sushantdhiman.dev/blog/understanding-rabbitmq/
1•birdculture•21m ago•0 comments

Record-High 89% in U.S. Say Government Corruption Widespread

https://news.gallup.com/poll/713933/record-high-say-government-corruption-widespread.aspx
7•karakoram•21m ago•2 comments

DaemonCore Launches a Slew of Free Pentesting Tools

https://www.daemoncore.app/
1•DaemonCoreApp•22m ago•1 comments

Big Crocs vs. Little Crocs

https://marcrandolph.substack.com/p/big-crocs-vs-little-crocs
1•fagnerbrack•24m ago•0 comments

Send interactive life coaching worksheets [video]

https://www.youtube.com/watch?v=gNW7sSXSoW4
1•shammadahmed•24m ago•0 comments

Make money from your menu bar

https://sponsorbar.io/
1•partsch•25m ago•0 comments

Gemini vs. Claude: Which AI Model created a better perfume?

https://www.youtube.com/watch?v=YfFk050AjPw
1•yipinwong•26m ago•1 comments

A Hundred Steps Back

https://www.inventbuild.studio/blog/a-hundred-steps-back-3d12f33c95138084bb9efc107cc54d13
1•virgil_disgr4ce•26m ago•0 comments

Actively exploited sandbox RCE in all Chromium versions

https://nvd.nist.gov/vuln/detail/cve-2026-85046
27•negura•32m ago•3 comments

Mathathon – $2M Hackathon for Math

https://twitter.com/_sathvikr/status/2095989588418249093
3•brian-bfz•34m ago•1 comments

Show HN: Fast rust-based repository launcher for your code projects

https://santiagodevelopment.com/p/2026/9/4/repo-zoo
1•jamessantiago•36m ago•0 comments

Icons as a Service

https://nravic.com/blog/images/
3•nravic•39m ago•0 comments

Claude Fable 5.1 Benchmark: Draw a Python Reading a Book

https://realpython.com/ai-benchmark-claude-fable-5-1/
1•dbader•42m ago•0 comments

Harvey Tenet Research Preview

https://www.harvey.ai/blog/post-training-update-harvey-tenet
1•gmays•43m ago•0 comments

GPT-6 Astra Benchmark: Draw a Python Reading a Book

https://realpython.com/ai-benchmark-gpt-6-astra/
1•dbader•43m ago•0 comments

Regular coffee beats decaf in protecting the brain from chronic stress: study

https://www.psypost.org/regular-coffee-beats-decaf-in-protecting-the-brain-from-chronic-stress-mo...
1•ivewonyoung•44m ago•0 comments

GPT-6 Astra on OpenRouter

https://openrouter.ai/openai/gpt-6-astra
19•Topfi•45m ago•9 comments

Tell HN: Anthropic just reset usage, including Fable

2•consumer451•47m ago•5 comments

15h.org – Open-Source Firmware and Support for AMD's Family 15h CPU's/MB's, etc.

https://15h.org/index.php/Home
2•peter_d_sherman•47m 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