frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Pop the AI Bubble – A satirical card game mocking AI hype

https://poptheaibubble.com/
1•guigotgit•3m ago•1 comments

A Meta employee gets real about the horror of working there

https://sfstandard.com/pacific-standard-time/2026/05/15/meta-employee-gets-real-horror-working-ri...
2•forrestbrazeal•5m ago•0 comments

Getting fired? Here is what you need to do to get a shit ton of money

https://techwerkers.nl/en/resources/negotiation/
1•zebreus•9m ago•0 comments

Show HN: ThumbAPI – thumbnail generation API for developers

https://thumbapi.dev
1•dinall•13m ago•0 comments

SANA-WM, a 2.6B open-source world model for 1-minute 720p video

https://nvlabs.github.io/Sana/WM/
3•mjgil•19m ago•3 comments

Moving abroad? You may lose access to your accounts

https://twitter.com/alanhamlett/status/2055617308656030173
1•welder•19m ago•0 comments

AI Agents Are Currently Stealing My Job, and Honestly? They Can Have It

https://www.bwanaerp.com/blog/ai-agents-are-currently-stealing-my-job-and-honestly-they-can-have-...
2•instarlaxy•21m ago•0 comments

Y-Zipper: 3D Printing Flexible-Rigid Transitions in One Click [video]

https://www.youtube.com/watch?v=AWig98GVIno
1•anfractuosity•23m ago•0 comments

Optimizing your website for generative AI features on Google Search

https://developers.google.com/search/docs/fundamentals/ai-optimization-guide
2•taubek•27m ago•0 comments

Greek Alphabet Cards

https://labs.randomquark.com/alphabet_cards/
3•ricochet11•32m ago•0 comments

On Road to Canterbury-Reading Dan Simmons Sci-Fi Adaptation of Chaucer's Classic

https://lithub.com/on-the-road-to-canterbury-reading-dan-simmons-sci-fi-adaptation-of-chaucers-cl...
2•pseudolus•33m ago•0 comments

Keepithub – Physical-world geo-referenced memory for AI agents (B2A marketplace)

https://keepithub.com/launch.html`
2•keepithub•33m ago•0 comments

'A' grades are suddenly everywhere since the arrival of ChatGPT

https://www.msn.com/en-us/money/careersandeducation/a-grades-are-suddenly-everywhere-since-the-ar...
6•pseudolus•39m ago•1 comments

Why the US Can't Adopt Ukraine's Innovative Approach to Unmanned Warfare Systems

https://www.techdirt.com/2026/05/15/why-the-us-cant-adopt-ukraines-innovative-approach-to-unmanne...
3•beardyw•39m ago•0 comments

Chatbots' Downward Spiral

https://cacm.acm.org/news/chatbots-downward-spiral/
2•pseudolus•39m ago•0 comments

Prepare for an AI Jobs Apocalypse

https://www.economist.com/leaders/2026/05/14/prepare-for-an-ai-jobs-apocalypse
5•wiseowise•40m ago•0 comments

TokenBBQ – track AI coding token usage across Claude, Codex, Gemini

https://github.com/offbyone1/tokenbbq
2•TokenBBQ•40m ago•0 comments

The Infinite Power Grid Won't Be Built with Today's Lasers FusionEnergy

https://beeble.com/en/blog/the-infinite-power-grid-won-t-be-built-with-today-s-lasers
2•odysseyk•41m ago•0 comments

Europe built sovereign clouds to escape US control. Forgot about the processors

https://www.theregister.com/systems/2026/05/16/europe-built-sovereign-clouds-to-escape-us-control...
29•beardyw•41m ago•10 comments

Show HN: Let's build Claude Code from scratch (tutorial)

https://www.youtube.com/watch?v=8pDfgBEy8bg
3•CohleM•43m ago•0 comments

Anecdotal Definitions of Success

https://nafe.es/writing/success/
4•mnafees•44m ago•0 comments

Designing, Refining, and Maintaining Agent Skills at Perplexity

https://research.perplexity.ai/articles/designing-refining-and-maintaining-agent-skills-at-perple...
2•Garbage•44m ago•0 comments

Accelerando (2005)

https://www.antipope.org/charlie/blog-static/fiction/accelerando/accelerando.html
20•eamag•48m ago•4 comments

OpenClaw Creator Spent $1.3M on OpenAI Tokens in 30 Days

https://twitter.com/steipete/status/2055346265869721905
17•eamag•51m ago•5 comments

Zero: The Programming Language for Agents

https://github.com/vercel-labs/zero
3•0xCAP•53m ago•1 comments

Products are out, brains are in

https://mrmarket.bearblog.dev/products-are-out-brains-are-in-new/
4•seltzerboys•53m ago•0 comments

Education Imflation

2•DeeNye•55m ago•0 comments

The One-Person Unicorn: Build Your SaaS Without Writing Code

https://travel4fun4u1.substack.com/p/you-dont-need-a-developer-in-2026
2•Travel4Fun4U•56m ago•1 comments

Inverse Sapir-Whorf and programming languages

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

List of known personal websites that host Wander, a tool to wander the small web

https://susam.codeberg.page/wcn/
2•susam•59m 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