Hacker News

Latest

Show HN: My open-world voxel game with a magic system, playable in the browser

2026-03-31 @ 18:38:29Points: 13Comments: 0

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

2026-03-31 @ 17:55:04Points: 102Comments: 26

Cohere Transcribe: Speech Recognition

2026-03-31 @ 16:27:02Points: 106Comments: 38

Show HN: PhAIL – Real-robot benchmark for AI models

2026-03-31 @ 16:25:43Points: 12Comments: 8

PhAIL runs four models (OpenPI/pi0.5, GR00T, ACT, SmolVLA) on bin-to-bin order picking – one of the most common warehouse operations. Same robot (Franka FR3), same objects, hundreds of blind runs. The operator doesn't know which model is running.

Best model: 64 UPH. Human teleoperating the same robot: 330. Human by hand: 1,300+.

Everything is public – every run with synced video and telemetry, the fine-tuning dataset, training scripts. The leaderboard is open for submissions.

Happy to answer questions about methodology, the models, or what we observed.

[1] Vision-Language-Action: https://en.wikipedia.org/wiki/Vision-language-action_model

Scotty: A beautiful SSH task runner

2026-03-31 @ 16:12:29Points: 26Comments: 11

Securing Elliptic Curve Cryptocurrencies Against Quantum Vulnerabilities [pdf]

2026-03-31 @ 16:00:29Points: 31Comments: 16

Tell HN: Chrome says "suspicious download" when trying to download yt-dlp

2026-03-31 @ 15:20:11Points: 243Comments: 79

On a newest version, I attempted to download newest yt-dlp only to be warned of "Suspicious Download". No explanation what that means was provided.

GitHub Monaspace Case Study

2026-03-31 @ 15:01:35Points: 86Comments: 24

Good code will still win

2026-03-31 @ 14:32:26Points: 87Comments: 146

Oracle slashes 30k jobs

2026-03-31 @ 14:30:48Points: 736Comments: 617

Microsoft: Copilot is for entertainment purposes only

2026-03-31 @ 14:25:37Points: 312Comments: 130

RubyGems Fracture Incident Report

2026-03-31 @ 14:08:37Points: 73Comments: 29

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

2026-03-31 @ 13:04:30Points: 234Comments: 104

Open source CAD in the browser (Solvespace)

2026-03-31 @ 12:50:23Points: 225Comments: 68

Claude Code users hitting usage limits 'way faster than expected'

2026-03-31 @ 12:11:29Points: 220Comments: 137

Combinators

2026-03-31 @ 11:49:03Points: 113Comments: 34

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

2026-03-31 @ 09:00:40Points: 1659Comments: 826

Accidentally created my first fork bomb with Claude Code

2026-03-31 @ 07:40:18Points: 32Comments: 5

RamAIn (YC W26) Is Hiring

2026-03-31 @ 07:01:15Points: 1

Ollama is now powered by MLX on Apple Silicon in preview

2026-03-31 @ 03:40:45Points: 590Comments: 304

Axios compromised on NPM – Malicious versions drop remote access trojan

2026-03-31 @ 02:54:17Points: 1697Comments: 673

Universal Claude.md – cut Claude output tokens

2026-03-31 @ 01:23:34Points: 436Comments: 155

South Polar Times

2026-03-30 @ 22:03:01Points: 11Comments: 0

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

2026-03-28 @ 22:42:23Points: 38Comments: 5

What major works of literature were written after age of 85? 75? 65?

2026-03-28 @ 16:29:28Points: 105Comments: 67

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

2026-03-28 @ 15:08:22Points: 172Comments: 102

Show HN: Loreline, narrative language transpiled via Haxe: C++/C#/JS/Java/Py/Lua

2026-03-28 @ 14:41:57Points: 40Comments: 12

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

2026-03-27 @ 12:12:20Points: 57Comments: 9

On my 14-core/28-thread i9-7940x, forkrun achieves:

* 200,000+ batch dispatches/sec (vs ~500 for GNU Parallel)

* ~95–99% CPU utilization across all 28 logical cores, even when the workload is non-existant (bash no-ops / `:`) (vs ~6% for GNU Parallel). These benchmarks are intentionally worst-case (near-zero work per task) because they measure the capability of the parallelization framework itself, not how much work an external tool can do.

* Typically 50×–400× faster on real high-frequency low-latency workloads (vs GNU Parallel)

A few of the techniques that make this possible:

* Born-local NUMA: stdin is splice()'d into a shared memfd, then pages are placed on the target NUMA node via set_mempolicy(MPOL_BIND) before any worker touches them, making the memfd NUMA-spliced. Each numa node only claims work that is already born-local on its node. Stealing from other nodes is permitted under some conditions when no local work exists.

* SIMD scanning: per-node indexers/scanners use AVX2/NEON to find line boundaries (delimiters) at speeds approaching memory bandwidth, and publish byte-offsets and line-counts into per-node lock-free rings.

* Lock-free claiming: workers claim batches with a single atomic_fetch_add — no locks, no CAS retry loops; contention is reduced to a single atomic on one cache line.

* Memory management: a background thread uses fallocate(PUNCH_HOLE) to reclaim space without breaking the logical offset system.

…and that’s just the surface. The implementation uses many additional systems-level techniques (phase-aware tail handling, adaptive batching, early-flush detection, etc.) to eliminate overhead, increase throughput and reduce latency at every stage.

In its fastest (-b) mode (fixed-size batches, minimal processing), it can exceed 1B lines/sec.

forkrun ships as a single bash file with an embedded, self-extracting C extension — no Perl, no Python, no install, full native support for parallelizing arbitrary shell functions. The binary is built in public GitHub Actions so you can trace it back to CI (see the GitHub "Blame" on the line containing the base64 embeddings). Trying it is literally two commands:

    . frun.bash    
    frun shell_func_or_cmd < inputs
For benchmarking scripts and results, see the BENCHMARKS dir in the GitHub repo

For an architecture deep-dive, see the DOCS dir in the GitHub repo

Happy to answer questions.

A Primer on Long-Duration Life Support

2026-03-27 @ 01:00:49Points: 25Comments: 3

A Love Letter to 'Girl Games'

2026-03-25 @ 19:10:26Points: 114Comments: 104

Archives

2026

2025

2024

2023

2022