frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Human-inspired time-series health eval with adaptive multi-modal electronic skin

https://www.science.org/doi/10.1126/sciadv.aeg5606
1•joebig•19s ago•0 comments

The Impossible Journey to Get an Apple Developer Account: Part 2

https://www.dioko.ai/blog/the-impossible-journey-to-get-apple-developer-accounts-part-2
2•dioko•1m ago•0 comments

Jonathan Blow – How to Program Independent Games [video]

https://www.youtube.com/watch?v=JjDsP5n2kSM
1•jonl247•2m ago•0 comments

Ask HN: Should the word 'inflaiton' be replaced with 'devaluation'?

1•dfps•7m ago•0 comments

Feds Continue with Plan to Save Spotted Owls by Killing Nearly 500k Other Owls

https://cowboystatedaily.com/2026/08/05/invasive-owl-targeted-in-pacific-northwest-is-expanding-t...
2•Bender•10m ago•0 comments

Samsung and Mousterian move ahead with floating datacenter for Texas

https://www.theregister.com/on-prem/2026/08/05/samsung-and-mousterian-move-ahead-with-floating-da...
1•Bender•11m ago•0 comments

ROI of $100 Claude Code Subscription

https://medium.com/@nenadmitt/roi-of-my-100-claude-code-subscription-028937c9f77e
2•benjiro29•18m ago•1 comments

Passive investing fueled a bull market – and could bring it down

https://thehustle.co/originals/passive-investing-fueled-a-bull-market-and-could-bring-it-down
1•rzk•26m ago•0 comments

God Does Not Play Dice. We Built Software That Does

https://quodeq.ai/blog/god-does-not-play-dice/
3•quodeq•27m ago•0 comments

Seen Dating App Waitlist

https://tryseen.ca
1•Beaudelaire•27m ago•0 comments

AutoTheme-utility that automatically shifts your CSS styles based on time

https://www.npmjs.com/package/@omid2007hope/autotheme
1•omid2007hope•30m ago•0 comments

Iran threatens to hit Gulf states if US launches new strikes

https://www.reuters.com/world/middle-east/iran-threatens-hit-gulf-states-if-us-launches-new-strik...
11•mapping365•33m ago•3 comments

Disney and TikTok strike deal to let creators make videos with its characters

https://www.cnn.com/2026/08/05/media/disney-tiktok-partnership
1•1659447091•37m ago•0 comments

Wireless retinal implant approved for sale across 30 countries

https://newatlas.com/medical-tech/vision-restoring-retinal-implant-approval-europe/
2•geox•37m ago•0 comments

Notes on Engineering leadership

https://ianmccrystal.com/posts/notes-on-engineering-leadership/
2•matv•37m ago•0 comments

Trump pushes ahead on false claims that Reflecting Pool was vandalized

https://apnews.com/article/trump-pirro-reflecting-pool-3703eaedddf580f32ff9aca33bc11851
16•petethomas•42m ago•0 comments

Will You Become an Idol? Build your Football player from this game

https://www.idolojuego.com/
1•jeyzolo•43m ago•1 comments

Private LLM in a TEE, verified against Intel's root with no cloud in the chain

https://505labs.com/blog/private-llm-inside-a-tee
1•galgantar•43m ago•0 comments

The silent failure taxonomy: an autonomous pipeline's 32 ways of faking success

https://claude.ai/code/artifact/f66e6308-e81b-40fb-9474-b2b840cb4399
1•IgorVoytyuk•46m ago•0 comments

For an app claiming end-to-end encryption, what evidence would earn your trust?

2•Brandon-Coll•49m ago•2 comments

NASA Engineers Help Prolong Voyager 2's Science Mission

https://science.nasa.gov/blogs/voyager/2026/08/04/nasa-engineers-help-prolong-voyager-2s-science-...
2•sohkamyung•50m ago•0 comments

Birds and Frogs in Physics

https://3quarksdaily.com/3quarksdaily/2020/11/birds-and-frogs-in-physics.html
1•geneticdrifts•54m ago•1 comments

OpenAI, Anthropic AI agents implicated in new security breaches

https://www.reuters.com/legal/litigation/openai-anthropic-ai-agents-implicated-new-security-breac...
3•tagyro•55m ago•1 comments

Worth Accepting: Evaluating Mellum at JetBrains

https://evalovernite.substack.com/p/worth-accepting-mellum
1•scoresmoke•57m ago•0 comments

Unified Neuro Symbolic Engine AGPL 3.0

https://zenodo.org/records/21809861
1•hiddenarchitect•58m ago•0 comments

How to Improve the AI Frontier

https://www.chaidhat.com/blog
1•chaidhat•58m ago•0 comments

AI companies destroy physical books – let's scan rare books before it's too late

https://annas-archive.gl/blog/physical-destruction.html
4•EffrafaxOfWug•58m ago•2 comments

SpaceX Rocket Crashes into Moon

https://apnews.com/article/spacex-rocket-moon-crash-elon-musk-d64a98138fd19241700461c87b49e201
3•jumploops•59m ago•0 comments

Repurpose Your VR Content for Any Screen by Converting to Standard Video

https://news.qencode.com/posts/repurpose-your-vr-content-for-any-screen-by-converting-to-standard...
1•QencodeCorp•59m ago•0 comments

Modelregistry: Decentralizing distribution of open-source AI models

https://github.com/marella/modelregistry
1•simonpure•1h 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