frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Claude Code Routines

https://code.claude.com/docs/en/routines
502•matthieu_bl•11h ago•294 comments

Rare concert recordings are landing on the Internet Archive

https://techcrunch.com/2026/04/13/thousands-of-rare-concert-recordings-are-landing-on-the-interne...
573•jrm-veris•14h ago•169 comments

Dependency cooldowns turn you into a free-rider

https://calpaterson.com/deps.html
23•pabs3•2h ago•3 comments

A communist Apple II and fourteen years of not knowing what you're testing

https://llama.gs/blog/index.php/2026/04/10/friday-archaeology-a-communist-apple-ii-and-fourteen-y...
76•major4x•4d ago•7 comments

The Orange Pi 6 Plus

https://taoofmac.com/space/reviews/2026/04/11/1900
141•rcarmo•3d ago•100 comments

Stop Flock

https://stopflock.com
480•cdrnsf•6h ago•117 comments

Understanding Clojure's Persistent Vectors, pt. 1 (2013)

https://hypirion.com/musings/understanding-persistent-vector-pt-1
33•mirzap•4d ago•4 comments

Installing OpenBSD on the Pomera DM250 Writerdeck

https://jcs.org/2026/04/09/openbsd-dm250
10•djfergus•4d ago•2 comments

Picasso's Guernica (Gigapixel)

https://guernica.museoreinasofia.es/gigapixel/#3/63.11/-120.59
78•guigar•3d ago•18 comments

Ask HN: Easiest UX for Seniors

45•khoury•3d ago•38 comments

5NF and Database Design

https://kb.databasedesignbook.com/posts/5nf/
143•petalmind•12h ago•56 comments

Turn your best AI prompts into one-click tools in Chrome

https://blog.google/products-and-platforms/products/chrome/skills-in-chrome/
132•xnx•11h ago•61 comments

Let's talk space toilets

https://mceglowski.substack.com/p/lets-talk-space-toilets
158•zdw•1d ago•47 comments

The dangers of California's legislation to censor 3D printing

https://www.eff.org/deeplinks/2026/04/dangers-californias-legislation-censor-3d-printing
307•salkahfi•1d ago•315 comments

Tell HN: Fiverr left customer files public and searchable

444•morpheuskafka•9h ago•89 comments

guide.world: A compendium of travel guides

https://guide.world/
87•firloop•5d ago•13 comments

I wrote to Flock's privacy contact to opt out of their domestic spying program

https://honeypot.net/2026/04/14/i-wrote-to-flocks-privacy.html
544•speckx•10h ago•226 comments

Trusted access for the next era of cyber defense

https://openai.com/index/scaling-trusted-access-for-cyber-defense/
70•surprisetalk•8h ago•49 comments

OpenAI's $852B valuation faces investor scrutiny amid strategy shift, FT reports

https://www.reuters.com/legal/transactional/openai-investors-question-852-billion-valuation-strat...
84•abdelhousni•2h ago•79 comments

Backblaze has stopped backing up OneDrive and Dropbox folders and maybe others

https://rareese.com/posts/backblaze/
1008•rrreese•20h ago•612 comments

Game: Print Gallery Of An Artist, A brief exploration of recursive spaces

https://managore.itch.io/print-gallery-of-an-artist
3•zdw•4d ago•0 comments

Don't feel like exercising? Maybe it's the wrong time of day for you

https://www.bbc.com/news/articles/cd6lzpxwx50o
11•tagawa•4h ago•5 comments

Show HN: Plain – The full-stack Python framework designed for humans and agents

https://github.com/dropseed/plain
76•focom•10h ago•27 comments

Free, fast diagnostic tools for DNS, email authentication, and network security

https://mrdns.com/
44•dogsnews•7h ago•4 comments

OpenSSL 4.0.0

https://github.com/openssl/openssl/releases/tag/openssl-4.0.0
223•petecooper•10h ago•75 comments

Apple App Store threatened to remove Grok over deepfakes: Letter

https://www.nbcnews.com/tech/tech-news/apple-threat-remove-grok-app-store-deepfake-letter-musk-x-...
62•donohoe•4h ago•29 comments

Show HN: LangAlpha – what if Claude Code was built for Wall Street?

https://github.com/ginlix-ai/langalpha
121•zc2610•13h ago•39 comments

Not all elementary functions can be expressed with exp-minus-log

https://www.stylewarning.com/posts/not-all-elementary/
6•mmastrac•2h ago•0 comments

Introspective Diffusion Language Models

https://introspective-diffusion.github.io/
246•zagwdt•20h ago•45 comments

Troubleshooting Email Delivery to Microsoft Users

https://rozumem.xyz/posts/14
49•rozumem•2d ago•13 comments
Open in hackernews

Right-Truncatable Prime Counter

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

Comments

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