frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Isar Aerospace reaches orbit and deploys payloads on second flight

https://isaraerospace.com/press/history-for-european-spaceflight-isar-aerospace-reaches-orbit-and...
23•mpweiher•1h ago•2 comments

Cloud in a Bottle: making self-hosting accessible to everyone

https://cloudinabottle.org/blog/launch-post
378•zplizzi•8h ago•170 comments

The revolt of the reader

https://bcantrill.dtrace.org/2026/09/05/the-revolt-of-the-reader/
339•chmaynard•11h ago•134 comments

Music Theory for Programmers

https://runjs.app/blog/music-theory-for-programmers
107•birdculture•3d ago•42 comments

The ColorChecker, photography's most important 24 squares, turns 50

https://www.dpreview.com/news/the-colorchecker-photographys-most-important-24-squares-turns-50/
56•sohkamyung•4d ago•7 comments

OpenBSD Stories: Strange Medieval Devices

http://miod.online.fr/software/openbsd/stories/smd.html
55•zdw•3d ago•11 comments

Watch the 'Eclipse of the Century' Next Year When Spain, Egypt and More Go Dark

https://www.nytimes.com/2026/08/13/travel/solar-eclipse-2027-morocco-egypt.html
23•bookofjoe•3d ago•12 comments

AI, Tools and Transformation

https://www.ben-evans.com/benedictevans/2026/9/3/ai-tools-and-transformation
47•firexcy•6h ago•16 comments

AMD Based FreeBSD Desktop Reloaded

https://vermaden.wordpress.com/2026/09/06/amd-based-freebsd-desktop-reloaded/
43•vermaden•6h ago•2 comments

Chrome again exempts Google from user site data settings

https://lapcatsoftware.com/articles/2026/9/1.html
376•ExMachina73•9h ago•50 comments

Learn Programming with OCaml

https://usr.lmf.cnrs.fr/lpo/
246•elvis70•16h ago•93 comments

Discovery of a new OpenAI agent message board

https://collusion.wiki/
2181•moultano•1d ago•1541 comments

The "$60 Gaming PC" – AMD BC-250 (2025)

https://devquasar.com/hardware/the-60-gaming-pc-amd-bc-250/
338•networked•19h ago•98 comments

Site Is Closed on Sundays

https://v7.robweychert.com/
77•edent•2h ago•72 comments

Private German rocket makes history, reaches orbit from European soil

https://www.space.com/space-exploration/launches-spacecraft/isar-aerospace-second-launch-norway-a...
563•bookmtn•12h ago•291 comments

GPT-6 Astra on robot arms

https://openai.robocurve.org/gpt-6-astra/
174•Anon84•7h ago•124 comments

Actively exploited sandbox RCE in all Chromium versions

https://nvd.nist.gov/vuln/detail/cve-2026-85046
772•negura•1d ago•467 comments

Nitter has more working instances than before the takedowns

https://codeberg.org/mv12star/shitter/wiki/Instances
677•Cider9986•1d ago•341 comments

Visualizing Rust's Vtables: How dyn Trait Works In Memory

https://sofiabelen.github.io/projects/visualizing-rusts-vtables-how-dyn-trait-works-in-memory/
169•torutofu•19h ago•32 comments

Topologist's Map of the World

https://www.futilitycloset.com/2026/09/01/small-world-20/
85•beardyw•4d ago•22 comments

LLMs as a Cognitive Virus

https://arxiv.org/abs/2609.03344
266•canjobear•12h ago•196 comments

Matching Puzzle Pieces and Disappointing Benchmarks

https://llogiq.github.io/2026/03/20/case.html
5•speckx•2d ago•0 comments

A Computer History Time Capsule

https://blog.archive.org/2026/08/27/a-computer-history-time-capsule/
4•mooreds•4d ago•0 comments

How Swiss tables work in Go built-in map

https://victoriametrics.com/blog/go-swiss-table-map/index.html
75•valyala•2d ago•5 comments

RecurseCenter.return()

https://mm-dev.rocks/series/recursecenter.return/
48•evakhoury•4d ago•8 comments

Balrogg: Demonically compacting (up to 15%) lossless Vorbis/Opus recompressor

https://github.com/iczelia/balrogg
81•palaiologos•2d ago•11 comments

Delidded Intel I9-14900KS CT Scan

https://www.lttlabs.com/articles/2026/09/02/delidded-intel-i9-14900ks
99•willx86•3d ago•5 comments

Finite time blowup for an averaged three-dimensional Navier-Stokes equation (2014)

https://terrytao.wordpress.com/2014/02/04/finite-time-blowup-for-an-averaged-three-dimensional-na...
68•gmays•12h ago•40 comments

Statichost.eu – European static site hosting

https://www.statichost.eu/
476•p4bl0•1d ago•221 comments

Terpstra Keyboard

http://terpstrakeyboard.com/
134•cl3misch•22h ago•60 comments
Open in hackernews

Right-Truncatable Prime Counter

https://github.com/EbodShojaei/Right-Truncatable-Primes
9•rainmans•1y ago

Comments

throwawaymaths•1y 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•1y ago
i dont think smaller radixes make the problem more interesting. the problem is interesting because base 10 has a large branching factor
throwawaymaths•1y 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•1y ago
There's a Project Euler problem for finding truncatable prime numbers, from both left and right: https://projecteuler.net/problem=37
thechao•1y 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.