frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

BBEdit 16

https://www.barebones.com/products/bbedit/bbedit16.html
200•qaz_plm•2h ago•56 comments

Project Hail Mary – Stellar Navigation Chart

https://valhovey.github.io/gaia-mary/
304•speleo•4h ago•86 comments

Flipper One – we need your help

https://blog.flipper.net/flipper-one-we-need-your-help/
934•sandebert•10h ago•392 comments

Blog ran on Ubuntu 16.04 for 10 years. I migrated it to FreeBSD

https://crocidb.com/post/this-blog-ran-on-ubuntu-16-04-for-10-years-i-migrated-it-to-freebsd/
48•speckx•2h ago•10 comments

Show HN: Freenet, a peer-to-peer platform for decentralized apps

https://freenet.org/
93•sanity•6h ago•29 comments

Using Kagi Search with Low Vision

https://veroniiiica.com/using-kagi-search-with-low-vision/
26•speckx•1h ago•1 comments

We're testing new ad formats in Search and expanding our Direct Offers pilot

https://blog.google/products/ads-commerce/google-marketing-live-search-ads/
523•sofumel•11h ago•439 comments

Seattle Shield, an intelligence-sharing network operated by the Seattle police

https://prismreports.org/2026/05/20/seattle-shield-private-companies-surveillance/
354•root-parent•3h ago•146 comments

Was my $48K GPU server worth it?

https://rosmine.ai/2026/05/13/was-my-48k-gpu-worth-it/
149•apwheele•3d ago•114 comments

Indexing a year of video locally on a 2021 MacBook with Gemma4-31B (50GB swap)

https://blog.simbastack.com/indexed-a-year-of-video-locally/
222•asenna•7h ago•77 comments

Spotify will start reserving concert tickets for fans

https://www.hollywoodreporter.com/music/music-industry-news/spotify-will-start-reserving-concert-...
56•elffjs•4h ago•110 comments

Waymo pauses Atlanta service as its robotaxis keep driving into floods

https://techcrunch.com/2026/05/21/waymo-pauses-atlanta-service-as-its-robotaxis-keep-driving-into...
181•mattas•4h ago•228 comments

Python 3.15: features that didn't make the headlines

https://blog.changs.co.uk/python-315-features-that-didnt-make-the-headlines.html
291•rbanffy•10h ago•132 comments

ParadeDB (YC S23) Is Hiring Distributed Systems/Platform Engineers

1•philippemnoel•4h ago

News outlets are limiting the Internet Archive’s access to their journalism

https://www.niemanlab.org/2026/05/more-than-340-local-news-outlets-are-limiting-the-internet-arch...
155•jaredwiener•4h ago•49 comments

Where are all the UK red telephone kiosks?

https://www.thek6project.co.uk/
48•Kaibeezy•3h ago•32 comments

Lost Images from the 1945 Trinity Nuclear Test Restored

https://spectrum.ieee.org/trinity-nuclear-test
246•pseudolus•10h ago•78 comments

Thoughts on People and Blogs

https://afranca.com.br/thoughts-on-people-and-blogs/
12•meysamazad•2d ago•1 comments

Google's Antigravity bait and switch

https://www.0xsid.com/blog/antigravity-bait-n-switch
436•ssiddharth•7h ago•226 comments

Mounting git commits as folders with NFS (2023)

https://jvns.ca/blog/2023/12/04/mounting-git-commits-as-folders-with-nfs/
74•pvtmert•2d ago•39 comments

Launch HN: Runtime (YC P26) – Sandboxed coding agents for everyone on a team

https://www.runtm.com/
44•gustrigos•5h ago•17 comments

Throwing AI-generated walls of text into conversations

https://noslopgrenade.com/
419•napolux•11h ago•252 comments

Museum of Pocket Calculating Devices

https://www.calculators.de/
51•ohjeez•5h ago•11 comments

Show HN: Agent.email – sign up via curl, claim with a human OTP

28•adisingh13•4h ago•28 comments

Bournegol??? (2014)

https://oldhome.schmorp.de/marc/bournegol.html
26•greyface-•2d ago•4 comments

Chewing gum restores dad's taste and smell years after Covid

https://discover.swns.com/2026/05/chewing-gum-restores-dads-taste-and-smell-years-after-covid/
107•speckx•3h ago•45 comments

Multi-Stream LLMs: new paper on parallelizing/separating prompts, thinking, I/O

https://arxiv.org/abs/2605.12460
22•atomicthumbs•1h ago•1 comments

Vivaldi 8.0

https://vivaldi.com/blog/vivaldi-on-desktop-8-0/
305•OuterVale•13h ago•216 comments

Who wins and who loses in prediction markets? Evidence from Polymarket

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6443103
110•vcf•8h ago•101 comments

FatGid: FreeBSD 14.x kernel local privilege escalation

https://fatgid.io/
79•WhyNotHugo•8h ago•36 comments
Open in hackernews

Right-Truncatable Prime Counter

https://github.com/EbodShojaei/Right-Truncatable-Primes
9•rainmans•12mo 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.