frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

DynIP – Dynamic DNS with RFC 2136, IPv6, DNSSEC, and BYOD

https://dynip.dev/
32•dynip•50m ago•7 comments

Using AI to write better code more slowly

https://nolanlawson.com/2026/05/25/using-ai-to-write-better-code-more-slowly/
584•signa11•9h ago•220 comments

The User Is Visibly Frustrated

https://pscanf.com/s/354/
125•croes•3h ago•82 comments

Taking a walk may lead to more creativity than sitting, study finds (2014)

https://www.apa.org/news/press/releases/2014/04/creativity-walk
258•bilsbie•9h ago•86 comments

Earthion: A New Mega Drive-Style Shoot-Em-Up

https://earthiongame.com/
56•MrBuddyCasino•4h ago•23 comments

Use Boring Languages with LLMs

https://jry.io/writing/use-boring-languages-with-llms/
18•evakhoury•3d ago•6 comments

How Shamir's Secret Sharing Works

https://ente.com/blog/how-shamirs-secret-sharing-works/
180•subract•9h ago•29 comments

Ferrari Luce

https://www.ferrari.com/en-EN/auto/ferrari-luce
221•jumploops•11h ago•452 comments

A successful Japanese trial of a ramjet engine designed for Mach‑5 aircraft

https://www.bgr.com/2178211/japan-hypersonic-engine-ramjet-2-hour-flights-to-us/
142•rmason•12h ago•109 comments

Ask HN: Is anyone working at least 4 hours daily on an Apple Vision Pro?

86•widenrun•2h ago•48 comments

Exit IP VPN servers mitigation rollout

https://mullvad.net/en/help/exit-ip-vpn-servers-mitigation-rollout
345•Cider9986•14h ago•63 comments

Norway's 2 petabytes of Huawei flash storage and LLM training

https://www.blocksandfiles.com/flash/2026/05/22/norways-2-petabytes-of-huawei-flash-storage-and-l...
253•rbanffy•12h ago•159 comments

Motorola phones have started hijacking the Amazon app to insert affiliate codes

https://9to5google.com/2026/05/25/motorola-amazon-app-hijacking-behavior/
115•Cider9986•4h ago•54 comments

Micropatching Brings the Abandoned Equation Editor Back to Life (2018)

https://blog.0patch.com/2018/01/bringing-abandoned-equation-editor-back.html
20•bariumbitmap•4d ago•4 comments

Dehydration's role in learning and memory

https://www.cshl.edu/dehydrations-role-in-learning-and-memory/
45•hhs•3d ago•27 comments

Toshifumi Suzuki, founder of Seven-Eleven Japan, has died

https://www.referenceforbusiness.com/biography/S-Z/Suzuki-Toshifumi-1932.html
189•L_Rahman•16h ago•75 comments

What we lost when we stopped letting kids leave the front yard

https://stevemagness.substack.com/p/the-cost-of-safetyism
198•obscurette•17h ago•174 comments

California moves to exempt Linux from its age-verification law after backlash

https://www.tomshardware.com/software/linux/california-moves-to-exempt-linux-from-its-upcoming-ag...
846•rbanffy•14h ago•363 comments

Performance of Rust Language [pdf]

https://github.com/yugr/rust-slides/
63•tanelpoder•8h ago•37 comments

Squares in Squares

https://kingbird.myphotos.cc/packing/squares_in_squares.html
67•carlos-menezes•1d ago•8 comments

Show HN: Write your BPF programs in Go, not C

https://github.com/boratanrikulu/gobee
84•boratanrikulu•4d ago•38 comments

Logseq Doctor: heal your flat old Markdown files before importing to Logseq

https://github.com/andreoliwa/logseq-doctor
6•ankitg12•2h ago•1 comments

Hacker News front page as a site

https://thefrontpage.dev/
235•thatxliner•12h ago•69 comments

Show HN: OpenBrief – Local-first video downloader/summarizer

https://github.com/tantara/openbrief
57•tantara•10h ago•7 comments

Nobody cracks open a programming book anymore

https://unix.foo/posts/nobody-cracks-open-a-programming-book/
183•zdw•9h ago•216 comments

Jensen–Shannon Divergence

https://en.wikipedia.org/wiki/Jensen%E2%80%93Shannon_divergence
105•teleforce•3d ago•16 comments

C extensions, portability, and alternative compilers

https://lemon.rip/w/6-c-extensions-compilers/
154•xngbuilds•18h ago•55 comments

Does anybody like React?

https://jsx.lol
169•brazukadev•6h ago•211 comments

Gnutella: A Protocol Outliving the World That Created It

https://rickcarlino.com/notes/p2p/gnutella-explanation.html
248•rickcarlino•4d ago•76 comments

What it takes to transpose a matrix

https://gudok.xyz/transpose/
53•tosh•1d ago•3 comments
Open in hackernews

Right-Truncatable Prime Counter

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

Comments

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