frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Spaceships (Reverse Asteroid)

https://spaceships.treybastian.com/
1•zdw•57s ago•0 comments

Ukrainian drones strike Russian gas facility over 3k km away in Siberia

https://kyivindependent.com/new-record-set-ukrainian-drones-strike-russian-gas-facility-over-3-00...
1•emerongi•3m ago•0 comments

Paww – an all-in-one app for dogs and their people

https://heypaww.com
1•subramanya1997•4m ago•0 comments

Own a Word – every word has one owner, and someone can outbid you for it

https://ownaword-alpha.vercel.app
1•tdrbuilder•5m ago•0 comments

OpenAI might have stolen another major proof

https://twitter.com/ValerioCapraro/status/2097791836269977996
32•tamnd•25m ago•2 comments

It's not The Incentives–it's you

https://talyarkoni.org/blog/2018/10/02/no-its-not-the-incentives-its-you/
1•yurivish•34m ago•0 comments

Valheim 1.0 Has Arrived

https://www.valheimgame.com/news/valheim-1-0-has-arrived-/
1•MehrdadKhnzd•40m ago•0 comments

All grown-ups were once children… but only few of them remember it

https://mathstodon.xyz/@tao/117244102901892965
1•yurivish•40m ago•0 comments

Opensend: Self-hosted transactional email, newsletters, and campaigns with SES

https://github.com/R44VC0RP/opensend
1•handfuloflight•41m ago•0 comments

Show HN: Claude Project Downloader

https://chromewebstore.google.com/detail/claude-project-downloader/ghbdnpphggjonapjkehkmhpnmhcngbbg
1•qwikhost•46m ago•0 comments

Trump promises $5k dividend in convention speech, but only if Republicans win

https://www.npr.org/2026/09/09/nx-s1-5961045/republican-midterm-convention-dallas-trump-vance
11•KingOfMyRoom•50m ago•5 comments

The Network Always Beats the Castle

https://sundaylettersfromsam.substack.com/p/the-network-always-beats-the-castle
1•benwen•54m ago•1 comments

Anthropic Just Threatened to Kill Billions of People. This Is Not Okay

https://calnewport.com/anthropic-just-threatened-to-kill-billions-of-people-this-is-not-okay/
5•alexfortin•59m ago•2 comments

The AI policy window is open. We need to act

https://openai.com/index/ai-policy-window/
1•johntb86•1h ago•1 comments

Rebuilding an AI-made browser game with Astra 6

https://arcane-orb-workshop.pages.dev/
2•Spazztik•1h ago•0 comments

CLI for converting JSON logs to human-readable format

https://github.com/poonesnerfect/jlf
1•ankitg12•1h ago•0 comments

Sergey Brin is cooking up Google's AI destiny

https://www.businessinsider.com/sergey-brin-google-gemini-ai-microkitchen-2026-9
2•theanonymousone•1h ago•0 comments

Reverse engineering my e-scooter and rewriting the firmware in Rust

https://bensimms.moe/reverse-engineering-scooter/
3•vinhnx•1h ago•1 comments

Scammers demand ransoms from Instagram users over fake copyright claims

https://www.bbc.com/news/articles/cjw54ww73qjo
2•josephcsible•1h ago•0 comments

The "rnull" Rust block driver

https://lwn.net/Articles/1090378/
1•pykello•1h ago•0 comments

Switching Password Managers in 2026

https://rmondello.com/2026/09/07/switching-password-managers-2026/
1•vinhnx•1h ago•0 comments

A Decade of Rustls

https://rustls.dev/blog/2026-09-08-a-decade-of-rustls/
2•vinhnx•1h ago•0 comments

Garnet: A Next-Generation Cache-Store for Accelerating Applications and Services [pdf]

https://www.vldb.org/pvldb/vol19/p224-chandramouli.pdf
1•k_138z•1h ago•1 comments

Show HN: Oz – a Vim-style terminal editor written in Zig

https://github.com/niT-Tin/oz
3•niT-Tin•1h ago•0 comments

CUDA Rust: Two Tracks for Writing GPU Kernels

https://developer.nvidia.com/blog/introducing-cuda-rust-two-tracks-for-writing-gpu-kernels/
7•xiaoyu2006•1h ago•0 comments

NASA's New Experimental Jet Promises Supersonic Flight Without the Sonic Booms

https://nautil.us/nasas-new-experimental-jet-promises-supersonic-flight-without-the-sonic-booms-1...
2•dustfinger•1h ago•0 comments

