frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Man Who Stayed [video]

https://www.ordinarylifeextraordinarygod.org/post/the-man-who-stayed-a-short-documentary
1•NaOH•1m ago•0 comments

See how your investments would look if they never lost value

https://arells.com
1•jeyakatsa•3m ago•0 comments

A Curriculum for Tools for Thought [pdf]

https://ai-tools-for-thought.github.io/workshop/documents/chi26/Crichton_Curriculum_for_Tools_for...
1•tosh•5m ago•0 comments

It is incorrect to "normalize" // in HTTP URL paths

https://runxiyu.org/comp/doubleslash/
1•pabs3•10m ago•0 comments

I Made a Free Stick Figure Generator

https://stickfiguremaker.com/
1•Lex200•12m ago•0 comments

DateBoy (2024)

https://tupperwarefan.itch.io/dateboy
1•robin_reala•13m ago•0 comments

"Liberation Day" at OpenAI as multiple senior executives announce leaving

https://mas.to/@carnage4life/116422881496195720
2•riffraff•16m ago•0 comments

Ask HN: How are short-form video algorithms impacting your deep work?

1•mtjfilipovic•20m ago•0 comments

Show HN: A site for stopping work slop

https://stopnoslop.com/
1•vlidholt•23m ago•0 comments

The Core-Math Project

https://core-math.gitlabpages.inria.fr/
2•crispinh•24m ago•0 comments

A Message to All Humanity: Three Onboard UFO Encounters [video]

https://www.youtube.com/watch?v=cQ5ztmIA2Bo
1•keepamovin•25m ago•0 comments

Discovering Dennis Ritchie's Lost Dissertation

https://computerhistory.org/blog/discovering-dennis-ritchies-lost-dissertation/
1•signa11•25m ago•0 comments

Show HN: InGaming, front end MVP for casino brands

https://www.ingaming.dev/
1•jonypopovv•27m ago•0 comments

Handling Instruction Branching in Modern Processors

https://blog-site-ivory.vercel.app/blog/third_blog/
1•signa11•30m ago•0 comments

Hanlon's Razor

https://en.wikipedia.org/wiki/Hanlon%27s_razor
1•bryanrasmussen•34m ago•0 comments

Meta targets May 20 for first wave of layoffs; additional cuts later in 2026

https://www.reuters.com/world/meta-targets-may-20-first-wave-layoffs-additional-cuts-later-2026-2...
2•1vuio0pswjnm7•35m ago•0 comments

Show HN: Podads – An Ad Blocker for Your Podcasts

https://podads.yet-to-be.com/
1•wyxuan•38m ago•0 comments

Mastering Page-Level Chinese Calligraphy via Layout-Guided Spatial Planning

https://arxiv.org/abs/2603.12482
1•PaulHoule•41m ago•0 comments

Lambda Calculus in K

https://ngn.codeberg.page/txt/lambda.html
1•lioeters•46m ago•0 comments

The Social Battery Across Scales: Household, Labor, and Global Systems

https://www.academia.edu/165751647/The_Social_Battery_Across_Scales_Household_Labor_and_Global_Sy...
1•W_G_III•47m ago•0 comments

Why does sharing a private Gitea repo still need adding a collaborator in 2026?

https://sharemygit.com/
1•onesandofgrain•50m ago•1 comments

Total Solar Eclipse Led to Seismic Quiet for Cities Within Its Path

https://www.seismosoc.org/news/total-solar-eclipse-led-to-seismic-quiet-for-cities-within-its-path/
1•geox•51m ago•0 comments

Show HN: Twitter Media Downloader – X Media Downloader

https://chromewebstore.google.com/detail/twitter-media-downloader/dbkcfmmamhmdaiikkpgiigicgobnjnnj
1•qwikhost•55m ago•0 comments

Tinder and Zoom offer 'proof of humanity' eye-scans to combat AI

https://www.bbc.com/news/articles/cp9vppem4evo
3•1659447091•56m ago•0 comments

Show HN: My workflow for using Plan 9 on Windows

1•dharmatech•1h ago•0 comments

The most beautiful formula not enough people understand [video]

https://www.youtube.com/watch?v=fsLh-NYhOoU
4•eigenBasis•1h ago•0 comments

What the EU Battery Passport Means for Your Devices

https://holdmybill.com/blog/eu-battery-passport-explained-2027
2•niksmac•1h ago•0 comments

Study: The Logic Behind AI's Judgments of People

https://en.huji.ac.il/news/hidden-logic-behind-ai%E2%80%99s-judgments-people/
1•giuliomagnifico•1h ago•0 comments

Were early humans limited by materials–or by ideas?

https://www.zavesti.com/the-stone-age-world-was-nothing-like-you-imagine/
1•stonespider•1h ago•1 comments

Is It O.K. To Be a Luddite? – By Thomas Pynchon (1984)

https://archive.nytimes.com/www.nytimes.com/books/97/05/18/reviews/pynchon-luddite.html
2•keiferski•1h ago•0 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