frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Cypherpunk Library

https://www.cypherpunkbooks.com
64•yu3zhou4•1h ago•6 comments

OneDrive data now has an expiry date

https://ms365news.com/blogs/f/your-onedrive-data-now-has-an-expiry-data
47•taubek•2h ago•39 comments

Dopamine Fracking

https://igerman.cc/blog/dopamine-fracking/
321•igmn•7h ago•149 comments

1k Data Breaches Later, the Disclosure Lag Is Worse

https://www.troyhunt.com/1000-data-breaches-later-the-disclosure-lag-is-worse-than-ever/
153•882542F3884314B•7h ago•57 comments

APC–2 – A professional record cutter for producing original playback discs

https://teenage.engineering/products/apc-2
208•vthommeret•8h ago•109 comments

Building from zero after addiction, prison, and a felony

https://gavinray97.github.io/blog/building-from-zero-after-addiction-prison-felony
637•gavinray•15h ago•277 comments

The Smallest Brain You Can Build: A Perceptron in Python

https://ranpara.net/posts/perceptron-explained-from-scratch/
200•DevarshRanpara•9h ago•29 comments

Richard Scolyer Has Died

https://www.bbc.com/news/articles/c14yz5jg476o
67•nicwilson•6h ago•16 comments

A Family Project

https://bittersoutherner.com/feature/2022/a-family-project
5•surprisetalk•2d ago•0 comments

Playing with Vision Embeddings

https://prestonbjensen.com/posts/playing-with-vision-embeddings
56•prestoj•2d ago•5 comments

Do agents.md files help coding agents?

https://twitter.com/rasbt/status/2063649136323252397
37•smushback•5h ago•23 comments

DeepSeek V4 Pro beats GPT-5.5 Pro on precision

https://runtimewire.com/article/deepseek-v4-pro-beats-gpt-5-5-pro-on-precision
275•yogthos•8h ago•125 comments

Algorithmic Monocultures in Hiring

https://algorithmichiring.github.io/
98•drchiu•8h ago•41 comments

New drug 'functionally cures' many hepatitis B virus infections

https://www.science.org/content/article/new-drug-functionally-cures-many-hepatitis-b-virus-infect...
177•gmays•8h ago•29 comments

Giant Floating Victorian Drydock

https://mastermariners.org.au/stories-from-the-past/6481-the-world-s-largest-floating-dry-dock-wa...
24•dtj1123•1d ago•10 comments

Making peace with your unlived dreams (2023)

https://nik.art/making-peace-with-your-unlived-dreams/
230•herbertl•16h ago•135 comments

Tiny hackable CUDA language model implementation

https://github.com/markusheimerl/gpt
30•markusheimerl•2d ago•2 comments

The EU Open Source Strategy

https://digital-strategy.ec.europa.eu/en/policies/open-source-strategy
37•vrganj•2h ago•7 comments

Spherical Voronoi Diagram

https://www.jasondavies.com/maps/voronoi/
14•marysminefnuf•4d ago•6 comments

Show HN: I Derived a Pancake

https://www.absurdlyoptimized.com/recipes/pancakes/
239•bkazez•3d ago•92 comments

How much of Thermo Fisher's antibody data has been manipulated?

https://reeserichardson.blog/2026/05/28/how-much-of-thermo-fishers-antibody-data-has-been-manipul...
11•mhrmsn•3h ago•1 comments

A Matter Wi-Fi Light Bulb in Rust on the Raspberry Pi Pico 2 W

https://github.com/melastmohican/rust-rpico2-embassy-examples
118•melastmohican•10h ago•14 comments

Age verification tech could put children at greater risk, says think tank

https://www.computerweekly.com/news/366643835/Age-verification-tech-could-put-children-at-greater...
25•robtherobber•2h ago•3 comments

Show HN: Lathe – Use LLMs to learn a new domain, not skip past it

https://github.com/devenjarvis/lathe
322•devenjarvis•23h ago•55 comments

What is the purpose of the lost+found folder in Linux and Unix? (2014)

https://unix.stackexchange.com/questions/18154/what-is-the-purpose-of-the-lostfound-folder-in-lin...
196•tosh•3d ago•70 comments

How's Linear so fast? A technical breakdown

https://performance.dev/how-is-linear-so-fast-a-technical-breakdown
416•howToTestFE•15h ago•191 comments

The 29th International Obfuscated C Code Contest (IOCCC) 2025 Winners

https://www.ioccc.org/2025/
396•matt_d•1d ago•89 comments

A discovery about GCC's unidirectional rotation algorithm

https://devblogs.microsoft.com/oldnewthing/20260603-00/?p=112378
24•soheilpro•4d ago•10 comments

Trusted Computing Frequently Asked Questions (2003)

https://www.cl.cam.ac.uk/archive/rja14/tcpa-faq-1.0.html
12•userbinator•1d ago•0 comments

Man-Computer Symbiosis J. C. R. Licklider (1960)

https://groups.csail.mit.edu/medg/people/psz/Licklider.html
36•rballpug•3d ago•3 comments
Open in hackernews

Spherical Voronoi Diagram

https://www.jasondavies.com/maps/voronoi/
14•marysminefnuf•4d ago

Comments

wood_spirit•40m ago
Beautiful :)

The idea that springs to my mind is to do Delaunay and Voronoi using spherical geometry. I think the article uses flat Euclidean geometry but if we tweak the fifth axiom we could do spherical or hyperbolic?

orthoxerox•34m ago
There's an algorithm that does it. I wrote a hobby implementation ten years ago. Basically, it's a modification of the sweeping line algorithm that sweeps the sphere from pole to pole.

edit: Found the code. Looks like I instead ended up simply building a convex hull (which is the Delaunay triangulation) and deriving the Voronoi diagram from it.

srean•2m ago
For spherical geometry you should not need to do anything special, no ?

Compute the Voronoi tessellation as usual and then project the linear separators back to the sphere (by connecting points on it to centre and extending the ray to the spherical surface).

srean•14m ago
Curious about why you think he is using Euclidean.

From the looks of it the separators seem to be segments of great circles. That is what you would get as loci of angular bisectors.

Angular bisectors is what you would get when you use spherical geometry / arc length metric / Haversine metric.

You could still be right though. Euclidean would get you straight line bisectors, but when you project them back to the surface of the sphere, you get great circles again.

This connects with an important point (no pun intended):

People often use Haversine distance to find nearest neighbours on the globe. As long as you want to compute them modulo a hemisphere, this is unnecessary. Haversine distance and Euclidean restricted to the sphere are monotonic transforms of each other. Therefore the nearest point will be the same regardless of which one you used.

hermitcrab•27m ago
I remember seeing something similar to https://www.jasondavies.com/maps/voronoi/capitals/. But the areas were weighted by the populations of the capitals. You ended up with something quite close to real political maps IIRC.
srean•8m ago
The first thing I noticed was the spherical dodadecahedron and if you turn on Delaunay triangulation, then it's dual the icosahedron. The latter being my favourite polyhedron, although our relationship is entirely platonic.

It would be fun to do turtle graphics along geodesics on the sphere. If one adds Loxodromic paths to the Turtle, even better.

The geodesic turtle on the globe would be a good way to play with other platonic solids.