frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GitLost: We Tricked GitHub's AI Agent into Leaking Private Repos

https://noma.security/blog/gitlost-how-we-tricked-githubs-ai-agent-into-leaking-private-repos/
84•ColinEberhardt•2h ago•27 comments

How to Build a Minimal ZFS NAS Without Synology, QNAP, TrueNAS (2024)

https://neil.computer/notes/how-to-setup-minimal-zfs-nas-without-truenas/
148•4diii•3h ago•80 comments

Tenda firmware (multiple versions) contains hidden authentication backdoor

https://kb.cert.org/vuls/id/213560
175•miniBill•7h ago•51 comments

Copy That Floppy – Cambridge guide for preserving data from fragile floppy disks

https://www.digipres.org/the-floppy-guide/
54•whiteblossom•4h ago•10 comments

Structure and Interpretation of Computer Programs Video Lectures (1986)

https://ocw.mit.edu/courses/6-001-structure-and-interpretation-of-computer-programs-spring-2005/v...
144•gjvc•7h ago•14 comments

GAO: DOE Is Prematurely Excluding Less Expensive Options for Nuclear Cleanup

https://www.gao.gov/products/gao-26-108193
190•Jimmc414•9h ago•90 comments

Chat Control 1.0 and 2.0 Explained

https://fightchatcontrol.eu/chat-control-overview
602•gasull•17h ago•214 comments

Canada's only watchmaking school still ticking after 80 years

https://www.cbc.ca/news/canada/montreal/canada-s-only-watchmaking-school-9.7254211
120•throw0101a•3d ago•56 comments

Local, CPU-Friendly, High-Quality TTS (Text-to-Speech) with Kokoro

https://ariya.io/2026/03/local-cpu-friendly-high-quality-tts-text-to-speech-with-kokoro/
385•speckx•13h ago•77 comments

GPT-5.6 Sol, along with Terra and Luna, will launch publicly this Thursday

https://twitter.com/OpenAI/status/2074704958419792299
156•jfrbfbreudh•3h ago•88 comments

Show HN: Neil the Seal Game

https://neiltheseal.app/
50•dalemhurley•2d ago•38 comments

The difference between "today's task" and "accretive work"

https://pluralistic.net/2026/07/02/canonization/
32•hn_acker•5d ago•17 comments

30papers.com – Ilya's 30 essential ML papers, in a beginner friendly format

https://30papers.com/
492•notmcrowley•15h ago•74 comments

LineageOS Statistics

https://stats.lineageos.org
60•pentagrama•6h ago•32 comments

Show HN: Davit, a Apple Containers UI

https://davit.app
286•xinit•13h ago•64 comments

Herdr: One terminal to rule them all

https://herdr.dev/
261•handfuloflight•6d ago•114 comments

Automate Excel with Python: From manual grind to one-click workflow

https://nostarch.com/automate-excel-with-python
5•teleforce•3d ago•1 comments

Show HN: Rowboat – Open-source, local-first alternative to Claude Desktop

https://github.com/rowboatlabs/rowboat
153•segmenta•15h ago•41 comments

Show HN: Chiptune Radio

https://chiptune-radio.alephvoid.com/
44•bootbloopers•7h ago•9 comments

l: A new runtime for k and q

https://lv1.sh/
139•skruger•13h ago•75 comments

Scheme Is a Hoot

https://gracefulliberty.com/notes/scheme-is-a-hoot/
65•signa11•2d ago•6 comments

IEEE Rolls Out Large Language Models Training Course

https://spectrum.ieee.org/large-language-models-ieee-course
65•JeanKage•1w ago•9 comments

We're extending access to Fable 5 on all paid plans through July 12

https://twitter.com/claudeai/status/2074548242386178258
172•minimaxir•14h ago•174 comments

Every new car sold in the European Union must include a driver monitoring camera

https://allaboutcookies.org/eu-mandatory-distracted-driver-system
584•nickslaughter02•11h ago•747 comments

Why skilled workers come to Germany and then leave again

https://www.dw.com/en/germany-migrants-skilled-workers-integration-labor-market-bureaucracy-langu...
243•theanonymousone•21h ago•611 comments

Jim's TrueType QR Code Font

https://github.com/jimparis/qr-font
171•arantius•15h ago•22 comments

Notes on Software Quality

https://anthonyhobday.com/blog/20260410
119•speckx•13h ago•50 comments

Why we built yet another Postgres connection pooler

https://pgdog.dev/blog/why-yet-another-connection-pooler
176•levkk•16h ago•41 comments

StreetComplete: Fixing OpenStreetMap, one tiny quest at a time

https://streetcomplete.app/
746•kls0e•19h ago•174 comments

Out of the Armchair

https://literaryreview.co.uk/out-of-the-armchair
5•Thevet•6d ago•0 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.