frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

An Axiomatic Audit of Modern Physics Frameworks via Structural Logic

https://zenodo.org/records/20780519
1•VCNoninski•1m ago•0 comments

Promptblock – detect prompt injections in GitHub issues

https://ryandens.github.io/promptblock/
1•rdens1•3m ago•1 comments

Show HN: I Built an MCP Server in 200 Lines of Go (and Claude Became 10x Useful)

https://medium.com/dev-genius/i-built-an-mcp-server-in-200-lines-of-go-and-claude-became-10x-more...
1•cheikhshift•5m ago•0 comments

Show HN: Wirewright, an experimental symbolic physics environment

https://github.com/wirewright/wirewright
1•homonoidian•9m ago•0 comments

HiFi/Stereo Review-Stereo Review – Audiophile Magazine from 1958 to 1999

https://www.worldradiohistory.com/Archive-All-Audio/HiFI-Stereo-Review.htm
1•PopAlongKid•16m ago•1 comments

Show HN: Phileas – Local-first long-term memory for the AI you chat with

https://github.com/alexajuno/phileas
1•alexajuno•16m ago•0 comments

Jets were 300 feet apart in Boston close call that forced Delta flight to abort

https://www.pbs.org/newshour/nation/jets-were-300-feet-apart-in-boston-close-call-that-forced-del...
1•abixb•17m ago•0 comments

New Super Pac Aims to Rally Tech Workers to Help Limit A.I

https://www.nytimes.com/2026/06/18/technology/ai-super-pac-guardrails-alliance.html
3•reasonableklout•19m ago•0 comments

Napoleon Was a Guitarist

https://www.yamaha.com/en/musical_instrument_guide/classical_guitar/trivia/
2•thunderbong•28m ago•0 comments

Bean – a portable convergence gate for agent work

https://github.com/grainulation/bean/
3•woptober•34m ago•0 comments

Spas Were a Mistake (2022)

https://gomakethings.com/articles/spas-were-a-mistake/
1•kristianp•34m ago•0 comments

FoodFavs

https://foodfavs-euq7bgdf.manus.space/
1•pteridactlecdt•36m ago•0 comments

Show HN: TaxLens – free lodging-tax API for hotels, OTAs, and property managers

https://taxlens.getdynamiq.ai
1•vitalii-duk•37m ago•0 comments

A dead simple personal website engine for developers focused on simplicity

https://github.com/iam-mhaseeb/koji
3•iamhaseeb•40m ago•0 comments

Nix-build in under 100 lines

https://fzakaria.com/2026/06/21/nix-build-in-under-100-lines
2•undeveloper•41m ago•0 comments

AStarGrid2D in Godot 4: The Complete Reference

https://vav-labs.com/blog/astargrid2d-complete-reference/
2•Vav-Labs•42m ago•0 comments

Show HN: ANMA, boundary contracts for cheaper AI coding agents

https://github.com/anma-labs/anma
1•nxy•43m ago•0 comments

Show HN: AI Colours

https://github.com/pilotpirxie/ai-colours
1•__natty__•43m ago•0 comments

Ask HN: What would justify writting an OS kernel in 2026?

3•alonsovm44•45m ago•2 comments

Show HN: PeekAI – Local-first observability for Python AI agents

https://github.com/oussamaKH63/peekai
2•ousskh63•45m ago•0 comments

Petition against Meta's employee training data collection for ML models

https://mcipetition.com/
2•reasonableklout•50m ago•0 comments

Show HN: Lupen – an itemized, verified receipt for Claude Code and Codex spend

https://github.com/momoraul/Lupen
1•momoraul•52m ago•0 comments

Riddle solved: Why was Roman concrete so durable? (2023)

https://news.mit.edu/2023/roman-concrete-durability-lime-casts-0106
1•Jakob•53m ago•0 comments

Tech Workers Are Fighting Against Silicon Valley's AI Push

https://www.techpolicy.press/tech-workers-are-fighting-against-silicon-valleys-ai-push/
7•reasonableklout•54m ago•1 comments

Falcon GX the most powerful brand engineering tool

https://falcon.so/
1•cts-i-cts-d•55m ago•0 comments

China's Z.ai open-sourced a frontier coding model as Washington bans it rival

https://startupfortune.com/chinas-zai-open-sourced-a-frontier-coding-model-the-same-day-washingto...
3•insanetech•55m ago•1 comments

Machine Studying

https://jacobxli.com/blog/2026/machine-studying/
1•meander_water•57m ago•0 comments

PivCo-Huffman "Merge" Operations

https://fgiesen.wordpress.com/2026/06/21/pivco-huffman-merge-operations/
1•luu•58m ago•0 comments

Against the Survival of the Prettiest

https://worksinprogress.co/issue/against-the-survival-of-the-prettiest/
1•Jimmc414•59m ago•0 comments

The Parent Uprising Against Screen Time at School

https://www.wsj.com/us-news/education/school-technology-screens-parents-9fc7384b
1•JumpCrisscross•59m 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