Trump promises $5k payout to U.S. adults if Republicans win election

https://www.reuters.com/world/us/trump-promises-5000-payout-us-adults-if-republicans-win-election...
13•nateb2022•1h ago•10 comments

Fnmatch-ng: POSIX fnmatch in one Zig file, 20,794/20,794 vs. musl, zero heap

https://github.com/logicpl4gue/fnmatch-ng
1•logicpl4gue•1h ago•0 comments

The Story of VS Code [video]

https://www.youtube.com/watch?v=kHL3XzjpT5w
1•soheilpro•1h ago•0 comments

The Politics of Superintelligence (2025)

https://www.noemamag.com/the-politics-of-superintelligence/
2•the-mitr•1h ago•0 comments
Open in hackernews

Zig and GPUs

https://alichraghi.github.io/blog/zig-gpu/
57•Cloudef•1y ago

Comments

LegNeato•1y ago
See also https://github.com/Rust-GPU/rust-gpu and https://github.com/rust-gpu/rust-cuda
ladyanita22•1y ago
Surprisingly, it seems this project just supports Spir-V and PTX, but not DXIL or AMDGCN.

I say surprisingly, because I'd expect Rust support to be more mature than Zig's.

lostmsu•1y ago
Microsoft indicated they are switching to SPIR-V from DXIL: https://devblogs.microsoft.com/directx/directx-adopting-spir...
skywal_l•1y ago
I am a complete noob in GPU but is AMDGCN the older generation with the new one being RDNA? If you generate a binary for AMDGCN, will it run on the newest cards?

Also, I though that these GPU ISAs were "proprietary". I wonder how reliable the binary generation can be.

AliChraghi•1y ago
AMD ISAs are changing for almost every generation so LLVM[1] continues to keep the architecture name "amdgcn" and handle the variation based on the model flag (e.g., -mcpu=gfx1030 for RDNA2, -mcpu=gfx1100 for RDNA3).

> I though that these GPU ISAs were "proprietary"

PTX spec[2] is publicly available but the actual hardware assembly (SASS) is not. Although i believe Nsight allows you to view it.

1. https://llvm.org/docs/AMDGPUUsage.html#processors

2. https://docs.nvidia.com/cuda/parallel-thread-execution

imtringued•1y ago
If LLVM can target AMD GPUs what exactly prevents AMD and ROCm from supporting all the damn GPUs?

At this point I'm convinced that the real problem with AMD GPUs isn't necessarily the compilers (although they do produce mediocre code) or even the hardware itself, but some crappy C++ driver code that can't handle running graphics and compute at the same time. The datacenter GPUs never had to run graphics in the first place, so they are safe.

slavik81•1y ago
In my experience, the compiler, compute drivers, and HIP runtime work fine for all modern AMD GPUs. The only parts of the stack that don't run on all GPUs are the math and AI libraries. And that is mostly because AMD isn't building and testing those libraries for unsupported GPUs. The actual work required to enable functional support was straightforward enough that I ported them myself when packaging the libraries for Debian. Though, I had a lot of help on the testing.

See the Debian Trixie Supported GPU list: https://salsa.debian.org/rocm-team/community/team-project/-/...

SomaticPirate•1y ago
While I admire the work of hobbyists it still looks like C/C++ will be the default until a GPU vender makes the decision to support these libraries.

From my understanding, Vulkan and OpenGL are nice but the true performance lies in the specific toolkits (ie CUDA, Metal).

Wrapping the vendor provided frameworks is liable to break and that isn't tenable for someone who wants to do this on a professional basis.

pjmlp•1y ago
They also miss that on CUDA's case it is an ecosystem.

Actually it is C, C++, Fortran, OpenACC and OpenMP, PTX support for Java, Haskell, Julia, C#, alongside the libraries, IDE tooling and GPU graphical debugging.

Likewise Metal is plain C++14 plus extensions.

On the graphics side, HLSL dominates, following by GLSL and now slang. There are then MSL, PSSL and whatever NVN uses.

By the way, at GTC NVIDIA announced going all in with Python JIT compilers for CUDA, with feature parity with existing C++ tooling. There is now a new IR for doing array programming, Tile IR.

dismalaf•1y ago
I don't quite get this comment.

This is supposed to be used in place of CUDA, HIP, Metal, Vulkan, OpenGL, etc... It's targeting the hardware directly so doesn't need to be supported as such.

The site also seems to clearly state it's a work in progress. It's just an interesting blog post...

slowmovintarget•1y ago
The Zig compiler can compile C, though.