Hacker News

Latest

Korea raises data breach fines to 10% of revenue

2026-09-18 @ 20:02:54Points: 220Comments: 69

Android 17 is the first since 3.x to add new APIs without releasing to the AOSP

2026-09-18 @ 19:03:09Points: 382Comments: 175

The Implications of Linguistic Illegibility for LLM Security

2026-09-18 @ 19:00:06Points: 38Comments: 16

Cache-to-Cache: Direct Semantic Communication Between Large Language Models

2026-09-18 @ 18:55:35Points: 53Comments: 11

Saving another 100TB of RAM with math (and Rust)

2026-09-18 @ 18:51:46Points: 155Comments: 32

Apple releases iPhone Duo simulator and Xcode 27.1 beta

2026-09-18 @ 18:39:31Points: 101Comments: 57

Border agents can search cellphones without a warrant or reasonable suspicion

2026-09-18 @ 18:08:32Points: 169Comments: 130

US Military had close call after using AI for hallucinated intelligence report

2026-09-18 @ 17:28:01Points: 339Comments: 273

Photon-Emission-Guided Laser Fault Injection Enables RP2350 Secure Debug

2026-09-18 @ 16:54:18Points: 136Comments: 42

Our brain evolved from two primitive nervous systems that merged: Study

2026-09-18 @ 15:12:07Points: 98Comments: 50

North Korean nuclear test sets off years of earthquakes

2026-09-18 @ 14:45:32Points: 165Comments: 146

Mathematicians Build Long-Awaited Graph Sandwich

2026-09-18 @ 14:41:02Points: 64Comments: 15

I vibed a proof of Conway's conjecture

2026-09-18 @ 14:36:10Points: 197Comments: 173

Cloudflare Quick Tunnels

2026-09-18 @ 14:18:41Points: 502Comments: 218

Cekura (YC F24) Is Hiring

2026-09-18 @ 12:00:10Points: 1

OpenJev

2026-09-18 @ 09:42:22Points: 520Comments: 235

Inside ZCode: Silently uploading your Git history to the cloud

2026-09-18 @ 06:11:17Points: 237Comments: 89

Jemalloc 5.4.0

2026-09-18 @ 04:20:24Points: 319Comments: 87

The scourge of x86 emulation

2026-09-18 @ 04:09:48Points: 271Comments: 80

Warez: The Infrastructure and Aesthetics of Piracy (2021)

2026-09-18 @ 02:56:48Points: 76Comments: 12

Minimal Phone 2

2026-09-18 @ 02:00:25Points: 152Comments: 141

Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash

2026-09-18 @ 00:11:44Points: 144Comments: 71

We submitted Needle 2 here a few weeks ago, and the feedback in the discussion thread was incredibly valuable, thanks! Thanks to all that feedback, we’ve been able to move quickly to release Needle 3 and I'd love to hear what you think again.

The key features:

1) Automation (tool calls & structured JSON output): Needle still doesn't chat by design, its quite challenging to pack general capacity into such small models, so we focus on tool calls and structured JSON. If no tool you declared fits the request, you get an empty list back (note for when playing with the demo).

2) Intelligence Laddering: Every layer (2 to 20) is a deployable subnetwork, so one set of weights, 25 to 121 million parameters at 2-bit, shipping as 8-29MB binaries. On a Raspberry Pi 5 it decodes at up to 4k tokens/sec and prefills at up to 10k.

3) Monarch Hadamard MLP: replaces the dense FFN with three learnable Walsh-Hadamard-initialized Kronecker (Monarch) factor pairs interleaved with per-channel diagonal scales, fixed permutations, a SiLU nonlinearity, and a rank-8 input-conditioned gate, so each token gets a fully mixed nonlinear transform of its d_model channels at O(d√d) parameters and compute instead of the O(d²) a dense 4x-expansion MLP would cost.

4) Performance: On Mobile Actions (phone commands, scored on the exact call) the 20-layer model gets 86.0 through the shipped 2-bit binary; LFM2.5 1.2B is at 82.4, Qwen3.5 0.8B at 76.0, Apple's on-device model at 57.6, all at f16. More results on the link, we do not win everywhere ofc.

5) Multilingual: Needle 3 now supports English, French, Spanish, German, Dutch, Italian, Polish, with more languages coming.

