frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI agent runs amok in Fedora and elsewhere

https://lwn.net/SubscriberLink/1077035/c7e7c14fbd60fae9/
265•tanelpoder•5h ago•71 comments

Cybersecurity researchers aren't happy about the guardrails on Anthropic's Fable

https://techcrunch.com/2026/06/10/cybersecurity-researchers-arent-happy-about-the-guardrails-on-a...
343•speckx•12h ago•300 comments

πFS

https://github.com/philipl/pifs
632•helterskelter•10h ago•145 comments

Anthropic requires 30 day data retention for Fable and Mythos

https://support.claude.com/en/articles/15425996-data-retention-practices-for-mythos-class-models
306•lebovic•1d ago•141 comments

The Road to the WASM Component Model 1.0

https://bytecodealliance.org/articles/the-road-to-component-model-1-0
36•emschwartz•2d ago•11 comments

Sequoyah’s syllabary created a written language for the Cherokee

https://www.smithsonianmag.com/innovation/man-created-written-language-cherokee-did-efficiently-e...
135•grahambargeron•7h ago•86 comments

OpenAI mulls slashing prices as it competes with Anthropic for users

https://www.cnbc.com/2026/06/11/openai-mulls-slashing-prices-ahead-of-competition-from-anthropic-...
23•agentifysh•21m ago•9 comments

Vacuum-Form Signage

https://bethmathews.substack.com/p/the-history-behind-the-signs-lighting
45•benbreen•1d ago•5 comments

I'm Eric Ries, author of "The Lean Startup" and new book "Incorruptible" – AMA

594•eries•14h ago•451 comments

Klondike Solitaire game for curses in 5k of C

https://nanochess.org/klondike_in_c.html
52•nanochess•2d ago•4 comments

How JPL keeps the 13-year-old Curiosity rover doing science

https://spectrum.ieee.org/curiosity-rover-jpl-mars-science
206•pseudolus•12h ago•53 comments

CSS: Unavoidable Bad Parts

https://matklad.github.io/2026/06/04/css-unavoidable-bad-parts.html
35•surprisetalk•1d ago•4 comments

PgDog is funded and coming to a database near you

https://pgdog.dev/blog/our-funding-announcement
425•levkk•15h ago•209 comments

GeoLibre 1.0

https://geolibre.app/
204•jonbaer•11h ago•14 comments

Reverse engineering the Creative Katana soundbar to control it from Linux

https://blog.nns.ee/2026/02/20/katana-v2x-re/
6•theanonymousone•3d ago•0 comments

L'Affaire Siloxane

https://mceglowski.substack.com/p/laffaire-siloxane
188•idlewords•2d ago•29 comments

Show HN: Extend UI – open-source UI kit for modern document apps

https://www.extend.ai/ui
185•kbyatnal•13h ago•43 comments

What is it like to be a bat? (1974) [pdf]

https://www.sas.upenn.edu/~cavitch/pdf-library/Nagel_Bat.pdf
77•shadow28•9h ago•78 comments

Who's the smartest corvid?

https://thetyee.ca/Culture/2026/06/05/Whos-the-Smartest-Corvid/
88•NaOH•1d ago•78 comments

Raspberry Pi 5 – 16GB RAM

https://www.adafruit.com/product/6125?src=raspberrypi
213•akman•9h ago•226 comments

Building an HTML-first site doubled our users overnight

https://mohkohn.co.uk/writing/html-first/
1051•edent•16h ago•476 comments

Show HN: HelixDB – A graph database built on object storage

https://github.com/HelixDB/helix-db/tree/main
106•GeorgeCurtis•13h ago•33 comments

Deficient executive control in transformer attention

https://academic.oup.com/pnasnexus/article/5/6/pgag149/8698838
30•derbOac•6h ago•10 comments

Are insecure code completions in PyCharm a vulnerability?

https://sethmlarson.dev/are-insecure-code-completions-a-vulnerability
16•12_throw_away•4h ago•1 comments

World Capitals Voronoi

https://www.jasondavies.com/maps/voronoi/capitals/
57•vincnetas•2d ago•27 comments

Apache Burr: Build reliable AI agents and applications

https://burr.apache.org/
191•anhldbk•14h ago•95 comments

Unix GC Remastered

https://mohandacherir.github.io/Qdiv7/posts/unix_new_gc/
27•mananaysiempre•6h ago•2 comments

All 9,300 Japanese train station, animated by the year it opened (1872–2026)

https://jivx.com/eki
220•momentmaker•17h ago•74 comments

Claude Desktop spawns 1.8 GB Hyper-V VM on every launch, even for chat-only use

https://github.com/anthropics/claude-code/issues/29045
384•tonyrice•12h ago•264 comments

Notes on DeepSeek

165•vinhnx•15h ago•99 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.