frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Building an HTML-first site doubled our users overnight

https://mohkohn.co.uk/writing/html-first/
611•edent•4h ago•271 comments

AMA: I'm Eric Ries (The Lean Startup) & Author of New Bestseller Incorruptible

174•eries•2h ago•91 comments

PgDog is funded and coming to a database near you

https://pgdog.dev/blog/our-funding-announcement
166•levkk•2h ago•90 comments

Apache Burr: Build reliable AI agents and applications

https://burr.apache.org/
66•anhldbk•2h ago•32 comments

GitHub Authentication issues related to API requests

https://www.githubstatus.com/incidents/fcj3088jg1wx
53•Multicomp•1h ago•12 comments

Mercedes‑Benz starts large‑scale production of electric axial flux motor

https://media.mercedes-benz.com/en/article/bebac2af-acdc-465a-9538-adb0bf3d8ccf
386•raffael_de•9h ago•233 comments

All 9,300 Japanese train station, animated by the year it opened (1872–2026)

https://jivx.com/eki
117•momentmaker•4h ago•39 comments

macOS Container Machines

https://github.com/apple/container/blob/main/docs/container-machine.md
1074•timsneath•16h ago•375 comments

Buy a train, bridge or tracks from the Swiss Railway

https://sbbresale.ch/
120•kisamoto•2d ago•59 comments

Postgres by Example

https://github.com/boringcollege/postgres-by-example
11•thenewedrock•57m ago•1 comments

Who Runs Your Rust Future? Hands-On Intro to Async Rust

https://aibodh.com/posts/async-rust-chapter-1-hands-on-intro-to-async-rust/
64•febin•2d ago•9 comments

DiffusionGemma: 4x Faster Text Generation

https://blog.google/innovation-and-ai/technology/developers-tools/diffusion-gemma-faster-text-gen...
48•meetpateltech•52m ago•6 comments

'They take you out of life, out of time': a journey into Spain's cave paintings

https://www.theguardian.com/science/2026/jun/02/journey-into-spain-palaeolithic-cave-paintings-al...
31•NaOH•2d ago•10 comments

The Last Evolution, by John W Campbell Jr. (1932)

https://www.gutenberg.org/files/27462/27462-h/27462-h.htm
6•cf100clunk•1h ago•0 comments

Smudging the game disc to make speedrunning 'SpongeBob' faster

https://www.inverse.com/input/gaming/the-dirty-secret-that-makes-speedrunning-on-spongebob-a-lot-...
22•pncnmnp•14h ago•10 comments

A Server Called Mercury

https://kennethreitz.org/essays/2026-06-05-a_server_called_mercury
10•zdw•3d ago•2 comments

Reviving Papers with Code

https://paperswithcode.co/
155•nielz_r•2d ago•30 comments

AWS Bedrock to require sharing data with Anthropic for Mythos and future models

333•TomAnthony•8h ago•198 comments

The iPad was on Tailscale: a WebRTC debugging story

https://p2claw.com/blog/2026-06-09-the-ipad-was-on-tailscale/
19•syllogistic•1h ago•8 comments

Ask HN: Are most corporate SWE jobs performative?

86•hnthrow10282910•3h ago•99 comments

US Consumer Price Index up 4.2%

https://www.bls.gov/news.release/cpi.nr0.htm
143•ortusdux•1h ago•119 comments

Hacking for Defense Stanford 2026 – Lessons Learned Presentations

https://steveblank.com/2026/06/08/g-for-defense-stanford-2026-lessons-learned-presentations/
63•sblank•1d ago•36 comments

Claude Fable 5

https://www.anthropic.com/news/claude-fable-5-mythos-5
2498•Philpax•1d ago•1997 comments

Upcoming breaking changes for npm v12

https://github.blog/changelog/2026-06-09-upcoming-breaking-changes-for-npm-v12/
452•plasma•20h ago•186 comments

I Hate (Most) Keyboard 'Fn' Keys

https://danq.me/2026/06/09/fn-keys/
148•speckx•3h ago•159 comments

Magnetoelectric antennas could transform how underwater robots talk

https://newatlas.com/engineering/magnetoelectric-antennas-submarine-robots-communications/
63•breve•3d ago•26 comments

Chrome is looking to permanently drop MV2 extension

https://www.neowin.net/news/google-chrome-is-killing-all-ublock-origin-bypasses-microsoft-edge-op...
338•d3Xt3r•11h ago•311 comments

German ruling declares Google liable for false answers in AI Overviews

https://the-decoder.com/landmark-german-ruling-declares-googles-ai-overviews-are-googles-own-word...
867•ahlCVA•15h ago•478 comments

Notes on DeepSeek

https://twitter.com/NikoMcCarty/status/2064686557400100884
78•vinhnx•2h ago•57 comments

RIP software hackathons. Long live the hardware hackathon

https://blog.oscars.dev/posts/rip-software-hackathons-long-live-the-hardware-hackathon/
252•ozcap•18h ago•127 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.