frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OpenCode – Open source AI coding agent

https://opencode.ai/
810•rbanffy•13h ago•361 comments

Mamba-3

https://www.together.ai/blog/mamba-3
119•matt_d•3d ago•19 comments

FFmpeg 101 (2024)

https://blogs.igalia.com/llepage/ffmpeg-101/
83•vinhnx•7h ago•1 comments

A Japanese glossary of chopsticks faux pas (2022)

https://www.nippon.com/en/japan-data/h01362/
276•cainxinth•13h ago•208 comments

Molly Guard

https://bookofjoe2.blogspot.com/2026/02/molly-guard.html
107•surprisetalk•19h ago•44 comments

We rewrote our Rust WASM parser in TypeScript and it got faster

https://www.openui.com/blog/rust-wasm-parser
213•zahlekhan•12h ago•123 comments

Ghostling

https://github.com/ghostty-org/ghostling
218•bjornroberg•12h ago•36 comments

Linux Applications Programming by Example: The Fundamental APIs (2nd Edition)

https://github.com/arnoldrobbins/LinuxByExample-2e
99•teleforce•10h ago•10 comments

Fujifilm X RAW STUDIO webapp clone

https://github.com/eggricesoy/filmkit
52•notcodingtoday•2d ago•20 comments

Cryptography in Home Entertainment (2004)

https://mathweb.ucsd.edu/~crypto/Projects/MarkBarry/
47•rvnx•2d ago•29 comments

The Los Angeles Aqueduct Is Wild

https://practical.engineering/blog/2026/3/17/the-los-angeles-aqueduct-is-wild
360•michaefe•3d ago•176 comments

Attention Residuals

https://github.com/MoonshotAI/Attention-Residuals
177•GaggiX•16h ago•24 comments

Padel Chess – tactical simulator for padel

https://www.padelchess.me/
22•AlexGerasim•3d ago•5 comments

Show HN: We built a terminal-only Bluesky / AT Proto client written in Fortran

https://github.com/FormerLab/fortransky
83•FormerLabFred•12h ago•45 comments

The worst volume control UI in the world (2017)

https://uxdesign.cc/the-worst-volume-control-ui-in-the-world-60713dc86950
133•andsoitis•3d ago•67 comments

An industrial piping contractor on Claude Code [video]

https://twitter.com/toddsaunders/status/2034243420147859716
49•mighty-fine•2d ago•13 comments

Turing Award Honors Bennett and Brassard for Quantum Information Science

https://amturing.acm.org
37•throw0101d•2d ago•0 comments

The Ugliest Airplane: An Appreciation

https://www.smithsonianmag.com/air-space-magazine/ugliest-airplane-appreciation-180978708/
68•randycupertino•2d ago•38 comments

The Story of Marina Abramovic and Ulay (2020)

https://www.sydney-yaeko.com/artsandculture/marina-and-ulay
3•NaOH•2d ago•0 comments

Liberated Systemd

https://github.com/jeffrey-sardina/systemd
7•gasull•2h ago•3 comments

France's aircraft carrier located in real time by Le Monde through fitness app

https://www.lemonde.fr/en/international/article/2026/03/20/stravaleaks-france-s-aircraft-carrier-...
567•MrDresden•21h ago•458 comments

VisiCalc Reconstructed

https://zserge.com/posts/visicalc/
206•ingve•3d ago•77 comments

Lent and Lisp

https://leancrew.com/all-this/2026/02/lent-and-lisp/
59•surprisetalk•2d ago•3 comments

Blocking Internet Archive Won't Stop AI, but Will Erase Web's Historical Record

https://www.eff.org/deeplinks/2026/03/blocking-internet-archive-wont-stop-ai-it-will-erase-webs-h...
16•pabs3•2h ago•0 comments

Our commitment to Windows quality

https://blogs.windows.com/windows-insider/2026/03/20/our-commitment-to-windows-quality/
523•hadrien01•15h ago•953 comments

Why One Key Shouldn't Rule Them All: Threshold Signatures for the Rest of Us

https://eric.mann.blog/why-one-key-shouldnt-rule-them-all-threshold-signatures-for-the-rest-of-us/
10•eamann•2d ago•3 comments

ArXiv declares independence from Cornell

https://www.science.org/content/article/arxiv-pioneering-preprint-server-declares-independence-co...
759•bookstore-romeo•1d ago•266 comments

Entso-E final report on Iberian 2025 blackout

https://www.entsoe.eu/publications/blackout/28-april-2025-iberian-blackout/
195•Rygian•23h ago•91 comments

Parallel Perl – Autoparallelizing interpreter with JIT

https://perl.petamem.com/gpw2026/perl-mit-ai-gpw2026.html#/4/1/1
131•bmn__•2d ago•43 comments

Delve – Fake Compliance as a Service

https://deepdelver.substack.com/p/delve-fake-compliance-as-a-service
683•freddykruger•1d ago•218 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.