6) Finetuning: You can achieve DeepSeek v4 Flash grade performance on a narrow task with just 4L, stress on "narrow task", we found that production users often prefer tuning before production.

7) Triggers: Grounding is a common challenge for tool call, at least for Needle 2, so we added support case-insensitive regular expressions matched against each request to gate false negatives.

8) Confidence: Every response also carries a calibrated confidence score, the minimum of a judgement on the finished call and its decode probability. Act above your threshold, show the call and ask below it, or escalate to a bigger model.

9) Supported Platforms: macOS, Linux on x86-64, ARM64, ARMv7, RISC-V and MIPS32, Windows x64 and ARM, Android, iOS, watchOS, tvOS, the browser as WebAssembly, and a WASI component.

Thanks for reading and as always, thoughts appreciated!

Show HN: Scry, programmable internet search w/ congestion pricing

2026-09-17 @ 23:15:57Points: 41Comments: 18

---

Hello. It's 2026, we're training simulated fruit fly brains to play Beat Saber, do we still have to be stuck with internet (re)search as fn: natural language -> black box we can't do anything about -> ranked_list/summary?

There is a long history of people trying to do very fancy things that end up being done in relational databases and a little SQL. There is a gravity to them, a bitter lesson, just like scaling of generalized ml training methods. I mean many, many information products can be built off essentially giant real-time OLAP databases and frontier LLMs writing brilliant SQL+Datalog+vector+Jev etc. queries.

Google Search, Tavily, Exa essentially have the problem of mapping your agents' context you are willing to provide, to a tiny subset of their index. You pay a fixed cost to an extremely hard problem that has a distribution of hardness, which means YOU eat the downsides when they are running out of budgeted compute to help you out.

Their algorithms are opaque to the caller, there's really not much user control, and there's not a serious opportunity to communally improve search recipes, like the lexical+Jev recipes you trust to select bleeding edge AI builders.

Furthermore, search companies aren't even pursuing text-to-SQL anymore (several have talked to me)... they made up their minds during the traumatic 2024 text-to-sql days. They were just too early.

I hope you enjoy. I'm intent on scaling this paradigm on differentiated hardware over much more data, so any compelling use cases or queries I could show off, would be much appreciated!

How to Write with an LLM

2026-09-17 @ 21:48:38Points: 345Comments: 237

How SpaceX streamlined the Raptor engine

2026-09-17 @ 21:14:19Points: 140Comments: 23

C++26: Trivial infinite loops are no longer undefined behaviour

2026-09-17 @ 20:52:33Points: 127Comments: 164

The first new cat species discovered in 100 years

2026-09-17 @ 18:31:56Points: 113Comments: 33

Show HN: Ax-check.com – Can agents use your product?

2026-09-17 @ 18:08:02Points: 27Comments: 26

You'll get a scorecard, specific suggested fixes, and three full coding sessions that show how agents read your site and use your product.

I built this because similar checks were too noisy. Most suggested obscure technical changes that don't actually make a difference in agent experience (or AX, hence ax-check.com).

This check starts by using DeepSeek 4.1 Flash to try to find key information about your product, starting from the homepage. In actual agent traffic data, we've seen that the key pages are the homepage, llms.txt, pricing, and the docs site (by traffic volume, and by influence), so we focus on those and ignore the rest. We also find that content negotiation for Markdown is legitimately helpful for agents to complete tasks faster and find what they're looking for, so the scan tests that your key pages can serve Markdown.

The other key piece is that we run actual coding agents in sandboxes, and have them try to onboard to your product. You can see the full trace and watch it happen live (we kick it off fresh when you enter a new site). We surface interesting findings like hallucinated URLs, inaccurate docs instructions, or product confusion.

It also detects whether the agents could complete a fully working onboarding autonomously, without being blocked by a login wall. This is still controversial, but I think finding ways to let agents safely onboard autonomously is going to be table stakes within a year for developer tools in particular.

The whole site is agent-friendly itself! You can generally just talk to your coding agent about ax-check.com and it can do the rest. Would really appreciate any feedback to make this useful.

"From Geometry to Algebra and Back Again: 4000 Years of Papers" by Jack Rusher [video]

2026-09-17 @ 13:20:03Points: 22Comments: 0

A search-and-inference database from scratch in pure Zig

2026-09-15 @ 15:35:33Points: 44Comments: 16

Archives

2026

2025

2024

2023

2022