frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Three Pillars of JavaScript Bloat

https://43081j.com/2026/03/three-pillars-of-javascript-bloat
118•onlyspaceghost•3h ago•49 comments

Tinybox – Offline AI device 120B parameters

https://tinygrad.org/#tinybox
414•albelfio•9h ago•251 comments

Some things just take time

https://lucumr.pocoo.org/2026/3/20/some-things-just-take-time/
597•vaylian•15h ago•192 comments

Chest Fridge (2009)

https://mtbest.net/chest-fridge/
64•wolfi1•4h ago•47 comments

Professional video editing, right in the browser with WebGPU and WASM

https://tooscut.app/
196•mohebifar•8h ago•59 comments

Floci – A free, open-source local AWS emulator

https://github.com/hectorvent/floci
122•shaicoleman•8h ago•30 comments

Boomloom: Think with your hands

https://www.theboomloom.com
76•rasengan0•1d ago•7 comments

Sashiko: An agentic Linux kernel code review system

https://sashiko.dev/
6•Lwrless•2h ago•0 comments

Cloudflare flags archive.today as "C&C/Botnet"; no longer resolves via 1.1.1.2

https://radar.cloudflare.com/domains/domain/archive.today
43•winkelmann•2h ago•11 comments

Do Not Turn Child Protection into Internet Access Control

https://news.dyne.org/child-protection-is-not-access-control/
596•smartmic•9h ago•316 comments

Bayesian statistics for confused data scientists

https://nchagnet.pages.dev/blog/bayesian-statistics-for-confused-data-scientists/
87•speckx•3d ago•22 comments

Electronics for Kids, 2nd Edition

https://nostarch.com/electronics-for-kids-2e
147•0x54MUR41•3d ago•28 comments

Alpha Micro AM-1000E and AM-1200

http://oldvcr.blogspot.com/2026/03/refurb-weekend-double-header-alpha.html
6•goldenskye•2h ago•0 comments

Trivy ecosystem supply chain briefly compromised

https://github.com/aquasecurity/trivy/security/advisories/GHSA-69fq-xp46-6x23
52•batch12•2d ago•19 comments

Grafeo – A fast, lean, embeddable graph database built in Rust

https://grafeo.dev/
204•0x1997•15h ago•68 comments

Show HN: Termcraft – terminal-first 2D sandbox survival in Rust

https://github.com/pagel-s/termcraft
105•sebosch•11h ago•16 comments

Hide macOS Tahoe's Menu Icons

https://512pixels.net/2026/03/hide-macos-tahoes-menu-icons-with-this-one-simple-trick/
154•soheilpro•12h ago•51 comments

Common Lisp Development Tooling

https://www.creativetension.co/posts/common-lisp-development-tooling
72•0bytematt•9h ago•11 comments

How Invisalign became the biggest user of 3D printers

https://www.wired.com/story/how-invisalign-became-the-worlds-biggest-3d-printing-company/
152•mikhael•3d ago•111 comments

Thinking Fast, Slow, and Artificial: How AI Is Reshaping Human Reasoning

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6097646
116•Anon84•14h ago•65 comments

The paddle wheel aircraft carriers of Lake Michigan

https://signoregalilei.com/2026/03/08/the-paddle-wheel-aircraft-carriers-of-lake-michigan/
67•surprisetalk•4d ago•6 comments

A digital resource for studying the graffiti of Herculaneum and Pompeii

https://ancientgraffiti.org/Graffiti/
16•thomassmith65•4d ago•1 comments

How Ford burned $12B in Brazil (2021)

https://www.reuters.com/business/autos-transportation/how-ford-burned-12-billion-brazil-2021-05-20/
45•kaycebasques•15h ago•20 comments

Ubuntu 26.04 Ends 46 Years of Silent sudo Passwords

https://pbxscience.com/ubuntu-26-04-ends-46-years-of-silent-sudo-passwords/
345•akersten•1d ago•340 comments

Show HN: Atomic – Self-hosted, semantically-connected personal knowledge base

https://github.com/kenforthewin/atomic
78•kenforthewin•10h ago•13 comments

Sandboxing: Foolproof Boundaries vs. Unbounded Foolishness (2025)

https://spawn-queue.acm.org/doi/10.1145/3733699
17•antlai•4d ago•0 comments

It's Their Mona Lisa

https://ironicsans.ghost.io/its-t-mona-lisa/
6•ramimac•3d ago•0 comments

ZJIT removes redundant object loads and stores

https://railsatscale.com/2026-03-18-how-zjit-removes-redundant-object-loads-and-stores/
81•tekknolagi•3d ago•15 comments

Meta's Omnilingual MT for 1,600 Languages

https://ai.meta.com/research/publications/omnilingual-mt-machine-translation-for-1600-languages/?...
128•j0e1•4d ago•37 comments

Ant Mill

https://en.wikipedia.org/wiki/Ant_mill
22•thunderbong•3h ago•3 comments
Open in hackernews

Right-Truncatable Prime Counter

https://github.com/EbodShojaei/Right-Truncatable-Primes
9•rainmans•10mo ago

Comments

throwawaymaths•9mo ago
Curious about base 2. Obviously if you hit a 0 it's immediately not prime, but maybe adjust the rules so:

- you drill through as many 0's on the right.

- you finish on 1.

3, 5, 7, 11, 13, 15, 17 are all right truncatable, 19 is the first non-truncatable prime in this scheme.

nh23423fefe•9mo ago
i dont think smaller radixes make the problem more interesting. the problem is interesting because base 10 has a large branching factor
throwawaymaths•9mo ago
I think in the base2 reformulation I propose we do not know for certain if the list of numbers terminates, as all Fermat primes are in the set and we don't know if there are infinitely many Fermat primes.

For base-10 and the original rules the set is provably closed.

"Drilling through zeros" makes the branching unbounded.

jinwoo68•9mo ago
There's a Project Euler problem for finding truncatable prime numbers, from both left and right: https://projecteuler.net/problem=37
thechao•9mo ago
Just in case any else is wondering: there are only 83 right-truncatable primes (RTP) and that is it. There's two constraints that let you see this "immediately":

1. An RTP must start with {2,3,5,7,9}; and,

2. An RTP must end with {1,3,7,9}.

So, let's take the largest RTP (73939133) and try to "extend" it: there are only four possible extensions: 73939133[1], 73939133[3], 73939133[7], 73939133[9]. None of these are prime. This holds for the other 8-digit RTPs. Therefore, there is no extension to a 9-or-longer RTP. Thus, the list is exhaustive.