frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GPU World

https://www.gpuworld.org/
205•simonpure•5h ago•88 comments

Fastpotify

https://fastpotify.rocks/
350•nreece•6h ago•172 comments

Tmp.0ut Volume 5

https://tmpout.sh/5/
48•ghuntley•9h ago•18 comments

Restroom Archive

https://restroomarchive.com
112•jcalx•5h ago•34 comments

I turned my security cameras into an automatic bird identification system

https://jasontucker.blog/how-i-turned-my-security-cameras-into-an-automatic-bird-identification-s...
493•speckx•16h ago•116 comments

Playa Phone

https://playaphone.com/
616•cutoff•18h ago•209 comments

A walkable ASCII cyberpunk city in one HTML file [video]

https://www.youtube.com/watch?v=3YtygAx_C6A
324•keithcarolus•14h ago•38 comments

Terence Tao explains 6 essential mathematical concepts [video]

https://www.youtube.com/watch?v=OOMx2BHHWtE
411•matthewsinclair•1d ago•59 comments

RotaryCell: Making an unmodified rotary phone work over LTE with an ESP32-S3

https://github.com/fregacmols/RotaryCell
57•jombib•6h ago•8 comments

CollectWise (YC F24) Is Hiring

https://www.ycombinator.com/companies/collectwise/jobs/7U500pP-founding-customer-success-engineer
1•OBrien_1107•2h ago

Dwarf Fortress is getting the mother of all magic updates

https://www.rockpapershotgun.com/dwarf-fortress-is-getting-the-mother-of-all-magic-updates-extend...
406•Tomte•4d ago•167 comments

Evidence of Fraud in an Influential Study About Procrastination

https://datacolada.org/138
227•Anon84•9h ago•154 comments

Borges Labyrinth in Venice reopens to the public

https://www.wallpaper.com/design-interiors/labirinto-borges-venice-reopening
67•gone35•3d ago•26 comments

Apple caught off guard by AI demand for Mac Mini and Mac Studio

https://www.macrumors.com/2026/08/30/apple-unexpected-mac-mini-and-studio-demand/
400•thm•20h ago•448 comments

Show HN: Laser Graffiti

https://laser.consti.de
190•con•2d ago•39 comments

Flat vs. segmented memory – it's recursive

https://www.humprog.org/~stephen/blog/2026/08/25/#flat-vs-segmented
21•signa11•5d ago•0 comments

I think the military commissary's freezers were hacked

https://signalandsilence.substack.com/p/i-think-someone-hacked-the-commissary
338•jcurbo•21h ago•195 comments

Roget's Thesaurus

https://artflsrv04.uchicago.edu/roget-thesaurus/
13•gregsadetsky•1d ago•1 comments

2004 RuneScape fit a multiplayer RPG into 56k dial-up

https://jkm.dev/posts/how-2004-runescape-fit-a-multiplayer-rpg-into-56k-dialup/
109•fagnerbrack•8h ago•57 comments

Cheap GPS jammers are filling the world with navigation dead zones

https://www.wsj.com/tech/gps-jammers-dead-zones-e76f3261
136•vinnyglennon•1d ago•132 comments

DoltLite: A SQLite fork with Git-style version control, built with 2k agent PRs

https://www.dolthub.com/blog/2026-08-31-doltlite-beta/
38•lbw1215•7h ago•25 comments

Smartphone LED detects hidden cameras with AI

https://www.chosun.com/english/industry-en/2026/08/30/SBFXUIJQYZEARKP5T4FBAY25HQ/
208•geox•2d ago•60 comments

Lion-man

https://en.wikipedia.org/wiki/Lion-man
106•gurjeet•2d ago•54 comments

Reverse engineering my ADHD test

https://nullpt.rs/reverse-engineering-adhd-test
215•hazebooth•4d ago•126 comments

RavynOS: Pre-alpha open-source OS based on Darwin, FreeBSD, Apple open-source

https://ravynos.com/
198•Bluestein•16h ago•114 comments

Interactive pattern discovery in binaries (FF-16-TUI)

https://github.com/HexLasso/FF-16-TUI
32•HexLasso•3d ago•3 comments

Vermell – Minimal, dependency-free C++ web framework using epoll

https://github.com/vermellcc/vermell
19•standar-donkey•4h ago•9 comments

ChatGPT Work Tool and Skill Reference

https://codex-tool-reference.simonw.chatgpt.site/
215•ijidak•18h ago•52 comments

Run macOS Software on Linux

https://www.darlinghq.org/
226•Bluestein•10h ago•70 comments

Polishing Cloth Updated

https://512pixels.net/2026/08/polishing-cloth-updated/
9•zdw•6d ago•4 comments
Open in hackernews

Right-Truncatable Prime Counter

https://github.com/EbodShojaei/Right-Truncatable-Primes
9•rainmans•1y ago

Comments

throwawaymaths•1y 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•1y ago
i dont think smaller radixes make the problem more interesting. the problem is interesting because base 10 has a large branching factor
throwawaymaths•1y 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•1y ago
There's a Project Euler problem for finding truncatable prime numbers, from both left and right: https://projecteuler.net/problem=37
thechao•1y 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.