frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Epidurals Are a Miracle Technology

https://worksinprogress.co/issue/the-wonder-of-epidurals/
1•karakoram•2m ago•0 comments

Write a Letter to Your Future Self

https://www.futureme.org/
1•karakoram•3m ago•0 comments

Sinceerly, AI to undo your AI writing

https://sinceerly.com
1•zdw•3m ago•0 comments

Granta stops publishing short story award winners over AI controversy

https://www.theguardian.com/books/2026/jun/20/granta-magazine-commonwealth-short-story-prize-ai
2•ilreb•3m ago•0 comments

Show HN: Video on the map marketplace 1 year – still bad traction

1•cromlehg•4m ago•0 comments

Hyperia 0.12.7 is released: an agentic terminal for agents and humans

https://github.com/DeepBlueDynamics/hyperia/releases
1•kordlessagain•6m ago•0 comments

Show HN: Mitos – N-way live copy-on-write fork of running Firecracker microVMs

https://github.com/mitos-run/mitos
1•stubbi•7m ago•0 comments

What has (can) the EU Cyber Resilience Act done (do) for you?

https://bsdly.blogspot.com/2026/06/what-has-can-eu-cyber-resilience-act.html
2•jandeboevrie•9m ago•0 comments

On Some Quotes from G.H. Hardy

https://www.stat.berkeley.edu/~aldous/Blog/hardy.html
1•jruohonen•11m ago•0 comments

Speculation Is All You Need

https://modal.com/blog/spec-is-all-u-need
1•birdculture•11m ago•0 comments

Book publishing tool for engineers: EPublish

https://frequal.com/epublish/
2•TeaVMFan•13m ago•1 comments

ESP32 Bit Pirate, Hardware Hacking tools, Debug/explore hardware in the browser

https://geo-tp.github.io/ESP32-Bit-Pirate/web-tools/
4•geotp•17m ago•1 comments

We're approaching AI agents from the wrong direction

https://codeastra.dev/
2•mpakaobed•17m ago•0 comments

I let AI run my company for 6 months. Here's what broke

https://theassociationwebmasters.blogspot.com/2026/06/i-gave-my-company-to-ai-for-6-months.html
2•laurentlof•17m ago•2 comments

Big Tech is stoking unrest in the UK. Why?

https://www.ft.com/content/0f3e33d2-0b9e-481d-a911-245d8cc01a9c
2•alephnerd•17m ago•1 comments

KDB+ Database: From Finance to Formula 1 (2019)

https://prohoster.info/en/blog/administrirovanie/baza-dannyh-kdb-ot-finansov-do-formuly-1
3•tosh•20m ago•0 comments

Ask HN: What technique do you use to make Claude Code deterministic?

2•hbarka•21m ago•2 comments

Sponja found 897 companies running webinars (and who runs them) for under $20

https://blog.apify.com/how-sponja-found-companies-running-webinars/
3•roee_tsur•25m ago•0 comments

Smokey Yunick's Hot Vapor Engine Was Equally Genius and Horribly Unsafe

https://www.jalopnik.com/2131436/smokey-yunick-hot-vapor-engine-genius-unsafe/
2•cf100clunk•26m ago•1 comments

Show HN: StartupWiki – A Free Alternative to Crunchbase

https://startupwiki.tech/
3•shpran•27m ago•0 comments

ETLFunnel v1.0 – Accepting POC Requests

2•vivekburman•27m ago•0 comments

Ask HN: What do you do to make LLMs determine

2•hbarka•27m ago•0 comments

Lobsters Bug Allows Unauthorized Email Access

https://lobste.rs/s/7heurd
2•RandomGerm4n•31m ago•0 comments

Plasma Vitamin C levels are associated with brain structural networks on MRI

https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0348504
3•bookofjoe•31m ago•0 comments

Marathon Petroleum Company Is Making Diesel from Soybeans

https://www.jalopnik.com/2194402/marathon-gas-station-owner-makes-diesel-from-soybeans/
2•cf100clunk•32m ago•0 comments

Cancer Myths and Falsehoods Can Be Deadly

https://www.psychologytoday.com/us/blog/misguided/202606/cancer-myths-and-falsehoods-can-be-deadly
2•ndr42•33m ago•0 comments

Show HN: Namecom-CLI – CLI and agent skill so Claude Code/Codex can do your DNS

https://github.com/hypersocialinc/namecom-cli
3•selcuk•35m ago•0 comments

Follow when your world cup team is going to play

https://copa2026.florianobi.workers.dev/
2•brunojppb•35m ago•0 comments

22-year-old Mozart's handwritten notebook unearthed in 'major discovery'

https://www.classicfm.com/composers/mozart/handwritten-notebook-discovered-major-paris/
3•thunderbong•36m ago•0 comments

Agent Memory Layer: Repository-local memory for AI coding agents

https://github.com/ragnarok268/agent-memory-layer
2•einherjarlabs•38m 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