frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google Antigravity Exfiltrates Data

https://www.promptarmor.com/resources/google-antigravity-exfiltrates-data
279•jjmaxwell4•1h ago•72 comments

Bad UX World Cup 2025

https://badux.lol/
51•CharlesW•1h ago•11 comments

how to repurpose your old phone into a web server

https://far.computer/how-to/
76•louismerlin•3d ago•34 comments

FLUX.2: Frontier Visual Intelligence

https://bfl.ai/blog/flux-2
158•meetpateltech•4h ago•49 comments

Launch HN: Onyx (YC W24) – Open-source chat UI

127•Weves•6h ago•97 comments

Show HN: We built an open source, zero webhooks payment processor

https://github.com/flowglad/flowglad
120•agreeahmed•2h ago•85 comments

The 101 of analog signal filtering (2024)

https://lcamtuf.substack.com/p/the-101-of-analog-signal-filtering
80•harperlee•4d ago•4 comments

Trillions spent and big software projects are still failing

https://spectrum.ieee.org/it-management-software-failures
166•pseudolus•8h ago•167 comments

IQ differences of identical twins reared apart are influenced by education

https://www.sciencedirect.com/science/article/pii/S0001691825003853
44•wjb3•1h ago•28 comments

Jakarta is now the biggest city in the world

https://www.axios.com/2025/11/24/jakarta-tokyo-worlds-biggest-city-population
108•skx001•14h ago•39 comments

ICE Offers Up to $280M to Immigrant-Tracking 'Bounty Hunter' Firms

https://www.wired.com/story/ice-bounty-hunter-spy-program/
18•zzzeek•25m ago•2 comments

Human brains are preconfigured with instructions for understanding the world

https://news.ucsc.edu/2025/11/sharf-preconfigured-brain/
378•XzetaU8•13h ago•254 comments

It is ok to say "CSS variables" instead of "custom properties"

https://blog.kizu.dev/css-variables/
68•eustoria•2h ago•47 comments

Making Crash Bandicoot (2011)

https://all-things-andy-gavin.com/video-games/making-crash/
164•davikr•8h ago•17 comments

Inflatable Space Stations

https://worksinprogress.co/issue/inflatable-space-stations/
27•bensouthwood•4d ago•9 comments

Ozempic does not slow Alzheimer's, study finds

https://www.semafor.com/article/11/25/2025/ozempic-does-not-slow-alzheimers-study-finds
87•danso•3h ago•52 comments

Show HN: Secure private diffchecker with merge support

https://diffchecker.dev
12•subhash_k•1h ago•12 comments

Most Stable Raspberry Pi? Better NTP with Thermal Management

https://austinsnerdythings.com/2025/11/24/worlds-most-stable-raspberry-pi-81-better-ntp-with-ther...
260•todsacerdoti•13h ago•79 comments

Orion 1.0

https://blog.kagi.com/orion
247•STRiDEX•4h ago•136 comments

Unpowered SSDs slowly lose data

https://www.xda-developers.com/your-unpowered-ssd-is-slowly-losing-your-data/
687•amichail•1d ago•279 comments

Roblox is a problem but it's a symptom of something worse

https://www.platformer.news/roblox-ceo-interview-backlash-analysis/
149•FiddlerClamp•4h ago•215 comments

LPLB: An early research stage MoE load balancer based on linear programming

https://github.com/deepseek-ai/LPLB
20•simonpure•6d ago•0 comments

US banks scramble to assess data theft after hackers breach financial tech firm

https://techcrunch.com/2025/11/24/us-banks-scramble-to-assess-data-theft-after-hackers-breach-fin...
56•indigodaddy•3h ago•3 comments

Broccoli Man, Remastered

https://mbleigh.dev/posts/broccoli-man-remastered/
131•mbleigh•6d ago•72 comments

Unison 1.0 Release

https://www.unison-lang.org/unison-1-0/
43•pchiusano•55m ago•6 comments

PRC elites voice AI-skepticism

https://jamestown.org/prc-elites-voice-ai-skepticism/
95•JumpCrisscross•1d ago•36 comments

Claude Advanced Tool Use

https://www.anthropic.com/engineering/advanced-tool-use
621•lebovic•1d ago•249 comments

Nearby peer discovery without GPS using environmental fingerprints

https://www.svendewaerhert.com/blog/nearby-peer-discovery/
58•waerhert•4d ago•17 comments

Brain has five 'eras' with adult mode not starting until early 30s

https://www.theguardian.com/science/2025/nov/25/brain-human-cognitive-development-life-stages-cam...
236•hackernj•6h ago•209 comments

APT Rust requirement raises questions

https://lwn.net/SubscriberLink/1046841/5bbf1fc049a18947/
221•todsacerdoti•6h ago•401 comments
Open in hackernews

Right-Truncatable Prime Counter

https://github.com/EbodShojaei/Right-Truncatable-Primes
9•rainmans•6mo ago

Comments

throwawaymaths•6mo 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•6mo ago
i dont think smaller radixes make the problem more interesting. the problem is interesting because base 10 has a large branching factor
throwawaymaths•6mo 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•6mo ago
There's a Project Euler problem for finding truncatable prime numbers, from both left and right: https://projecteuler.net/problem=37
thechao•6mo 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.