frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

NanoChat – The best ChatGPT that $100 can buy

https://github.com/karpathy/nanochat
738•huseyinkeles•7h ago•136 comments

Uv overtakes pip in CI (for Wagtail users)

https://wagtail.org/blog/uv-overtakes-pip-in-ci/
31•ThibWeb•1w ago•4 comments

First device based on 'optical thermodynamics' can route light without switches

https://phys.org/news/2025-10-device-based-optical-thermodynamics-route.html
83•rbanffy•4d ago•14 comments

Show HN: SQLite Online – 11 years of solo development, 11K daily users

https://sqliteonline.com/
306•sqliteonline•10h ago•109 comments

Abstraction, not syntax

https://ruudvanasseldonk.com/2025/abstraction-not-syntax
42•unripe_syntax•14h ago•19 comments

Modern iOS Security Features – A Deep Dive into SPTM, TXM, and Exclaves

https://arxiv.org/abs/2510.09272
63•todsacerdoti•4h ago•1 comments

JIT: So you want to be faster than an interpreter on modern CPUs

https://www.pinaraf.info/2025/10/jit-so-you-want-to-be-faster-than-an-interpreter-on-modern-cpus/
53•pinaraf•1d ago•3 comments

Root cause analysis? You're doing it wrong

https://entropicthoughts.com/root-cause-analysis-youre-doing-it-wrong
74•davedx•2d ago•33 comments

Dutch government takes control of Chinese-owned chipmaker Nexperia

https://www.cnbc.com/2025/10/13/dutch-government-takes-control-of-chinese-owned-chipmaker-nexperi...
233•piskov•12h ago•155 comments

Don't Be a Sucker (1943) [video]

https://www.youtube.com/watch?v=vGAqYNFQdZ4
189•surprisetalk•2h ago•56 comments

Strudel REPL – a music live coding environment living in the browser

https://strudel.cc
55•birdculture•4h ago•8 comments

Scaling request logging with ClickHouse, Kafka, and Vector

https://www.geocod.io/code-and-coordinates/2025-10-02-from-millions-to-billions/
91•mjwhansen•5d ago•13 comments

JSON River – Parse JSON incrementally as it streams in

https://github.com/rictic/jsonriver
135•rickcarlino•5d ago•63 comments

Android's sideloading limits are its most anti-consumer move

https://www.makeuseof.com/androids-sideloading-limits-are-anti-consumer-move-yet/
508•josephcsible•7h ago•315 comments

Show HN: AI Toy I worked on is in stores

https://www.walmart.com/ip/SANTA-SMAGICAL-PHONE/16364964771
22•Sean-Der•1d ago•23 comments

CRDT and SQLite: Local-First Value Synchronization

https://marcobambini.substack.com/p/the-secret-life-of-a-local-first
51•marcobambini•4d ago•10 comments

Software update bricks some Jeep 4xe hybrids over the weekend

https://arstechnica.com/cars/2025/10/software-update-bricks-some-jeep-4xe-hybrids-over-the-weekend/
272•gloxkiqcza•8h ago•196 comments

Optery (YC W22) – Hiring Tech Lead with Node.js Experience (U.S. & Latin America)

https://www.optery.com/careers/
1•beyondd•5h ago

Spotlight on pdfly, the Swiss Army knife for PDF files

https://chezsoi.org/lucas/blog/spotlight-on-pdfly.html
297•Lucas-C•14h ago•88 comments

Reverse Engineering a 1979 Camera's Spec

https://blog.mano.lol/posts/film/
23•manoloesparta•4h ago•5 comments

American solar farms

https://tech.marksblogg.com/american-solar-farms.html
189•marklit•12h ago•225 comments

Roger Dean – His legendary artwork in gaming history (Psygnosis)

https://spillhistorie.no/2025/10/03/legends-of-the-games-industry-roger-dean/
65•thelok•8h ago•15 comments

Systems as Mirrors

https://iamstelios.com/blog/systems-as-mirrors/
11•i8s•1d ago•1 comments

Thoughts on Omarchy: Slick Distro, Complicated Ethics

https://tedium.co/2025/10/13/omarchy-linux-distro-commentary/
9•raybb•2h ago•2 comments

Matrices can be your friends (2002)

https://www.sjbaker.org/steve/omniv/matrices_can_be_your_friends.html
116•todsacerdoti•12h ago•85 comments

Smartphones and being present

https://herman.bearblog.dev/being-present/
185•articsputnik•8h ago•116 comments

AWS Service Availability Updates

https://aws.amazon.com/about-aws/whats-new/2025/10/aws-service-availability/
42•dabinat•3h ago•17 comments

The Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel 2025

https://www.nobelprize.org/prizes/economic-sciences/2025/summary/
119•k2enemy•11h ago•163 comments

More random home lab things I've recently learned

https://chollinger.com/blog/2025/10/more-homelab-things-ive-recently-learned/
179•otter-in-a-suit•1w ago•94 comments

Ancient Patagonian hunter-gatherers took care of their injured and disabled

https://phys.org/news/2025-10-ancient-patagonian-hunter-disabled.html
66•pseudolus•6d ago•67 comments
Open in hackernews

Right-Truncatable Prime Counter

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

Comments

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