frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Poland is now among the 20 largest economies. How it happened

https://apnews.com/article/poland-economy-growth-g20-gdp-26fe06e120398410f8d773ba5661e7aa
231•surprisetalk•1h ago•218 comments

An Introduction to Meshtastic

https://meshtastic.org/docs/introduction/
78•ColinWright•2h ago•31 comments

Canvas is down as ShinyHunters threatens to leak schools’ data

https://www.theverge.com/tech/926458/canvas-shinyhunters-breach
791•stefanpie•15h ago•511 comments

US Government releases first batch of UAP documents and videos

https://www.war.gov/UFO/
29•david-gpu•1h ago•19 comments

Cloudflare to cut about 20% workforce

https://www.reuters.com/business/world-at-work/cloudflare-cut-over-1100-jobs-2026-05-07/
969•PriorityLeft•17h ago•673 comments

Maybe you shouldn't install new software for a bit

https://xeiaso.net/blog/2026/abstain-from-install/
653•psxuaw•14h ago•360 comments

ClojureScript Gets Async/Await

https://clojurescript.org/news/2026-05-07-release
149•Borkdude•6h ago•41 comments

GeoJSON

https://geojson.org/
47•tosh•4h ago•26 comments

Dirtyfrag: Universal Linux LPE

https://www.openwall.com/lists/oss-security/2026/05/07/8
700•flipped•18h ago•295 comments

Rumors of my death are slightly exaggerated

522•CliffStoll•1d ago•70 comments

Dithering with CSS

https://ikesau.co/blog/dithering-with-css/
65•speckx•3d ago•18 comments

The map that keeps Burning Man honest

https://www.not-ship.com/burning-man-moop/
689•speckx•23h ago•326 comments

Nintendo announces price increases for Nintendo Switch 2

https://www.nintendo.co.jp/corporate/release/en/2026/260508.html
147•razorbeamz•7h ago•120 comments

Pinocchio is weirder than you remembered

https://storica.club/blog/pinocchio-in-italian/
219•cemsakarya•2d ago•93 comments

Hackers breach JDownloader website to serve malware-laced downloads

https://www.neowin.net/news/if-you-downloaded-this-popular-software-recently-you-might-have-insta...
36•bundie•1h ago•8 comments

Just Fucking Use Go

https://blainsmith.com/articles/just-fucking-use-go/
38•xngbuilds•18m ago•10 comments

Agents need control flow, not more prompts

https://bsuh.bearblog.dev/agents-need-control-flow/
519•bsuh•21h ago•255 comments

A polynomial autoencoder beats PCA on transformer embeddings

https://ivanpleshkov.dev/blog/polynomial-autoencoder/
66•timvisee•3d ago•17 comments

Brazil's Pix payment system faces pressure from Visa and Mastercard

https://www.elciudadano.com/en/brazils-pix-payment-system-faces-pressure-from-visa-and-mastercard...
279•wslh•20h ago•242 comments

QBE – Compiler Back End

https://c9x.me/compile/
24•smartmic•6h ago•1 comments

DeepSeek 4 Flash local inference engine for Metal

https://github.com/antirez/ds4
434•tamnd•22h ago•125 comments

Natural Language Autoencoders: Turning Claude's Thoughts into Text

https://www.anthropic.com/research/natural-language-autoencoders
324•instagraham•20h ago•100 comments

Singapore introduces caning for boys who bully others at school

https://www.theguardian.com/world/2026/may/06/singapore-caning-school-bullies
249•rustoo•2d ago•364 comments

Blaise – A modern self-hosting zero-legacy Object Pascal compiler targeting QBE

https://github.com/graemeg/blaise
72•peter_d_sherman•9h ago•30 comments

Hardening Firefox with Claude Mythos Preview

https://hacks.mozilla.org/2026/05/behind-the-scenes-hardening-firefox/
255•HieronymusBosch•21h ago•117 comments

AlphaEvolve: Gemini-powered coding agent scaling impact across fields

https://deepmind.google/blog/alphaevolve-impact/
308•berlianta•22h ago•132 comments

GPT-5.5 Price Increase: What It Costs

https://openrouter.ai/announcements/gpt55-cost-analysis
107•gmays•12h ago•25 comments

GNU IFUNC is the real culprit behind CVE-2024-3094

https://github.com/robertdfrench/ifuncd-up
108•foltik•13h ago•47 comments

Plasticity and language in the anaesthetized human hippocampus

https://www.bcm.edu/news/researchers-discover-advanced-language-processing-in-the-unconscious-hum...
125•hhs•14h ago•49 comments

How to make SSE token streams resumable, cancellable, and multi-device

https://zknill.io/posts/everyone-said-sse-token-streaming-was-easy/
56•zknill•1d ago•12 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.