frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tailwind-merge: Utility function to merge Tailwind CSS classes in JavaScript

https://github.com/dcastil/tailwind-merge
1•doener•20s ago•0 comments

The Download: a new Christian phone network, and debugging LLMs

https://www.technologyreview.com/2026/05/01/1136762/the-download-christian-phone-network-debuggin...
1•joozio•31s ago•0 comments

The Scales of Power and the Driver of the Industry the Architect of the Oroboros

https://deepseek-v4-pro-127cubed.vercel.app/
1•oroboroslabs•51s ago•0 comments

Clsx: A tiny (239B) utility for constructing className strings conditionally

https://github.com/lukeed/clsx
1•doener•1m ago•0 comments

Chinese Government Got the Largest Digital Rights Conference Canceled

https://www.wired.com/story/the-chinese-government-pressured-zambia-to-cancel-the-worlds-largest-...
2•ip3c4c•11m ago•0 comments

GameStop Preparing Offer for eBay

https://www.wsj.com/business/deals/gamestop-preparing-offer-for-ebay-1678e6de
1•voisin•12m ago•0 comments

Measuring what frontier models know – and how big they are

https://01.me/research/ikp/
1•schmorptron•12m ago•1 comments

How to Disagree (2008)

https://www.paulgraham.com/disagree.html
1•tosh•18m ago•0 comments

Graham's Hierarchy of Disagreement

https://commons.wikimedia.org/wiki/File:Graham%27s_Hierarchy_of_Disagreement-en.svg
1•tosh•19m ago•0 comments

Eight Short Studies on Excuses

https://www.lesswrong.com/s/XsMTxdQ6fprAQMoKi/p/gFMH3Cqw4XxwL69iy
1•microsoftedging•22m ago•0 comments

Show HN: Piruetas – A self-hosted diary app I built for my girlfriend

https://piruet.app
4•patillacode•25m ago•0 comments

ChessUnlock – Automating Chess Learning

https://chessunlock.app
1•YassineChahdi•29m ago•0 comments

Developer Education at Jane Street

https://blog.janestreet.com/developer-education-at-jane-street-index/
1•ned1010•31m ago•1 comments

Ask HN: Best way to develop games for beginners

1•Jean-Philipe•33m ago•2 comments

Spirit Airlines says it's going out of business after 34 years

https://apnews.com/article/spirit-airlines-trump-bailout-bankruptcy-37a4818e1b71c0905d022f669d85948c
4•geox•34m ago•0 comments

Why eldest siblings are brainier

https://www.economist.com/graphic-detail/2026/04/16/why-eldest-siblings-are-brainier
1•pseudolus•40m ago•2 comments

The Rooks Have Returned

https://en.wikipedia.org/wiki/The_Rooks_Have_Returned
2•ustad•40m ago•1 comments

Nicholas Carlini – Black-hat LLMs – [un]prompted 2026

https://www.youtube.com/watch?v=1sd26pWhfmg
1•swolpers•42m ago•0 comments

Pequod – A colour palette for reading and code, rooted in Moby-Dick

https://github.com/tiagojct/pequod
1•tiagojct•44m ago•0 comments

Show HN: Mljar Studio – local AI data analyst that saves analysis as notebooks

https://mljar.com/
13•pplonski86•46m ago•1 comments

A Dark-Money Campaign Is Paying Influencers to Frame Chinese AI as a Threat

https://www.wired.com/story/super-pac-backed-by-openai-and-palantir-is-paying-tiktok-influencers-...
1•SockThief•47m ago•0 comments

Leading journal finds AI is flooding academic publishing with lower quality work

https://phys.org/news/2026-05-journal-ai-academic-publishing-quality.html
2•pseudolus•49m ago•0 comments

Why TUIs are making a comeback

https://wiki.alcidesfonseca.com/blog/why-tuis-are-back/
3•alcidesfonseca•51m ago•0 comments

ICANN opens applications for new top-level domains for the first time since 2012

https://www.theregister.com/2026/05/01/icann_new_gtld_applications/
1•thunderbong•52m ago•0 comments

Inverse Sapir-Whorf and programming languages

https://lukeplant.me.uk/blog/posts/inverse-sapir-whorf-and-programming-languages/
2•birdculture•55m ago•1 comments

The AI Race Is Charged by the Fear of Being Left Behind

https://thewalrus.ca/the-ai-race-is-charged-by-the-fear-of-being-left-behind/
5•pseudolus•1h ago•0 comments

"Gazump"

https://notoneoffbritishisms.com/2026/05/01/gazump/
2•jjgreen•1h ago•0 comments

We migrated 100 services from Nginx to Envoy in one month

https://www.qovery.com/blog/alan-from-nginx-to-envoy-what-actually-happens-when-you-swap-your-pro...
1•ev0xmusic•1h ago•0 comments

Bep/gallerydeluxe: Fast Hugo gallery theme/module suitable for lots of images

https://github.com/bep/gallerydeluxe
1•Tomte•1h ago•0 comments

PgAdmin: The Most Popular PostgreSQL Admin Tool

https://www.pgadmin.org/
2•doener•1h ago•0 comments
Open in hackernews

Show HN: API Testing and Security with AI

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

Comments

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