frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

WorldClaw Agentic 3D open-world generation at scale

https://tencent-hunyuan.github.io/Hunyuan3D-WorldClaw/
146•EwanG•5h ago•47 comments

Compression is prediction

https://ngrok.com/blog/compression-is-prediction
288•nikolay•7h ago•128 comments

Nvidia Nemotron 3.5 Lightning and NeMo Switchyard

https://blogs.nvidia.com/blog/nemotron-lightning-switchyard-rtx-dgx/
190•droidjj•7h ago•97 comments

Mojo 1.0

https://www.modular.com/blog/modular-26-5-mojo-1-0-is-here
308•dayanruben•10h ago•140 comments

Stealing Reasoning Traces from Proprietary LLM APIs

https://stolen-thoughts.com/
522•quantumgarbage•13h ago•214 comments

Retire the Abstractions

https://hazyresearch.stanford.edu/blog/2026-08-05-retire-the-abstractions
25•convexstrictly•6d ago•20 comments

OpenAI’s head of ethics leaves less than a year after joining

https://www.ft.com/content/e49dfb75-f841-4466-a577-f7aaff8779a0
312•ilamont•14h ago•354 comments

The lifesaving secret hidden inside a horseshoe crab's blue blood

https://whdh.com/news/the-lifesaving-secret-hidden-inside-a-horseshoe-crabs-blue-blood-and-the-ra...
6•andsoitis•1h ago•0 comments

Making holograms with a pen plotter

https://blog.jordan.matelsky.com/Penplotter-holography/
126•DemiGuru•8h ago•12 comments

New Bedford police officer accused of using Flock cameras to track ex-partner

https://newbedfordlight.org/new-bedford-police-officer-accused-of-using-flock-cameras-to-track-an...
40•newsomix9xl•1h ago•17 comments

The hardest working font in Manhattan (2025)

https://aresluna.org/the-hardest-working-font-in-manhattan/
18•dcminter•5d ago•1 comments

Show HN: iPhone app takes simultaneous images from 2 lenses, fuses into 1 photo

https://photosynthesis.camera
220•sajomes•3d ago•225 comments

Grok Bot

https://x.ai/bot
167•rvz•9h ago•146 comments

Show HN: Line9 – A Mermaid rendering engine with its own layout

https://line9.ai/diagram
33•jumpalongjim•5d ago•7 comments

Go is an ideal language for AI-assisted software engineering

https://developers.googleblog.com/why-go-is-an-ideal-language-for-ai-assisted-software-engineering/
296•0xedb•10h ago•336 comments

Show HN: Tamron Lens Utility Alternative on Linux

https://github.com/yikerman/tamron-lens-control
30•xiaoyu2006•4d ago•0 comments

How we used to get jobs: A newspaper classifieds story

https://ironicsans.ghost.io/how-we-used-to-get-jobs/
117•speckx•8h ago•92 comments

Neutrinos from Deep Inside Earth Provide a New Picture of the Mantle

https://www.quantamagazine.org/neutrinos-from-deep-inside-earth-provide-a-new-picture-of-the-mant...
9•rbanffy•13h ago•0 comments

England set to be one of the first countries to eliminate hepatitis C

https://www.bbc.com/news/articles/c75gk620r22o
495•stevekemp•14h ago•358 comments

Jolt: Clojure compiler implemented with Chez Scheme

https://jolt-lang.github.io
158•mark_l_watson•3d ago•57 comments

pg_clickhouse v0.10: Subquery pushdown and 1000x faster TPC-H queries

https://clickhouse.com/blog/pg_clickhouse-whats-new-july-2026
40•saisrirampur•5h ago•3 comments

Nvidia's Risky Business

https://stratechery.com/2026/nvidias-risky-business/
303•jonbaer•17h ago•144 comments

London Underground begins scanning passengers' faces

https://www.btp.police.uk/news/btp/news/england/btp-expands-live-facial-recognition-lfr-trial-int...
238•BlueBerry2001•17h ago•260 comments

Emergent Introspective Awareness in Large Language Models

https://arxiv.org/abs/2601.01828
36•doener•5h ago•14 comments

Manus will return to operating as an independent company

https://manus.im/blog/a-note-to-our-users
138•thm•12h ago•69 comments

Suzanne: AI tool for designing and manufacturing physical products

https://www.suzanne3d.com/
43•Samanthajeanneb•5h ago•29 comments

Show HN: Git-knife – Edit commit messages, authors, and dates like a spreadsheet

https://github.com/TheRealYT/git-knife
139•YonathanTesfaye•11h ago•88 comments

DEF CON crowd suspected in fake-hotspot attack on Delta flight

https://arstechnica.com/information-technology/2026/08/def-con-crowd-suspected-in-fake-hotspot-at...
27•dangle1•2h ago•7 comments

RSI Simulator

https://www.paradigm.xyz/writing/rsi-simulator
34•ckraeuter•10h ago•13 comments

CSS properties you should know for better text designs

https://master.dev/blog/typographic-css-tricks/
81•ibobev•9h ago•7 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.