frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The "Triple Lock" Bug: How Hardcoded Constants in Si Units Break Relativity

https://zenodo.org/records/21025715/files/Axiomatic_Error_of_Modern_Metrology_and_Local_Gravity_A...
1•CitizenKorea•3s ago•0 comments

One tired 16 year GMC technician

http://www.oemcommand.com
1•nextonmags•28s ago•1 comments

Midjourney Seeks to Reveal Studios' Use of AI in High-Stakes Copyright Battle

https://variety.com/2026/film/news/midjourney-studios-ai-copyright-discovery-1236800902/
1•minimaxir•2m ago•0 comments

The Military and the Republic

https://www.foreignaffairs.com/united-states/military-and-republic-charles-q-brown
3•Jtsummers•16m ago•0 comments

Simple White Line Is America's Greatest Unsung Innovation

https://www.wsj.com/business/white-line-road-invention-america-250-8ce6bb89
1•JumpCrisscross•16m ago•0 comments

Should agent orchestrators stay dumb while submodels go deep?

https://curious-hiker.blogspot.com/2026/07/keep-orchestrator-dumb.html
1•stephencoxza•19m ago•0 comments

You're Weirder Than You Think

https://www.atvbt.com/youre-weirder-than-you-think/
2•zdw•22m ago•0 comments

EdgeBench: Unveiling Scaling Laws of Learning from Real-World Environments [pdf]

https://edge-bench.org/paper.pdf
1•mfiguiere•23m ago•0 comments

SecretSpec 0.13: SDKs for Python, Node.js, Go, Ruby, and Haskell

https://secretspec.dev/blog/secretspec-0-13-sdks/
1•domenkozar•26m ago•0 comments

MSI Center – How to gain SYSTEM privileges in seconds

https://mrbruh.com/msicenter/
10•MrBruh•28m ago•1 comments

Did you know your code is overpaying for AI?

https://tokendiet.dev/
2•eMoka•29m ago•1 comments

A fleshed-out IPv5 proposal

4•bigcityslider•42m ago•2 comments

The Mailgun Routes alternative for developers – MailKite

https://mailkite.dev/blog/mailgun-routes-alternative/
2•bucabay•46m ago•0 comments

Show HN: Fortress – open-source Chromium that keeps browser agents unblocked

https://github.com/tiliondev/fortress
7•arhamislam5766•49m ago•0 comments

Soatok's Informal Guide to Threat Models

https://soatok.blog/2026/06/30/soatoks-informal-guide-to-threat-models/
21•zdw•50m ago•2 comments

Context graphs: how AI agents remember why decisions were made

https://nanonets.com/blog/what-is-a-context-graph/
3•vitaelabitur•56m ago•0 comments

I Could Kill You with a Consumer Drone

https://www.defenseone.com/ideas/2017/06/i-could-kill-you-consumer-drone/139012/
16•bookofjoe•1h ago•11 comments

Making a Simulation Game – Part 1: The Agent Simulation Engine

https://scarlet.engineering/blog/making-simulation-game-part-1-the-engine/
2•poga•1h ago•0 comments

To tab or not to tab

https://arxiv.org/abs/2606.30549
3•azhenley•1h ago•0 comments

Bitcask - A Log-Structured Hash Table for Fast Key/Value Data (2010) [pdf]

https://riak.com/assets/bitcask-intro.pdf
2•gregsadetsky•1h ago•0 comments

SkySynth

https://skyviewer.app/skysynth
3•akkartik•1h ago•0 comments

Agent Empire: A interactive game to get started on what agent pattern to chose

https://agent-empire.products.sayantan.sh/
2•Morningstar317•1h ago•0 comments

China's ByteDance discovers new scaling law that could sustain AI boom

https://www.scmp.com/tech/big-tech/article/3359373/chinas-bytedance-discovers-new-scaling-law-cou...
4•dstala•1h ago•0 comments

Voices of the Void

https://votv.dev/
4•dclavijo•1h ago•0 comments

Repo-Slopscore: Detecting AI Contributions in Git Repositories via Commit

https://slopscan.ava.pet/
2•birdculture•1h ago•0 comments

Show HN: Gavio: open-source interceptor pipeline for production LLM applications

https://github.com/manojmallick/gavio
3•cees007•1h ago•1 comments

Show HN: Papa – open-source Hemingway-style readability linting for Markdown

https://github.com/bharadwaj-pendyala/papa
3•bharadwajp•1h ago•0 comments

How HN: Billy – a self-hosted AI assistant that lives in your Telegram

https://github.com/surfgolfski-dev/billy
2•tmblwd73•1h ago•1 comments

Claude's Criminally Bad Electron Mac App Is an Inside Job

https://daringfireball.net/2026/07/claudes_criminally_bad_mac_app_is_an_inside_job
8•GavinAnderegg•1h ago•2 comments

What does privatization of the US Postal Service mean?

https://phenomenalworld.org/analysis/unstitching-america/
22•htunnicliff•1h ago•15 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