frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Revealing the details of how OpenAI agents hacked Hugging Face

https://swarmtraces.org/
136•specked-citrus•3h ago•86 comments

Ollaya – Ollama for open-source, Jev-style decision models

https://ollaya.dev/
313•Ardakilic•5h ago•92 comments

Show HN: Jev Plays Pokémon Red

https://jev-pokemon.vercel.app/
135•pancomplex•9h ago•60 comments

Platform-independent SIMD in Go

https://go.dev/blog/simd-experiment
349•yurivish•12h ago•132 comments

Excel now supports multiple values in a single cell

https://techcommunity.microsoft.com/blog/microsoft365insiderblog/put-multiple-values-in-one-cell-...
68•luispa•3h ago•53 comments

Git-bug: Distributed, offline-first bug tracker embedded in Git

https://github.com/git-bug/git-bug
295•alentred•12h ago•99 comments

Remembering Johannes Doerfert

https://blog.llvm.org/posts/2026-09-24-rememberingjohannesdoerfert/
43•sdko•1d ago•1 comments

Gravity seems holographic. What does that mean for reality?

https://www.quantamagazine.org/gravity-seems-holographic-what-does-that-mean-for-reality-20260925/
107•ibobev•8h ago•106 comments

An airport cooled by natural ventilation

https://www.theguardian.com/environment/2026/sep/25/didnt-need-air-conditioning-airport-cooled-na...
36•Geekette•14h ago•16 comments

U.S. appeals court upholds designation of Anthropic as supply chain risk

https://www.cnbc.com/2026/09/25/pentagon-anthropic-ai-risk-appeals-court.html
366•cramer4next•8h ago•673 comments

Initial DIY cleanroom experimentation

https://www.jefftk.com/p/initial-diy-cleanroom-experimentation
15•luu•1d ago•4 comments

First Principles Thinking

https://sunilsadasivan.com/writing/first-principles-thinking/
204•sunils34•10h ago•95 comments

Show HN: Make math automatic with Mathy

https://gmays.com/making-math-automatic-with-mathy/
69•gmays•4d ago•18 comments

Ask HN: Who's still keeping a DOS machine up because the business depends on it?

69•mlaux•4h ago•48 comments

What even is an OS now?

https://sockpuppet.org/blog/2026/09/25/what-even-is-an-os-now/
64•fratellobigio•2h ago•74 comments

Ink and Switch interactive homepage

https://www.inkandswitch.com/
224•iFreilicht•14h ago•25 comments

How we learned to stop worrying and love campus surveillance

https://fnl.mit.edu/how-we-learned-to-stop-worrying-and-love-campus-surveillance/
82•cdrnsf•4h ago•63 comments

How video games inspire great UX (2019)

https://jenson.org/games/
89•andsoitis•5d ago•16 comments

Brazil Bans Online Betting

https://www.reuters.com/world/americas/brazils-lula-bans-online-betting-operations-reelection-rac...
7•bratao•16m ago•0 comments

Teaching a World Model to Play Pokemon

https://nostalgia.dev/posts/teaching-a-world-model-to-play-pokemon/
4•stmonty•3h ago•6 comments

Tell HN: Codex Is Down [fixed]

61•minimaxir•1h ago•63 comments

Alan Kay: Shannon gave us a way of dealing with noisy channels [video]

https://www.youtube.com/watch?v=Cjntrqhn8pk
113•behoove•5h ago•22 comments

What happens when you analyze your favorite college football team like the CIA?

https://www.cultivatelabs.com/posts/what-happens-when-you-analyze-college-football-like-the-cia
31•adam•10h ago•18 comments

Loopjacking in A2A Implementations: Hijacking Human-in-the-Loop Approvals

https://adithyanak.com/loopjacking-in-a2a-implementations/
4•akoffsec•2d ago•0 comments

Microsoft abandons personal AI chatbot race with Copilot reboot

https://www.bloomberg.com/news/articles/2026-09-25/microsoft-abandons-personal-ai-chatbot-race-wi...
72•sbulaev•10h ago•61 comments

A new way to manage memory: no garbage collection, extremely fast & safe access

https://ulanguage.org/memory
10•EGreg•4h ago•2 comments

I wrote a ray tracer in Brainfuck

https://epestr.com/blog/writing-a-ray-tracer-in-brainfuck/
18•epestr•14h ago•6 comments

Amiga Screens: A Primer

https://www.datagubbe.se/amscr/
126•msephton•16h ago•36 comments

Meta's Muse appears to use an OpenAI model labeled muse-special

https://mouse.dev/blog/muse-special/
106•Aeroi•6h ago•45 comments

Bwbach, My Guardian Goblin

https://robertmay.photography/journal/bwbach-my-guardian-goblin
21•robotmay•3d ago•14 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.