frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Understand Anything – Graphs that teach the codebase

https://understand-anything.com/
1•ulrischa•50s ago•0 comments

The Bug that Chromium wont Fix

https://issues.chromium.org/issues/40093420
1•mgoetzke•57s ago•1 comments

Show HN: Audiogen – a new take on generative music AI

https://audiogen.co/demos
1•elyxlz•1m ago•0 comments

Claude on AWS vs. AWS Bedrock

https://www.cloudyali.io/blogs/claude-platform-aws-vs-bedrock-finops
1•heldsteel7•2m ago•0 comments

An Open Call to Flipper Devices: Problems with Flipper and How They Can Improve

https://spicemesh.de/posts/open-call-to-flipper/
1•muxdervish•2m ago•1 comments

Show HN: Radiccio Server is a new personal music server for Mac: one-click setup

https://radiccio.music/server
1•dmdeller•3m ago•0 comments

Show HN: A website that tracks every stock trade Congress makes

https://congress.kadoa.com/
1•hubraumhugo•3m ago•0 comments

Local AI transcription in the browser (no uploads)

https://www.scribeitlocal.com/
1•JankoTech•4m ago•0 comments

Incanter: A Clojure-based R-like platform for statistical computing and graphics

http://incanter.org/
1•Thom2503•5m ago•0 comments

Claude, Author of the Humanitas

https://linch.substack.com/p/claude-author-of-the-humanitas
1•whelchel•6m ago•0 comments

The Three-Cylinders Problem – When AI Models Choose Beauty over Truth

https://rabdology.ai/three-cylinders
1•speckx•6m ago•0 comments

Stop using POM for complex test suites. Do this instead

https://bdr-methodology.dev/blog/3-layers-architecture-pro/
1•dmitryaqa•10m ago•0 comments

Show HN: MurrDB: A RocksDB-based NVMe/S3 cache for AI inference workloads

1•shutty•10m ago•0 comments

Google, I Dump Your Ass

https://jaredwhite.com/20260522/google-i-dump-your-ass
3•abnercoimbre•11m ago•0 comments

Success Is 'Monotasking'

https://www.theatlantic.com/health/2026/05/monotasking-inside-the-box-excerpt-david-epstein/687015/
2•quaintdev•13m ago•0 comments

The rise of the -10x engineer: The negative side of AI productivity

https://www.qawolf.com/blog/the-rise-of-the--10x-engineer-the-negative-side-of-ai-productivity
1•amandare•15m ago•0 comments

Simplifying Bluetooth qualification for Linux/BlueZ: New upstream documentation

https://www.collabora.com/news-and-blog/blog/2026/05/26/simplifying-bluetooth-qualification-for-l...
1•losgehts•15m ago•0 comments

What Happened to the Locusts?

https://explosion-scratch.github.io/locusts/
2•explosion-s•17m ago•0 comments

Show HN: What story are you telling? (narrative archetypes tool)

https://arc.quanten.co/tools/logline
1•phaedrus044•17m ago•0 comments

Safe Ways to Use AI Agents

https://blog.rnstlr.ch/safe-ways-to-use-ai-agents.html
1•rnestler•18m ago•0 comments

Google's Guidance on AI Search Is Naive and Self-Serving

https://ipullrank.com/google-ai-search-guidance
2•adamcarson•18m ago•0 comments

Before Pixar, There Was The Computer Graphics Lab [1:22:51] [video]

https://www.youtube.com/watch?v=GiW3Jr0wFak
1•wpm•18m ago•0 comments

Managers Are Struggling to Keep Up with the AI Productivity Boom

https://hbr.org/2026/05/managers-are-struggling-to-keep-up-with-the-ai-productivity-boom
1•vinhnx•19m ago•0 comments

Programming Is Real Engineering, and AI Proves It

https://www.jerf.org/iri/post/2026/programming_is_engineering/
2•mooreds•19m ago•2 comments

The AI Bifurcation of Tech: Why the fundamentals matter more

https://neevash.com/blog/tech-bifurcation-and-the-0.5-layer
1•vinhnx•19m ago•0 comments

Bringing LLMs to the Edge

https://www.raspberrypi.com/news/bringing-llms-to-the-edge/
1•Brajeshwar•20m ago•0 comments

What AI race? China and U.S. AI are tightly connected

https://restofworld.org/2026/china-us-what-ai-race/
1•speckx•20m ago•0 comments

Cohort Analysis With User Data

https://fusionauth.io/blog/cohort-analysis
1•mooreds•20m ago•0 comments

Ask HN: What do we mean by compute scarcity?

1•armcat•20m ago•1 comments

What's the Point of Theory in Biology?

https://nikomc.com/essays/theory.html
1•mailyk•22m ago•0 comments
Open in hackernews

Show HN: Chunk sidecars for validating agent-generated code before pushing to CI

https://circleci.com/blog/chunk-sidecars/
1•olafmol•51m ago
Hi HN! My name is Olaf, I work at CircleCI as a technology advisor in the CTO office, came in through the acquisition of my company Vamp.io (progressive delivery for microservices on k8s) in 2021. Wanted to hear the HN community feedback and thoughts on a project we think could be very interesting when adding AI coding agents to the SDLC and your CI pipelines.

Our team at CircleCI built Chunk sidecars after repeatedly running into the same issue internally: by the time our CI catches a failure, the agent has already moved on and most of the useful context is gone.

The basic idea of Chunk sidecars is to move fast lightweight validation into the inner development loop.

Chunk sidecars runs scoped “microbuilds” inside a lightweight microVM that mirrors your CI environment. It tries to auto-detect your stack and test commands, syncs changes from the agent session, and runs validations before commit/push.

A few implementation details that might be interesting:

validation hooks trigger automatically during agent stop/evaluation events

warm snapshots keep startup times low

validations run against environments matching the CI stack instead of local machine state

microbuilds only run the relevant slice instead of the entire pipeline

In our own experiments we measured:

~27 second average microbuild compute

~5 minutes total billable compute for equivalent full CI runs

3x–5x lower token usage in retry loops

The compute comparison is billable compute vs billable compute, not wall clock time. Full CI pipelines were parallelized.

The 27s is with warm snapshots — first-time setup takes about 15 minutes. We tested this on our own pipeline, not a large corpus. Larger repos with heavier deps will vary.

Under the hood it's currently Firecracker microVMs, running on E2B infrastructure. Current spec: 4 CPU, 8GB RAM (comparable to a Docker large). Things can change in the future depending on feedback and learnings.

Short demo video (YT) here: https://circle.ci/4dq9fph

Blog post: https://circleci.com/blog/chunk-sidecars/

Chunk CLI GitHub repo: https://github.com/CircleCI-Public/chunk-cli

This works with any CircleCI account (including the free one), and integrates with Claude Code, Codex, Cursor, or your own agents. The project is open source and also has features that work without CircleCI connected. Simply install the Chunk CLI and run "chunk init" and the sidecar auto-detects your stack and test commands.

Would love all feedback, especially from people already experimenting with agentic workflows. We're especially curious whether others are seeing the same CI failure rate pattern and "widening gap" between inner and outer dev/SDLC loop with agent-generated code?

Comments

grimleech•42m ago
Think the youtube video link is broken?

Edit: nevermind, working now

olafmol•34m ago
Phew, was this a test? ;P

Tnx for checking, and reconfirming!