frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Pebble Watch software is now 100% open source

https://ericmigi.com/blog/pebble-watch-software-is-now-100percent-open-source
858•Larrikin•12h ago•137 comments

Human brains are preconfigured with instructions for understanding the world

https://news.ucsc.edu/2025/11/sharf-preconfigured-brain/
17•XzetaU8•41m ago•2 comments

Windows GUI – Good, Bad and Pretty Ugly (2023)

https://creolened.com/windows-gui-good-bad-and-pretty-ugly-ranked/
21•phendrenad2•1h ago•19 comments

Unpowered SSDs slowly lose data

https://www.xda-developers.com/your-unpowered-ssd-is-slowly-losing-your-data/
365•amichail•11h ago•159 comments

A million ways to die from a data race in Go

https://gaultier.github.io/blog/a_million_ways_to_data_race_in_go.html
43•ingve•2d ago•20 comments

Most Stable Raspberry Pi? 81% Better NTP with Thermal Management

https://austinsnerdythings.com/2025/11/24/worlds-most-stable-raspberry-pi-81-better-ntp-with-ther...
6•todsacerdoti•37m ago•1 comments

Claude Advanced Tool Use

https://www.anthropic.com/engineering/advanced-tool-use
454•lebovic•11h ago•171 comments

Why I (Still) Love Linux ?

https://it-notes.dragas.net/2025/11/24/why-i-still-love-linux/
4•signa11•1h ago•0 comments

Show HN: I built an interactive HN Simulator

https://news.ysimulator.run/news
265•johnsillings•13h ago•131 comments

How did the Windows 95 user interface code get to the Windows NT code base?

https://devblogs.microsoft.com/oldnewthing/20251028-00/?p=111733
60•ayi•3d ago•14 comments

Cool-retro-term: terminal emulator which mimics look and feel of CRTs

https://github.com/Swordfish90/cool-retro-term
209•michalpleban•13h ago•80 comments

Three Years from GPT-3 to Gemini 3

https://www.oneusefulthing.org/p/three-years-from-gpt-3-to-gemini
251•JumpCrisscross•2d ago•162 comments

Implications of AI to schools

https://twitter.com/karpathy/status/1993010584175141038
176•bilsbie•13h ago•184 comments

Build a Compiler in Five Projects

https://kmicinski.com/functional-programming/2025/11/23/build-a-language/
87•azhenley•23h ago•10 comments

Show HN: OCR Arena – A playground for OCR models

https://www.ocrarena.ai/battle
116•kbyatnal•3d ago•44 comments

What OpenAI did when ChatGPT users lost touch with reality

https://www.nytimes.com/2025/11/23/technology/openai-chatgpt-users-risks.html
169•nonprofiteer•1d ago•208 comments

Claude Opus 4.5

https://www.anthropic.com/news/claude-opus-4-5
883•adocomplete•12h ago•400 comments

The Bitter Lesson of LLM Extensions

https://www.sawyerhood.com/blog/llm-extension
105•sawyerjhood•12h ago•53 comments

Google's new 'Aluminium OS' project brings Android to PC

https://www.androidauthority.com/aluminium-os-android-for-pcs-3619092/
101•jmsflknr•12h ago•121 comments

Migrating to Bazel symbolic macros

https://www.tweag.io/blog/2025-11-20-migrating-bazel-symbolic-macros/
12•todsacerdoti•2d ago•0 comments

Show HN: Datamorph – A clean JSON ⇄ CSV converter with auto-detect

https://datamorphio.vercel.app
5•sumit_entr42•4d ago•1 comments

Chrome Jpegxl Issue Reopened

https://issues.chromium.org/issues/40168998
233•markdog12•18h ago•86 comments

Shai-Hulud Returns: Over 300 NPM Packages Infected

https://helixguard.ai/blog/malicious-sha1hulud-2025-11-24
913•mrdosija•20h ago•709 comments

Moving from OpenBSD to FreeBSD for firewalls

https://utcc.utoronto.ca/~cks/space/blog/sysadmin/OpenBSDToFreeBSDMove
170•zdw•5d ago•94 comments

Fifty Shades of OOP

https://lesleylai.info/en/fifty_shades_of_oop/
83•todsacerdoti•21h ago•32 comments

PS5 now costs less than 64GB of DDR5 memory. RAM jumps to $600 due to shortage

https://www.tomshardware.com/pc-components/ddr5/64gb-of-ddr5-memory-now-costs-more-than-an-entire...
348•speckx•11h ago•225 comments

Building the largest known Kubernetes cluster

https://cloud.google.com/blog/products/containers-kubernetes/how-we-built-a-130000-node-gke-cluster/
123•TangerineDream•3d ago•69 comments

Using Antigravity for Statistical Physics in JavaScript

https://christopherkrapu.com/blog/2025/antigravity-stat-mech/
13•ckrapu•3d ago•9 comments

Inside Rust's std and parking_lot mutexes – who wins?

https://blog.cuongle.dev/p/inside-rusts-std-and-parking-lot-mutexes-who-win
154•signa11•5d ago•71 comments

The history of Indian science fiction

https://altermag.com/articles/the-secret-history-of-indian-science-fiction
157•adityaathalye•2d ago•24 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.