frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Iceberg Map

https://icebergmap.com/
1•aosmith•1m ago•1 comments

High-performance Go web framework; Ships with OpenTelemetry, OpenAPI docs

https://github.com/rivaas-dev/rivaas
1•atkrad•5m ago•1 comments

Show HN: Hosted OpenClaw – 60s setup, no Mac Mini, $99 lifetime BYOK

https://useclawy.com
1•Mariovega•6m ago•1 comments

Why developers using AI are working longer hours

https://www.scientificamerican.com/article/why-developers-using-ai-are-working-longer-hours/
3•birdculture•7m ago•0 comments

Trump administration rolls back payday loan protections, affects youth (2019)

https://www.cnbc.com/2019/02/06/trump-administration-rolls-back-payday-loan-protections.html
1•stopbulying•9m ago•1 comments

One in three using AI for emotional support and conversation, UK says

https://www.bbc.com/news/articles/cd6xl3ql3v0o
1•bookofjoe•9m ago•0 comments

Dutch gov't pulls report on dangers of American cloud service after criticism

https://nltimes.nl/2026/03/05/dutch-govt-pulls-report-dangers-american-cloud-service-criticism
2•vrganj•10m ago•0 comments

Agile legged locomotion in reconfigurable modular robots

https://modularlegs.github.io/
1•hhs•10m ago•0 comments

Anthropic mapped out jobs AI replaces. Great Recession for white-collar workers

https://fortune.com/2026/03/06/ai-job-losses-report-anthropic-research-great-recession-for-white-...
1•sizzle•12m ago•0 comments

A new clue to how the body detects physical force

https://www.scripps.edu/news-and-events/press-room/2026/20260305-patapoutian-piezo2.html
1•hhs•12m ago•0 comments

How to run Qwen 3.5 locally

https://unsloth.ai/docs/models/qwen3.5
1•Curiositry•14m ago•0 comments

Cost of physical therapy varies widely from state to state: study

https://news.yale.edu/2026/03/05/cost-physical-therapy-varies-widely-state-state
1•hhs•15m ago•0 comments

The Death of the Cheap Laptop Is Coming

https://www.nytimes.com/wirecutter/reviews/ai-laptop-phone-prices/
1•andrewl•19m ago•0 comments

Philosopher of the Apocalypse

https://aeon.co/essays/gunther-anders-a-forgotten-prophet-for-the-21st-century
1•aivuk•19m ago•0 comments

Sunsetting the 512kb Club

https://kevquirk.com/sunsetting-the-512kb-club
1•Curiositry•19m ago•0 comments

Put the Zipcode First

https://zipcodefirst.com
53•dsalzman•20m ago•27 comments

Nix is a lie, and that's ok

https://fzakaria.com/2026/03/07/nix-is-a-lie-and-that-s-ok
1•todsacerdoti•21m ago•0 comments

Show HN: PolicyCortex – AI agent that autonomously remediates cloud misconfigs

https://policycortex.com
1•policycortex•21m ago•1 comments

OpenAI GPT-5.4 Explained

https://veerhost.com/openai-gpt-5-4-features-improvements-pricing/
6•aiwrita•24m ago•1 comments

Technological Folie à Deux

https://arxiv.org/abs/2507.19218
3•rglover•24m ago•0 comments

Show HN: Beam Protocol – SMTP for AI Agents (natural language agent-to-agent)

https://github.com/Beam-directory/beam-protocol
2•alfridus•30m ago•3 comments

Nauticuvs – pure-Rust curvelet transform for SAR sonar, by a self-taught dev

1•NautiDogSV•31m ago•0 comments

A subreddit for people who believe in AI sentience

https://www.reddit.com/r/AISentienceBelievers/s/rilfyoaOHm
2•Moriarty2027•32m ago•0 comments

Grow Fast and Overload Things

https://surfingcomplexity.blog/2026/03/07/grow-fast-and-overload-things/
1•azhenley•33m ago•0 comments

When ChatGPT is gone: Creativity reverts and homogeneity persists (2024)

https://arxiv.org/abs/2401.06816
1•doener•35m ago•0 comments

Privacy Activist Toolbox

https://www.privacyguides.org/en/activism/toolbox/
1•ivarv•36m ago•0 comments

The plan to refill the Great Salt Lake

https://www.nbcnews.com/science/environment/utah-refill-great-salt-lake-us-olympics-2034-rescue-p...
1•bikenaga•36m ago•0 comments

Caitlin Kalinowski: I resigned from OpenAI

https://twitter.com/kalinowski007/status/2030320074121478618
5•mmaia•36m ago•1 comments

Show HN: Dropbox Cleaner – prune old Dropbox backups with Bash

https://github.com/cre8llc/Dropbox-Cleaner
1•e-gockel•37m ago•0 comments

Show HN: Run Qwen3.5 0.8B in browser (Web and Extension)

https://tiny-whale.vercel.app/
1•tantara•38m ago•0 comments
Open in hackernews

Show HN: Ash – OSS Infra for Running Claude Agent SDK

https://github.com/ash-ai-org/ash-ai
1•nicklo•1h ago
Hey HN,

I kept rebuilding the same infrastructure every time I wanted to put a Claude Agent SDK into production. Sessions, streaming, sandboxing, persistence, a REST API, file hooks. So I built Ash.

An agent is a folder with a CLAUDE.md file, skills folder, etc, and one-line deploy from cli, or tsx/python sdks.

Some things I cared about when building this:

Sandboxing. Each agent runs in its own isolated process with an environment allowlist, cgroups resource limits, and bubblewrap filesystem isolation on Linux.

Session persistence. All state lives in CRDB. If the server crashes mid-conversation, resume picks up where it left off. You can also snapshot workspaces to S3/GCS and resume on a different machine.

Keeping it thin. The SDK's `Message` types flow through the whole pipeline untranslated, from the Unix socket to SSE to the client. Ash adds session routing, sandbox pooling, and lifecycle management. It doesn't re-wrap or translate the SDK's types.

I've been measuring overhead pretty carefully. Ash adds <0.5ms per message at p99. Warm resume is 1.7ms. Cold resume (restore workspace, spawn process, reconnect) is 32ms.

OSS, Self-hostable, MIT licensed: https://github.com/ash-ai-org/ash-ai

Comments

redhanuman•1h ago
the cold resume at 32ms is the number that matters most here and workspace restore + process spawn + reconnect in 32ms means you can treat agents as stateless from the infrastructure side without paying the UX cost of a cold start. that's the hard part of session persistence done right.

curious how CRDB handles the write amplification on high-frequency streaming sessions every SSE chunk going to the DB or are you batching at the session boundary?

nicklo•1h ago
Yeah with sandbox pre-warming and disk co-location its fast enough to avoid UX cold start penalty.

On write amplification — we persist at the message level, not per SSE chunk. The sandbox's workspace filesystem (claude code's native jsonl files) is the source of truth for resume, and the DB is for queryability, tracing, etc - so fire and forget works fine here.