frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Debian votes to allow "responsible use of generative AI"

https://lwn.net/Articles/1091231/
120•pluc•1h ago•67 comments

Indirect Calling of Nested Functions on GCC Without Executable Stack

https://uecker.codeberg.page/2026-08-29.html
8•uecker•49m ago•0 comments

Creating the Aetheryte Radio

https://haz.ee/posts/aetheryte-radio.html
20•wonger_•1d ago•1 comments

Samsung's Processing-in-Memory (PIM)

https://chipsandcheese.com/p/hot-chips-2026-samsungs-processing
173•ingve•9h ago•56 comments

Show HN: Typebase – A single-folder back end you write in TypeScript

https://typebase.io
17•andrewww-dev•3d ago•0 comments

GUIs should be fully keyboard-driven

https://ckardaris.com/blog/2026/08/28/keyboard-driven-guis.html
926•ckardaris•23h ago•454 comments

Glacier Mice

https://en.wikipedia.org/wiki/Glacier_mice
102•ostacke•4d ago•18 comments

Boot a Virtual iPhone via Apple's Virtualization.framework

https://github.com/Lakr233/vphone-cli
335•hentrep•16h ago•85 comments

Show HN: Galaxium, an experimental WebGPU space explorer

https://galaxium.app
48•guillaumec•5d ago•16 comments

Htmx 4.0

https://four.htmx.org/announcements/2026-08-28-htmx-4.0.0-is-released
737•rmsaksida•1d ago•181 comments

Hunting Down a Go Runtime Bug on 32-Bit Embedded Systems

https://sigma-star.at/blog/2026/08/go-runtime-netpoll-bug/
67•birdculture•2d ago•5 comments

EVE Online moves to Python 3

https://www.eveonline.com/news/view/the-move-to-python-3-begins
106•TylerJaacks•4d ago•51 comments

Europe's last regular standard-gauge steam passenger service

https://parowozowniawolsztyn.pl/?page_id=2141
76•GungulSurm•2d ago•19 comments

U.S. sanctions against the A/I Collective

https://www.inventati.org/
656•exiguus•1d ago•647 comments

StemDeck, a free, open-source and local AI stem separator

https://github.com/stemdeckapp/stemdeck
161•thclpr•13h ago•45 comments

Time complexity of operations on Python's built-in types

https://docs.python.org/3.16/library/time-complexity.html
41•theanonymousone•3d ago•7 comments

I accidentally turned LLM memory into program analysis

https://pwning.systems/posts/llm-memory-program-analysis/
205•matt_d•15h ago•60 comments

Inception-style curved map for turn-by-turn directions

https://www.orbify.eu/demo/
560•smoser•1d ago•182 comments

TurboKV: Insanely fast Rust key-value store

https://github.com/kingroryg/turbokv
146•rgbimbochamp•12h ago•67 comments

Iceland votes on whether to restart talks on joining EU

https://www.bbc.com/news/articles/cn45vdxyvvlo
240•tosh•3h ago•285 comments

Just the rumour of a bug is enough to find an exploit these days

https://anil.recoil.org/notes/rumour-is-the-exploit
355•avsm•23h ago•115 comments

Queen Caroline turned King Arthur into an 18C royal PR strategy

https://theconversation.com/how-queen-caroline-turned-king-arthur-into-an-18th-century-royal-pr-s...
33•samizdis•4d ago•7 comments

Monzo Stand-In

https://monzo.com/blog/tolerating-full-cloud-outages-with-monzo-stand-in
102•coffeefuel•5d ago•45 comments

Our decision on Cursor following its acquisition by SpaceX

https://openai.com/index/our-decision-on-cursor-following-its-acquisition-by-spacex/
667•meetpateltech•13h ago•397 comments

Does the Sumerian King List Align with Paleoclimate Events?

https://www.vectorian.be/articles/2026-06-07/sumerian-king-list-paleoclimate-alignment-explorer/
119•dev_l1x_be•15h ago•68 comments

Experiments with Plotter Art

https://sometimes.digital/posts/experiments-with-plotter-art/
79•surprisetalk•5d ago•7 comments

Attimet (YC F24) Is Hiring Members of Technical Staff – Engineering and Research

https://www.ycombinator.com/companies/attimet/jobs/6btZFDg-member-of-technical-staff-engineering
1•kbanothu•22h ago

The Twelve-Factor App (2025)

https://12factor.net/
289•jxmorris12•1d ago•163 comments

Curvature Beziers: Improving on a timeless recipe

https://acko.net/blog/curvature-beziers/
138•leephillips•4d ago•19 comments

Visual Analysis of Binary Files

https://binvis.io/#/
98•vismit2000•3d ago•25 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.