frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Beyond the CPU: Why Your Next Computer Needs an NPU

https://techlife.blog/posts/beyond-the-cpu-why-your-next-computer-needs-an-npu/
1•clarkmaxwell•2m ago•0 comments

How to Live Forever

https://internetguy.dev/posts/live-forever/
1•internetguy•2m ago•0 comments

Experiment That Predicted How AI Agents Would Cooperate

https://pub.towardsai.net/information-topology-in-multi-agent-systems-cb925c5b86d9
1•erenkaratas•3m ago•0 comments

Show HN: cryptographic receipts for AI code changes pip install titanate

https://github.com/Rehanrana11/titan-gate-public
1•rmasoodx22•8m ago•1 comments

Show HN: Beecon Infrastructure as Intent, open source IaC built for AI agents

https://beecon.sh
1•gtlpanda•9m ago•0 comments

Show HN: Make AI and automation pipelines fail-closed

https://github.com/OneInX/Manifest-InX-EBS
1•oneinx•13m ago•1 comments

Show HN: Scan0tron – AI screen capture that auto-fills forms ($49)

https://jrdconnect.com
1•jaydurangodev•18m ago•0 comments

PCB devboard the size of a USB-C plug

https://github.com/Dieu-de-l-elec/AngstromIO-devboard
1•zachlatta•22m ago•0 comments

Rethinking Syntax: Binding by Adjacency

https://github.com/manifold-systems/manifold/blob/master/docs/articles/binding_exprs.md
1•owlstuffing•23m ago•1 comments

Velxio, Arduino Emulator

https://velxio.dev/
1•dmonterocrespo•23m ago•1 comments

Fatbikes are wreaking havoc in Sydney's wealthy beach suburbs

https://www.bbc.com/news/articles/cy8l1d221evo
2•randycupertino•38m ago•1 comments

Titan Missile Museum Tour [video]

https://www.youtube.com/watch?v=okeYauThQAU
2•nodesocket•43m ago•0 comments

AI agent freed itself and started mining crypto

https://www.axios.com/2026/03/07/ai-agents-rome-model-cryptocurrency
2•badc0ffee•53m ago•0 comments

Good Vibes, Bad Vendors: AI Coding Works Now

https://werd.io/good-vibes-bad-vendors/
1•etothet•58m ago•0 comments

AI Execution Context Authorization Model

https://github.com/Madongming/context-capability-model/tree/main
2•elsove812•58m ago•2 comments

Show HN: Free browser MMO where you manage a band from garage to headliner

https://www.roadtoheadliner.com/
1•dusky_sk•1h ago•1 comments

Way-Shell: A GNOME-like shell for Wayland compositors

https://github.com/ldelossa/way-shell
1•radeeyate•1h ago•0 comments

Show HN: RotaGuide Spotlight – Markdown based UI guide system for web apps

https://github.com/EBPkobli/rotaguide-spotlight
1•furkankub•1h ago•0 comments

Animated Visualizer from Circles and Lines

https://claude.ai/public/artifacts/fbfeac55-4358-4e31-839c-f33a227bbc5e
1•water_badger•1h ago•1 comments

Bedrock Linux

https://bedrocklinux.org/
2•lemper•1h ago•0 comments

British Columbia to make daylight saving time permanent

https://www.npr.org/2026/03/07/nx-s1-5741076/british-columbia-daylight-saving-time
2•geox•1h ago•1 comments

Prison guards discussed cover-up of Epstein's death, inmate tells FBI

https://www.miamiherald.com/news/local/crime/article314966334.html
12•ParentiSoundSys•1h ago•0 comments

Patching minified Claude Code so it can hear webhooks

https://github.com/Connoropolous/claude-notifications-for-agents
2•connorturland•1h ago•0 comments

Show HN: Navtee – Golf course directory and navigation app

https://navtee.com/
1•metafarer•1h ago•0 comments

ReactScope

https://folio.stage.obvious.ai/obvious/reactscope
1•handfuloflight•1h ago•0 comments

Show HN: Qry – CLI web search that always outputs JSON, with swappable back ends

https://github.com/justEstif/qry
2•justEstif•1h ago•0 comments

Show HN: SafeAgent – exactly-once execution guard for AI agent side effects

3•Lions2026•1h ago•1 comments

Show HN: Open-source personal finance AI that runs locally on your laptop

https://nullbook.ai/
2•jfornear•1h ago•1 comments

Forcing Flash Attention onto a TPU and Learning the Hard Way

https://archerzhang.me/forcing-flash-attention-onto-a-tpu
4•azhng•1h ago•0 comments

Mechanical Movements Animated

https://507movements.com/
3•TigerUniversity•1h 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.