frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Linux support is coming to Snapdragon X2 Series

https://www.qualcomm.com/news/onq/2026/09/snapdragon-summit-agentic-ai-pcs-linux
353•aaronday•9h ago•149 comments

Early rogue AI agent activity and attempts to hack found on urlquery.net

https://transluce.org/agent-activity
46•snikolaev•2h ago•26 comments

Claude discovers a novel enzyme system with CRISPR-like repeats

https://www.anthropic.com/news/claude-discovers-novel-enzyme-system
621•raahelb•13h ago•635 comments

Contrastive Language Models

https://contrastive-lm.notion.site/
40•erichocean•3h ago•6 comments

ArXiv receives multiyear commitments to support it as an independent nonprofit

https://blog.arxiv.org/2026/09/23/arxiv-receives-multiyear-investment/
155•JohnHammersley•8h ago•19 comments

VSCode's SSH Agent Is Bananas (2025)

https://fly.io/blog/vscode-ssh-wtf/
207•Rapzid•10h ago•130 comments

Ideas on modernizing the open-source desktop

https://lwn.net/SubscriberLink/1095425/2d9f411252325784/
76•signa11•4h ago•49 comments

Virtio-nvgpu: Near-native Nvidia GPU access inside a KVM guest

https://github.com/nestrilabs/virtio-nvgpu
74•WanjohiRyan•6h ago•35 comments

Making portable my unportable transputer C compiler

https://nanochess.org/transputer_c_compiler.html
37•nanochess•2d ago•4 comments

The "Windows XP Box" (2003)

https://www.mini-itx.com/projects/windowsxpbox/
129•doubletwoyou•2d ago•21 comments

Meta VR Glasses

https://www.meta.com/vr-glasses/
371•polymorph1sm•7h ago•319 comments

OpenAI breaches Medicare, Albanese reveals

https://www.smh.com.au/politics/federal/openai-breaches-medicare-albanese-reveals-20260924-p6100u...
186•jonnonz•10h ago•127 comments

Feds Target AI Critics as "Foreign Agents"

https://www.kenklippenstein.com/p/feds-think-ai-critics-are-foreign
269•nmeagent•7h ago•262 comments

Fixing the Portobello Police Station Clock

https://pointinthecloud.com/2026-04-11-211700.html
426•avidly•16h ago•99 comments

Why 'What's Opera, Doc?' looks like that

https://animationobsessive.substack.com/p/why-whats-opera-doc-looks-like-that
40•CharlesW•16h ago•5 comments

Mercury 2.5 LLM hits 770 tokens per second

https://artificialanalysis.ai/models/mercury-2-5
96•Retro_Dev•9h ago•57 comments

Women Who Sold Books Door to Door

https://daily.jstor.org/the-women-who-sold-books-door-to-door/
10•herbertl•2d ago•0 comments

Making Tailscale Faster

https://tailscale.com/blog/making-tailscale-faster
155•yarapavan•13h ago•56 comments

The mystery animal on an ancient god's head

https://signoregalilei.com/2026/09/13/the-mystery-animal-on-an-ancient-gods-head/
95•surprisetalk•1d ago•27 comments

Italian parliament votes for return to nuclear energy

https://apnews.com/article/italy-nuclear-chernobyl-4891b6b7c7791ae84db6b0bf0f7cf567
739•geox•14h ago•506 comments

Six-year-old breaks women's world Rubik's Cube record [video]

https://www.youtube.com/watch?v=UCMRgvyTm08
41•1659447091•2h ago•16 comments

Lambda MicroEgg

https://www.philipzucker.com/lambda_miller_egg/
38•philzook•3d ago•1 comments

Tokens too cheap to meter

https://jyn.dev/tokens-too-cheap-to-meter/
291•teoruiz•22h ago•196 comments

LensVLM: Compressing long context as images, expanding only relevant pages

https://huggingface.co/apple/LensVLM-9B
73•victormustar•13h ago•7 comments

A brief history of Windows scroll bar shortcuts

https://devblogs.microsoft.com/oldnewthing/20260922-00/?p=112719/
134•tybulewicz•13h ago•72 comments

Show HN: An open-source manufacturing ERP/MES/QMS

https://carbon.ms/self-hosted
26•barbinbrad•6h ago•14 comments

Data liberation: Apache Kafka's native cluster mirroring

https://developers.redhat.com/articles/2026/09/22/data-liberation-apache-kafka-native-cluster-mir...
10•fvaleri•1d ago•1 comments

Gemini 3.8 text-to-speech

https://blog.google/innovation-and-ai/models-and-research/gemini-models/gemini-3-8-text-to-speech/
300•swolpers•16h ago•133 comments

Solving for faster SHA-1 collision detection

https://sam.dev/blog/faster-sha1-collision-detection
23•srijs•2d ago•6 comments

Radicle: Disclosure of Vulnerability in the Network Protocol

https://radicle.dev/2026/09/23/disclosure-of-vulnerability-in-network-protocol
138•lostmsu•16h ago•54 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.