frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Park by Robot at London Gatwick Airport

https://aerospaceglobalnews.com/news/gatwick-airport-robotic-parking-stanley-robotics/
175•agotterer•3h ago•106 comments

Design Is Compromise

https://stephango.com/design-is-compromise
78•ankitg12•2h ago•27 comments

Kill The Cookie Banner

https://killthecookiebanner.eu/
320•rapnie•6h ago•178 comments

Show HN: CheapSecurity – Lightweight, Self-Hosted CCTV for Linux SBCs

https://github.com/gmrandazzo/CheapSecurity
29•zeldone•2h ago•6 comments

An Inside Look at the Token Reseller Market

https://vectoral.com/blog/token-relay-market
76•mlenhard•2h ago•26 comments

Ruff v0.16.0 – Significant new updates – 413 default rules up from 59

https://astral.sh/blog/ruff-v0.16.0
295•vismit2000•9h ago•179 comments

Jimothy the raccoon has a rare spinal condition. Here's what that means

https://www.popsci.com/science/whats-jimothy-raccoon-condition/
39•speckx•4d ago•2 comments

Go Analysis Framework: modular static analysis by go team

https://pkg.go.dev/golang.org/x/tools/go/analysis
125•AbuAssar•5h ago•13 comments

Htmx 4.0, the first JavaScript library to release exclusively on the Game Boy

https://swag.htmx.org/en-cad/products/htmx-4-the-game
151•rcy•6h ago•44 comments

Using sed to make indexes for books (long)

https://www.pement.org/sed/make_indexes.txt
11•TMWNN•3d ago•0 comments

Make an Origami Circuit Board

https://spectrum.ieee.org/origami-circuit-boards
19•ohjeez•2h ago•0 comments

How to Write English Prose

https://thelampmagazine.com/blog/how-to-write-english-prose
4•geneticdrifts•34m ago•0 comments

I learned PCB design, 3D printing and C just to listen to music

https://pentaton.app/blog/2026-07-12-introducing-pentaton-lp/
110•interfeco•3d ago•13 comments

The New AI Superpowers: Focus and Followthrough

https://www.rickmanelius.com/p/the-new-ai-superpowers-focus-and
51•mooreds•4h ago•15 comments

GrapheneOS protections against data extraction from locked devices

https://discuss.grapheneos.org/d/40700-grapheneos-protections-against-data-extraction-from-locked...
292•Cider9986•12h ago•172 comments

What's Under Your Feet in New York City?

https://practical.engineering/blog/2026/7/21/whats-under-your-feet-in-new-york-city
86•sohkamyung•4d ago•10 comments

Google Discloses $94.1B in SpaceX Stock, Marking 6% Stake

https://www.wsj.com/tech/google-discloses-94-1-billion-in-spacex-stock-marking-6-stake-91655d7c
242•1vuio0pswjnm7•5h ago•183 comments

Calling all open source maintainers working with Ruby

https://www.rubyforum.org/t/calling-all-open-source-maintainers-working-with-ruby/553
4•arto•35m ago•1 comments

A shell colon does nothing. Use it anyway

https://refp.se/articles/your-shell-and-the-magic-colon
342•olexsmir•1d ago•149 comments

Show HN: Reverse Minesweeper

https://sunflowersgame.com/
49•pompomsheep•5h ago•20 comments

What if LLMs escape through inferences itself? This is fiction. For now

https://www.agrillo.it/EvasionEn.html
23•ConteMascetti71•1h ago•32 comments

Terence Tao: Mathematics in the Age of AI [pdf]

https://teorth.github.io/tao-web/slides/age-of-ai-icm-2026.pdf
44•Anon84•7h ago•15 comments

An ESP32 based plane radar for my desk

https://blog.ktz.me/esp32-plane-radar/
236•alexktz•15h ago•50 comments

Third Drone Shot Down in Three Days in Romanian Territory

https://english.mapn.ro/
199•_tk_•6h ago•215 comments

Elevated Errors for Opus 5

https://status.claude.com/incidents/zftg3gqkmv18
83•TimCTRL•8h ago•66 comments

DeepSeek pause fundraise after comments on compute gap to US leaked (transcript) [pdf]

https://github.com/demo-zexuan/liang-wenfeng-investor-meeting-2026-7-22/blob/master/%E6%A2%81%E6%...
230•oliculipolicula•18h ago•175 comments

Inflect-Micro-v2: complete voice in 9.36M parameters

https://huggingface.co/owensong/Inflect-Micro-v2
188•nateb2022•17h ago•20 comments

French firefighters face 'pyrocumulonimbus' for first time

https://www.france24.com/en/live-news/20260726-french-firefighters-face-pyrocumulonimbus-for-firs...
4•saaaaaam•13m ago•1 comments

What is happening to jobs? Separating AI hype from reality

https://siepr.stanford.edu/publications/policy-brief/what-really-happening-jobs-separating-ai-hyp...
210•pod_krad•19h ago•279 comments

Cloudflare's new AI traffic options for customers

https://blog.cloudflare.com/content-independence-day-ai-options/
180•alphabetatango•19h ago•135 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.