frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why does it take so long to release black fan versions?

https://www.noctua.at/en/expertise/blog/how-can-it-take-so-long-to-release-black-fan-versions
212•buildbot•4h ago•94 comments

Ti-84 Evo

https://education.ti.com/en/products/calculators/graphing-calculators/ti-84-evo
449•thatxliner•13h ago•375 comments

Show HN: Browser-based light pollution simulator using real photometric data

https://iesna.eu/?wasm=skyglow_demo
3•holg•13m ago•0 comments

A Gopher Meets a Crab

https://miren.dev/blog/gopher-meets-crab
31•radimm•2d ago•10 comments

Artemis II Photo Timeline

https://artemistimeline.com/#artemis-ii-walkout-nhq202604010003
198•geerlingguy•2d ago•17 comments

New research suggests people can communicate and practice skills while dreaming

https://www.newyorker.com/culture/annals-of-inquiry/its-possible-to-learn-in-our-sleep-should-we
335•XzetaU8•15h ago•195 comments

Ask.com has closed

https://www.ask.com/
255•supermdguy•5h ago•130 comments

The USB Situation

https://randsinrepose.com/archives/the-usb-situation/
18•herbertl•2d ago•5 comments

To Restore an Island Paradise, Add Fungi

https://e360.yale.edu/digest/atoll-islands-sea-level-rise-fungi
62•Brajeshwar•2d ago•9 comments

K3k: Kubernetes in Kubernetes

https://github.com/rancher/k3k
48•jzebedee•5h ago•27 comments

SKILL.make: Makefile Styled Skill File

https://github.com/Teaonly/SKILL.make
5•teaonly•1h ago•1 comments

LFM2-24B-A2B: Scaling Up the LFM2 Architecture

https://www.liquid.ai/blog/lfm2-24b-a2b
35•nateb2022•2d ago•8 comments

I'm Peter Roberts, immigration attorney who does work for YC and startups. AMA

159•proberts•18h ago•215 comments

CollectWise (YC F24) Is Hiring

https://www.ycombinator.com/companies/collectwise/jobs/rEWfZ6R-senior-forward-deployed-engineer
1•OBrien_1107•4h ago

Open source ballistic simulator with NASA SRTM terrain masking (Python/C#)

https://github.com/InsaneInfinity/Balistic
3•insane_infinity•1h ago•1 comments

Lib0xc: A set of C standard library-adjacent APIs for safer systems programming

https://github.com/microsoft/lib0xc
148•wooster•14h ago•53 comments

Ask HN: Who is hiring? (May 2026)

257•whoishiring•18h ago•278 comments

The smelly baby problem

https://www.worksinprogress.news/p/how-disposable-diapers-conquered
180•dionysou•2d ago•113 comments

Show HN: WhatCable, a tiny menu bar app for inspecting USB-C cables

https://github.com/darrylmorley/whatcable
502•sleepingNomad•1d ago•145 comments

A Report on Burnout in Open Source Software Communities (2025) [pdf]

https://mirandaheath.website/static/oss_burnout_report_mh_25.pdf
73•susam•9h ago•19 comments

Eka’s robotic claw feels like we're approaching a ChatGPT moment

https://www.wired.com/story/when-robots-have-their-chatgpt-moment-remember-these-pincers/
140•zdw•2d ago•193 comments

Show HN: Stop playing my matchstick puzzles, start building your own in seconds

https://mathstick.github.io
11•trangram•4h ago•12 comments

Direct electrochemical black coffee quality appraisal using cyclic voltammetry

https://www.nature.com/articles/s41467-026-71526-5
52•bookofjoe•2d ago•18 comments

Create an MP4 video of a web page scrolling at a steady speed

https://github.com/upenn/web-scroll-video
30•shawnzam•6h ago•11 comments

Apocalypse Early Warning System

https://ews.kylemcdonald.net/
184•carlsborg•17h ago•95 comments

Integer Overflow Checking Cost

https://danluu.com/integer-overflow/
26•iwsk•2d ago•5 comments

Bitmap and tilemap generation from a single example

https://github.com/mxgmn/WaveFunctionCollapse
5•futurecat•1d ago•0 comments

Whohas – Command-line utility for cross-distro, cross-repository package search

https://github.com/whohas/whohas
142•peter_d_sherman•18h ago•35 comments

I built the Playwright for desktop apps. 80% token savings

https://github.com/lahfir/agent-desktop
71•lahfir•7h ago•23 comments

DeepSeek V4–almost on the frontier, a fraction of the price

https://simonwillison.net/2026/Apr/24/deepseek-v4/
98•indigodaddy•16h ago•34 comments
Open in hackernews

Right-Truncatable Prime Counter

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

Comments

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