frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Video Encoding and Decoding with Vulkan Compute Shaders in FFmpeg

https://www.khronos.org/blog/video-encoding-and-decoding-with-vulkan-compute-shaders-in-ffmpeg
1•y1n0•1m ago•0 comments

Libgoc: A Go-style CSP concurrency runtime for C

https://github.com/divs1210/libgoc
1•divs1210•2m ago•1 comments

Avian Physics 0.6

https://joonaa.dev/blog/12/avian-0-6
1•y1n0•2m ago•0 comments

I scraped and organized 50k Shopify stores into a dataset

1•nazbasho•4m ago•1 comments

AI still doesn't work well, businesses are faking it, and a reckoning is coming

https://www.theregister.com/2026/03/17/ai_businesses_faking_it_reckoning_coming_codestrap/
2•samizdis•7m ago•0 comments

Show HN: Autonomous Prover Running > 1hr

https://perqed.com/minutiae/
1•bneb-dev•7m ago•0 comments

AI error jails innocent grandmother for months in Fargo fraud case

https://www.inforum.com/news/fargo/ai-error-jails-innocent-grandmother-for-months-in-fargo-case
2•YeGoblynQueenne•10m ago•0 comments

In Deep-Red Idaho, a Republican Rift over Schools and 'Parental Choice'

https://www.nytimes.com/2026/03/16/us/idaho-education-republican-rift.html
1•duxup•10m ago•1 comments

The psychedelic that distorts hearing

https://psychedelirium.substack.com/p/the-psychedelic-that-distorts-hearing
2•yenniejun111•13m ago•0 comments

OpenAI to cut back on side projects to focus on core business

https://www.reuters.com/business/openai-cut-back-side-projects-focus-core-business-wsj-reports-20...
1•dev_tty01•15m ago•0 comments

Show HN: An open-source safety net for home hemodialysis

https://safehemo.com/
1•qweliantanner•15m ago•0 comments

Synthetic Training Data for Autonomous Grasping of Lunar Regolith Bags

https://www.mdpi.com/2226-4310/13/2/204
1•PaulHoule•16m ago•0 comments

Executable Archaeology

https://arxiv.org/abs/2603.13514
1•abrax3141•17m ago•0 comments

Show HN: Platform-aware script runner for Node.js projects

https://github.com/carlos-menezes/target-run
1•carlos-menezes•20m ago•0 comments

Scientists discover genetics behind leaky brain blood vessels in Rett syndrome

https://news.mit.edu/2026/scientists-discover-genetics-leaky-brain-blood-vessels-rett-syndrome-0313
1•gmays•22m ago•0 comments

Support Vector Machine in JavaScript by Andrej Karpathy (2012)

https://cs.stanford.edu/~karpathy/svmjs/demo/
1•vismit2000•23m ago•0 comments

Using Quarto to Write a Book

https://kieranhealy.org/blog/archives/2026/03/09/using-quarto-to-write-a-book/
1•jprs•23m ago•0 comments

OpenUI – The Open Standard for Generative UI

https://www.openui.com/
1•reimertz•23m ago•0 comments

Metadeception: The Truth About Oz Pearlman [video]

https://www.youtube.com/watch?v=FnwcU-XDyJ4
1•nomilk•27m ago•0 comments

Show HN: Avalon - Synthetic FHIR R4 patient data as OMOP CDM 5.4 views

https://github.com/foxtrotcommunications/foxtrotcommunications-avalon
1•brady_bastian•27m ago•0 comments

Why Are Normal Distributions Normal?

https://www.journals.uchicago.edu/doi/10.1093/bjps/axs046
1•bediger4000•27m ago•0 comments

Show HN: Self-orchestrating engineering team for Claude Code

https://github.com/navox-labs/agents
1•nahrin•31m ago•0 comments

Show HN: Dilly Labs – structured vendor selection for banks and credit unions

https://www.dillylabs.com
1•reallykanishka•34m ago•0 comments

Do political social media ads influence the outcome of elections?

https://phys.org/news/2026-03-political-social-media-ads-outcome.html
1•pseudolus•35m ago•0 comments

What if California is the most regressive state in America?

https://maxmautner.com/2026/03/09/california-regressive.html
3•mslate•39m ago•0 comments

A Nix Flake Using Literate Programming with Org Mode

https://github.com/natsukium/dotfiles
1•rrvsh•40m ago•0 comments

Show HN: I turned my Claude Max subscription into a 24/7 AI company

https://github.com/Ramsbaby/claude-discord-bridge
1•ramsbaby•44m ago•0 comments

Show HN: CEL v0.2 Pro – cryptographic black box recorder for AI systems (Python)

https://github.com/GhurtSky-GR13/colchis-log
1•GhurtSky•45m ago•0 comments

Lightweight Linux flow data collector

https://github.com/stepbrobd/rfm
1•StepBroBD•45m ago•0 comments

SignalFarm – a web app for prompt-driven song mixing

https://signalfarm.io/
1•ronpastore•46m 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.