frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Olmo 3: Charting a path through the model flow to lead open-source AI

https://allenai.org/blog/olmo3
91•mseri•2h ago•13 comments

It's Hard to Build an Oscillator

https://lcamtuf.substack.com/p/its-hard-to-build-an-oscillator
28•chmaynard•1h ago•4 comments

Nano Banana Pro

https://blog.google/technology/ai/nano-banana-pro/
1034•meetpateltech•18h ago•600 comments

WebAssembly from the Ground Up

https://wasmgroundup.com/
88•gurjeet•5d ago•17 comments

Android and iPhone users can now share files, starting with the Pixel 10

https://blog.google/products/android/quick-share-airdrop/
648•abraham•16h ago•371 comments

FEX-emu – Run x86 applications on ARM64 Linux devices

https://fex-emu.com/
180•open-paren•1w ago•60 comments

Show HN: 32V TENS device from built from scratch under $100

https://littlemountainman.github.io/2025/11/17/tens/
11•autonomydriver•3d ago•3 comments

Over-regulation is doubling the cost

https://rein.pk/over-regulation-is-doubling-the-cost
179•bilsbie•10h ago•295 comments

New OS aims to provide (some) compatibility with macOS

https://github.com/ravynsoft/ravynos
219•kasajian•12h ago•101 comments

Hilbert space: Treating functions as vectors

https://eli.thegreenplace.net/2025/hilbert-space-treating-functions-as-vectors/
56•signa11•1w ago•25 comments

NTSB Preliminary Report – UPS Boeing MD-11F Crash [pdf]

https://www.ntsb.gov/Documents/Prelimiary%20Report%20DCA26MA024.pdf
171•gregsadetsky•14h ago•179 comments

Apple's iPhone Overhaul Will Reduce Its Reliance on Annual Fall Spectacle

https://www.bloomberg.com/news/newsletters/2025-11-16/apple-s-iphone-road-map-iphone-air-2-iphone...
4•doener•3d ago•1 comments

Data-at-Rest Encryption in DuckDB

https://duckdb.org/2025/11/19/encryption-in-duckdb
169•chmaynard•13h ago•18 comments

New Glenn Update

https://www.blueorigin.com/news/new-glenn-upgraded-engines-subcooled-components-drive-enhanced-pe...
164•rbanffy•11h ago•93 comments

The Lions Operating System

https://lionsos.org
157•plunderer•14h ago•39 comments

Okta's NextJS-0auth troubles

https://joshua.hu/ai-slop-okta-nextjs-0auth-security-vulnerability
285•ramimac•2d ago•106 comments

Historical Reasons

https://exple.tive.org/blarg/2025/11/11/historical-reasons-2/
9•speckx•1w ago•3 comments

Free interactive tool that shows you how PCIe lanes work on motherboards

https://mobomaps.com
200•tagyro•2d ago•42 comments

CBP is monitoring US drivers and detaining those with suspicious travel patterns

https://apnews.com/article/immigration-border-patrol-surveillance-drivers-ice-trump-9f5d05469ce8c...
693•jjwiseman•13h ago•754 comments

GitHut – Programming Languages and GitHub (2014)

https://githut.info/
69•tonyhb•11h ago•24 comments

Show HN: F32 – An Extremely Small ESP32 Board

https://github.com/PegorK/f32
231•pegor•1d ago•40 comments

Adversarial poetry as a universal single-turn jailbreak mechanism in LLMs

https://arxiv.org/abs/2511.15304
282•capgre•21h ago•149 comments

Two recently found works of J.S. Bach presented in Leipzig [video]

https://www.youtube.com/watch?v=4hXzUGYIL9M#t=15m19s
139•Archelaos•3d ago•86 comments

Show HN: My hobby OS that runs Minecraft

https://astral-os.org/posts/2025/10/31/astral-minecraft.html
170•avaliosdev•3d ago•18 comments

Microsoft makes Zork open-source

https://opensource.microsoft.com/blog/2025/11/20/preserving-code-that-shaped-generations-zork-i-i...
550•tabletcorry•14h ago•213 comments

Measuring Latency (2015)

https://bravenewgeek.com/everything-you-know-about-latency-is-wrong/
26•dempedempe•7h ago•9 comments

Interactive World History Atlas Since 3000 BC

http://geacron.com/home-en/
315•not_knuth•23h ago•133 comments

Launch HN: Poly (YC S22) – Cursor for Files

52•aabhay•15h ago•56 comments

Ask HN: How are Markov chains so different from tiny LLMs?

163•JPLeRouzic•3d ago•126 comments

Tube: A subway route planner in Dyalog APL (2011)

https://dfns.dyalog.com/tube_n_index.htm
14•shawa_a_a•4d ago•4 comments
Open in hackernews

Right-Truncatable Prime Counter

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

Comments

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