frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Someone bought 30 WordPress plugins and planted a backdoor in all of them

https://anchor.host/someone-bought-30-wordpress-plugins-and-planted-a-backdoor-in-all-of-them/
717•speckx•8h ago•205 comments

GitHub Stacked PRs

https://github.github.com/gh-stack/
455•ezekg•6h ago•260 comments

Lean proved this program correct; then I found a bug

https://kirancodes.me/posts/log-who-watches-the-watchers.html
103•bumbledraven•2h ago•58 comments

WiiFin – Jellyfin Client for Nintendo Wii

https://github.com/fabienmillet/WiiFin
63•throwawayk7h•3h ago•21 comments

Nothing Ever Happens: Polymarket bot that always buys No on non-sports markets

https://github.com/sterlingcrispin/nothing-ever-happens
363•m-hodges•11h ago•178 comments

How to make Firefox builds 17% faster

https://blog.farre.se/posts/2026/04/10/caching-webidl-codegen/
140•mbitsnbites•7h ago•23 comments

Write less code, be more responsible

https://blog.orhun.dev/code-responsibly/
35•orhunp_•2d ago•16 comments

US appeals court declares 158-year-old home distilling ban unconstitutional

https://nypost.com/2026/04/11/us-news/us-appeals-court-declares-158-year-old-home-distilling-ban-...
310•t-3•13h ago•231 comments

Servo is now available on crates.io

https://servo.org/blog/2026/04/13/servo-0.1.0-release/
429•ffin•14h ago•140 comments

Make tmux pretty and usable (2024)

https://hamvocke.com/blog/a-guide-to-customizing-your-tmux-conf/
322•speckx•11h ago•204 comments

GAIA – Open-source framework for building AI agents that run on local hardware

https://amd-gaia.ai/docs
102•galaxyLogic•7h ago•24 comments

The AI revolution in math has arrived

https://www.quantamagazine.org/the-ai-revolution-in-math-has-arrived-20260413/
19•sonabinu•3h ago•3 comments

Building a CLI for all of Cloudflare

https://blog.cloudflare.com/cf-cli-local-explorer/
262•soheilpro•11h ago•84 comments

Show HN: Ithihāsas – a character explorer for Hindu epics, built in a few hours

https://www.ithihasas.in
114•cvrajeesh•7h ago•25 comments

Air Powered Segment Display? [video]

https://www.youtube.com/watch?v=E1BLGpE5zH0
50•ProfDreamer•2d ago•9 comments

Design and implementation of DuckDB internals

https://duckdb.org/library/design-and-implementation-of-duckdb-internals/
20•mpweiher•3d ago•3 comments

I just want simple S3

https://blog.feld.me/posts/2026/04/i-just-want-simple-s3/
108•g0xA52A2A•2d ago•61 comments

Android now stops you sharing your location in photos

https://shkspr.mobi/blog/2026/04/android-now-stops-you-sharing-your-location-in-photos/
304•edent•14h ago•276 comments

N-Day-Bench – Can LLMs find real vulnerabilities in real codebases?

https://ndaybench.winfunc.com
37•mufeedvh•4h ago•10 comments

Tracking down a 25% Regression on LLVM RISC-V

https://blog.kaving.me/blog/tracking-down-a-25-regression-on-llvm-risc-v/
100•luu•1d ago•19 comments

What we learned building a Rust runtime for TypeScript

https://encore.dev/blog/rust-runtime
42•vinhnx•2d ago•9 comments

Visualizing CPU Pipelining (2024)

https://timmastny.com/blog/visualizing-cpu-pipelining/
64•flipacholas•8h ago•9 comments

B-trees and database indexes (2024)

https://planetscale.com/blog/btrees-and-database-indexes
87•tosh•9h ago•37 comments

Why it’s impossible to measure England’s coastline

https://www.bbc.com/travel/article/20260410-why-its-impossible-to-measure-englands-coastline
16•BiraIgnacio•3h ago•15 comments

Tool to explore regularly sampled time series

https://github.com/rajivsam/tseda
3•rsva•3d ago•0 comments

If you started a company two years ago, many assumptions are no longer true

https://steveblank.com/2026/03/17/your-startup-is-probably-dead-on-arrival/
146•tie-in•2d ago•120 comments

MEMS Array Chip Can Project Video the Size of a Grain of Sand

https://spectrum.ieee.org/mems-photonics
79•bookofjoe•12h ago•36 comments

Just Enough Chimera Linux

https://www.dwarmstrong.org/chimera-install-zfs/
45•speckx•7h ago•9 comments

New Orleans's Car-Crash Conspiracy

https://www.newyorker.com/magazine/2026/04/20/the-car-crash-conspiracy
75•Geekette•8h ago•44 comments

Introduction to Obsidian

https://bryanhogan.com/blog/obsidian-introduction
158•bryanhogan•2d ago•109 comments
Open in hackernews

Right-Truncatable Prime Counter

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

Comments

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