frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Taste is tech billionaires' new obsession (why?) [video]

https://www.youtube.com/watch?v=FjVmtxKXMbM
2•the_wolo•3m ago•1 comments

US to tell partners they must pick sides in AI race with China

https://www.reuters.com/world/china/us-tell-partners-they-must-pick-sides-ai-race-with-china-2026...
1•sanid•4m ago•0 comments

Show HN: WorldClock.free – Current local time from anywhere in the world

https://worldclock.free/
1•nadermx•5m ago•0 comments

eigendrum

https://eigendrum.com/#p=circle
1•bookofjoe•7m ago•0 comments

Taiwan targeted in AI-driven hacking campaign

https://www.taipeitimes.com/News/front/archives/2026/08/14/2003862463
1•skybrian•13m ago•0 comments

Show HN: I built a Claude Code plugin to query 10.6M earnings-call embeddings

https://fn2.ai/claude
1•oceanplexian•13m ago•0 comments

Vulnerability giving attackers full control of Macs is under active exploitation

https://arstechnica.com/security/2026/08/vulnerability-giving-attackers-full-control-of-macs-is-u...
3•sbulaev•15m ago•0 comments

The flags given letter grades

https://worldflagsgraded.com/ratings.html
1•carlos-menezes•17m ago•0 comments

Show HN: I asked Claude to turn 20 years of my research into a game

https://playhyperbubble.com/
1•2020science•21m ago•0 comments

Show HN: WeaveScope – Elixir native observability for AI agents

https://weavescope.com/
1•caudena•24m ago•0 comments

Randomness Is a Tax – Until It Isn't

https://www.sidhantbansal.com/2026/When-is-randomness-an-asset-vs-a-tax/
1•sidhantbansal•25m ago•0 comments

'Platformicide' of Palestine: Activists struggle to be heard on Meta

https://www.aljazeera.com/news/2026/8/12/platformicide-of-palestine-activists-struggle-to-be-hear...
2•slowin•25m ago•0 comments

GitHub Stacks in Jujutsu

https://alan.norbauer.com/articles/github-stacks-with-jujutsu/
1•birdculture•29m ago•0 comments

Show HN: Conjecscore - conjecscore is a (semi-)serious coding competition site.

https://conjecscore.org/
1•thyrgle•29m ago•1 comments

Man attempts to prompt-inject court, fails

https://arstechnica.com/tech-policy/2026/08/suspecting-court-of-using-ai-man-injected-prompts-in-...
1•madaxe_again•31m ago•0 comments

OKLCH in CSS: why we moved from RGB and HSL

https://evilmartians.com/chronicles/oklch-in-css-why-quit-rgb-hsl
2•Trattue•32m ago•0 comments

Elon Musk mocks locals concerned about data center water use

https://twitter.com/essenviews/status/2088217508725559402
4•grandpajoey•33m ago•0 comments

Porkbun Forces ID Verification

https://www.reddit.com/r/selfhosted/comments/1rblh8n/porkbun_forces_id_verification/
4•trinsic2•34m ago•1 comments

Wikipedia: List of predictions for autonomous Tesla vehicles by Elon Musk

4•glaslong•34m ago•0 comments

Show HN: Embassia – LLM Search Console – Web crawlers talk to your site's agent

https://embassia.com
1•ramazanaliakdas•34m ago•0 comments

America's largest home lender falls out of the hamster wheel

https://www.ft.com/content/0a4794fa-7112-436f-a311-9077fcba14b8
1•petethomas•40m ago•0 comments

Show HN: Open-Source Paper

https://github.com/caffeinum/tracepaper
1•bykhun•44m ago•0 comments

Show HN: A sandbox for AI agents using nothing but Go's standard library

https://towardsdev.com/i-built-an-ai-agent-sandbox-from-the-go-standard-library-350ecac5d578?sk=f...
1•cheikhdev•46m ago•0 comments

Bill Gates' daughter Phoebe accused of 'cookie stuffing' scheme

https://nypost.com/2026/08/12/business/bill-gates-daughter-phoebe-accused-of-cookie-stuffing-sche...
7•randycupertino•47m ago•2 comments

Pikuma: SIMD in the 90s: Programming Intel's Pentium MMX

https://pikuma.com/blog/programming-intel-pentium-mmx-simd
1•rbanffy•48m ago•0 comments

Compilable Wishes

https://opentheory.substack.com/p/compilable-wishes
1•eatitraw•49m ago•0 comments

Vesta, adaptive ontology for Claude Code

https://github.com/kanjani-ai-research/Vesta
1•aug2uag•49m ago•1 comments

AI runs here. Not out there

https://osaurus.ai
1•ALLTaken•50m ago•0 comments

Ukrainian drones wipe out US tank brigade in live war game

https://arstechnica.com/gadgets/2026/08/ukrainian-drones-wipe-out-entire-us-tank-brigade-in-live-...
4•rbanffy•50m ago•0 comments

Show HN: AlmondLab – Virtual lab and Stage 1 report for salt-tolerant crops

https://consigcody94.github.io/saltwater-mini-almond/
1•sentinelowl•54m 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