frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Be Like Clippy

https://be-clippy.com/
148•Aloha•3h ago•86 comments

All it takes is for one to work out

https://alearningaday.blog/2025/11/28/all-it-takes-is-for-one-to-work-out-2/
203•herbertl•2h ago•108 comments

Landlock-Ing Linux

https://blog.prizrak.me/post/landlock/
41•razighter777•1h ago•9 comments

Show HN: Nano PDF – A CLI Tool to Edit PDFs with Gemini's Nano Banana

https://github.com/gavrielc/Nano-PDF
55•GavCo•2h ago•11 comments

Learning Feynman's Trick for Integrals

https://zackyzz.github.io/feynman.html
61•Zen1th•3h ago•9 comments

Post-mortem of Shai-Hulud attack on November 24th, 2025

https://posthog.com/blog/nov-24-shai-hulud-attack-post-mortem
49•makepanic•3d ago•36 comments

Zero knowlege proof of compositeness

https://www.johndcook.com/blog/2025/11/29/zkp-composite/
68•ColinWright•5h ago•20 comments

Men Who Made America's Self-Made Man

https://www.historynewsnetwork.org/article/self-made
19•Petiver•4d ago•4 comments

The Origins of Scala (2009)

https://www.artima.com/articles/the-origins-of-scala
30•todsacerdoti•3h ago•11 comments

An update on the Farphone's battery

https://far.computer/battery-update/
41•louismerlin•1d ago•35 comments

Show HN: Network Monitor – a GUI to spot anomalous connections on your Linux

73•grigio•5d ago•26 comments

Europe's New War on Privacy

https://unherd.com/2025/11/europes-new-war-on-privacy/
68•joecobb•1h ago•15 comments

Blender facial animation tool. What else should it do?

https://github.com/shun126/livelinkface_arkit_receiver/wiki
8•happy-game-dev•2d ago•2 comments

Rare X-ray images of a 4.5-ton satellite that returned intact from space

https://www.empa.ch/web/s604/eureca-satellit-mit-roentgenmethoden-untersucht
38•giuliomagnifico•3d ago•2 comments

Hardening the C++ Standard Library at scale

https://queue.acm.org/detail.cfm?id=3773097
97•ndesaulniers•6d ago•48 comments

Baboon: Data Modeling with Automatic Evolutions and tagless binary codecs

https://github.com/7mind/baboon
13•pshirshov•2h ago•4 comments

Hachi: An Image Search Engine

https://eagledot.xyz/hachi.md.html
114•warangal•9h ago•14 comments

AccessOwl (YC S22) Is Hiring a Technical Account Manager (IAM)

https://www.ycombinator.com/companies/accessowl/jobs/dGC3pcO-technical-account-manager-identity-a...
1•philipeller•6h ago

The CRDT Dictionary: A Field Guide to Conflict-Free Replicated Data Types

https://www.iankduncan.com/engineering/2025-11-27-crdt-dictionary/
137•birdculture•10h ago•14 comments

Bronze Age mega-settlement in Kazakhstan has advanced urban planning, metallurgy

https://archaeologymag.com/2025/11/bronze-age-mega-settlement-in-kazakhstan/
106•CGMthrowaway•1w ago•22 comments

Electric vehicle sales are booming in South America – without Tesla

https://www.reuters.com/sustainability/climate-energy/electric-vehicle-sales-are-booming-south-am...
118•breve•3h ago•111 comments

DNS LOC Record (2014)

https://blog.cloudflare.com/the-weird-and-wonderful-world-of-dns-loc-records/
122•mikejeays•9h ago•33 comments

Framework Computer Now Sponsoring LVFS / Fwupd Development

https://www.phoronix.com/news/Framework-Sponsoring-LVFS
103•LorenDB•3h ago•18 comments

Joe Armstrong interviews Alan Kay (2016) [video]

https://www.youtube.com/watch?v=fhOHn9TClXY
35•kerim-ca•2h ago•2 comments

Anthony Bourdain's Lost Li.st's

https://bourdain.greg.technology/
201•gregsadetsky•3d ago•61 comments

Iceland declares ocean-current instability a national security risk

https://edition.cnn.com/2025/11/15/climate/iceland-warming-current-amoc-collapse-threat
299•donohoe•7h ago•124 comments

Plinko PIR Tutorial

https://vitalik.eth.limo/general/2025/11/25/plinko.html
16•sygma•3d ago•0 comments

WebR – R in the Browser

https://webr.sh/
95•creata•5d ago•28 comments

Building road signs at home using a Cricut Machine

https://annanay.dev/build-a-signboard/
33•annanay•4d ago•21 comments

Garfield's Proof of the Pythagorean Theorem

https://en.wikipedia.org/wiki/Garfield%27s_proof_of_the_Pythagorean_theorem
161•benbreen•16h ago•85 comments
Open in hackernews

Right-Truncatable Prime Counter

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

Comments

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