frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The gauge broke: devs felt 20% faster with AI, measured 19% slower

https://intrepidkarthi.com/writing/the-gauge-broke/
30•intrepidkarthi•33m ago•11 comments

ZCode – Harness for GLM-5.2

https://zcode.z.ai/en
348•chvid•9h ago•279 comments

Kimi K2.7 Code is generally available in GitHub Copilot

https://github.blog/changelog/2026-07-01-kimi-k2-7-is-now-available-in-github-copilot/
51•unliftedq•2h ago•16 comments

Oomwoo, an open-source robot vacuum you build yourself

https://makerspet.com/blog/building-an-open-source-robot-vacuum-meet-oomwoo/
203•devicelimit•6h ago•40 comments

A new Android malware from Google

https://f-droid.org/2026/07/01/adv-malware.html
120•drewfax•4h ago•39 comments

Bring back crappy forums

https://tedium.co/2026/07/01/online-web-forums-retrospective/
185•pentagrama•4h ago•112 comments

What to learn to be a graphics programmer

https://blog.demofox.org/2026/07/01/what-to-learn-to-be-a-graphics-programmer/
310•atan2•13h ago•161 comments

CursorBench 3.1

https://cursor.com/evals
23•handfuloflight•1h ago•13 comments

Opening up 'Zero-Knowledge Proof' technology to promote privacy in age assurance

https://blog.google/innovation-and-ai/technology/safety-security/opening-up-zero-knowledge-proof-...
129•consumer451•8h ago•117 comments

FFmpeg 9.1's new AAC encoder

https://hydrogenaudio.org/index.php/topic,129691.0.html
352•ledoge•17h ago•107 comments

Ask HN: Who is hiring? (July 2026)

187•whoishiring•16h ago•197 comments

Senior SWE-Bench: open-source benchmark that assesses agents as senior engineers

https://senior-swe-bench.snorkel.ai/
64•matt_d•4h ago•51 comments

The Underhanded C Contest

https://underhanded-c.org/
81•ccabraldev•8h ago•10 comments

How do wombats poop cubes?

https://www.science.org/content/article/how-do-wombats-poop-cubes-scientists-get-bottom-mystery
99•bushwart•1d ago•43 comments

The Wisdom of Quinn the Eskimo (Apple Developer Technical Support Engineer)

https://github.com/macshome/The-Wisdom-of-Quinn
7•gregsadetsky•2d ago•3 comments

Qualcomm Linux 2.0

https://www.qualcomm.com/developer/blog/2026/06/qualcomm-linux-2-now-available
91•gilgamesh3•10h ago•36 comments

Learn Vim motions with an ice-cream van

https://thisismodest.com/vimscoops/
44•marcusmichaels•13h ago•7 comments

Show HN: Searchable directory of 22k+ products from worker-owned co-ops

https://www.workerowned.info/
325•IESAI_ski•10h ago•65 comments

Weave Robotics launches Isaac 1, a $7,999 home robot with Fall 2026 deliveries

https://www.weaverobotics.com/isaac-1
147•ryanmerket•13h ago•209 comments

For first time, a cell built from scratch grows and divides

https://www.quantamagazine.org/for-the-first-time-a-cell-built-from-scratch-grows-and-divides-202...
833•defrost•16h ago•274 comments

Internal Combustion Engine (2021)

https://ciechanow.ski/internal-combustion-engine/
310•StefanBatory•18h ago•92 comments

Monetization Gateway: Charge for any resource behind Cloudflare via x402

https://blog.cloudflare.com/monetization-gateway/
279•soheilpro•17h ago•193 comments

Why jet engines aren't made in China

https://aakash.substack.com/p/why-jet-engines-arent-made-in-china
119•paulpauper•1d ago•98 comments

The vibration of the pager has a sound all its own

https://www.notyouremergency.com/triage-intro
17•mooreds•3d ago•2 comments

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

122•whoishiring•16h ago•293 comments

Proliferate (YC S25) Is Hiring

https://www.ycombinator.com/companies/proliferate/jobs/mMHvKR9-founding-product-engineer
1•pablo24602•10h ago

Chip Off The Old Block

https://www.astralcodexten.com/p/chip-off-the-old-block
73•paulpauper•9h ago•7 comments

The <Usermedia> HTML Element

https://developer.chrome.com/blog/usermedia-html-element
66•twapi•7h ago•31 comments

The Apple Disk II Controller Card (2021)

https://www.bigmessowires.com/2021/11/12/the-amazing-disk-ii-controller-card/
74•stmw•2d ago•19 comments

Launch HN: Parsewise (YC P25) – Reason Across Documents with an API

51•gergelycsegzi•17h ago•50 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.