frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

See How Owning a Home Is Getting More Expensive in Every Way

https://www.wsj.com/economy/housing/home-ownership-costs-charts-7fe04eb3
2•fortran77•4m ago•0 comments

Hunting Million-Digit Primes from My Loft

https://primecrunch.com/blog/2/hunting-million-digit-primes-from-my-loft
2•andyhedges•4m ago•0 comments

Analyst Kit: Turn your Claude / Codex into an investment analyst (Free)

https://github.com/mohitjandwani/analyst-kit
1•mohitjandwani•5m ago•0 comments

DeFi Theater: Why Polymarket's Incentives Don't Reward the Truth

https://omarabid.com/polymarket-bet/
2•csomar•10m ago•0 comments

Now my wife and I trade together

https://magzimof.com/trading-together/
1•shaimagz•14m ago•0 comments

Venture Debt for Deep Tech: Financing the Future

https://www.latimes.com/b2b/banking-finance/story/2026-06-21/venture-debt-deep-tech-funding
2•petethomas•17m ago•0 comments

The end of public frontier models

https://steve-yegge.medium.com/the-flat-curve-society-36c8b01eb33b
1•AndrewSwift•19m ago•1 comments

Show HN: Claude Code skills that encode a staff engineer's setup, not prompts

https://staffengineer.dev/
1•pro_methe5•21m ago•0 comments

PE Owners Tap a Hot Loan Market to Pay Themselves

https://www.bloomberg.com/news/articles/2026-06-20/pe-owners-tap-a-hot-loan-market-to-pay-themsel...
2•petethomas•22m ago•0 comments

The Branch Nobody Reads

https://magzimof.com/olive-branches/
1•shaimagz•23m ago•0 comments

Show HN: Pure Effect – Reproduce production bugs on your laptop without a DB

https://pure-effect.org
1•tie-in•27m ago•0 comments

Bistro: A general purpose oracle for macroeconomic time series

https://www.bis.org/publ/qtrpdf/r_qt2603d.htm
1•bryanrasmussen•28m ago•0 comments

Turbo C

https://en.wikipedia.org/wiki/Turbo_C
2•tosh•30m ago•0 comments

Engine that finds hidden costs in paid ads your platform never reports

https://alloceraintelligence.com/
1•allo1•31m ago•0 comments

Show HN: Vexyn – browser-only privacy tools with local AI (WebGPU)

https://vexyn.app/
1•andreicristi88•31m ago•0 comments

The Out N' About Walks Store

https://lopespm.com/notes/2026/06/21/out_and_about.html
1•nate•33m ago•0 comments

Health insurance claim denial rates range from 13% to 35% by insurer

https://www.randalolson.com/2026/06/16/aca-insurer-claim-denial-rates/
31•brandonb•35m ago•13 comments

Workspace, Runtime, and Directories – Designing an Agent Orchestration Library

https://ffacu.dev/blog/designing-agents-environment
1•ffacu•36m ago•1 comments

Reminiscences of Tolstoy, Chekhov and Andreyev by Maxim Gorky

https://www.lrb.co.uk/the-paper/v48/n11/adam-thirlwell/luxury-muzhik
2•mitchbob•36m ago•1 comments

The Strange Disappearance of Japan's Animators

https://www.economist.com/interactive/1843/2026/06/19/the-strange-disappearance-of-japans-animators
1•austinallegro•37m ago•1 comments

Two AI judges scored our agent's answer 0.85, but it never opened the file

https://tenureai.dev/writing/llm-as-judge-became-the-default-for-agent-evaluation/
5•jflynt76•39m ago•0 comments

Designing Finger-Friendly Interactions

https://aresluna.org/show-your-hands-honor/
1•prnv10•43m ago•0 comments

Jürgen Habermas Defended Reason in a Darkening Age

https://www.newyorker.com/magazine/2026/06/22/jurgen-habermas-desperate-fight-for-democracy
2•mitchbob•47m ago•1 comments

How to get what's available – game theory and governing dynamics

https://www.tsoon.com/posts/game-theory/
1•mooreds•47m ago•0 comments

ZSTD –auto it picks the optimal compression level for you

https://github.com/detechs-debug/zstd-auto
1•detechs•51m ago•0 comments

An example abstract for conference talks

https://cakehurstryan.com/2026/05/05/an-example-abstract-for-conference-talks/
1•mooreds•53m ago•0 comments

Anthropic uses Persona for identity verification

https://web.archive.org/web/20260415064244/https://support.claude.com/en/articles/14328960-identi...
3•Trung0246•54m ago•0 comments

Scanning malicious websites with 'infinite' number of VPN tunnels (Part 1)

https://discounttimu.substack.com/p/scanning-malicious-websites-with
1•guardiangod•54m ago•1 comments

What I Don't See When I'm Jealous

https://www.mooreds.com/wordpress/archives/3741
2•mooreds•54m ago•0 comments

A simple self-hosted service to generate per-serving macros of online recipes

https://github.com/harrisonfaulkner/recipe-macros-scraper
1•entitledosprey•55m 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