frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Stay in the Loop: How I Use Claude Code

https://jola.dev/posts/stay-in-the-loop
1•shintoist•28s ago•0 comments

Flock Flocked up: How a license plate camera misread unraveled one man's life

https://www.businessinsider.com/flock-safety-alpr-cameras-misreads-2026-3
1•text0404•59s ago•0 comments

Rcarmo/PhotosExport: Export All Your Data from Apple Photos

https://github.com/rcarmo/PhotosExport
1•rcarmo•1m ago•0 comments

Paying without Google: New consortium wants to remove custom ROM hurdles

https://www.heise.de/en/news/Paying-without-Google-New-consortium-wants-to-remove-custom-ROM-hurd...
1•derbOac•2m ago•0 comments

Show HN: autoautoresearch – Karpathy's autoresearch on steroids

https://github.com/ArmanJR/autoautoresearch
1•armanj•2m ago•0 comments

Block Cut 4k Jobs and Blamed AI. The Truth Is More Complicated

https://newsletter.chainofthought.show/p/block-cut-4000-jobs-and-blamed-ai
1•cliffclimber•3m ago•0 comments

LodeRunner2099

https://loderunner2099.exe.xyz/
1•indigodaddy•5m ago•1 comments

I am in an abusive relationship with the technology industry

https://whitep4nth3r.com/blog/i-am-in-an-abusive-relationship-with-the-technology-industry/
1•only_in_america•8m ago•0 comments

Billion-Parameter Theories

https://www.worldgov.org/complexity.html
2•seanlinehan•9m ago•0 comments

KeePassXC 2.7.12 Released

https://keepassxc.org/blog/2026-03-10-2.7.12-released/
1•varjolintu•9m ago•0 comments

Marathon Players Debate Gorgeous but Painful UI and Ammo Shortages

https://kotaku.com/marathon-ammo-pvp-ui-bungie-feedback-server-slam-2000674385
1•PaulHoule•10m ago•0 comments

ALGOL W

https://en.wikipedia.org/wiki/ALGOL_W
1•tosh•11m ago•0 comments

From one-shot to agentic diagnostic analysis

https://haulos.com/blog/agentic-diagnostics-analysis/
1•hardsnow•12m ago•0 comments

Patriot Copy

https://chromewebstore.google.com/detail/patriot-copy/kamombliggehkgokinomjcjboicemmio
1•very_good_man•13m ago•1 comments

Remote MCP Servers: Hosting, Authentication and Best Practices

https://www.kapa.ai/blog/remote-mcp-servers-hosting-authentication-best-practices
2•mooreds•13m ago•0 comments

Giving our AI agent 100k tools made it worse

https://getviktor.com/blog/what-breaks-when-your-agent-has-100000-tools
1•peteralbert•13m ago•1 comments

First Brands row hints at banks' shadow exposure

https://www.reuters.com/commentary/breakingviews/first-brands-row-hints-banks-shadow-exposure-202...
2•petethomas•14m ago•0 comments

3DIMLI – Sell Software and Video, Zero Commission, Direct Payments

https://www.3dimli.com
1•arpit077•14m ago•1 comments

Hugging Face Storage Buckets: Mutable, non-versioned object storage at $12/TB

https://huggingface.co/blog/storage-buckets
5•victormustar•14m ago•0 comments

Show HN: Server Automation in TypeScript

https://www.ignition.sh/
1•tibozaurus•15m ago•0 comments

The 'number station' sending mystery messages to Iran

https://www.ft.com/content/86c4a4ca-ca06-4fc8-90fe-4f46357b804f
5•g-mork•15m ago•0 comments

Show HN: I reproduced the CL1 DOOM demo in 132 parameters

https://www.mikeayles.com/blog/its-just-weights/
1•mikeayles•17m ago•0 comments

Day Week Job Board

https://fourdayweek.co.uk/
1•robtherobber•18m ago•0 comments

Auto-accept everything and nothing else

https://github.com/HalfEmptyDrum/press-one
3•Kai20211111•18m ago•1 comments

Windows 11 taskbar's new Internet Speed Test tool is a shortcut to Bing.com

https://www.windowslatest.com/2026/03/10/windows-11-taskbars-new-internet-speed-test-tool-is-a-sh...
3•akyuu•20m ago•2 comments

The Process of Movie Casting Has Changed Drastically

https://www.nytimes.com/2026/03/09/movies/oscars-casting-award-auditions-movies.html
4•ripe•20m ago•0 comments

New multimodal Gemini embeddings from Google (videos and PDFs supported)

https://haystack.deepset.ai/blog/multimodal-embeddings-gemini-haystack
1•kacperlukawski•24m ago•0 comments

Ten Thoughts on Government Data

https://www.statecraft.pub/p/ten-thoughts-on-government-data
2•casca•24m ago•0 comments

Show HN: MoveAlerts.ai – AI that distills stock news in real-time

https://www.movealerts.ai/
1•pyfreak182•24m ago•0 comments

SQLite Concurrency in Go: What We Learned Building a Desktop AI IDE

https://chatml.com/blog/sqlite-concurrency-in-go-desktop-ai-ide
1•mcastilho•25m ago•0 comments
Open in hackernews

Zig and GPUs

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

Comments

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