frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Nobody Gets Promoted for Simplicity

https://terriblesoftware.org/2026/03/03/nobody-gets-promoted-for-simplicity/
263•aamederen•3h ago•152 comments

Motorola GrapheneOS devices will be bootloader unlockable/relockable

https://grapheneos.social/@GrapheneOS/116160393783585567
983•pabs3•14h ago•392 comments

Glaze by Raycast

https://www.glazeapp.com/
73•romac•1h ago•44 comments

Chimpanzees Are into Crystals

https://www.nytimes.com/2026/03/04/science/chimpanzees-crystals.html
28•jimnotgym•7h ago•9 comments

Qwen3.5 Fine-Tuning Guide – Unsloth Documentation

https://unsloth.ai/docs/models/qwen3.5/fine-tune
32•bilsbie•2h ago•7 comments

RFC 9849. TLS Encrypted Client Hello

https://www.rfc-editor.org/rfc/rfc9849.html
169•P_qRs•7h ago•74 comments

RE#: how we built the fastest regex engine in F#

https://iev.ee/blog/resharp-how-we-built-the-fastest-regex-in-fsharp/
107•exceptione•3d ago•42 comments

Apple Introduces MacBook Neo

https://www.apple.com/newsroom/2026/03/say-hello-to-macbook-neo/
150•dm•44m ago•173 comments

Agentic Engineering Patterns

https://simonwillison.net/guides/agentic-engineering-patterns/
296•r4um•10h ago•151 comments

Libre Solar – Open Hardware for Renewable Energy

https://libre.solar
19•evolve2k•3d ago•5 comments

Charging a three-cell nickel-based battery pack with a Li-Ion charger [pdf]

https://www.ti.com/lit/an/slyt468/slyt468.pdf
10•theblazehen•1d ago•0 comments

Jiga (YC W21) Is Hiring

https://jiga.io/about-us
1•grmmph•2h ago

Elevator Saga: The elevator programming game (2015)

https://play.elevatorsaga.com/index.html
50•xmprt•3d ago•7 comments

A CPU that runs entirely on GPU

https://github.com/robertcprice/nCPU
159•cypres•10h ago•85 comments

Greg Knauss Is Losing Himself

https://shapeof.com/archives/2026/2/greg_knauss_is_losing_himself.html
20•wallflower•2d ago•2 comments

Show HN: Stacked Game of Life

https://stacked-game-of-life.koenvangilst.nl/
94•vnglst•3d ago•17 comments

MacBook Neo

https://www.apple.com/macbook-neo/
150•meetpateltech•44m ago•162 comments

Better JIT for Postgres

https://github.com/vladich/pg_jitter
101•vladich•8h ago•40 comments

Bet on German Train Delays

https://bahn.bet
199•indiantinker•5h ago•140 comments

The JVG algorithm could break RSA-2048 encryption with fewer than 5k qubits

https://briefglance.com/articles/new-quantum-algorithm-warns-of-an-accelerated-crypto-apocalypse
8•giuliomagnifico•2h ago•7 comments

Modern Illustration: Archive of illustration from c.1950-1975

https://www.modernillustration.org
25•eustoria•3d ago•2 comments

Graphics Programming Resources

https://develop--gpvm-website.netlify.app/resources/
144•abetusk•12h ago•13 comments

Claude's Cycles [pdf]

https://www-cs-faculty.stanford.edu/~knuth/papers/claude-cycles.pdf
702•fs123•1d ago•294 comments

Show HN: I made a zero-copy coroutine tracer to find my scheduler's lost wakeups

https://github.com/lixiasky-back/coroTracer
36•lixiasky•1d ago•1 comments

Did Alibaba just kneecap its powerful Qwen AI team?

https://venturebeat.com/technology/did-alibaba-just-kneecap-its-powerful-qwen-ai-team-key-figures...
46•GTP•2h ago•17 comments

Apple Announces Low-Cost 'MacBook Neo' with A18 Pro Chip

https://www.macrumors.com/2026/03/04/apple-announces-low-cost-macbook-neo-with-a18-pro-chip/
30•vanburen•43m ago•7 comments

Weave – A language aware merge algorithm based on entities

https://github.com/Ataraxy-Labs/weave
160•rs545837•13h ago•91 comments

Voxile: A ray-traced game made in its own engine and programming language

https://elbowgreasegames.substack.com/p/voxray-games-pushes-major-update
241•spacemarine1•17h ago•65 comments

On the Design of Programming Languages (1974) [pdf]

https://web.cs.ucdavis.edu/~su/teaching/ecs240-w17/readings/PLHistoryGoodDesign.PDF
64•jruohonen•3d ago•22 comments

Textadept

https://orbitalquark.github.io/textadept/
175•giancarlostoro•3d ago•34 comments
Open in hackernews

Right-Truncatable Prime Counter

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

Comments

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