frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Learning Software Architecture

https://matklad.github.io/2026/05/12/software-architecture.html
193•surprisetalk•3h ago•30 comments

Screenshots of Old Desktop OSes

http://www.typewritten.org/Media/
319•adunk•7h ago•143 comments

Postmortem: TanStack NPM supply-chain compromise

https://tanstack.com/blog/npm-supply-chain-compromise-postmortem
908•varunsharma07•15h ago•379 comments

EU to crack down on TikTok, Instagram's 'addictive design' targeting kids

https://www.cnbc.com/2026/05/12/tiktok-instagram-social-media-addictive-eu-crack-down.html
110•thm•1h ago•58 comments

Docker images are MB; a full game engine compiles to 35MB WASM

https://bogomolov.work/blog/posts/wasm-vs-docker/
33•theanonymousone•2d ago•28 comments

A HN post with negative points – how?

https://news.ycombinator.com/item?id=48104663
34•donohoe•2h ago•19 comments

They Live (1988) inspired Adblocker

https://github.com/davmlaw/they_live_adblocker
337•tokenburner•12h ago•104 comments

Text Blaze (YC W21) Is Hiring for a No-AI Summer Internship

https://www.ycombinator.com/companies/text-blaze/jobs/P4CCN62-the-blaze-no-ai-summer-internship
1•scottfr•56m ago

If AI writes your code, why use Python?

https://medium.com/@NMitchem/if-ai-writes-your-code-why-use-python-bf8c4ba1a055
603•indigodaddy•16h ago•634 comments

Coursera and Udemy are now one company

https://blog.coursera.org/coursera-and-udemy-are-now-one-company-creating-the-worlds-most-compreh...
59•Anon84•2h ago•17 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
374•bookofjoe•19h ago•72 comments

Music has scales / raagas. What about storytelling in movies and prestige shows?

https://arc.quanten.co/archetype
27•phaedrus044•4h ago•31 comments

Optimize for change not application performance

https://www.echooff.dev/blog/developer-experience-is-a-performance-feature
22•lo1tuma•2d ago•8 comments

Rtwatch: Watch videos with friends using WebRTC

https://github.com/pion/rtwatch
46•nateb2022•2d ago•6 comments

Toxicity on Social Media – The Noisy Room

https://thenoisyroom.com
105•skm•5h ago•68 comments

Claude Platform on AWS

https://claude.com/blog/claude-platform-on-aws
163•matrixhelix•11h ago•73 comments

Extremely Low Frequencies

https://computer.rip/2026-05-09-extremely-low-frequencies.html
112•pinewurst•8h ago•8 comments

Chasing Chicago's movable bridges (2014)

https://aresluna.org/seesaws-for-giants/
7•NaOH•2d ago•0 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
202•donohoe•23h ago•148 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/
208•showmypost•15h ago•215 comments

I hate soldering

https://user8.bearblog.dev/rant/
147•James72689•4d ago•135 comments

Remembering Planet Source Code: Sharing Code Before GitHub Made It Easy

https://www.pietschsoft.com/post/2026/05/05/remembering-planet-source-code-sharing-code-before-gi...
28•pabs3•3d ago•3 comments

Unitree GD01: China's $537k rideable transformer robot is now in production

https://gagadget.com/en/709729-unitree-gd01-chinas-537k-rideable-transformer-robot-is-now-in-prod...
54•rguiscard•3h ago•37 comments

Software Internals Book Club

https://eatonphil.com/bookclub.html
119•aragonite•10h ago•20 comments

Boriel BASIC

https://zxbasic.readthedocs.io/en/docs/
56•AlexeyBrin•3d ago•20 comments

Don't hijack my mouse pointer

https://ruky.me/dont-hijack-my-pointer/
12•rukshn•56m ago•6 comments

Nullsoft, 1997-2004 (2004)

https://slate.com/technology/2004/11/the-death-of-the-last-maverick-tech-company.html
298•downbad_•4d ago•83 comments

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

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

Interaction Models

https://thinkingmachines.ai/blog/interaction-models/
251•smhx•16h ago•31 comments

Show HN: TikTok but for scientific papers

https://andreaturchet.github.io/website/index.html
142•ciwrl•20h ago•64 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.