frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google plans to invest up to $40B in Anthropic

https://www.bloomberg.com/news/articles/2026-04-24/google-plans-to-invest-up-to-40-billion-in-ant...
524•elffjs•15h ago•518 comments

New 10 GbE USB adapters are cooler, smaller, cheaper

https://www.jeffgeerling.com/blog/2026/new-10-gbe-usb-adapters-cooler-smaller-cheaper/
34•calcifer•1h ago•7 comments

A 3D Body from Eight Questions – No Photo, No GPU

https://clad.you/blog/posts/questionnaire-mlp/
34•arkadiuss•2d ago•6 comments

Paraloid B-72

https://en.wikipedia.org/wiki/Paraloid_B-72
153•Ariarule•3d ago•23 comments

Humpback whales are forming super-groups

https://www.bbc.com/future/article/20260416-the-humpback-super-groups-swarming-the-seas
86•andsoitis•3d ago•41 comments

Turbo Vision 2.0 – a modern port

https://github.com/magiblot/tvision
88•andsoitis•3h ago•15 comments

My audio interface has SSH enabled by default

https://hhh.hn/rodecaster-duo-fw/
224•hhh•11h ago•73 comments

Replace IBM Quantum back end with /dev/urandom

https://github.com/yuvadm/quantumslop/blob/25ad2e76ae58baa96f6219742459407db9dd17f5/URANDOM_DEMO.md
123•pigeons•6h ago•16 comments

"Plain text has been around for decades and it's here to stay." – Unsung

https://unsung.aresluna.org/plain-text-has-been-around-for-decades-and-its-here-to-stay/
63•rbanffy•6h ago•9 comments

Sabotaging projects by overthinking, scope creep, and structural diffing

https://kevinlynagh.com/newsletter/2026_04_overthinking/
411•alcazar•17h ago•105 comments

Iliad fragment found in Roman-era mummy

https://www.thehistoryblog.com/archives/75877
160•wise_blood•2d ago•47 comments

(Blender) Cosmology with Geometry Nodes

https://www.blender.org/user-stories/cosmology-with-geometry-nodes/
42•shankysingh•6h ago•1 comments

The Classic American Diner

https://blogs.loc.gov/picturethis/2026/04/the-classic-american-diner/
204•NaOH•12h ago•125 comments

Education must go beyond the mere production of words

https://www.ncregister.com/commentaries/schnell-repairing-the-ruins
51•signor_bosco•7h ago•15 comments

There Will Be a Scientific Theory of Deep Learning

https://arxiv.org/abs/2604.21691
205•jamie-simon•13h ago•82 comments

Firefox Has Integrated Brave's Adblock Engine

https://itsfoss.com/news/firefox-ships-brave-adblock-engine/
170•nreece•5h ago•77 comments

Work with the garage door up (2024)

https://notes.andymatuschak.org/Work_with_the_garage_door_up
152•jxmorris12•3d ago•112 comments

MacBook Neo and how the iPad should be

https://craigmod.com/essays/ipad_neo/
253•jen729w•2d ago•141 comments

Email could have been X.400 times better

https://buttondown.com/blog/x400-vs-smtp-email
165•maguay•1d ago•148 comments

Show HN: I've built a nice home server OS

https://lightwhale.asklandd.dk/
107•Zta77•9h ago•44 comments

PCR Is a (Surprisingly) Near-Optimal Technology

https://nikomc.com/2026/04/22/pcr/
5•mailyk•2d ago•0 comments

DeepSeek v4

https://api-docs.deepseek.com/news/news260424
1880•impact_sy•1d ago•1466 comments

Open source memory layer so any AI agent can do what Claude.ai and ChatGPT do

https://alash3al.github.io/stash?_v01
20•alash3al•6h ago•3 comments

Reverse-engineering infrared-based electronic shelf labels

https://www.furrtek.org/?a=esl
20•pabs3•3d ago•2 comments

You don't want long-lived keys

https://argemma.com/blog/long-lived-keys/
49•kkl•3d ago•31 comments

Diatec, known for its mechanical keyboard brand FILCO, has ceased operations

https://gigazine.net/gsc_news/en/20260424-filco-diatec/
113•gslin•15h ago•41 comments

ENIAC's Architects Wove Stories Through Computing

https://spectrum.ieee.org/eniac-80th-anniversary-weaving
7•sohkamyung•3d ago•0 comments

The mail sent to a video game publisher

https://www.gamefile.news/p/panic-mail-arco-despelote-time-flies-thank-goodness-teeth
15•colinprince•3d ago•0 comments

The Overtom Chess Computer Museum

https://tluif.home.xs4all.nl/chescom/Engindex.html
31•semyonsh•2d ago•5 comments

Oxford All Souls College General Examination (2025) [pdf]

https://www.asc.ox.ac.uk/sites/default/files/2025-10/General%202025.pdf
42•gregsadetsky•2h ago•30 comments
Open in hackernews

Right-Truncatable Prime Counter

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

Comments

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