frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Building Complex Functions out of Real parts

https://www.johndcook.com/blog/2026/05/22/complex-functions-real-parts/
1•tzury•17s ago•0 comments

Why AI writes software but doesn't build a good product

https://www.f-rello.com/blog/1
1•karstenb•1m ago•1 comments

Show HN: CostHawk Tracks AI Adoption Across Teams, Repos, and Projects

https://costhawk.ai
1•tech-pulse•1m ago•0 comments

Yuri Ushakov

https://grokipedia.com/page/Yuri_Ushakov
1•__patchbit__•2m ago•0 comments

PSA Crypto: The P is for Portability

https://danielmangum.com/posts/psa-crypto-portability/
1•hasheddan•5m ago•0 comments

AI assistants can be hijacked and manipulated by inaudible sounds

https://arxiv.org/abs/2604.14604
1•chbint•7m ago•0 comments

AI is changing the internet forever

https://www.cnn.com/2026/05/23/tech/ai-internet-search
1•reconnecting•13m ago•0 comments

Show HN: First MCP server for Guesty property mgmt – 43 tools, open source

https://www.npmjs.com/package/guesty-mcp-server
1•dlj_realty•14m ago•0 comments

How Was This Allowed to Happen? – 2025 Washington National Crash [video]

https://www.youtube.com/watch?v=41UYPeTr96s
1•susam•15m ago•0 comments

Claude Code Documentation Map

https://code.claude.com/docs/en/claude_code_docs_map
1•geox•16m ago•0 comments

Runway started by helping filmmakers – now it wants to beat Google at AI

https://techcrunch.com/2026/05/15/runway-started-by-helping-filmmakers-now-it-wants-to-beat-googl...
1•gmays•16m ago•0 comments

I let an AI agent loose on my network – it owned my supply chain in 12 minutes

https://dennysentinel.com/blog/deepseek-owned-supply-chain-12-minutes/
2•makerdiety•17m ago•0 comments

Opaque Types in Python

https://blog.glyph.im/2026/05/opaque-types-in-python.html
1•lumpa•18m ago•0 comments

LLMKube – A Kubernetes operator for local LLMs across Nvidia and Mac fleets

https://llmkube.com/
2•richteach•18m ago•0 comments

His Chatbot Nearly Ruined Him. To Recover, He Had to Destroy It

https://www.wsj.com/tech/personal-tech/chatgpt-addiction-chatbots-recovery-7977308e
1•impish9208•21m ago•2 comments

The Young Wikipedians Writing the Front Page of Music History

https://pitchfork.com/thepitch/meet-the-young-wikipedians-writing-the-front-page-of-music-history/
2•altilunium•23m ago•0 comments

Google Introduces HTML-in-Canvas API: Accessible UI Meets WebGL / WebGPU

https://www.webgpu.com/news/google-html-in-canvas-webgl-webgpu/
2•FarhadG•24m ago•0 comments

StreamIndex: Memory-bounded compressed sparse attention via streaming top-k

https://arxiv.org/abs/2605.02568
2•OsamaJaber•24m ago•0 comments

On The <dl>

https://benmyers.dev/blog/on-the-dl/
5•ravenical•32m ago•1 comments

TrustGive – a charity directory that links every claim to the 990 Текст

https://trustgive.org
2•AlexOpasnost•33m ago•0 comments

I'm looking for people who can help us become a 3rd level civilization

1•MR-K•35m ago•3 comments

Show HN: Rav2d – AV2 video decoder ported from C to Rust (47K lines, 786 tests)

https://github.com/stukenov/rav2d
1•stukenov•39m ago•0 comments

Herdr: A tmux-like terminal multiplexer for AI coding agents

https://github.com/ogulcancelik/herdr
3•yigitkonur35•42m ago•0 comments

Who are the Volcano Group, mystery saboteurs behind a five-day Berlin blackout?

https://www.theguardian.com/environment/2026/may/23/volcano-group-berlin-blackout-mystery-saboteurs
5•monkey_monkey•45m ago•0 comments

The Art of Money Getting

https://kk.org/cooltools/book-freak-210-the-art-of-money-getting/
2•dxs•47m ago•0 comments

ZA/UM (Disco Elysium's studio) releases new computer game 'Zero Parades'

https://news.err.ee/1610032093/estonian-game-studio-za-um-releases-new-computer-game-zero-parades
2•vintagedave•48m ago•0 comments

Quantum 'Jamming' Could Help Unlock the Mysteries of Causality

https://www.wired.com/story/quantum-jamming-could-help-unlock-the-mysteries-of-causality/
1•Brajeshwar•49m ago•0 comments

Export Mac (OLM) to Outlook for Windows (PST)

https://apps.microsoft.com/detail/9n7jk7z3546j?hl=en-US&gl=US
1•tieanderson•52m ago•0 comments

Optimal summit window for Matterhorn from 50 years of historical data and pandas

https://mz.prose.sh/matterhorn-pandas
2•manuelz•53m ago•0 comments

Awesome Neuroscience

https://github.com/analyticalmonk/awesome-neuroscience
3•akashtndn•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