frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Mag 7 starting to underperform [pdf]

https://www.apollo.com/content/dam/apolloaem/pdf/daily-spark/2026/jun/28/062826-Mag7.pdf
71•mooreds•1h ago•31 comments

RocketLab Acquires Iridium

https://investors.rocketlabcorp.com/news-releases/news-release-details/rocket-lab-acquire-iridium...
32•everfrustrated•1h ago•19 comments

What happens when you run a CUDA kernel?

https://fergusfinn.com/blog/what-happens-when-you-run-a-gpu-kernel/
46•mezark•2h ago•3 comments

Building Principia for Windows XP

https://voxelmanip.se/2026/06/28/building-principia-for-windows-xp/
47•LorenDB•1h ago•8 comments

Sandia National Labs SA3000 8085 CPU

https://www.cpushack.com/2026/06/03/sandia-national-labs-sa3000-8085-cpu/
97•rbanffy•4h ago•26 comments

Tidal AI Policy

https://tidal.com/ai-policy
146•hn8726•2h ago•166 comments

HackerRank open sourced its ATS. My resume scored 90/100. Oh wait 74. No – 88

https://danunparsed.com/p/hackerrank-open-source-ats
753•sambellll•13h ago•323 comments

Instagram is incorporating users' photos in ads for Meta Glasses

https://twitter.com/i/status/2071277885646868536
93•notRobot•1h ago•28 comments

GLM 5.2 beats Claude in our benchmarks

https://semgrep.dev/blog/2026/we-have-mythos-at-home-glm-52-beats-claude-in-our-cyber-benchmarks/
1011•jms703•21h ago•465 comments

A field guide to the modern front end for developers who hand-wrote HTML

https://davidpoblador.com/deep-dives/the-descent/
37•nirvanis•50m ago•23 comments

Rebuilding the Computer Room

https://alexwlchan.net/2026/computer-room/
42•ingve•3h ago•16 comments

I Am Behind on C# 14 Features, and I Can't Prove It but Does It Matter?

https://medium.com/c-sharp-programming/i-am-behind-on-csharp-14-features-and-i-cant-prove-it-but-...
6•sukhpinder0804•3d ago•3 comments

Halvar's Guide to Entrepreneurship

https://thomasdullien.github.io/guides/entrepreneurship/
94•nekitamo•3d ago•25 comments

Pollen tried to remove my article and Google is assisting with it

https://blog.pragmaticengineer.com/pollen-tried-to-remove-my-article-about-callum-negus-fancey-an...
589•taubek•5h ago•83 comments

Type-checked non-empty strings

https://exploring-better-ways.bellroy.com/haskell-koan-type-checked-non-empty-strings.html
30•surprisetalk•2d ago•10 comments

Samsung, SK Hynix, Micron Sued in US over Memory Price Fixing

https://en.sedaily.com/international/2026/06/29/samsung-sk-hynix-micron-sued-in-us-over-memory-pr...
100•donohoe•3h ago•34 comments

NUMA: Cores, memory, and the distance between them

https://edera.dev/stories/numa-part-1-cores-memory-and-the-distance-between-them
84•sys_call•4d ago•14 comments

How we made WINDOW JOIN parallel and vectorized

https://questdb.com/blog/window-join-parallel-vectorized/
13•tosh•3d ago•0 comments

Studio Canal Movies purchased on PlayStation Store removed without refund

https://www.playstation.com/en-gb/legal/psvideocontent/
61•kugelblitz•1h ago•20 comments

Dissecting Apple's Sparse Image Format (ASIF)

https://schamper.dev/dissecting-apples-sparse-image-format-asif/
125•supermatou•23h ago•18 comments

Age verification is just a precursor to automated attribution of speech

https://nonogra.ph/age-verification-is-just-a-precursor-to-attribution-of-speech-06-29-2026
772•arkhiver•11h ago•470 comments

Data breach exposes up to 14.2M email logins at six ISPs

https://www.bleepingcomputer.com/news/security/data-breach-exposes-up-to-142-million-email-logins...
17•Brajeshwar•46m ago•0 comments

Federating Clusters for Zero-Downtime Kubernetes

https://linkerd.io/2026/06/24/federating-clusters-for-zero-downtime-kubernetes/index.html
23•PagCatOli•4d ago•1 comments

Herdr: Agent multiplexer that lives in your terminal

https://github.com/ogulcancelik/herdr
111•mzehrer•10h ago•72 comments

Historical memory prices 1960-2026

https://dam.stanford.edu/memory-prices.html
366•vga1•20h ago•139 comments

We found a bug in the hyper HTTP library

https://blog.cloudflare.com/hyper-bug/
129•Pop_-•4d ago•60 comments

5k menus from the New York Public Library’s Buttolph Collection (1880-1920)

https://pudding.cool/2026/06/menu-story/
393•xbryanx•1d ago•104 comments

I used Claude Code to get a second opinion on my MRI

https://antoine.fi/mri-analysis-using-claude-code-opus
515•engmarketer•22h ago•644 comments

1.38 Millimeter Microcontroller

https://www.ti.com/product/MSPM0C1104
32•kristianpaul•2d ago•56 comments

Why did this journal retract two 1940s papers by Max Planck?

https://arstechnica.com/science/2026/06/why-did-this-journal-retract-two-1940s-papers-by-max-planck/
194•DR_MING•6h ago•22 comments
Open in hackernews

What happens when you run a CUDA kernel?

https://fergusfinn.com/blog/what-happens-when-you-run-a-gpu-kernel/
46•mezark•2h ago

Comments

fooblaster•1h ago
The hardware has some open documentation. You don't actually need to read the kernel source to find some of the method documentation or qmd formats. See https://github.com/NVIDIA/open-gpu-doc/blob/master/classes/c...
einpoklum•1h ago
First - nice writeup which goes into a lot of nooks and crannies.

That said, a lot of the user-space "voodoo" is gone if you don't go through CUDA's "runtime API". If you use the driver API, take your kernel source as a string and compile it with NVIDIA's run-time compiler, you'll have better visibility into a lot (not all) of what's going on. For the "raw" version of this, look at:

https://github.com/NVIDIA/cuda-samples/tree/master/cpp/0_Int...

but for a much more readable, and still fully transparent modern-C++ API version of the same, try this:

https://github.com/eyalroz/cuda-api-wrappers/blob/master/exa...

that's a sample program for my CUDA API wrappers (header-only) library.

mschuetz•23m ago
I like the driver API because it allows treating Cuda kernels like hot-reloadable shaders. It's fun to develop while being able to change the code at runtime.