frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Don't trust large context windows

https://garrit.xyz/posts/2026-05-06-dont-trust-large-context-windows
51•computersuck•2h ago•35 comments

Phoenix LiveView 1.2 Released

https://phoenixframework.org/blog/phoenix-liveview-1-2-released
75•ksec•3h ago•12 comments

Honda Civics and the Evil Valet

https://juniperspring.org/posts/honda-evil-valet/
248•librick•7h ago•42 comments

Free SQL→ER diagram tool, runs in the browser, nothing uploaded

https://sqltoerdiagram.com/
79•robhati•4h ago•16 comments

GLM 5.2 Is Out

https://twitter.com/jietang/status/2065784751345287314
549•aloknnikhil•16h ago•292 comments

Consciousness likely not unique to earthlings, paper says

https://news.ucr.edu/articles/2026/06/10/consciousness-likely-not-unique-earthlings-paper-says
28•giuliomagnifico•3h ago•28 comments

Noise infusion banned from statistical products published by Census Bureau

https://desfontain.es/blog/banning-noise.html
814•nl•18h ago•508 comments

Tribblix: The retro Illumos distribution

http://tribblix.org/
30•naturalmovement•3h ago•7 comments

Every Frame Perfect

https://tonsky.me/blog/every-frame-perfect/
680•ravenical•20h ago•225 comments

Beagle: Git, URIs and all the dirty words

https://replicated.wiki/blog/uris.html
6•gritzko•2d ago•0 comments

Pac-Man, but you're the ghost

https://garrit.xyz/posts/2026-06-13-pac-man-but-you-re-the-ghost
77•mindracer•4h ago•36 comments

Python 3.14 garbage collection rigamarole

https://theconsensus.dev/p/2026/06/06/python-3-14-garbage-collection-rigamarole.html
49•eatonphil•1d ago•29 comments

Treating pancreatic tumours may have revealed cancer's master switch

https://economist.com/science-and-technology/2026/06/12/treating-pancreatic-tumours-may-have-reve...
353•andsoitis•18h ago•126 comments

Building a serial and VGA "everything console"

http://oldvcr.blogspot.com/2026/06/building-serial-and-vga-everything.html
25•classichasclass•5h ago•1 comments

FreeOberon – Open-Source, Cross-Platform, Free Pascal/Turbo Pascal-Like Language

https://github.com/kekcleader/FreeOberon
75•peter_d_sherman•2d ago•29 comments

Pyodide 314.0: Python packages can now publish WebAssembly wheels to PyPI

https://blog.pyodide.org/posts/314-release/
121•agriyakhetarpal•4d ago•27 comments

Weave: Merging based on language structure and not lines

https://ataraxy-labs.github.io/weave/
37•rohanat•5h ago•19 comments

LaserWriter seeds

https://inventingthefuture.ghost.io/laserwriter-seeds/
12•frizlab•3d ago•0 comments

Making Claude a Chemist

https://www.anthropic.com/research/making-claude-a-chemist
34•gmays•5h ago•22 comments

Codex for open source

https://openai.com/form/codex-for-oss/
224•EvgeniyZh•2d ago•87 comments

(Re//Verse 2026) Taxonomy and Deobfuscation of a Real World Binary Obfuscator [pdf]

https://github.com/AnalogCyberNuke/RE-Verse-2026-Slides/blob/main/Reverse26.pdf
16•not_a9•2d ago•1 comments

GameBoy Workboy

https://tcrf.net/Workboy
184•tosh•14h ago•65 comments

Amazon CEO's talks with U.S. officials triggered crackdown on Anthropic models

https://www.wsj.com/tech/ai/amazon-ceos-talks-with-u-s-officials-triggered-crackdown-on-anthropic...
669•ls612•15h ago•492 comments

A low-carbon computing platform from your retired phones

https://research.google/blog/a-low-carbon-computing-platform-from-your-retired-phones/
283•vikas-sharma•22h ago•152 comments

ReactOS (FOSS "Windows") achieves 3D-accelerated Half-Life on real hardware

https://www.phoronix.com/news/ReactOS-Running-Half-Life
208•jeditobe•9h ago•30 comments

Running DOS on Behringers DDX3216 with a DIY x86-Bios from Scratch

https://chrisdevblog.com/2026/06/08/running-dos-on-behringers-ddx3216-using-a-diy-x86-bios/
91•rasz•13h ago•22 comments

Software Architecture Guide (2019)

https://martinfowler.com/architecture/
53•laxmena•4h ago•19 comments

Appreciating Exif

https://brentfitzgerald.com/posts/appreciating-exif/
155•burnto•4d ago•33 comments

RTX 5080 and RTX 3090 Setup: 80 Tok/s on Qwen 3.6 27B Q8

https://imil.net/blog/posts/2026/rtx-5080-+-rtx-3090-setup-80+-tok-s-on-qwen-3.6-27b-q8/
241•iMil•22h ago•83 comments

Apt Encounters of the Third Kind

https://igor-blue.github.io/2021/03/24/apt1.html
24•ogurechny•6h ago•5 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.