frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Postmortem: TanStack NPM supply-chain compromise

https://tanstack.com/blog/npm-supply-chain-compromise-postmortem
738•varunsharma07•9h ago•271 comments

They Live (1988) inspired Adblocker

https://github.com/davmlaw/they_live_adblocker
141•tokenburner•6h ago•27 comments

If AI writes your code, why use Python?

https://medium.com/@NMitchem/if-ai-writes-your-code-why-use-python-bf8c4ba1a055
379•indigodaddy•9h ago•390 comments

Claude Platform on AWS

https://claude.com/blog/claude-platform-on-aws
111•matrixhelix•5h ago•49 comments

UCLA discovers first stroke rehabilitation drug to repair brain damage (2025)

https://stemcell.ucla.edu/news/ucla-discovers-first-stroke-rehabilitation-drug-repair-brain-damage
301•bookofjoe•12h ago•62 comments

Screenshots of Old Desktop OSes

http://www.typewritten.org/Media/
13•adunk•1h ago•3 comments

Software Internals Book Club

https://eatonphil.com/bookclub.html
61•aragonite•4h ago•12 comments

Google says criminal hackers used AI to find a major software flaw

https://www.nytimes.com/2026/05/11/us/politics/google-hackers-attack-ai.html
160•donohoe•17h ago•122 comments

Boriel BASIC

https://zxbasic.readthedocs.io/en/docs/
17•AlexeyBrin•2d ago•3 comments

I let AI build a tool to help me figure out what was waking me up at night

https://martin.sh/i-let-ai-build-a-tool-to-help-me-figure-out-what-was-waking-me-up-at-night/
141•showmypost•9h ago•146 comments

Show HN: A modern Music Player Daemon based on Rockbox firmware

https://github.com/tsirysndr/rockbox-zig
64•tsiry•2d ago•8 comments

I hate soldering

https://user8.bearblog.dev/rant/
72•James72689•3d ago•55 comments

Extremely Low Frequencies

https://computer.rip/2026-05-09-extremely-low-frequencies.html
18•pinewurst•2h ago•0 comments

A lost ancient script reveals how writing as we know it began

https://www.newscientist.com/article/2524042-a-lost-ancient-script-reveals-how-writing-as-we-know...
44•emot•4d ago•10 comments

Nullsoft, 1997-2004 (2004)

https://slate.com/technology/2004/11/the-death-of-the-last-maverick-tech-company.html
264•downbad_•3d ago•76 comments

Library for fast mapping of Java records to native memory

https://github.com/mamba-studio/TypedMemory
134•joe_mwangi•11h ago•27 comments

High-precision HDC reference instrument for the Sol Star System

https://pypi.org/project/ephemerides-spectral/
8•lemonforest•1d ago•0 comments

VGA Memory Access Is Complicated

https://www.os2museum.com/wp/learn-something-old-every-day-part-xxi-vga-memory-access-is-complica...
45•ingve•2d ago•6 comments

Interaction Models

https://thinkingmachines.ai/blog/interaction-models/
178•smhx•9h ago•22 comments

When semiconductor materials misbehave

https://semiengineering.com/when-semiconductor-materials-misbehave/
5•PaulHoule•3d ago•0 comments

GitLab announces workforce reduction and end of their CREDIT values

https://about.gitlab.com/blog/gitlab-act-2/
447•AnonGitLabEmpl•9h ago•463 comments

Show HN: TikTok but for scientific papers

https://andreaturchet.github.io/website/index.html
102•ciwrl•14h ago•51 comments

Griffin PowerMate driver for modern macOS

https://github.com/jameslockman/Griffin-PowerMate-Driver
67•classichasclass•9h ago•23 comments

Productivity isn't about going faster

https://humanpro.co/articles/productivity-isnt-about-going-faster/
52•gx•3h ago•29 comments

The rise and fall of snake oil

https://www.historytoday.com/archive/history-matters/rise-and-fall-snake-oil
56•samizdis•4d ago•28 comments

Silverback Imfura took a chance, and ended up alone

https://gorillafund.org/mountain-gorillas/silverback-imfura-took-a-chance-and-ended-up-alone/
55•alex000kim•2d ago•17 comments

Interfaze: A new model architecture built for high accuracy at scale

https://interfaze.ai/blog/interfaze-a-new-model-architecture-built-for-high-accuracy-at-scale
134•yoeven•14h ago•32 comments

Training an LLM in Swift, Part 1: Taking matrix mult from Gflop/s to Tflop/s

https://www.cocoawithlove.com/blog/matrix-multiplications-swift.html
230•zdw•1d ago•12 comments

Supercomputer networking to accelerate large scale AI training

https://openai.com/index/mrc-supercomputer-networking/
4•gmays•1h ago•0 comments

Bild AI (YC W25) Is Hiring Founding Product Engineers

https://bild.ai/jobs
1•rooppal•13h ago
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.