frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Fixing the Portobello Police Station Clock

https://pointinthecloud.com/2026-04-11-211700.html
230•avidly•3h ago•52 comments

UK military jamming other nations' satellites to defend itself, BBC told

https://www.bbc.com/news/articles/c32l8y8kygdvo
39•thm•44m ago•16 comments

Gemini 3.8 text-to-speech

https://blog.google/innovation-and-ai/models-and-research/gemini-models/gemini-3-8-text-to-speech/
140•swolpers•3h ago•73 comments

Radicle: Disclosure of Vulnerability in the Network Protocol

https://radicle.dev/2026/09/23/disclosure-of-vulnerability-in-network-protocol
63•lostmsu•3h ago•22 comments

Italian parliament votes for return to nuclear energy

https://apnews.com/article/italy-nuclear-chernobyl-4891b6b7c7791ae84db6b0bf0f7cf567
108•geox•1h ago•24 comments

Jev in 25 Lines of Python

https://www.nobodywho.ai/posts/jev-in-25-lines/
530•bashbjorn•11h ago•161 comments

GPT-6 Sol and Luna

https://openai.com/index/introducing-gpt-6-sol-and-luna/
1687•OfficialTurkey•1d ago•810 comments

Claude Code reads AGENTS.md only when telemetry is on [fixed]

https://blog.szypowi.cz/p/claude-code-reads-agents.md-only-when-telemetry-is-on/
384•pszypowicz•6h ago•217 comments

Claude Opus 5.5

https://www.anthropic.com/claude-opus-5-5
1722•km144•1d ago•1051 comments

Stripe's Knowledge AI Platform

https://stripe.dev/blog/meet-stripes-knowledge-ai-platform
126•ltononro•4h ago•80 comments

Z80 REPL (2018)

https://abagames.github.io/z80-repl/index.html
118•adunk•7h ago•15 comments

28% of job postings on company career sites have been open over 90 days

https://unlisted.careers/ghost-jobs/report/2026-09
97•rubatrejo•1h ago•135 comments

I don't want the details

https://michaelheap.com/i-dont-want-the-details/
235•mooreds•5h ago•146 comments

Strands Harness

https://strandsagents.com/blog/introducing-strands-harness/
100•zuckerborg0101•3h ago•74 comments

Seattle City Council votes to ban surveillance pricing in sale of groceries

https://advocacy.consumerreports.org/press_release/seattle-city-council-votes-to-ban-surveillance...
130•ortusdux•4h ago•78 comments

QuestDB (YC S20) Is Hiring a Sales Engineer

https://questdb.com/careers/pre-sales-engineer-north-america/
1•nhourcard•6h ago

Web-based IBM 1620 emulator and IPL-V from 1963

https://github.com/pkimpel/retro-1620
21•abrax3141•18h ago•5 comments

Tokens Too Cheap to Meter

https://jyn.dev/tokens-too-cheap-to-meter/
147•teoruiz•9h ago•122 comments

GPT-6 Astra has gained the ability to drive a car

https://drivingbench.com/
201•plurby•3h ago•172 comments

OpenAI GPT–6 Astra breaks Enigma message that has resisted solution since 2005

https://www.cryptocellar.org/bgac/the-mvueh-break.html
713•sohkamyung•1d ago•428 comments

Transit rewards

https://waymo.com/blog/2026/09/transit-rewards/
231•raybb•15h ago•285 comments

The GitHub wiki is an anti-pattern (2022)

https://michaelheap.com/github-wiki-is-an-antipattern/
136•ibobev•5h ago•76 comments

What California is learning from solar panels built over irrigation canals

https://www.kqed.org/science/2002033/heres-what-california-is-learning-from-solar-panels-built-ov...
329•Jtsummers•1d ago•643 comments

How did AMD Ryzen get 50% faster in two years?

https://lemire.me/blog/2026/09/18/how-did-amd-ryzen-get-50-faster-in-two-years/
454•ibobev•4d ago•185 comments

Microsoft killed FoxPro in 2007. Anyway, here's FoxPro revived

https://foxscript.org/
435•boredjohnny•21h ago•239 comments

SAML: A fractal of bad design

https://blog.trailofbits.com/2026/09/21/saml-a-fractal-of-bad-design/
321•aray07•23h ago•167 comments

'We hacked the FBI:' Hackers say they have data on all FBI employees

https://www.404media.co/we-hacked-the-fbi-hackers-say-they-have-data-on-all-fbi-employees/
767•spenvo•1d ago•555 comments

ReBarUEFI: Resizable BAR for almost any UEFI system

https://github.com/xCuri0/ReBarUEFI
218•nateb2022•2d ago•68 comments

Data-only attacks are easier than you think (2024)

https://www.usenix.org/publications/loginonline/data-only-attacks-are-easier-you-think
90•segfaultbuserr•14h ago•38 comments

WordPress: Unauthenticated path traversal leading to conditional RCE

https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-7hp8-65ch-5whp
227•vntok•1d ago•124 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.