frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SQLite is all you need for durable workflows

https://obeli.sk/blog/sqlite-is-all-you-need-for-durable-workflows/
526•tomasol•15h ago•258 comments

Algebraic Effects for the Rest of Us

https://overreacted.io/algebraic-effects-for-the-rest-of-us/
47•satvikpendem•3d ago•18 comments

Snowboard Kids 2 is 100% Decompiled

https://blog.chrislewis.au/snowboard-kids-2-is-100-decompiled/
193•GaggiX•3d ago•71 comments

Notes from the Mistral AI Now Summit

https://koenvangilst.nl/lab/mistral-ai-now-summit
369•vnglst•16h ago•150 comments

Danish pension fund excludes SpaceX citing governance and valuation

https://www.reuters.com/legal/transactional/danish-pension-fund-excludes-spacex-citing-governance...
45•vrganj•1h ago•15 comments

What It Takes to Preserve Floppy Disks

https://spectrum.ieee.org/floppy-disk-data-preservation-archives
46•pseudolus•2d ago•11 comments

Perry Compiles TypeScript directly to executables using SWC and LLVM

https://www.perryts.com/
91•0x1997•6h ago•72 comments

Print with dozens of colors: Our new open-source ColorMix for PrusaSlicer

https://blog.prusa3d.com/our-new-open-source-colormix-model-in-prusaslicer-and-easyprint_136079/
151•rented_mule•3d ago•32 comments

MCP is dead?

https://www.quandri.io/engineering-blog/mcp-is-dead
226•nadis•10h ago•194 comments

A new register allocator for ZJIT

https://railsatscale.com/2026-05-27-a-new-register-allocator-for-zjit/
38•tenderlove•2d ago•1 comments

Quantum dot qubit using High NA EUV lithography

https://www.imec-int.com/en/press/world-first-imec-presents-quantum-dot-qubit-device-using-high-n...
7•luu•3d ago•0 comments

Iron-rich immune cells help homing pigeons navigate

https://www.science.org/content/article/mind-blowing-iron-rich-immune-cells-help-homing-pigeons-n...
16•XzetaU8•1h ago•0 comments

Shift will clean homes for free to train future robots

https://www.theverge.com/ai-artificial-intelligence/939765/ai-training-data-startup-shift-free-cl...
138•evilsimon•14h ago•189 comments

Naphtha shortages in Japan

https://www.nippon.com/en/japan-data/h02783/
112•takakaze•6h ago•75 comments

Citing 'severe' math deficits, UC faculty demand a return to SAT tests for STEM

https://www.latimes.com/california/story/2026-05-27/uc-math-professors-demand-return-of-sat-for-s...
589•brandonb•1d ago•786 comments

The dead economy theory

https://www.owenmcgrann.com/p/the-dead-economy-theory
981•WillDaSilva•17h ago•1129 comments

It's hard to justify buying a Framework 12

https://www.jeffgeerling.com/blog/2026/its-hard-to-justify-framework-12/
290•watermelon0•18h ago•492 comments

Rsync 3.4.3 has hundreds of Claude commits

https://mastodon.gamedev.place/@JeremiahFieldhaven/116654345332213390
43•fooker•46m ago•23 comments

OpenRCT2 v0.5.1 "Swamp Castle" released Last version to support Windows 7

https://openrct2.io/blog/2026/05/openrct2-v0.5.1-released
12•jandeboevrie•3h ago•2 comments

The Last Technical Interview

https://steve-yegge.medium.com/the-last-technical-interview-bc13ddcf4564
111•headalgorithm•13h ago•92 comments

Show HN: Tiny-vLLM – high performance LLM inference engine in C++ and CUDA

https://github.com/jmaczan/tiny-vllm
147•yu3zhou4•13h ago•12 comments

Liquid AI reveals 8B-A1B MoE trained on 38T

https://www.liquid.ai/blog/lfm2-5-8b-a1b
185•simjnd•16h ago•70 comments

Is AI causing a repeat of frontend’s lost decade?

https://mastrojs.github.io/blog/2026-05-23-is-AI-causing-a-repeat-of-frontends-lost-decade/
345•xyzal•22h ago•292 comments

Show HN: Open-source private home security camera system (end-to-end encryption)

https://github.com/secluso/core
60•arrdalan•10h ago•15 comments

Bijou64: A variable-length integer encoding

https://www.inkandswitch.com/tangents/bijou64/
226•justinweiss•18h ago•79 comments

The mysterious Hy3 LLM is topping OpenRouter Model Rankings by a large margin

https://minimaxir.com/2026/05/openrouter-hy3/
129•freediver•1d ago•103 comments

On Rendering Diffs

https://pierre.computer/writing/on-rendering-diffs
171•amadeus•14h ago•56 comments

Ho-scale slot car racing in the Santa Cruz Mountains

https://stewartraceway.org/
6•HoldOnAMinute•3d ago•1 comments

Math-to-Manim

https://github.com/HarleyCoops/Math-To-Manim
48•georgewsinger•2d ago•6 comments

What Is a Dickover?

https://daringfireball.net/2026/05/what_is_a_dickover
336•tambourine_man•9h ago•132 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.