frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Do You Need a Contract?

https://b2bs.substack.com/p/operator-note-do-i-really-need-a
1•oopsiremembered•17s ago•0 comments

Exposing the FBI's Human Experimentation Studies

https://www.racket.news/p/exclusive-exposing-the-fbis-human
1•t-3•1m ago•0 comments

The Internet Bug Bounty paused indefinitely

https://hackerone.com/ibb
1•pimterry•1m ago•0 comments

The OG Immersion Method

https://www.dreaming.com/blog-posts/the-og-immersion-method
1•Cider9986•1m ago•0 comments

Libinput Hit by Worrying Security Issues with Its Lua Plug-In System

https://www.phoronix.com/news/Libinput-Lua-Security-Issues
1•t-3•1m ago•0 comments

CSS subgrid is super good

https://dbushell.com/2026/04/02/css-subgrid-is-super-good/
1•speckx•2m ago•0 comments

Vtables Aren't Slow (Usually)

https://louis.co.nz/2026/01/24/vtable-overhead.html
1•hmpc•3m ago•0 comments

Gloamy: An open source Claude Cowork alternative

https://github.com/iBz-04/gloamy
1•Ibz04•5m ago•1 comments

Aragorn's Tax Policy and Other Weird Shibboleths

https://reactormag.com/aragorns-tax-policy-and-other-weird-shibboleths/
1•baud147258•5m ago•0 comments

Apple at 50: My journey to the Mac

https://anderegg.ca/2026/04/01/apple-at-50-my-journey-to-the-mac
1•Brajeshwar•5m ago•0 comments

Oil prices soar and shares drop after Trump threatens more Iran strikes

https://www.bbc.com/news/articles/ce8lzd4v7zdo
1•tartoran•6m ago•0 comments

Show HN: Topical.so - structural SEO audits for AI-generated blogs

1•adriaanb•6m ago•0 comments

A life insurance fraud ring built on fake restaurants

https://connordempsey.substack.com/p/how-to-commit-insurance-fraud
1•cdempsey44•7m ago•0 comments

The Self-Cancelling Subscription

https://predr.ag/blog/the-self-cancelling-subscription/
1•birdculture•9m ago•0 comments

Peaky Peek – Local-first debugger for AI agents

https://github.com/acailic/agent_debugger
1•ilkehimself•11m ago•0 comments

Andon (Manufacturing)

https://en.wikipedia.org/wiki/Andon_(manufacturing)
1•debo_•12m ago•0 comments

You can use AI every day and still not get better

https://www.kevinlondon.com/2026/03/12/ai-every-day-and-not-get-better/
2•Kaedon•13m ago•0 comments

Congressional scrutiny of Kalshi, Polymarket explodes

https://www.politico.com/news/2026/04/01/congress-kalshi-polymarket-regulation-00852370
1•1vuio0pswjnm7•13m ago•0 comments

Artemis computer running two instances of MS outlook; they can't figure out why

https://bsky.app/profile/nikigrayson.com/post/3miik2wzosk25
9•mooreds•13m ago•2 comments

As arms agreements fray, China expands its nuclear weapons infra

https://www.cnn.com/2026/04/01/china/investigates-china-secretly-expanding-nuclear-weapons-infras...
1•cwwc•14m ago•0 comments

WebKit Features for Safari 26.4

https://webkit.org/blog/17862/webkit-features-for-safari-26-4/
2•ksec•15m ago•1 comments

Artemis II will use laser beams to live-stream 4K moon footage at 260 Mbps

https://www.tomshardware.com/networking/artemis-ii-will-use-laser-beams-to-live-stream-4k-moon-fo...
4•speckx•17m ago•0 comments

In a thunderous launch, Artemis II astronauts leave Earth. Here's what's next

https://text.npr.org/nx-s1-5770599
1•mooreds•18m ago•0 comments

Delve allegedly forked an open-source tool and sold it as its own

https://techcrunch.com/2026/04/01/the-reputation-of-troubled-yc-startup-delve-has-gotten-even-worse/
5•nickvec•19m ago•0 comments

There Is No Standard EM Role

https://leadership.garden/there-is-no-standard-em-role/
2•speckx•20m ago•0 comments

Best Enterprise Claude Code Gateway

https://www.npmjs.com/package/@maximhq/bifrost
1•aanthonymax•23m ago•0 comments

Node.js can host a new language. Interpreter is the easiest thing

https://github.com/dominexmacedon-dev/starlight-cli-script
1•dominexmacedon•23m ago•0 comments

Startup funding shatters all records in Q1

https://techcrunch.com/2026/04/01/startup-funding-shatters-all-records-in-q1/
1•Brajeshwar•24m ago•1 comments

Japanese X is now America's favorite corner of the internet

https://www.japantimes.co.jp/commentary/2026/04/01/japan/japanese-x-now-americas-favorite/
2•mikhael•25m ago•0 comments

Rare Apple Prototypes for iPod, iPhone, Watch [video]

https://www.youtube.com/watch?v=74qPQt_5DdM
1•dzonga•25m ago•0 comments
Open in hackernews

Zig and GPUs

https://alichraghi.github.io/blog/zig-gpu/
57•Cloudef•11mo ago

Comments

LegNeato•11mo ago
See also https://github.com/Rust-GPU/rust-gpu and https://github.com/rust-gpu/rust-cuda
ladyanita22•11mo 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•11mo ago
Microsoft indicated they are switching to SPIR-V from DXIL: https://devblogs.microsoft.com/directx/directx-adopting-spir...
skywal_l•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo ago
The Zig compiler can compile C, though.