frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Agent Memory: An Anatomy

https://brgsk.xyz/agent-memory-anatomy/
6•brgsk•5m ago•0 comments

Linux Journey Now Part of LabEx

https://support.labex.io/en/using-labex/linux-journey-now-part-of-labex
1•getvm•5m ago•0 comments

Lago Open-source SDK: Bill on top of your LLM token cost with no middleware

https://github.com/getlago/lago-agent-sdk-python
1•AnhTho_FR•6m ago•0 comments

Show HN: Alcove – Persistent architectural memory for coding agents

https://github.com/epicsagas/alcove
1•epicsagas•6m ago•0 comments

Wikipedia Whitewashes Mao – The Anatomy of Ideological Capture

https://www.tracingwoodgrains.com/p/how-wikipedia-whitewashes-mao
1•appreciatorBus•9m ago•0 comments

Pope Leo warns AI challenges must be confronted with regulation, transparency

https://www.cbc.ca/news/world/pope-leo-magnifica-humanitas-encylical-9.7210842
2•1vuio0pswjnm7•11m ago•0 comments

If every OS was open source, you could run vista

1•ms_menardi•11m ago•0 comments

Bye-Bye, HR – Bolt Boots HR Dept

https://nypost.com/2026/05/26/opinion/bye-bye-hr-lets-hope-bolt-financial-ceo-ryan-breslow-starts...
2•appreciatorBus•13m ago•0 comments

Ersc.io: Jujutsu-native source forge

https://ersc.io/blog/ersc-availability
1•yegle•14m ago•0 comments

User Guide to Model Checking for Industrial Programmers with TLA+

https://github.com/gshanemiller/tla-examples
1•scrubs•15m ago•1 comments

Challenges for AI Misuse Prevention: Jurisdictions, Open Models, and Privacy

https://substack.norabble.com/p/challenges-for-ai-misuse-prevention
1•nedruod•16m ago•0 comments

Sonny Rollins, Jazz's Saxophone Colossus and Greatest Improvisor, Dead at 95

https://www.rollingstone.com/music/music-news/sonny-rollins-jazz-legend-saxophone-colossus-dead-o...
5•boarsofcanada•20m ago•0 comments

Cursorfy – recursive Cursor SDK and FastAPI dashboard that sees itself

https://github.com/crowdcent/cursorfy
1•jrai•21m ago•0 comments

AI Tools Are Only as Good as Your Judgment – and That's the Point

https://theaileverageweekly.com/posts/your-ai-tools-are-only-as-good-as-your-judgment-and-that-s-...
2•talvardi7•23m ago•0 comments

Diary of a Disabled DJ

https://medium.com/@samhenrycliff/diary-of-a-disabled-dj-entry-1-81f55f8c23bf
1•6stringmerc•24m ago•0 comments

Ask HN: Are recent tech layoffs affecting mostly Sr and Jr devs?

3•bubbamack•26m ago•1 comments

Ask HN: What is your tips or wild usages on gcloud?

1•revv00•27m ago•0 comments

The OSS Sabotage Manual Became Corporate Best Practice

https://www.alephic.com/sabotage
2•cyb0rg0•28m ago•2 comments

ALPR Mission Creep: School Residency, Background Checks, and Noise Complaints

https://www.eff.org/deeplinks/2026/05/more-license-plate-reader-mission-creep-school-residency-ve...
3•hn_acker•32m ago•1 comments

Show HN: Artifold – A local-first library for AI-generated HTML artifacts

https://github.com/shubhamgoel27/artifold
1•shubhamgoel27•35m ago•0 comments

Anthropic Appoints KiYoung Choi as Representative Director of Korea

https://www.anthropic.com/news/kiyoung-choi-representative-director-anthropic-korea
1•surprisetalk•38m ago•0 comments

CodeAtlas – Google Maps for your codebase, with a live differential UML engine

https://www.codeatlas.live/
2•vamsikanneganti•43m ago•0 comments

Ecosystem for (Studying) Network Programming

https://docs.packetcord.io/
1•vmetodiev•46m ago•0 comments

Cloudflare Flagship

https://developers.cloudflare.com/flagship/
4•tjek•47m ago•2 comments

Unit cell designer for 2d wallpaper groups

https://nasqret.github.io/symm/
1•mathgenius•48m ago•0 comments

The true reason C++ always wins [video]

https://www.youtube.com/watch?v=I7fEsbksKRE
1•abhaynayar•49m ago•0 comments

You're about to feel the AI money squeeze

https://www.theverge.com/ai-artificial-intelligence/917380/ai-monetization-anthropic-openai-token...
2•1vuio0pswjnm7•53m ago•1 comments

Qualcomm strikes AI chip deal with TikTok owner ByteDance

https://www.reuters.com/business/qualcomm-strikes-ai-chip-deal-with-tiktok-owner-bytedance-bloomb...
2•Voblit•57m ago•0 comments

Grok Build

https://grok.com/build
3•kristianpaul•1h ago•0 comments

Show HN: I made a simple Keyword Research tool for app devs

https://ezscreenshots.com/aso/
1•abrowniejr•1h 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