frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Statement from Dario Amodei on our discussions with the Department of War

https://www.anthropic.com/news/statement-department-of-war
1164•qwertox•5h ago•643 comments

Google Workers Seek 'Red Lines' on Military A.I., Echoing Anthropic

https://www.nytimes.com/2026/02/26/technology/google-deepmind-letter-pentagon.html
50•mikece•48m ago•15 comments

Layoffs at Block

https://twitter.com/jack/status/2027129697092731343
546•mlex•6h ago•572 comments

What Claude Code Chooses

https://amplifying.ai/research/claude-code-picks
276•tin7in•9h ago•116 comments

AirSnitch: Demystifying and breaking client isolation in Wi-Fi networks [pdf]

https://www.ndss-symposium.org/wp-content/uploads/2026-f1282-paper.pdf
332•DamnInteresting•12h ago•159 comments

Will vibe coding end like the maker movement?

https://read.technically.dev/p/vibe-coding-and-the-maker-movement
339•itunpredictable•11h ago•328 comments

Launch HN: Cardboard (YC W26) – Agentic video editor

https://www.usecardboard.com/
99•sxmawl•9h ago•51 comments

What does " 2>&1 " mean?

https://stackoverflow.com/questions/818255/what-does-21-mean
168•alexmolas•7h ago•104 comments

Hydroph0bia – fixed SecureBoot bypass for UEFI firmware from Insyde H2O (2025)

https://coderush.me/hydroph0bia-part3/
42•transpute•5h ago•1 comments

Smartphone market forecast to decline this year due to memory shortage

https://www.idc.com/resource-center/press-releases/wwsmartphoneforecast4q25/
185•littlexsparkee•5h ago•187 comments

LiteLLM (YC W23): Founding Reliability Engineer – $200K-$270K and 0.5-1.0% equity

https://www.ycombinator.com/companies/litellm/jobs/unlCynJ-founding-reliability-performance-engineer
1•ij23•2h ago

An Introduction to the Codex Seraphinianus, the Strangest Book Ever Published

https://www.openculture.com/2026/02/an-introduction-to-the-codex-seraphinianus.html
36•vinhnx•3d ago•9 comments

I baked a pie every day for a year and it changed my life

https://www.theguardian.com/lifeandstyle/2026/feb/22/a-new-start-after-60-i-baked-a-pie-every-day...
235•NaOH•3d ago•160 comments

Palm OS User Interface Guidelines (2003) [pdf]

https://cs.uml.edu/~fredm/courses/91.308-spr05/files/palmdocs/uiguidelines.pdf
168•spiffytech•10h ago•79 comments

Museum of Plugs and Sockets

https://plugsocketmuseum.nl/index.html
86•ohjeez•3d ago•32 comments

OsmAnd's Faster Offline Navigation (2025)

https://osmand.net/blog/fast-routing/
122•todsacerdoti•9h ago•36 comments

Understanding the Go Runtime: The Memory Allocator

https://internals-for-interns.com/posts/go-memory-allocator/
38•valyala•3d ago•7 comments

BuildKit: Docker's Hidden Gem That Can Build Almost Anything

https://tuananh.net/2026/02/25/buildkit-docker-hidden-gem/
154•jasonpeacock•13h ago•52 comments

Cartographic Symbologies: The Art and Design of Expression in Historic Maps

https://exhibits.stanford.edu/cartosym/browse
10•starkparker•3d ago•0 comments

Show HN: Hacker Smacker – Spot great (and terrible) HN commenters at a glance

https://hackersmacker.org
97•conesus•2d ago•100 comments

Lidar waveforms are worth 40x128x33 words

https://openaccess.thecvf.com/content/ICCV2025/html/Scheuble_Lidar_Waveforms_are_Worth_40x128x33_...
39•teleforce•3d ago•14 comments

Hacking Tauri for Designer

https://yujonglee.com/blog/hacking-tauri-for-designer/
17•yujonglee•4d ago•1 comments

Show HN: Linex – A daily challenge: placing pieces on a board that fights back

https://www.playlinex.com/
55•Humanista75•2d ago•19 comments

Show HN: Deff – Side-by-side Git diff review in your terminal

https://github.com/flamestro/deff
82•flamestro•10h ago•52 comments

Nano Banana 2: Google's latest AI image generation model

https://blog.google/innovation-and-ai/technology/ai/nano-banana-2/
507•davidbarker•11h ago•489 comments

The Wolfram S Combinator Challenge

https://www.combinatorprize.org/
80•paraschopra•3d ago•22 comments

This time is different

https://shkspr.mobi/blog/2026/02/this-time-is-different/
137•speckx•14h ago•219 comments

Steering interpretable language models with concept algebra

https://www.guidelabs.ai/post/steerling-steering-8b/
63•luulinh90s•1d ago•4 comments

Interval Research Corporation: a 1990s PARC without a Xerox (2022)

https://instadeq.com/blog/posts/interval-research-corporation-a-1990s-parc-without-a-xerox/
5•surprisetalk•3d ago•1 comments

A Nationwide Book Ban Bill Has Been Introduced in the House of Representatives

https://bookriot.com/hr7661-book-ban-legislation/
6•LostMyLogin•22m ago•0 comments
Open in hackernews

Right-Truncatable Prime Counter

https://github.com/EbodShojaei/Right-Truncatable-Primes
9•rainmans•9mo ago

Comments

throwawaymaths•9mo 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•9mo ago
i dont think smaller radixes make the problem more interesting. the problem is interesting because base 10 has a large branching factor
throwawaymaths•9mo 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•9mo ago
There's a Project Euler problem for finding truncatable prime numbers, from both left and right: https://projecteuler.net/problem=37
thechao•9mo 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.