frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Unlimited OCR: One-Shot Long-Horizon Parsing

https://github.com/baidu/Unlimited-OCR
82•ingve•1h ago•22 comments

The Coming Loop

https://lucumr.pocoo.org/2026/6/23/the-coming-loop/
60•ingve•1h ago•28 comments

Steam Machine launches today

https://store.steampowered.com/news/group/45479024/view/685257114654870245
1710•theschwa•19h ago•1457 comments

Plotnine

https://plotnine.org/
102•tosh•4d ago•24 comments

Will It Mythos?

https://swelljoe.com/post/will-it-mythos/
195•mindingnever•8h ago•130 comments

GLM-5.2 – How to Run Locally

https://unsloth.ai/docs/models/glm-5.2
448•TechTechTech•15h ago•200 comments

Crypto in 2026: Oh, This Is the Bad Place

https://www.stephendiehl.com/posts/bad_place_2026/
136•ibobev•3h ago•146 comments

VibeThinker: 3B param model that beats Opus 4.5 on reasoning with novel SFT+GRPO

https://arxiv.org/abs/2606.16140
251•timhigins•11h ago•106 comments

The Traditional Vi

https://ex-vi.sourceforge.net/
26•exvi•4h ago•11 comments

In praise of memcached

https://jchri.st/blog/in-praise-of-memcached/
197•j03b•11h ago•71 comments

8086 Segmented Memory was a good idea

https://owl.billpg.com/8086-segmented-memory-was-a-good-idea-almost/
34•billpg•1d ago•55 comments

Show HN: Shumai – open-source Frame.io alternative for creative work

https://github.com/shumaiOne/shumai
13•Yiling-J•3h ago•0 comments

Show HN: Neural Particle Automata

https://selforg-npa.github.io/
32•esychology•4h ago•7 comments

Wikipedia cofounder Larry Sanger blocked from editing Wikipedia

https://en.wikipedia.org/wiki/User:Larry_Sanger
38•FergusArgyll•1h ago•22 comments

Apple is going to raise device prices, but when?

https://daringfireball.net/linked/2026/06/22/apple-device-prices-when
24•tosh•2h ago•16 comments

Oracle shed about 20k roles globally in the last year

https://www.bbc.com/news/articles/c4gy0x0j5deo
55•Lyngbakr•1h ago•52 comments

The new HTTP QUERY method explained

https://kreya.app/blog/new-http-query-method-explained/
180•CommonGuy•7h ago•112 comments

My Mathematical Regression

https://blog.dahl.dev/posts/my-mathematical-regression/
322•aleda145•4d ago•122 comments

OpenAI DayBreak – GPT-5.5-Cyber

https://openai.com/index/daybreak-securing-the-world/
133•AaronO•11h ago•89 comments

An Introduction to YOLO26

https://blog.roboflow.com/yolo26/
85•teleforce•11h ago•30 comments

Optocam Zero: a Pi Zero based digital camera made using off the shelf components

https://github.com/dorukkumkumoglu/optocamzero
191•iamnothere•17h ago•51 comments

Giant Banana Pulled Over: Driver Says Cops Have Stopped Him 100s of Times

https://cowboystatedaily.com/2026/06/18/giant-banana-pulled-over-in-montana-driver-says-cops-have...
81•speckx•2d ago•9 comments

Moebius: 0.2B image inpainting model with 10B-level performance

https://hustvl.github.io/Moebius/
303•DSemba•23h ago•76 comments

Who Does What? Team Topologies for the Agentic Platform

https://blog.owulveryck.info/2026/06/22/who-does-what-team-topologies-for-the-agentic-platform.html
30•owulveryck•8h ago•15 comments

Improvements to Std:Format in C++26

https://mariusbancila.ro/blog/2026/06/19/improvements-to-stdformat-in-c26/
30•jandeboevrie•2d ago•15 comments

Show HN: Oak – Git alternative designed for agents

https://oak.space/oak/oak
197•zdgeier•21h ago•170 comments

Kyber (YC W23) Is Hiring a Head of Engineering

https://www.ycombinator.com/companies/kyber/jobs/FGmI8mx-head-of-engineering
1•asontha•16h ago

Epidurals are a miracle technology

https://worksinprogress.co/issue/the-wonder-of-epidurals/
12•karakoram•2d ago•2 comments

Show HN: A pure ARM64 Assembly web server, now on Linux with CGI for no reason

https://github.com/imtomt/ymawky/tree/linux
36•imtomt•8h ago•11 comments

Canada plans 'nuclear renaissance' with up to 10 reactors built by 2040

https://www.cbc.ca/news/politics/federal-nuclear-strategy-9.7244509
517•geox•17h ago•357 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.