frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Open-source YouTube summary, transcript chat, and timeline sidepanel

https://github.com/EchoTide/QuickSummarize
1•oujiangping•29s ago•0 comments

British physics faces 'catastrophic' cuts

https://www.bbc.com/news/articles/czr0zmzzp84o
1•jb1991•38s ago•0 comments

Show HN: Vue-OTP-pro – Minimal OTP input for Vue 3

https://vue-otp-pro.netlify.app
1•pratik227•4m ago•0 comments

Celebrating Tony Hoare's mark on computer science

https://bertrandmeyer.com/2026/03/16/celebrating-tony-hoares-mark-on-computer-science/
1•benhoyt•8m ago•0 comments

The Hyperscale IPv4 Moat: Analyzing AWS's Latest 9M Address Acquisition

https://circleid.com/posts/the-hyperscale-ipv4-moat-analyzing-awss-latest-9m-address-acquisition
1•jruohonen•10m ago•0 comments

The Last Quiet Thing

https://www.terrygodier.com/the-last-quiet-thing
3•cylo•13m ago•0 comments

CVE-2025-71263: Unix fourth edition buffer overflow vulnerability

https://www.cve.org/CVERecord?id=CVE-2025-71263
2•pseudohadamard•13m ago•1 comments

The End of Political Hypocrisy

https://hedgehogreview.com/web-features/thr/posts/the-end-of-political-hypocrisy
2•rzk•14m ago•1 comments

Show HN: I wrote a macOS C++ audio driver to fix HDMI volume controls

https://github.com/chenjy16/SoundBridge
2•chenjy16•15m ago•0 comments

Contract-Centered Iterative Stability v4.7.3

https://ai.gtzilla.com/papers/contract-centered-iterative-stability-v4.7.3/
1•osconfused•17m ago•1 comments

DeepSeek by Hand in Excel

https://www.byhand.ai/p/deepseek-lecture-128
2•teleforce•19m ago•0 comments

Thrum – Agent coordination through messaging

https://leonletto.github.io/thrum/index.html
1•leonletto•19m ago•1 comments

How Israel is censoring reporting on the war

https://www.972mag.com/israel-media-censorship-iran-war/
4•0x54MUR41•20m ago•0 comments

100% private Mac dictation app

https://www.getvoibe.com/
1•ayushchat•22m ago•0 comments

Designing Defensive Databases for Agents

https://arpitbhayani.me/blogs/defensive-databases/
1•Noumenon72•22m ago•0 comments

LightningPDF – HTML to PDF API with a native renderer and Chromium fallback

https://lightningpdf.dev/
2•DigitalTrubador•25m ago•2 comments

Apache Fory C++: 10x faster serialization than protobuf

https://fory.apache.org/blog/fory_cpp_blazing_fast_serialization_framework/
3•chaokunyang•28m ago•1 comments

Solow's 1987 Computer Paradox Explains Today's AI Measurement Crisis

https://theaugmentedinvestigator.substack.com/p/echoes-of-1987-how-solows-computer
1•walterbell•30m ago•0 comments

Snap-confine and systemd-tmpfiles = root (CVE-2026-3888)

https://www.openwall.com/lists/oss-security/2026/03/17/8
2•rkta•35m ago•0 comments

Show HN: The Lottery of Life

https://claude.ai/public/artifacts/a62c4bac-3c05-4443-9d0a-50a9bd3f9d8d
5•atulvi•41m ago•2 comments

Undone Computer Science

https://www.undonecs.org/
1•y1n0•45m ago•0 comments

I Don't Know ML. Claude Does. 0.871 F1 on Predicting Linux Game Compatibility

https://getjump.me/posts/01-protondb-compatibility-ml-x-claude/
1•GetJump•46m ago•1 comments

Title: "Announcing S3syncy – Open-Source Real-Time S3 Synchronization"

https://pypi.org/project/s3syncy/
1•mtahle•46m ago•1 comments

Using Ledger, plain text accounting and a touch AI to fill in my UK tax return

https://www.jvt.me/posts/2026/02/01/ledger/
1•yesbabyyes•48m ago•0 comments

Agents over Bubbles

https://stratechery.com/2026/agents-over-bubbles/
2•abhis3798•49m ago•0 comments

Agent Package Manager

https://github.com/microsoft/apm
3•donutshop•49m ago•0 comments

Show HN: N0x – LLM inference, agents, RAG, Python exec in browser, no back end

https://n0xth.vercel.app/
2•redhanuman•55m ago•0 comments

Switzerland Built an Alternative to BGP

https://www.theregister.com/2026/03/17/switzerland_bgp_alternative/
14•jonbaer•55m ago•2 comments

The Healing Power of Social Friction

https://www.noemamag.com/the-healing-power-of-social-friction/
3•sonicrocketman•59m ago•0 comments

Cognitive overload: When processing information becomes a problem (2022)

https://www.mayoclinichealthsystem.org/hometown-health/speaking-of-health/cognitive-overload
2•marysminefnuf•1h 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