frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The "$60 Gaming PC" – AMD BC-250 (2025)

https://devquasar.com/hardware/the-60-gaming-pc-amd-bc-250/
177•networked•5h ago•58 comments

The Luxuries in Life

https://feld.com/archives/2026/09/the-real-luxuries-in-life/
14•tosh•1h ago•0 comments

Learn Programming with OCaml

https://usr.lmf.cnrs.fr/lpo/
16•elvis70•2h ago•0 comments

Discovery of a new OpenAI agent message board

https://collusion.wiki/
1974•moultano•1d ago•1474 comments

Actively exploited sandbox RCE in all Chromium versions

https://nvd.nist.gov/vuln/detail/cve-2026-85046
698•negura•21h ago•400 comments

Nitter has more working instances than before the takedowns

https://codeberg.org/mv12star/shitter/wiki/Instances
517•Cider9986•18h ago•216 comments

Wikimedia Foundation Workers Overwhelmingly Vote to Form Union with CWA

https://wikiworkersunited.org/announcements/2026-09-04-us-wikimedia-foundation-workers-overwhelmi...
154•robin_reala•2h ago•41 comments

Terpstra Keyboard

http://terpstrakeyboard.com/
80•cl3misch•8h ago•36 comments

Visualizing Rust's Vtables: How dyn Trait Works In Memory

https://sofiabelen.github.io/projects/visualizing-rusts-vtables-how-dyn-trait-works-in-memory/
23•torutofu•5h ago•0 comments

Formalizing Fermat's Last Theorem

https://www.anthropic.com/research/formalizing-fermats-last-theorem
714•jlebar•1d ago•453 comments

Singapore subway (mrt) information display types

https://www.sgtrains.com/technology-infosys.html
28•gregorvand•3d ago•7 comments

Steffen's Polyhedron – Greg Egan

https://www.gregegan.net/SCIENCE/Steffen/Steffen.html
12•pavel_lishin•2d ago•0 comments

Stopping the Unstoppable: When an unstoppable force meets a dashpot snubber

https://practical.engineering/blog/2026/9/1/stopping-the-unstoppable
16•crescit_eundo•4d ago•2 comments

A bizarre Commodore 64 peripheral, a mime, and some pretty bad ads

https://buttondown.com/suchbadtechads/archive/spartan-and-the-mime/
42•rfarley04•6h ago•3 comments

A Million Falcons Went Missing. Here’s How They Were Found

https://www.nationalgeographic.com/animals/article/falcons-migration-angola-falcopolis
47•bryanrasmussen•3d ago•16 comments

Statichost.eu – European static site hosting

https://www.statichost.eu/
401•p4bl0•22h ago•187 comments

Can AI design circuit boards yet?

https://eebench.org/blog/can-ai-design-circuit-boards-yet/
330•iopapa•23h ago•194 comments

Write Software in Latin (2025) [video]

https://www.youtube.com/watch?v=fGZpaqMha0o
23•akkartik•2d ago•8 comments

Meet the Ig Nobel Prize Winners

https://arstechnica.com/science/2026/09/meet-the-2026-ig-nobel-prize-winners/
73•mkl•4h ago•17 comments

How the Tobacco Industry Drove the Rise of Ultra-Processed Foods (2025)

https://vcresearch.berkeley.edu/news/how-tobacco-industry-drove-rise-ultra-processed-foods
110•paimapi•2h ago•55 comments

AI handles incidents, engineers lose touch with their systems

https://www.sylvainkalache.com/blog/ai-handles-incidents-engineers-lose-touch-with-their-systems
311•sylvainkalache•11h ago•278 comments

Git hosting that never leaves Europe

https://pushin.eu
245•sevenseacat•12h ago•128 comments

How the Disaster of "Forever Chemicals" Was Kept Secret

https://www.propublica.org/podcast/forever-chemicals-pfas-pfos-3m-secret-kris-hansen
216•stevenwoo•4h ago•62 comments

Shutting down our public encrypted DNS

https://mullvad.net/en/blog/shutting-down-our-public-encrypted-dns-servers-and-sponsoring-quad9-i...
419•mywacaday•1d ago•204 comments

Portal by Spotify cut my Claude Code token usage by 90%

https://engineering.atspotify.com/2026/9/portal-by-spotify-cut-my-claude-code-token-usage-by-90
228•cebert•19h ago•127 comments

.gitignore Everything by Default

https://packagemain.tech/p/gitignore-everything-by-default
87•der_gopher•5h ago•101 comments

Show HN: Open-Source eInk Bike Computer

https://opentrailpaper.com
359•stingrae•1d ago•113 comments

Pointing at the error: compiler-style diagnostics in uutils coreutils

https://uutils.org/blog/2026-08-error-diagnostics/
57•ingve•3d ago•8 comments

Ask HN: Resources to get good at soldering?

202•tosmatos•3d ago•130 comments

GPT-6 Astra on OpenRouter

https://openrouter.ai/openai/gpt-6-astra
283•Topfi•21h ago•209 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.