frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Among European Companies That Use a CDN, Nearly 9 in 10 Use Cloudflare

https://ciphercue.com/blog/european-cdn-concentration-cloudflare-nine-in-ten
180•adulion•3h ago•157 comments

Antiquated HTML Snippets and Artefacts

https://vale.rocks/posts/html-relics
61•patadune•2h ago•10 comments

Why getting your hands dirty is good for you

https://www.bbc.com/future/article/20260904-how-getting-your-hands-dirty-boosts-your-health-withi...
61•HatchedLake721•2h ago•38 comments

I've factored the RSA keys of a Certificate Authority from the 90s

https://mcpherrin.ca/2026/09/07/rsa.html
367•ahlCVA•10h ago•61 comments

We built our house for LAN parties

https://lanparty.house/
199•fittingopposite•2d ago•106 comments

There's a new "Google Jail" for independent wikis

https://weirdgloop.org/blog/google-jail
226•pizzaiolo•10h ago•77 comments

Mistral raises €3B

https://mistral.ai/news/mistral-makes-sovereign-open-weight-ai-to-frontier/
553•kuberwastaken•6h ago•388 comments

TALA Is Open-Source

https://d2lang.com/blog/tala-is-open-source/
246•alixanderwang•12h ago•17 comments

How well do agents use test/verification techniques?

https://danluu.com/agentic-testing/
106•vinhnx•9h ago•37 comments

Robot writes in languages it has never seen before (2019)

https://www.wired.com/story/robot-writing/
9•euanming•2d ago•2 comments

End-to-end infrastructure for training and inferencing open weight models

https://docs.appliedcompute.com
16•Bluestein•3d ago•0 comments

Arm Mali G2-Ultra NX GPU: desktop-class mobile gameplay with AI-native graphics

https://newsroom.arm.com/blog/arm-mali-g2-ultra-nx-ai-native-mobile-graphics
52•Re-Tails•7h ago•37 comments

Multi-Agents LLM Financial Trading Framework

https://github.com/TauricResearch/TradingAgents
67•fittingopposite•6h ago•46 comments

Watch Los Angeles get built, one building at a time (1880–2026)

https://lax-skyline.parcelscope.net/
303•rustywasm•17h ago•151 comments

Leaving VMware just got harder after Broadcom pulled VDDK downloads

https://www.virtualizationhowto.com/2026/09/leaving-vmware-just-got-harder-after-broadcom-pulled-...
211•josephcsible•15h ago•104 comments

Jellyfin 12.0

https://jellyfin.org/posts/jellyfin-release-12.0/
423•0xC0ncord•10h ago•181 comments

WeatherNext 3

https://deepmind.google/science/weathernext/
347•matthieu_bl•4d ago•86 comments

Scientists observe Einstein's gravity in the quantum world

https://www.ox.ac.uk/news/2026-08-28-scientists-observe-einsteins-gravity-in-the-quantum-world
234•mudil•3d ago•69 comments

The VMs Powering Mobile Agents (Instinct, Claude Code)

https://rohanadwankar.github.io/posts/platforms.html
39•RohanAdwankar•7h ago•8 comments

Picolibrary: A Small Press

https://novalis.org/blog/2026-08-31-picolibrary-a-very-small-press.html
3•luu•3d ago•0 comments

Understanding Computer Memory Architecture and SSD Internals

https://codingpirate.com/understanding-computer-memory-architecture-ac9320110787
50•Deeptiman•1d ago•4 comments

John Margolies' photographs of roadside America

https://publicdomainreview.org/collection/john-margolies-photographs-of-roadside-america/
90•duck•4d ago•25 comments

Trusting-Trust Attack against an Entire Linux Distribution

https://arxiv.org/abs/2607.24888
218•signa11•3d ago•47 comments

My Feed, My Way

https://www.pm.gov.au/media/my-feed-my-way
135•dotcoma•6h ago•112 comments

Extinct Tasmanian tiger's 'snap' unlike any living mammal's bite

https://www.cnn.com/2026/09/02/science/tasmanian-tiger-skull-bite-force
34•cisc•4d ago•7 comments

Emacs Bedrock 2.0

https://lambdaland.org/posts/2026-09-06-bedrock-v2/
133•ashton314•15h ago•29 comments

We have a year to fix security everywhere

https://jyn.dev/a-year-to-fix-security/
261•saikatsg•7h ago•249 comments

Icy Moons Are Ocean Worlds

https://mceglowski.substack.com/p/icy-moons-are-ocean-worlds
191•worldvoyageur•1d ago•30 comments

I tested 10 model/harness combinations on the same Three.js task

https://alvins82.github.io/hangar-harness-model-tests/
93•alvins82•8h ago•53 comments

Show HN: Jigsaw Haiku

https://jigsawhaiku.com/
102•windowshopping•3d ago•29 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.