frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Qwen 3.8 27B

https://huggingface.co/Qwen/Qwen3.8-27B-FP8
260•erdaltoprak•2h ago•200 comments

Seven books I keep close because I love them

https://blog.plover.com/2026/08/02/
131•surprisetalk•2h ago•42 comments

Count Binface receives over a quarter of votes in Clacton by-election

https://www.bbc.com/news/articles/ce97mm3vvemo
29•tcp_handshaker•50m ago•6 comments

Introducing Toast 1

https://www.mixedbread.com/blog/toast-1
89•mplappert•2h ago•25 comments

RustDesk now supports true unattended remote access on Wayland

https://rustdesk.com/blog/unattended-remote-access-wayland/
48•rustdesk•1h ago•13 comments

Why does Opus 5 feel worse to work with?

https://mun-logadan.github.io/why-does-opus-5-feel-worse/
417•numeri•7h ago•405 comments

GLM-5.3: Frontier coding with emergent cyber capabilities

https://z.ai/blog/glm-5.3
917•pella•12h ago•465 comments

AI by Hand

https://www.byhand.ai/
27•sans_souse•1h ago•3 comments

Google is making private AI practical with homomorphic encryption

https://blog.google/security/how-google-is-making-private-ai-practical-with-homomorphic-encryption/
66•u1hcw9nx•1h ago•45 comments

Every Fucking Website (2020)

https://lxe.github.io/everywebsite/
534•doubletwoyou•3h ago•313 comments

RayforceDB – a pure C analytics database with a Lisp-like syntax

https://rayforcedb.com/
18•sourdecor•1h ago•10 comments

Ultraviolet Bird Photography

https://uvbirds.com/
25•EndXA•1w ago•2 comments

In Australia, a home battery boom has helped cut wholesale power prices

https://e360.yale.edu/digest/australia-home-batteries
216•speckx•3h ago•164 comments

France's top court blocks social media ban for under-15s

https://www.reuters.com/world/frances-top-court-rules-social-media-ban-curtails-freedom-expressio...
93•BlueBerry2001•1h ago•35 comments

I turned my RSS feeds into an e-ink newspaper to stop reading on my phone

https://heyjonny.dev/posts/rss-to-eink-newspaper/
55•speckx•3h ago•24 comments

Forbidden City Cabbage

https://www.cnn.com/2025/11/10/style/jadeite-cabbage-taiwan-forbidden-city-curio-hnk-intl
10•dude250711•2d ago•0 comments

Maximizing the value of your Claude Code sessions

https://claude.com/blog/maximizing-the-value-of-your-claude-code-sessions
15•twapi•1h ago•1 comments

Don't classify, hallucinate

https://softwaredoug.com/blog/2026/08/10/hypothetical-classifications
164•softwaredoug•3d ago•71 comments

DeepSeek peak/off-peak pricing update

https://api-docs.deepseek.com/news/news260813/
202•fagnerbrack•7h ago•108 comments

Cursor is now a part of SpaceX

https://cursor.com/blog/joining-spacex
56•billy_jones_75•4h ago•39 comments

"Solving a largely imaginary user goal"

https://unsung.aresluna.org/solving-a-largely-imaginary-user-goal/
34•euthymiclabs•1h ago•37 comments

A Contract-Grade Verifier for LLM-Generated GPU Kernels

https://arxiv.org/abs/2608.12700
4•Jimmc414•38m ago•0 comments

The TEMU-Fication of Software, Digital Goods and Services

https://xn--gckvb8fzb.com/the-temu-fication-of-software-digital-goods-services/
77•surprisetalk•5h ago•55 comments

Self-hosted web push Cloudflare Worker, works on iOS

https://kukuroo.cc/
33•saiday•2h ago•11 comments

AI Model Atlas – visualizing populations of ML models as interconnected 3D graph

https://run.cosmograph.app/public/ca9fd1ad-fe83-4238-8b69-b707c633aef0
23•bj-rn•3h ago•4 comments

HashAgent – Share an AI agent as a URL, runs locally via WebGPU

https://hashagent.pages.dev/
32•masonhsu•4h ago•3 comments

Gödel, Escher, Elisp: The Beauty of Macros

https://www.chiply.dev/post-elisp-macros-are-beautiful
32•JNRowe•1w ago•10 comments

Show HN: Graft – Claude Code hooks that cut grep tokens by 42%

https://github.com/NanoNets/Graft
28•shrishdwi•2h ago•27 comments

Discrete Fourier Transform by Hand

https://www.byhand.ai/p/28-discrete-fourier-transform
6•Bluestein•43m ago•1 comments

Show HN: LuaCAD – Parametric CAD Scripted in Lua

https://luacad.ad-si.com
5•adius•52m ago•0 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.