frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

EuroBirdPortal – Live bird movements across Europe

https://www.eurobirdportal.org/ebp/en/
46•NKosmatos•2h ago•14 comments

Fable 5.1 Solves the Cyphral Distich, a 370-year-old cipher

https://www.vals.ai/blogs/fable-solves-cyphral-distich
975•u1hcw9nx•13h ago•422 comments

A 386 PC for Your RP2350

https://github.com/rh1tech/frank-386
37•SamuraiLion•2h ago•12 comments

Spaceships (Reverse Asteroid)

https://spaceships.treybastian.com/
248•zdw•4d ago•46 comments

An atlas of periodic solutions to the three-body problem

https://www.threebodyorbits.com/
22•danielmorozoff•2d ago•0 comments

Registration without a phone number on Signal will use zero-knowledge proofs

https://community.signalusers.org/t/registration-without-a-phone-number/2222?page=10
274•Cider9986•13h ago•135 comments

How Is Compression Prediction?

https://lukefleed.xyz/posts/compression/
3•aziis98•26m ago•0 comments

Apple's Dimensional Drawings

https://developer.apple.com/accessories/dimensional-drawings/
211•herbertl•10h ago•81 comments

Show HN: 1080p is 920px tall – 1k real browser viewports

https://screensize.net/reports/viewport-stats
19•zenpe•3h ago•12 comments

The case against JPEG XL

https://giannirosato.com/blog/post/case-against-jxl/
171•contact9879•9h ago•238 comments

OpenArch – PyTorch implementations of modern LLM architectures

https://github.com/anuj0456/OpenArch
16•anuj0456•2h ago•3 comments

Mullenweg has returned as CEO after attempted board ouster

https://techcrunch.com/2026/09/12/automattic-confirms-mullenweg-has-returned-as-ceo-after-attempt...
167•ilamont•14h ago•236 comments

The Nature of Dance

https://vester.si/blog/nature-of-dance/
10•wonger_•2d ago•10 comments

Ask HN: What are you working on? (September 2026)

182•david927•17h ago•564 comments

Rope, twine and thread: Invisible technologies of the Stone Age

https://knowablemagazine.org/content/article/society/2026/prehistory-lost-threads
75•knowablemag•2d ago•23 comments

OEMpocalypse: Unprivileged Android app to root on Samsung, Xiaomi, others

https://calif.io/research/oempocalypse
72•negura•8h ago•31 comments

Julia 1.13 highlights

https://julialang.org/blog/2026/09/julia-1.13-highlights/
233•eigenspace•3d ago•25 comments

Why is Google still serving dodgy ads?

https://www.atomic14.com/2026/09/13/why-is-google-still-serving-dodgy-ads
833•iamflimflam1•17h ago•369 comments

Show HN: EterDB, a Postgres fork that makes it easy to recover from incidents

https://eterdb.com/
35•fdeth•3d ago•16 comments

Bad benchmarks and evals: Senior SWE-Bench, napkin math, and winter tires

https://danluu.com/exercise-7/
30•luu•3d ago•11 comments

The GDR and Vietnam: From Fake Coffee to Coffee Empire

https://www.katjahoyer.uk/p/the-gdr-and-vietnam-from-fake-coffee
86•NaOH•3d ago•41 comments

Flawed routers flood University of Wisconsin internet time server (2003)

https://pages.cs.wisc.edu/~plonka/netgear-sntp/
88•walrus01•14h ago•10 comments

Nike exits the S&P 100 after 18 years and a $200B market-cap wipeout

https://fortune.com/2026/09/08/nike-stock-plummets-sp500-market-cap-index/
148•andsoitis•7h ago•196 comments

Open-source AI and open models reading list

https://www.interconnects.ai/p/open-source-ai-reading-list
115•simonpure•10h ago•22 comments

CUDA for AMD on Windows

https://github.com/Speedstu/CUDA-for-AMD-Windows
168•chiassedu80•20h ago•91 comments

The Malicious Use of Artificial Intelligence

https://arxiv.org/abs/1802.07228
69•rasengan0•9h ago•16 comments

Astra and Fable still hack on simple variants of alignment evals from 2025

https://www.lesswrong.com/posts/munJKF7iWMsWJLAH2/astra-and-fable-still-hack-on-simple-variants-o...
440•Levitating•20h ago•206 comments

Pkgsrc Is Cool (2022)

https://www.wisellama.rocks/posts/2021-12-23-pkgsrc-is-cool/
9•Tomte•55m ago•0 comments

Reverse-Engineering Claude Web's MicroVM: Uncovering Anthropic's Hidden Antspace

https://aprilnea.me/en/blog/reverse-engineering-claude-code-antspace
95•rzk•3d ago•21 comments

Five Words from Vanishing Fleece

https://blog.wordnik.com/five-words-from-vanishing-fleece
11•dan353hehe•2d ago•0 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.