frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Claude Code Source Leak: fake tools, frustration regexes, undercover mode

https://alex000kim.com/posts/2026-03-31-claude-code-source-leak/
503•alex000kim•9h ago•195 comments

OpenAI closes funding round at an $852B valuation

https://www.cnbc.com/2026/03/31/openai-funding-round-ipo.html
203•surprisetalk•2h ago•177 comments

Ministack (Replacement for LocalStack)

https://ministack.org/
44•kerblang•1h ago•6 comments

4D Doom

https://github.com/danieldugas/HYPERHELL
55•chronolitus•4d ago•4 comments

Ordinary Lab Gloves May Have Skewed Microplastic Data

https://nautil.us/ordinary-lab-gloves-may-have-skewed-microplastic-data-1279386
10•WaitWaitWha•1h ago•1 comments

Slop is not necessarily the future

https://www.greptile.com/blog/ai-slopware-future
136•dakshgupta•7h ago•246 comments

Cohere Transcribe: Speech Recognition

https://cohere.com/blog/transcribe
140•gmays•5h ago•46 comments

Teenage Engineering's PO-32 acoustic modem and synth implementation

https://github.com/ericlewis/libpo32
55•ericlewis•3d ago•11 comments

Open source CAD in the browser (Solvespace)

https://solvespace.com/webver.pl
264•phkahler•9h ago•85 comments

GitHub's Historic Uptime

https://damrnelson.github.io/github-historical-uptime/
335•todsacerdoti•3h ago•97 comments

Show HN: Postgres extension for BM25 relevance-ranked full-text search

https://github.com/timescale/pg_textsearch
71•tjgreen•5h ago•28 comments

OkCupid gave 3M dating-app photos to facial recognition firm, FTC says

https://arstechnica.com/tech-policy/2026/03/okcupid-match-pay-no-fine-for-sharing-user-photos-wit...
239•whiteboardr•4h ago•55 comments

A dot a day keeps the clutter away

https://scottlawsonbc.com/post/dot-system
10•scottlawson•1h ago•0 comments

I Traced My Traffic Through a Home Tailscale Exit Node

https://tech.stonecharioteer.com/posts/2026/tailscale-exit-nodes/
36•stonecharioteer•2h ago•13 comments

Nematophagous Fungus

https://en.wikipedia.org/wiki/Nematophagous_fungus
26•lordgilman•4d ago•5 comments

Show HN: Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel)

https://github.com/jkool702/forkrun
89•jkool702•4d ago•17 comments

Claude Code's source code has been leaked via a map file in their NPM registry

https://twitter.com/Fried_rice/status/2038894956459290963
1818•treexs•13h ago•886 comments

From 300KB to 69KB per Token: How LLM Architectures Solve the KV Cache Problem

https://news.future-shock.ai/the-weight-of-remembering/
65•future-shock-ai•2d ago•5 comments

Back to FreeBSD – Part 2 – Jails

https://hypha.pub/back-to-freebsd-part-2
7•vermaden•4d ago•1 comments

Super Micro Computer Investors Look for Exits

https://catenaa.com/markets/equities/super-micro-computer-investors-look-for-exits/
14•malindasp•2h ago•4 comments

A Primer on Long-Duration Life Support

https://mceglowski.substack.com/p/a-primer-on-long-duration-life-support
50•zdw•4d ago•12 comments

Axios compromised on NPM – Malicious versions drop remote access trojan

https://www.stepsecurity.io/blog/axios-compromised-on-npm-malicious-versions-drop-remote-access-t...
1742•mtud•19h ago•706 comments

Why the US Navy won't blast the Iranians and 'open' Strait of Hormuz

https://responsiblestatecraft.org/iran-strait-of-hormuz/
104•KoftaBob•12h ago•244 comments

Audio tapes reveal mass rule-breaking in Milgram's obedience experiments

https://www.psypost.org/audio-tapes-reveal-mass-rule-breaking-in-milgram-s-obedience-experiments-...
186•lentoutcry•3d ago•117 comments

Accidentally created my first fork bomb with Claude Code

https://www.droppedasbaby.com/posts/2602-01/
47•offbyone42•14h ago•11 comments

GitHub Monaspace Case Study

https://lettermatic.com/custom/monaspace-case-study
100•homebrewer•7h ago•35 comments

Combinators

https://tinyapl.rubenverg.com/docs/info/combinators
122•tosh•10h ago•37 comments

Ask HN: Distributed data centers in our basements

41•cmos•8h ago•53 comments

Scotty: A beautiful SSH task runner

https://freek.dev/3064-scotty-a-beautiful-ssh-task-runner
37•speckx•6h ago•22 comments

Microsoft: Copilot is for entertainment purposes only

https://www.microsoft.com/en-us/microsoft-copilot/for-individuals/termsofuse
405•lpcvoid•7h ago•153 comments
Open in hackernews

JSSE: A JavaScript Engine Built by an Agent

https://p.ocmatos.com/blog/jsse-a-javascript-engine-built-by-an-agent.html
16•tilt•2h ago

Comments

TheRealPomax•1h ago
Pretty neat as a real-sized-project experiment to see what a programming program can actually do.
pseudosavant•1h ago
It is pretty incredible to me that in the pre-LLM/agent coding world, creating a new high-quality JS engine or browser seemed like it would likely never happen again. But now, any large company could build one if they wanted to. In a single digit number of months no less.
dmitrygr•1h ago
Now do it without those pre-written tests. Spec only. Else, the writers of those tests deserve a LOT of credit.
pseudosavant•50m ago
If there is one thing that that agents/LLMs have highlighted, it is how much credit those test writers do deserve. Teams that were already following a TDD-style approach seem to be able to realize value from agents most easily because of their tests.

The tests are what enable: building a brand new JS runtime that works, rewriting a complex piece of code in a different language (e.g. Golang instead of TypeScript) that is more performant for that task, or even migrating off of an old stack (.NET WebForms) to something newer.

Waterluvian•1h ago
This is really cool to see and study. It’s a great experiment.

I think it doesn’t really say a lot though. The hard part, in my opinion, is not making a new engine, it’s making one that’s worth using and will remain so for a long time.

What I’d love to see next is how well (or poorly) this approach is at making the performance not terrible.

Imustaskforhelp•53m ago
Great. the one-agent-one-human repository by embedding-shapes is certainly quite nice and I had tried to re-create the results (within golang) though and I had failed but even within that I feel like maybe I learnt a lot of things (Also got to talk with emsh on bsky!)

It will also be very interesting to read simonw's comments on all of this too (https://news.ycombinator.com/item?id=46779522#46786824) when he had said:-

No, I'm still waiting to see concrete evidence that the "swarms of parallel agents" thing is worthwhile. I use sub-agents in Claude Code occasionally - for problems that are easily divided - and that works fine as a speed-up, but I'm still holding out for an example of a swarm of agents that's really compelling.

The reason I got excited about the Cursor FastRender example was that it seemed like the first genuine example of thousands of agents achieving something that couldn't be achieved in another way... and then embedding-shapes went and undermined it with 20,000 lines of single-agent Rust!

(I wonder what Simon thinks now of this, because from my skim of this article, they do seem to mention some tidbits about parallelism, Either way, I think that these projects are really adventurous and there is still something novel in all of this.)

(Edit: I have tried reading the blog post many times now but I am unable to understand how this is [working?] but something like cursor's project had turned to waste. Initially people were optimistic about cursor's project until emsh really showed them that it wasn't so good, I hope that this might not be the case here but still, I am just a bit confused as to why this in particular seems to work, kind of waiting for simon's post about it now :] )