frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Microsoft's open source tools were hacked to steal passwords of AI developers

https://techcrunch.com/2026/06/08/microsofts-open-source-tools-were-hacked-to-steal-passwords-of-...
261•raffael_de•4h ago•102 comments

GentleOS – Classic operating system with a lovely retro GUI

https://github.com/luke8086/gentleos32
131•tekkertje•2h ago•29 comments

Making Graphics Like it's 1993

https://staniks.github.io/articles/catlantean-3d-blog-1/
55•sklopec•1h ago•9 comments

OpenCV 5 Is Here: The Biggest Leap in Years for Computer Vision

https://opencv.org/opencv-5/
318•ternaus•3d ago•50 comments

Forever Young: how one molecule can lock plants in a youthful state (2025)

https://omnia.sas.upenn.edu/story/biologist-scott-poethig-plants-never-age
57•bryanrasmussen•4h ago•26 comments

Apple reveals new AI architecture built around Google Gemini models

https://www.macrumors.com/2026/06/08/apple-reveals-new-ai-architecture/
628•unclefuzzy•17h ago•476 comments

Emerge Career (YC S22) Is Hiring a Founding Growth Marketer

https://www.ycombinator.com/companies/emerge-career/jobs/v0S1AEG-founding-growth-marketer
1•gabesaruhashi•25m ago

Thi.ng – open-source building blocks for computational design and art

https://thi.ng
69•nmstoker•1d ago•13 comments

Siri AI

https://www.apple.com/apple-intelligence/
608•0xedb•18h ago•582 comments

Eagle Computer: The rise and fall of an early PC clone

https://dfarq.homeip.net/eagle-computer-the-rise-and-fall-of-an-early-pc-clone/
17•giuliomagnifico•3h ago•2 comments

xAI is looking more like a datacentre REIT than a frontier lab

https://martinalderson.com/posts/xais-new-rental-business/
590•martinald•21h ago•460 comments

Show HN: Performative-UI – A react component library of design tropes

https://vorpus.github.io/performativeUI/
1025•lizhang•22h ago•187 comments

Softmax: Why neural networks need non-linearity? life isn't straight-line simple

https://blog.sparsh.dev/softmax-activation-function/
4•sparshrestha•1d ago•1 comments

An introduction to functional analysis for science and engineering

https://arxiv.org/abs/1904.02539
17•Anon84•1d ago•3 comments

Old'aVista – The most powerful guide to the old Internet

https://oldavista.com/
124•abnercoimbre•20h ago•28 comments

Porting the ThinkPad X61 to Coreboot

https://blog.aheymans.xyz/post/thinkpad_x61/
94•walterbell•8h ago•38 comments

EU-banned pesticides found in rice, tea and spices

https://www.foodwatch.org/en/eu-banned-pesticides-found-in-rice-tea-and-spices
444•john-titor•20h ago•223 comments

MiMo-v2.5-Pro-UltraSpeed: 1T model with 1000 tokens per second

https://mimo.xiaomi.com/blog/mimo-tilert-1000tps
587•gainsurier•20h ago•431 comments

H2JVM – A Haskell Library for Writing JVM Bytecode

https://discourse.haskell.org/t/h2jvm-a-haskell-library-for-writing-jvm-bytecode/14182
19•rowbin•2d ago•2 comments

Apple Core AI Framework

https://developer.apple.com/documentation/coreai/
316•hmokiguess•17h ago•83 comments

Looking Forward to Postgres 19: Query Hints

https://www.pgedge.com/blog/looking-forward-to-postgres-19-query-hints
180•jjgreen•3d ago•29 comments

Show HN: Gitdot – A better GitHub. Open-source, written in Rust

https://gitdot.io/
278•baepaul•19h ago•255 comments

Facebook is paying people overseas promoting Alberta separatism

https://www.cbc.ca/news/canada/facebook-overseas-alberta-separtism-9.7223966
213•vrganj•6h ago•102 comments

Ask HN: What are tools you have made for yourself since the advent of AI?

341•aryamaan•18h ago•554 comments

FrontierCode

https://cognition.ai/blog/frontier-code
216•streamer45•15h ago•38 comments

Ask HN: Why hasn't there been a real competitor to Ticketmaster yet?

192•mdni007•18h ago•169 comments

Passing DBs through continuations

https://remy.wang/blog/cps.html
62•remywang•2d ago•9 comments

Why are cells small?

https://burrito.bio/essays/what-limits-a-cells-size
156•mailyk•17h ago•69 comments

Surveillance is not safety: A statement on the UK's latest threat to privacy [pdf]

https://signal.org/blog/pdfs/2026-06-08-uk-surveillance-is-not-safety.pdf
612•g0xA52A2A•16h ago•266 comments

AI is slowing down

https://www.wheresyoured.at/ai-is-slowing-down/
587•crescit_eundo•20h ago•632 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.