frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Claude for Small Business

https://www.anthropic.com/news/claude-for-small-business
226•neilfrndes•5h ago•155 comments

Scorched Earth 2000 – Web

http://www.scorch2000.com/web/
241•meshko•8h ago•96 comments

Classic 7 is a Windows 10 LTSC mod to look 1:1 to Windows 7

https://classic7.lol/
23•jandeboevrie•2h ago•15 comments

Linux gaming is faster because Windows APIs are becoming Linux kernel features

https://www.xda-developers.com/linux-gaming-is-getting-faster-because-windows-apis-are-becoming-l...
710•haunter•3d ago•459 comments

Arena AI Model ELO History

https://mayerwin.github.io/AI-Arena-History/
58•mayerwin•5h ago•39 comments

What the Hell Was Going on with Cigarette Ads in the 70s?

https://tohippo.com/what-the-hell-was-going-on-with-cigarette-ads-in-the-70s/
15•Vasbarlog•1h ago•19 comments

Setting up a free *.city.state.us locality domain (2025)

https://fredchan.org/blog/locality-domains-guide/
558•speckx•18h ago•173 comments

MacBook Neo Deep Dive: Benchmarks, Wafer Economics, and the 8GB Gamble

https://www.jdhodges.com/blog/macbook-neo-benchmarks-analysis/
212•tosh•14h ago•220 comments

A History of IDEs at Google

https://laurent.le-brun.eu/blog/a-history-of-ides-at-google
364•laurentlb•4d ago•241 comments

The Emacsification of Software

https://sockpuppet.org/blog/2026/05/12/emacsification/
294•rdslw•1d ago•195 comments

Extraordinary Ordinals

https://text.marvinborner.de/2026-04-09-17.html
21•marvinborner•2d ago•11 comments

Twin brothers wipe 96 government databases minutes after being fired

https://arstechnica.com/tech-policy/2026/05/drop-database-what-not-to-do-after-losing-an-it-job/
422•jnord•1d ago•323 comments

Avoiding and reducing microplastic false positives from dry glove contact

https://pubs.rsc.org/en/content/articlelanding/2026/ay/d5ay01801c
44•efavdb•7h ago•3 comments

Cisco workforce reductions

https://blogs.cisco.com/news/our-path-forward
195•ahmedomran8•7h ago•180 comments

Show HN: Nibble

https://github.com/glouw/nibble
52•glouwbug•7h ago•5 comments

delta time

https://www.deltatime.life/
47•mxfh•7h ago•28 comments

Chess puzzle I found in my dad's old book

https://ardoedo.it/kempelen/
154•Eswo•2d ago•41 comments

The US is winning the AI race where it matters most: commercialization

https://avkcode.github.io/blog/us-winning-ai-race.html
197•akrylov•19h ago•537 comments

Notes from Optimizing CPU-Bound Go Hot Paths

https://blog.andr2i.com/posts/2026-05-03-notes-from-optimizing-cpu-bound-go-hot-paths
12•nnx•2d ago•1 comments

Show HN: Needle: We Distilled Gemini Tool Calling into a 26M Model

https://github.com/cactus-compute/needle
674•HenryNdubuaku•1d ago•188 comments

Microsoft BitLocker – YellowKey zero-day exploit

https://www.tomshardware.com/tech-industry/cyber-security/microsoft-bitlocker-protected-drives-ca...
151•cookiengineer•6h ago•82 comments

Xs of Y – roguelike that names itself every run. Written in 4kLoC

https://github.com/nooga/xsofy
184•andsoitis•4d ago•76 comments

The Deathbed Notes of Henry James (1968)

https://www.theatlantic.com/past/docs/unbound/flashbks/james/jnote.htm
4•Hooke•1d ago•0 comments

Heritability of human life span is ~50% when heritability is redefined

https://dynomight.net/lifespan/
100•surprisetalk•1d ago•55 comments

Princeton mandates proctoring for in-person exams, upending 133 year precedent

https://www.dailyprincetonian.com/article/2026/05/princeton-news-adpol-proctoring-in-person-exami...
323•bookofjoe•12h ago•478 comments

A Claude Code and Codex Skill for Deliberate Skill Development

https://github.com/DrCatHicks/learning-opportunities
36•cdrnsf•5h ago•11 comments

Launch HN: Ardent (YC P26) – Postgres sandboxes in seconds with zero migration

https://www.tryardent.com/
85•vc289•16h ago•34 comments

How can Apple deal with the memory shortage?

https://asymco.com/2026/05/11/the-great-memory-panic-of-2026/
96•tambourine_man•2d ago•95 comments

Reverting the incremental GC in Python 3.14 and 3.15

https://discuss.python.org/t/reverting-the-incremental-gc-in-python-3-14-and-3-15/107014
230•curiousgal•4d ago•94 comments

Golden Testing a CAD Library

https://doscienceto.it/blog/posts/2026-04-27-golden-testing-cad.html
23•PaulHoule•2d ago•5 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.