frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Economics of Software Teams: Why Most Engineering Orgs Are Flying Blind

https://www.viktorcessan.com/the-economics-of-software-teams/
41•kiyanwang•1h ago•5 comments

All elementary functions from a single binary operator

https://arxiv.org/abs/2603.21852
263•pizza•5h ago•82 comments

Taking on CUDA with ROCm: 'One Step After Another'

https://www.eetimes.com/taking-on-cuda-with-rocm-one-step-after-another/
140•mindcrime•8h ago•103 comments

Show HN: boringBar – a taskbar-style dock replacement for macOS

https://boringbar.app/
334•a-ve•13h ago•187 comments

Bring Back Idiomatic Design (2023)

https://essays.johnloeber.com/p/4-bring-back-idiomatic-design
526•phil294•18h ago•286 comments

Optimization of 32-bit Unsigned Division by Constants on 64-bit Targets

https://arxiv.org/abs/2604.07902
58•mpweiher•21h ago•7 comments

DIY Soft Drinks

https://blinry.org/diy-soft-drinks/
371•_Microft•14h ago•97 comments

Ask HN: What Are You Working On? (April 2026)

197•david927•14h ago•589 comments

X Randomly Banning Users for "Inauthentic Behavior"

https://old.reddit.com/r/LinusTechTips/comments/1rsdk7i/anybody_here_talking_about_the_massive/
24•crmrc114•1h ago•15 comments

A perfectable programming language

https://alok.github.io/lean-pages/perfectable-lean/
104•yuppiemephisto•10h ago•36 comments

Most people can't juggle one ball

https://www.lesswrong.com/posts/jTGbKKGqs5EdyYoRc/most-people-can-t-juggle-one-ball
320•surprisetalk•3d ago•96 comments

Apple's accidental moat: How the "AI Loser" may end up winning

https://adlrocha.substack.com/p/adlrocha-how-the-ai-loser-may-end
131•walterbell•4h ago•123 comments

A Canonical Generalization of OBDD

https://arxiv.org/abs/2604.05537
8•luu•2h ago•1 comments

I gave every train in New York an instrument

https://www.trainjazz.com/
258•joshuawolk•2d ago•49 comments

Show HN: Oberon System 3 runs natively on Raspberry Pi 3 (with ready SD card)

https://github.com/rochus-keller/OberonSystem3Native/releases
185•Rochus•18h ago•38 comments

Uncharted island soon to appear on nautical charts

https://www.awi.de/en/about-us/service/press/single-view/unkartierte-insel-demnaechst-auf-seekart...
75•tannhaeuser•10h ago•37 comments

Haunt, the 70s text adventure game, is now playable on a website

https://haunt.madebywindmill.com
48•jscalo•3h ago•13 comments

Is math big or small?

https://chessapig.github.io/talks/Big-Small
29•robinhouston•22h ago•9 comments

Tell HN: Docker pull fails in Spain due to football Cloudflare block

799•littlecranky67•18h ago•297 comments

We have a 99% email reputation, but Gmail disagrees

https://blogfontawesome.wpcomstaging.com/we-have-a-99-email-reputation-gmail-disagrees/
223•em-bee•18h ago•207 comments

Google removes "Doki Doki Literature Club" from Google Play

https://bsky.app/profile/serenityforge.com/post/3mj3r4nbiws2t
409•super256•11h ago•206 comments

Seven countries now generate nearly all their electricity from renewables (2024)

https://www.the-independent.com/tech/renewable-energy-solar-nepal-bhutan-iceland-b2533699.html
559•mpweiher•17h ago•302 comments

Exploiting the most prominent AI agent benchmarks

https://rdi.berkeley.edu/blog/trustworthy-benchmarks-cont/
510•Anon84•1d ago•130 comments

JVM Options Explorer

https://chriswhocodes.com/vm-options-explorer.html
189•0x54MUR41•20h ago•84 comments

Phyphox – Physical Experiments Using a Smartphone

https://phyphox.org/
207•_Microft•22h ago•33 comments

How long-distance couples use digital games to facilitate intimacy (2025)

https://arxiv.org/abs/2505.09509
86•radeeyate•14h ago•27 comments

The peril of laziness lost

https://bcantrill.dtrace.org/2026/04/12/the-peril-of-laziness-lost/
374•gpm•11h ago•122 comments

Pro Max 5x quota exhausted in 1.5 hours despite moderate usage

https://github.com/anthropics/claude-code/issues/45756
597•cmaster11•17h ago•538 comments

EasyPost (YC S13) Is Hiring

https://www.easypost.com/careers
1•jstreebin•14h ago

State of Homelab 2026

https://mrlokans.work/posts/state-of-homelab-2026/
72•swq115•5h ago•63 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.