frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Dis: Dev environments but without Node.js

https://github.com/candacelabs/dis/tree/main
1•kaashmonee•1m ago•0 comments

Laurie Kirk proved your RAM lies to you. So we built Palantir at home

https://github.com/seppulcro/phantom
1•seppulcro•1m ago•1 comments

Ask HN: We got 100 stars. A weekend project got 12k. What are we missing?

1•lilwing•1m ago•1 comments

Ask HN: A CLI to control what AI code can (and can't) change in your repo

2•sujitjaunjal•5m ago•0 comments

Principles of Mechanical Sympathy

https://martinfowler.com/articles/mechanical-sympathy-principles.html
1•emschwartz•10m ago•0 comments

Taco: Linktaco from Your Terminal

https://linktaco.com/blog/taco-cli-tool-linktaco.html
1•peterjsanchez•11m ago•0 comments

Show HN: Tired of logic in useEffect, I built a class-based React state manager

https://thales.me/posts/why-i-built-snapstate/
1•thalesfp•12m ago•0 comments

Hsihp Hsims

https://fromouterstace.com
1•stacydbradford•13m ago•0 comments

Prisoner's Dilemma – An Extension (from game theory)

https://pd.luthira.com/
2•llamatheollama•15m ago•0 comments

Resurrecting a 1992 MUD with Agentic AI

https://meditations.metavert.io/p/resurrecting-a-1992-mud-with-agentic
3•salt4034•16m ago•0 comments

Once 'Ultra MAGA', Trump Supporters Fume About Iran on Truth Social

https://www.nytimes.com/2026/04/08/us/politics/trump-truth-social-iran.html
3•doener•16m ago•0 comments

Volatco – Powerful Multicompute

https://volatco.github.io/
1•nbaksalyar•21m ago•0 comments

Show HN: Linggen – Open-source AI agent with P2P remote access from your phone

https://linggen.dev/
2•linggen•22m ago•0 comments

How to Connect to Builders in Web3

https://woof.software/
1•Pasha-CEO•24m ago•1 comments

Google engineer rejected by colleges uses AI to sue for racial discrimination

https://abc7news.com/post/google-engineer-rejected-colleges-uses-ai-sue-ucs-other-universities-ra...
1•ubasu•24m ago•0 comments

AI Did It in 12 Minutes. It Took Me 10 Hours to Fix It

https://idiallo.com/blog/it-took-me-10-hours-to-fix-ai-code
3•firefoxd•29m ago•1 comments

Show HN: Is Hormuz Open Yet?

https://www.ishormuzopenyet.com/
84•anonfunction•33m ago•29 comments

Finetuning Activates Verbatim Recall of Copyrighted Books in LLMs

https://arxiv.org/abs/2603.20957
1•guitarlimeo•33m ago•0 comments

Boots on the Ground, Flip Flops in the Air [pdf]

https://drive.google.com/file/d/1DrnHCWOQ7PRHNBqbxdqT_yQMRVFC8YbD/view?usp=drive_link
1•sans_souse•35m ago•0 comments

Show HN: Phantom UI – Skeleton that measures your real DOM (Web Component, 8kb)

https://github.com/Aejkatappaja/phantom-ui
5•Aejkatappaja•42m ago•6 comments

Agent Brain – 7-layer cognitive memory for AI agents (open source)

https://github.com/kaderosio/agent-brain
2•Thesh2209•44m ago•1 comments

OpenAI: The Next Phase of Enterprise AI

https://openai.com/index/next-phase-of-enterprise-ai/
3•louiereederson•48m ago•2 comments

Show HN: SessionFlow macOS app that auto-schedules sessions around your calendar

https://github.com/kibermaks/SessionFlow
1•kibermaks•48m ago•0 comments

Grading laptop and cell phone companies on the fixability of their products

https://pirg.org/edfund/resources/failing-the-fix-2026/
2•breve•50m ago•0 comments

So My Friend Made Me a Bioreactor

https://chillphysicsenjoyer.substack.com/p/so-my-friend-made-me-a-bioreactor
1•crescit_eundo•51m ago•0 comments

Anthropic Set to Preview Powerful 'Mythos' Model to Ward Off AI Cyberthreats

https://www.wsj.com/tech/ai/anthropic-set-to-preview-powerful-mythos-model-to-ward-off-ai-cyberth...
1•sonabinu•54m ago•0 comments

Show HN: I built a local data lake for AI powered data engineering and analytics

https://stream-sock-3f5.notion.site/Nile-Local-an-AI-Data-IDE-that-runs-on-your-local-machine-33b...
5•vpfaiz•54m ago•0 comments

Fantasshtic – Free Cursor for SSH

https://fantasshtic.vercel.app
2•aureus_cx•55m ago•0 comments

Ask HN: What tools are you using to secure your Claude memory files?

1•taariqlewis•55m ago•0 comments

Something weird is happening on Tinder [video]

https://www.youtube.com/watch?v=rjxAYdUe8uU
1•DavidHaerer•58m ago•1 comments
Open in hackernews

Show HN: API Testing and Security with AI

https://qodex.ai/
8•siddhant_mohan•11mo ago

Comments

anuragdt•11mo 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•11mo 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•11mo 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