frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

After Automation: AI progress creates more work for humans, not less

https://every.to/p/after-automation
1•ParkRanger•39s ago•0 comments

Web Archive is banned from Wikipedia

https://en.wikipedia.org/wiki/Wikipedia:Archive.today_guidance
1•mgh2•1m ago•0 comments

The Frame Problem

https://plato.stanford.edu/entries/frame-problem/
2•rzk•5m ago•0 comments

A Wikipedia and news podcast by LLMs that isn't terrible

https://element47.podbean.com/
1•0gs•6m ago•1 comments

Alphabet plans to raise $80B for AI goals

https://www.reuters.com/legal/transactional/alphabet-raise-80-billion-equity-capital-ai-spending-...
2•jumploops•7m ago•0 comments

Show HN: NoSleepAgent – keep your MacBook awake until your agents finish

https://github.com/gergomiklos/nosleepagent
1•garymiklos•7m ago•0 comments

LTE Modems, 2 Raspberry Pis, and a Headless Chromium Clicking Reboot 4k Times

https://www.hilgard.cz/writing/lte-proxy-pool
2•hilgard•7m ago•0 comments

Without Intelligent Guardrails, Claude Code Is Pure Chaos

https://devarch.ai
1•ChicagoDave•8m ago•0 comments

Age verification for social media, the beginning of the end for a free internet?

https://mullvad.net/en/blog/age-verification-for-social-media-the-beginning-of-the-end-for-a-free...
1•StrLght•8m ago•0 comments

GPT-5.5 and Codex are now GA on Amazon Bedrock

https://aws.amazon.com/about-aws/whats-new/2026/06/amazon-bedrock-openai-models-codex-generally-a...
2•hackerBanana•8m ago•0 comments

Michael Burry's Chart on How Elon Musk-Nvidia Deal Is Putting Retirees at Risk

https://old.reddit.com/r/wallstreetbets/comments/1ttul6p/michael_burrys_chart_on_how_elon_musknvi...
2•sensanaty•13m ago•0 comments

Search privately and without ads – Uruky

https://uruky.com/?il=en
1•max1truc•16m ago•1 comments

The Art and Engineering of Silpheed

https://fabiensanglard.net/silpheed/
1•zoenolan•17m ago•0 comments

Prediction marketplace Kalshi gives Becerra high odds of winning

https://calmatters.org/politics/2026/06/kalshi-becerra-prediction-governor/
1•cdrnsf•21m ago•0 comments

A Primer on the Difference Between Long and Medium/Mid Range Strike

https://phillipspobrien.substack.com/p/weekend-update-186-a-primer-on-the
1•JumpCrisscross•23m ago•0 comments

Easy access to elevation data for New Zealand

https://nzelevationtools.com
1•dango2506•23m ago•0 comments

Chipotlai Max

https://github.com/cyberpapiii/chipotlai-max
1•nigelgutzmann•24m ago•0 comments

Hunting maps show 1080 drops in New Zealand current, planned and proposed

https://huntingnz.com/map/
1•dango2506•24m ago•0 comments

The U.S. Wants to Ban China's High-Tech Cars but They're Already Here in El Paso

https://www.wsj.com/business/autos/chinese-cars-byd-geely-u-s-mexico-be0dea28
2•bookofjoe•26m ago•3 comments

What's Easy Now? What's Hard Now? How AI Is Changing Software Development

https://brooker.co.za/blog/2026/05/18/whats-easy-whats-hard.html
3•pgedge_postgres•26m ago•1 comments

Razor 1911 and the Amiga Demoscene

https://www.generationamiga.com/2026/06/01/razor-1911-and-the-amiga-demoscene-outlaws-cracktros-a...
6•tetrisgm•29m ago•1 comments

Monitoring Was Easy. Preserving Context Was Hard

https://blog.bridgexapi.io/bxruntime-rollout-part-2-the-first-operational-layer-is-now-live
4•Bridgexapi•30m ago•0 comments

We taught the Momentic browser agent how to understand user intent

https://momentic.ai/blog/teaching-browser-agents-user-intent
9•wuweiweiwu•30m ago•0 comments

An exhaustive review of design tool hover areas

https://tldraw.dev/blog/a-review-of-design-tool-hover-areas
1•momojo•32m ago•0 comments

Trump Administration to Dismantle Ocean Monitoring System

https://www.nytimes.com/2026/06/01/climate/ocean-observatories-initiative.html
7•scoofy•32m ago•0 comments

agentgateway – One high-performance gateway for service, LLM, and MCP traffic

https://agentgateway.dev/
1•wicket•32m ago•0 comments

Montreal Cognitive Assessment

https://en.wikipedia.org/wiki/Montreal_Cognitive_Assessment
1•jonbaer•33m ago•0 comments

My two light switches got stuck in an infinite echo loop

https://docodethatmatters.com/the-infinite-echo-state-mirror-bug/
1•skittleson•34m ago•0 comments

Canada's AI strategy is set to fail before it even launches

https://www.theglobeandmail.com/opinion/article-canadas-ai-strategy-is-set-to-fail-before-it-even...
1•fidotron•36m ago•0 comments

America's job market looks strong. So why is it so difficult to find work?

https://www.cnn.com/2026/06/01/economy/finding-new-job-challenges
1•toomuchtodo•37m ago•1 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