frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GPU Offload in Rust: Portable, Safe, and Fast

https://arxiv.org/abs/2608.13759
101•linggen•3h ago•21 comments

A Preview of DuckDB v2.0

https://duckdb.org/2026/08/17/duckdb-20-highlights
471•ibotty•7h ago•78 comments

AI;DR (AI; Didn't Read)

https://www.rickmanelius.com/p/aidr-ai-didnt-read
341•mooreds•1h ago•203 comments

AI-Generated GitHub Copilot “Autofix” Allowed Compromise of Snowflake's Jira

https://www.wiz.io/blog/red-agent-snowflake-copilot-cicd-bug
276•galnagli•7h ago•114 comments

Incident with Github.com

https://www.githubstatus.com/incidents/zkxwbgr0cnmx
442•SpyCoder77•8h ago•827 comments

Sun Clock

https://sunclock.net/
133•Gecko4072•5h ago•41 comments

How to disable or avoid intrusive AI

https://www.librarian.net/notoai/
210•ColinWright•7h ago•112 comments

The Origin of Consciousness (2008)

https://blog.plover.com/brain/Jaynes.html
21•skm•1h ago•8 comments

GPT 5.6 Sol is the best "vision" model OpenAI ever released

https://blog.roboflow.com/openai-gpt-5-6/
277•plurby•9h ago•143 comments

Olo (Color)

https://en.wikipedia.org/wiki/Olo_(color)
232•inigyou•5d ago•54 comments

Judge sets framework for Nine PBS to retrieve archival data

https://current.org/2026/08/judge-sets-framework-for-nine-pbs-to-retrieve-archival-data/
89•qingcharles•5h ago•38 comments

Roboflow Playground: Try and Compare 30 Computer Vision Models

https://blog.roboflow.com/roboflow-playground/
26•Bluestein•3h ago•2 comments

Launch HN: Speko (YC S26) – OpenRouter for Voice AI

https://speko.ai/
80•abdik•6h ago•50 comments

An update on leaving Gmail for Fastmail

https://moddedbear.com/an-update-on-leaving-gmail-for-fastmail/
50•neogodless•4h ago•32 comments

India has paved the way for charging merchants a fee on UPI transactions

https://www.bbc.com/news/articles/c8xnwqe00v1o
60•monkey_monkey•2h ago•47 comments

Marketers are Addicted to Bad Data (2020)

https://www.jacquescorbytuech.com/writing/marketers-addicted-bad-data
28•zbentley•4d ago•33 comments

Ask HN: Alternatives to GitHub

434•dhruv3006•7h ago•276 comments

A simple fix for LLM tail latency

https://engineering.myhoai.com/posts/a-simple-fix-for-llm-tail-latency/
11•oskrim•3d ago•1 comments

A particle made of force: physicists say they've found mysterious 'glueball'

https://www.nature.com/articles/d41586-026-02498-1
69•Brajeshwar•5d ago•2 comments

Qwen3.8 27B scores 52 on Artificial Analysis

https://artificialanalysis.ai/models/qwen3-8-27b
239•anana_•4h ago•111 comments

Cursor launches Origin, GitHub alternative

https://cursor.com/changelog/origin-code-hosting
77•tomasreimers•4h ago•31 comments

We Are Forking dotenvy into dotenv-ng

https://secretspec.dev/blog/we-are-forking-dotenvy-into-dotenv-ng/
29•linggen•3h ago•28 comments

The oldest bar in every state

https://www.businessinsider.com/oldest-bar-every-state
40•NaOH•4d ago•21 comments

Los Puesteros, solitary men who look after ranches and livestock in Patagonia

https://www.newyorker.com/culture/photo-booth/the-lonely-men-at-the-end-of-the-world
84•bookofjoe•3h ago•32 comments

How to put 170 atoms in an atom

https://signoregalilei.com/2026/08/02/how-to-put-170-atoms-in-an-atom/
90•surprisetalk•7h ago•19 comments

How I developed an Am29000 C compiler and web browser

https://nanochess.org/am29000_c_compiler_web_browser.html
72•nanochess•1d ago•11 comments

Show HN: Sokoban AI Solver

https://mkornreich.me/projects/sokoban/
63•enjoyyourlife•8h ago•35 comments

On AI regulation and messaging

https://twitter.com/DarioAmodei/status/2088758816376807762
222•jacquesm•19h ago•478 comments

Show HN: Desktopcolors.com – A museum for solid background colors of classic OS

https://desktopcolors.com
127•vlowrian•13h ago•58 comments

Will you have spent more of your life with computers than your family?

https://beachfront.bearblog.dev/will-you-have-spent-more-of-your-life-with-computers-than-your-fa...
66•Gecko4072•1h ago•57 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.