frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Are Strings Still Our Best Hope for a Theory of Everything?

https://www.quantamagazine.org/are-strings-still-our-best-hope-for-a-theory-of-everything-20260323/
1•MindGods•44s ago•0 comments

Training LLMs to Predict World Events

https://thinkingmachines.ai/news/training-llms-to-predict-world-events/
1•enjeeneer•1m ago•0 comments

Zombies, AI, and the "Objective" Theory of Contracts [pdf]

https://download.ssrn.com/2026/3/12/6403619.pdf?response-content-disposition=inline&X-Amz-Securit...
1•droidjj•1m ago•0 comments

American Diner Gothic

https://www.thenewatlantis.com/publications/american-diner-gothic
1•jger15•1m ago•0 comments

Ray: The Free AI media player app that generates and translates subtitles

https://github.com/openai/whisper/discussions/2481
1•giamma•2m ago•0 comments

How to Do AI-Assisted Engineering

https://newsletter.eng-leadership.com/p/how-to-do-ai-assisted-engineering
1•sysoleg•2m ago•0 comments

Codex Subagents

https://developers.openai.com/codex/subagents
2•bootlegbilly•2m ago•0 comments

Gnoosic – Discover New Music

https://www.gnoosic.com/
1•nvalis•3m ago•0 comments

Hyperagents

https://arxiv.org/abs/2603.19461
1•handfuloflight•5m ago•0 comments

In a world of AI text, speech still reigns supreme

https://techxplore.com/news/2026-03-world-ai-text-speech-supreme.html
1•Brajeshwar•6m ago•0 comments

ContextCrush: The Context7 MCP Server Vulnerability Hiding in Plain Sight

https://noma.security/blog/contextcrush-context7-the-mcp-server-vulnerability/
1•tcbrah•7m ago•0 comments

The Mythical Agent-Month

https://www.oreilly.com/radar/the-mythical-agent-month/
1•sysoleg•7m ago•0 comments

Show HN: DocDrift – Use Tree-sitter and Local LLMs to fix stale documentation

1•AYSgood•8m ago•0 comments

Ask HN: Is Democracy a Control System?

2•motiw•9m ago•1 comments

x402: What if you never had to get an API key ever again?

https://stevekrouse.com/x402
1•goranmoomin•9m ago•0 comments

Package manager and web customizer for OpenSCAD

https://scadder.dev/
1•solderlocks•11m ago•1 comments

Show HN: I built a 0.07ms Python firewall to stop AI hallucinations

1•richardewing1•12m ago•0 comments

We're building an automated AI engineer, and it works

https://www.tensorzero.com/blog/automated-ai-engineer/
1•GabrielBianconi•13m ago•0 comments

What's New in Aspire 13.2

https://aspire.dev/whats-new/aspire-13-2/
1•doomroot13•16m ago•0 comments

Orbán's top opponent says Hungary's alleged Russian backchannel 'treason'

https://www.thetelegraph.com/news/world/article/orb-n-s-top-opponent-says-hungary-s-alleged-22091...
2•vrganj•17m ago•0 comments

OnlyFans owner Leonid Radvinsky dies at 43 following secret cancer battle

https://nypost.com/2026/03/23/business/onlyfans-owner-leonid-radvinsky-dies-at-43-following-secre...
1•pseudolus•17m ago•0 comments

We're All Just 'Monitoring the Situation'

https://www.bloomberg.com/news/articles/2026-03-23/iran-war-epstein-files-betting-markets-why-we-...
1•jbegley•17m ago•0 comments

Why Gas in California Is Almost $6 a Gallon – and Could Go Higher

https://heatmap.news/energy/california-gasoline-price-iran
1•speckx•18m ago•0 comments

Is it a pint?

https://isitapint.com/
29•cainxinth•20m ago•15 comments

Codex with GPT-5.4 vs. Claude Code with Opus 4.6 – Why I Now Use Both

https://chandlernguyen.com/blog/2026/03/13/codex-gpt-5-4-vs-claude-code-opus-4-6-dual-wielding-ai...
2•chandlernguyen•20m ago•1 comments

» the Mystery of Rennes-Le-Château, Part 1: The Priest's Treasure

https://www.filfre.net/2026/03/the-mystery-of-rennes-le-chateau-part-1-the-priests-treasure/
1•ibobev•20m ago•0 comments

The Jellies That Evolved a Different Way to Keep Time

https://www.quantamagazine.org/the-jellies-that-evolved-a-different-way-to-keep-time-20260320/
1•ibobev•22m ago•0 comments

Nadella paid $650M to recruit his AI chief. After 2 years he's pushing him aside

https://finance.yahoo.com/markets/stocks/articles/nadella-paid-650m-recruit-ai-170000361.html
2•mindracer•22m ago•0 comments

Planet trapped record heat in 2025: UN

https://phys.org/news/2026-03-planet.html
1•Brajeshwar•24m ago•0 comments

Reddit Gets Zero Citations Through AI APIs, but 17-44% Through Web UIs

https://aiplusautomation.com/blog/reddit-api-vs-web-ui
2•anthonylee991•24m ago•0 comments
Open in hackernews

Show HN: API Testing and Security with AI

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

Comments

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