frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Valve releases Steam Controller CAD files under Creative Commons license

https://www.digitalfoundry.net/news/2026/05/valve-releases-steam-controller-cad-files-under-creat...
1051•haunter•9h ago•344 comments

How I made $350K from an open-source JavaScript library using dual licensing

https://www.paritydeals.com/blog/monetize-open-source-dual-licensing/
23•sachinneravath•54m ago•6 comments

The Vatican's Website in Latin

https://www.vatican.va/latin/latin_index.html
15•ks2048•15m ago•2 comments

Appearing productive in the workplace

https://nooneshappy.com/article/appearing-productive-in-the-workplace/
708•diebillionaires•9h ago•273 comments

The Old Guard: Confronting America's Gerontocratic Crisis

https://harpers.org/archive/2026/05/the-old-guard-samuel-moyn-gerontocracy/
19•Caiero•1h ago•5 comments

Vibe coding and agentic engineering are getting closer than I'd like

https://simonwillison.net/2026/May/6/vibe-coding-and-agentic-engineering/
391•e12e•10h ago•416 comments

From Supabase to Clerk to Better Auth

https://blog.val.town/better-auth
204•stevekrouse•8h ago•126 comments

The bottleneck was never the code

https://www.thetypicalset.com/blog/thoughts-on-coding-agents
507•Anon84•2d ago•329 comments

Google Cloud fraud defense, the next evolution of reCAPTCHA

https://cloud.google.com/blog/products/identity-security/introducing-google-cloud-fraud-defense-t...
206•unforgivenpasta•7h ago•200 comments

Building my own Vi text editor in BASIC

https://leetusman.com/nosebook/yvi
23•zeech•1d ago•7 comments

Learning the Integral of a Diffusion Model

https://sander.ai/2026/05/06/flow-maps.html
92•benanne•6h ago•17 comments

Show HN: Hallucinopedia

http://halupedia.com/
146•bstrama•9h ago•153 comments

Show HN: Tilde.run – Agent sandbox with a transactional, versioned filesystem

https://tilde.run/
126•ozkatz•9h ago•93 comments

Community firmware for the Xteink X4 e-paper reader

https://github.com/crosspoint-reader/crosspoint-reader
43•dmos62•1d ago•19 comments

How do I inform Windows that I'm writing a binary file?

https://devblogs.microsoft.com/oldnewthing/20260504-00/?p=112296
14•ingve•1d ago•11 comments

A Theory of Deep Learning

https://elonlit.com/scrivings/a-theory-of-deep-learning/
123•elonlit•1d ago•27 comments

Inkscape 1.4.4

https://inkscape.org/doc/release_notes/1.4.4/Inkscape_1.4.4.html
211•s1291•6h ago•55 comments

Programming Still Sucks

https://www.stvn.sh/writing/programming-still-sucks-fqffhyp
79•jeromechoo•6h ago•16 comments

Perturb-MARS: Reading mouse experiments through a human lens

https://www.noetik.blog/p/perturb-mars-reading-mouse-experiments
3•crescit_eundo•2d ago•0 comments

Ted Turner has died

https://www.cnn.com/2026/05/06/us/ted-turner-death
224•pseudolus•10h ago•185 comments

Show HN: I built an open-source email builder, alternative to Beefree/Unlayer

https://play.templatical.com
98•oahmadov•9h ago•24 comments

Show HN: PHP-fts – Full-text search engine in pure PHP, no extensions

https://github.com/olivier-ls/php-fts
30•asmodios•5h ago•7 comments

Iran hit more U.S. military targets than has been reported, satellite images

https://www.washingtonpost.com/investigations/2026/05/06/iran-us-bases-satellite-images/
67•SanjayMehta•1h ago•30 comments

SQLite Is a Library of Congress Recommended Storage Format

https://sqlite.org/locrsf.html
9•whatisabcdefgh•3h ago•0 comments

Higher usage limits for Claude and a compute deal with SpaceX

https://www.anthropic.com/news/higher-limits-spacex
383•meetpateltech•9h ago•327 comments

Setting up a Sun Ray server on OpenIndiana Hipster 2025.10

https://catstret.ch/202605/srss-hipster202510/
125•jandeboevrie•14h ago•46 comments

SoundOff: Low-Cost Passive Ultrasound Tags

https://yibo-fu.com/SoundOff-Low-cost-Passive-Ultrasound-Tags-for-Non-invasive-and-Non
32•jonbaer•8h ago•1 comments

What makes a good smartphone camera?

https://cadence.moe/blog/2026-05-05-what-makes-a-good-smartphone-camera
77•zdw•1d ago•55 comments

What British people mean when they say 'sorry'

https://www.bbc.com/travel/article/20260506-what-british-people-really-mean-when-they-say-sorry
7•BiraIgnacio•2h ago•1 comments

Virtual violin produces realistic sounds

https://news.mit.edu/2026/mit-engineers-virtual-violin-produces-realistic-sounds-0429
76•gmays•3d ago•61 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.