frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Migrating Etsy's database sharding to Vitess

https://www.etsy.com/codeascraft/migrating-etsyas-database-sharding-to-vitess
1•dubesar55•2m ago•0 comments

Apple's John Ternus Profile: The Likely Successor to Tim Cook as CEO

https://www.bloomberg.com/features/2026-apple-next-ceo/
1•Tomte•2m ago•0 comments

Trulycodes Provides Verified Coupon Codes for Confident Savings

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

Snowflake makes cuts as part of 'targeted adjustments' to the company's strategy

https://www.businessinsider.com/snowflake-layoffs-strategy-ai-growth-2026-3
1•taubek•6m ago•0 comments

Open-source server panel in Rust (57MB RAM, 371 endpoints, zero cost)

https://dockpanel.dev/
1•ovexro•7m ago•0 comments

Kimchi-derived probiotic found to promote excretion of intestinal nanoplastics

https://phys.org/news/2026-03-kimchi-derived-probiotic-excretion-intestinal.html
2•teleforce•13m ago•0 comments

Why repositories need semantic memory, not bigger context windows

https://krzysztofdudek.substack.com/p/code-has-logic-it-does-not-have-meaning
1•chrisdudek•15m ago•0 comments

Human Resources

https://suvamsh.com/blog/human-resources/
1•suvamsh•22m ago•1 comments

Show HN: Fixy – Real-time group chat with humans and AI agents (GPT, Claude,..)

https://fixy.ai/
1•frdfrd•23m ago•0 comments

Agents kept getting stuck searching for Solar icons; I built a CLI to solve this

https://www.npmjs.com/package/search-solar
1•_bittere•24m ago•1 comments

Ski lift demolished as glacier on Germany's highest mountain melts away

https://www.rte.ie/news/newslens/2026/0321/1564451-ski-lift-demolished-as-german-glacier-melts-away/
2•austinallegro•24m ago•0 comments

Introducing AI chunking to semchunk

https://isaacus.com/blog/introducing-ai-chunking-to-semchunk
2•ubutler•29m ago•0 comments

Show HN: I built a census for AI agents – first record is a robot from 1890

https://ghostshell.host
1•GhostShellJoule•37m ago•1 comments

Tell HN: YouTube - the "Jewel of the Internet" has faded

2•wewewedxfgdf•37m ago•0 comments

Changing the World

https://geohot.github.io//blog/jekyll/update/2026/03/23/changing-the-world.html
1•curtsmith•37m ago•0 comments

A web of sensors: How the US spots missiles and drones from Iran

https://theconversation.com/a-web-of-sensors-how-the-us-spots-missiles-and-drones-from-iran-278865
2•1659447091•38m ago•0 comments

Air Canada CRJ collides with fire fighting truck on landing in New York

https://www.flightradar24.com/blog/flight-tracking-news/major-incident/air-canada-crj-collides-wi...
3•mcbain•38m ago•0 comments

Show HN: Claudebox – Your Claude Subscription as Personal API

https://github.com/ArmanJR/claudebox
1•armanj•41m ago•0 comments

Show HN: Real-Time Robot Motion Planning in the Browser with WASM

https://zkingston.com/vamp-web/
1•zak_kingston•43m ago•0 comments

Art is not being replaced by AI

https://www.nicolasdeory.com/thoughts/ai-wont-replace-art
1•nicodeory•46m ago•0 comments

"We had to kill the gecko in order to save it"

https://www.theguardian.com/environment/2026/mar/22/i-discovered-three-new-geckos-in-cambodia-lim...
2•zabzonk•48m ago•1 comments

Joy – Trust Network for AI Agents (7k agents registered)

https://joy-connect.fly.dev
1•savvyllm•48m ago•0 comments

Show HN: Mamba SSM in Rust – training and inference with custom CUDA kernels

https://github.com/silvermpx/mamba-rs
1•silvermpx•53m ago•0 comments

How Is a Fish Like a Number?

https://derangedmathematician.substack.com/p/how-is-a-fish-like-a-number
1•nill0•55m ago•0 comments

Iceberg Causes Postgres Acquisitions?

https://www.scalingpostgres.com/episodes/409-iceberg-causes-postgres-acquisitions/
1•aamederen•55m ago•0 comments

Escher's Print Gallery, and the tour of complex analysis (3b1b) [video]

https://www.youtube.com/watch?v=ldxFjLJ3rVY
2•vismit2000•56m ago•0 comments

Just One More Prompt (Peter Steinberger)

https://steipete.me/posts/just-one-more-prompt
1•jxmorris12•57m ago•0 comments

FedEx has started delivering AI training to over 400k workers

https://www.cnbc.com/2026/03/21/fedex-jobs-ai-training.html
2•petethomas•1h ago•0 comments

The data wall is billions of years of evolution (2024)

https://dynomight.net/data-wall/
2•andsoitis•1h ago•0 comments

CECbot: A TV box botnet that grabs the remote and maps the house

https://github.com/deepfield/public-research/blob/main/cecbot/report.md
3•bashtoni•1h 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.