frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tony Hoare has died

https://blog.computationalcomplexity.org/2026/03/tony-hoare-1934-2026.html
948•speckx•4h ago•138 comments

Launch HN: RunAnywhere (YC W26) – Faster AI Inference on Apple Silicon

https://github.com/RunanywhereAI/rcli
119•sanchitmonga22•2h ago•43 comments

Yann LeCun raises $1B to build AI that understands the physical world

https://www.wired.com/story/yann-lecun-raises-dollar1-billion-to-build-ai-that-understands-the-ph...
98•helloplanets•10h ago•245 comments

Debian decides not to decide on AI-generated contributions

https://lwn.net/SubscriberLink/1061544/125f911834966dd0/
183•jwilk•4h ago•152 comments

Billion-Parameter Theories

https://www.worldgov.org/complexity.html
46•seanlinehan•1h ago•24 comments

Throwing away 18 months of code and starting over

https://tompiagg.io/posts/we-threw-away-1-5-years-of-code
36•tomaspiaggio12•3h ago•24 comments

Intel Demos Chip to Compute with Encrypted Data

https://spectrum.ieee.org/fhe-intel
176•sohkamyung•6h ago•60 comments

I built a programming language using Claude Code

https://ankursethi.com/blog/programming-language-claude-code/
63•GeneralMaximus•2h ago•80 comments

Rebasing in Magit

https://entropicthoughts.com/rebasing-in-magit
146•ibobev•5h ago•104 comments

Redox OS has adopted a Certificate of Origin policy and a strict no-LLM policy

https://gitlab.redox-os.org/redox-os/redox/-/blob/master/CONTRIBUTING.md
312•pjmlp•10h ago•323 comments

Meta acquires Moltbook

https://www.axios.com/2026/03/10/meta-facebook-moltbook-agent-social-network
264•mmayberry•4h ago•177 comments

Launch HN: Didit (YC W26) – Stripe for Identity Verification

39•rosasalberto•4h ago•39 comments

I put my whole life into a single database

https://howisfelix.today/
360•lukakopajtic•9h ago•172 comments

Show HN: How I Topped the HuggingFace Open LLM Leaderboard on Two Gaming GPUs

https://dnhkng.github.io/posts/rys/
172•dnhkng•6h ago•57 comments

Defeat as Method

https://www.cabinetmagazine.org/issues/71/khosravi.php
14•akbarnama•2h ago•0 comments

I used pulsar detection techniques to turn a phone into a watch timegrapher

https://www.chronolog.watch/timegrapher
40•tylerjaywood•2d ago•9 comments

Open Weights Isn't Open Training

https://www.workshoplabs.ai/blog/open-weights-open-training
28•addiefoote8•19h ago•10 comments

RFC 454545 – Human Em Dash Standard

https://gist.github.com/bignimbus/a75cc9d703abf0b21a57c0d21a79e2be
93•jdauriemma•4h ago•74 comments

The Enterprise Context Layer

https://andychen32.substack.com/p/the-enterprise-context-layer
22•zachperkel•4h ago•1 comments

FFmpeg-over-IP – Connect to remote FFmpeg servers

https://github.com/steelbrain/ffmpeg-over-ip
9•steelbrain•53m ago•1 comments

Levels of Agentic Engineering

https://www.bassimeledath.com/blog/levels-of-agentic-engineering
21•bombastic311•10h ago•13 comments

Surpassing vLLM with a Generated Inference Stack

https://infinity.inc/case-studies/qwen3-optimization
11•lukebechtel•4h ago•4 comments

Online age-verification tools for child safety are surveilling adults

https://www.cnbc.com/2026/03/08/social-media-child-safety-internet-ai-surveillance.html
380•bilsbie•6h ago•233 comments

The Gervais Principle, or the Office According to "The Office" (2009)

https://www.ribbonfarm.com/2009/10/07/the-gervais-principle-or-the-office-according-to-the-office/
246•janandonly•3d ago•103 comments

Bypassing Apache Fop PostScript Escaping to Reach GhostScript

https://offsec.almond.consulting/bypassing-apache-fop-escaping-to-reach-ghostscript.html
5•notmine1337•2d ago•0 comments

MariaDB innovation: vector index performance

http://smalldatum.blogspot.com/2026/02/mariadb-innovation-vector-index.html
23•gslin•2d ago•0 comments

We are building data breach machines and nobody cares

https://idealloc.me/posts/we-are-building-data-breach-machines-and-nobody-cares/
31•idealloc_haris•4h ago•11 comments

PgAdmin 4 9.13 with AI Assistant Panel

https://www.pgadmin.org/docs/pgadmin4/9.13/query_tool.html#ai-assistant-panel
75•__natty__•7h ago•21 comments

How many options fit into a boolean?

https://herecomesthemoon.net/2025/11/how-many-options-fit-into-a-boolean/
46•luu•3d ago•20 comments

Isotopic Evidence for a Cold and Distant Origin of Interstellar Object 3I/Atlas

https://arxiv.org/abs/2603.06911
11•bikenaga•2h ago•1 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.