frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The newest Instagram “exploit” is the goofiest I've seen

https://www.0xsid.com/blog/meta-account-takeover-fiasco
1425•ssiddharth•10h ago•339 comments

macOS needs its grid back

https://blog.hopefullyuseful.com/blog/macos-needs-its-grid-back/
69•ranebo•1h ago•36 comments

Can the stockmarket swallow Anthropic, SpaceX and OpenAI?

https://www.economist.com/finance-and-economics/2026/06/01/can-the-stockmarket-swallow-anthropic-...
123•1vuio0pswjnm7•3h ago•267 comments

How is Groq raising more money?

https://www.zach.be/p/how-the-hell-is-groq-raising-more
31•hasheddan•2h ago•16 comments

OpenAI frontier models and Codex are now available on AWS

https://openai.com/index/openai-frontier-models-and-codex-are-now-available-on-aws/
164•typpo•5h ago•56 comments

Chipotlai Max

https://github.com/cyberpapiii/chipotlai-max
76•nigelgutzmann•4h ago•15 comments

U.S. Midterms Have a Cyber Problem, but It's Not at the Ballot Box

https://blog.checkpoint.com/exposure-management/the-2026-u-s-midterms-have-a-cyber-problem-but-it...
15•gnabgib•55m ago•8 comments

Debug Project

https://debug.com/
163•Eridanus2•6h ago•72 comments

Fooling around with encrypted reasoning blobs

https://blog.cryptographyengineering.com/2026/05/29/fooling-around-with-encrypted-reasoning-blobs/
13•supermatou•3d ago•1 comments

AI Agent Guidelines for CS336 at Stanford

https://github.com/stanford-cs336/assignment1-basics/blob/main/CLAUDE.md
340•prakashqwerty•10h ago•121 comments

Squillions: How Money Laundering Won

https://www.lrb.co.uk/the-paper/v48/n09/john-lanchester/squillions
26•rwmj•1d ago•9 comments

Crystal Nights (2008)

https://www.gregegan.net/MISC/CRYSTAL/Crystal.html
13•rorylawless•2h ago•2 comments

Should you normalize RGB values by 255 or 256?

https://30fps.net/pages/255-vs-256-division/
205•pplanu•9h ago•87 comments

CS336: Language Modeling from Scratch

https://cs336.stanford.edu/
380•kristianpaul•13h ago•43 comments

A new way to build chips: Sequentially stacking silicon to extend Moore's Law

https://matse.illinois.edu/news/85775
29•hhs•2d ago•6 comments

Microsoft builds MacBook Pro rival with NVIDIA-powered Surface Laptop Ultra

https://www.windowslatest.com/2026/06/01/microsoft-builds-its-ultimate-macbook-pro-rival-with-the...
168•jbk•15h ago•369 comments

What appear to be biochemical processes may be a natural feature of geology

https://www.quantamagazine.org/the-dirt-that-refused-to-die-20260601/
201•speckx•12h ago•66 comments

Alphabet announces $80B equity capital raise to expand AI infra and compute

https://abc.xyz/investor/news/news-details/2026/Alphabet-Announces-Proposed-80-Billion-Equity-Cap...
127•gregschlom•6h ago•119 comments

Nvidia RTX Spark

https://www.nvidia.com/en-us/products/rtx-spark/
349•shenli3514•21h ago•340 comments

Florida sues OpenAI and Sam Altman over AI risks

https://www.politico.com/news/2026/06/01/openai-hit-with-florida-lawsuit-00944215
188•cyunker•11h ago•163 comments

Ask HN: Who is hiring? (June 2026)

169•whoishiring•12h ago•240 comments

Anyone seen a CC- serial prefix on legacy networking hardware?

21•Throwaway_sys•2d ago•6 comments

Age verification for social media, the beginning of the end for a free internet?

https://mullvad.net/en/blog/age-verification-for-social-media-the-beginning-of-the-end-for-a-free...
124•StrLght•4h ago•63 comments

Book Dedications

https://walzr.com/dedications
11•walz•2h ago•1 comments

Stealing from Biologists to Compile Haskell Faster

https://www.iankduncan.com/engineering/2026-05-30-stealing-from-biologists-to-compile-haskell-fas...
99•mooreds•2d ago•4 comments

I made my phone slow on purpose

https://vinewallapp.com/notes/i-made-my-phone-slow-on-purpose/
172•gcampos•4d ago•161 comments

Launch HN: Expanse (YC P26) – Unlock Wasted GPU Capacity

70•ismaeel_bashir•14h ago•22 comments

Only 17% of all 64-bit Integers are products of two 32-bit integers

https://lemire.me/blog/2026/05/22/only-17-of-all-64-bit-integers-are-products-of-two-32-bit-integ...
208•sebg•4d ago•95 comments

The Frame Problem (2004)

https://plato.stanford.edu/entries/frame-problem/
17•rzk•3h ago•4 comments

Ask HN: Who wants to be hired? (June 2026)

101•whoishiring•12h ago•282 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.