frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What happened to Omegle? rise and fall of internet's favorite stranger danger

https://mashable.com/article/what-happened-to-omegle
1•rolph•43s ago•0 comments

Tech bros: it's time to challenge Silicon Valley's saviour complex

https://www.theguardian.com/commentisfree/picture/2026/apr/25/tech-bros-its-time-to-challenge-sil...
1•robtherobber•1m ago•0 comments

There Will Be a Scientific Theory of Deep Learning

https://arxiv.org/abs/2604.21691
1•jamie-simon•5m ago•0 comments

Kubuntu Linux 26.04 LTS (Resolute Raccoon)

https://kubuntu.org/news/kubuntu-26-04-release-notes/
3•jrepinc•6m ago•1 comments

Kubernetes v1.36: User Namespaces in Kubernetes are finally GA

https://kubernetes.io/blog/2026/04/23/kubernetes-v1-36-userns-ga/
1•soheilpro•6m ago•0 comments

ComfyUI Raises $30M

https://blog.comfy.org/p/comfyui-raises-30m-to-scale-open
1•instagraham•6m ago•0 comments

Ask HN: How are you evaluating AI apps and CLI?

1•twen_ty•8m ago•0 comments

Acrylamide

https://en.wikipedia.org/wiki/Acrylamide
1•downboots•8m ago•1 comments

Slate – Self-hostable watchlist for movies and TV

https://github.com/gitshanks/slate
1•justabeardo•8m ago•0 comments

Cloudflare Email Service is a deliverability bet dressed as an agents launch

https://lord.technology/2026/04/20/cloudflare-email-service-is-a-deliverability-bet-dressed-as-an...
1•emschwartz•13m ago•0 comments

AI discovered 20 of 23 recent zero-days in OpenSSL

https://aisle.com/blog/aisle-discovers-20-openssl-zero-days-in-6-months
4•swesweswe•14m ago•0 comments

Show HN: Markant – A Dedicated Markdown Reader

https://markant.md/
1•lokimedes•16m ago•0 comments

Unraveling the Dream – Psychedelics, Awakening, and the Brain [video]

https://www.youtube.com/watch?v=r5KRnstXYUg
1•thedima•16m ago•1 comments

JetBlue used private data like internet history to set prices, per lawsuit

https://www.nbcnews.com/news/us-news/jetblue-allegedly-used-private-customer-data-internet-histor...
1•impish9208•18m ago•0 comments

CC-Canary: Detect early signs of regressions in Claude Code

https://github.com/delta-hq/cc-canary
2•tejpalv•18m ago•0 comments

Sam Altman's Next High-Wire Act: Getting OpenAI to Make More Money

https://www.nytimes.com/2026/04/24/technology/sam-altman-openai-money.html
1•cdrnsf•19m ago•0 comments

Switch for joint aging: injection could prevent knee replacements

https://sinapti.ca/post/en/stanford-finds-the-switch-for-joint-aging-an-injection-could-8ev44zdv
2•bsdz•20m ago•0 comments

Engineering Health Essentials

https://yusufaytas.com/engineering-health-essentials
3•gzaforme•21m ago•0 comments

Roboticist-Turned-Teacher Built a Life-Size Replica of Eniac

https://spectrum.ieee.org/roboticist-turned-teacher-eniac-replica
2•Brajeshwar•22m ago•0 comments

Ask HN: Cursor alternative, EU-based or privacy-focused?

1•BrunoBernardino•22m ago•0 comments

PEP 830 – Add timestamps to exceptions and tracebacks – peps.python.org

https://peps.python.org/pep-0830/
2•rbanffy•23m ago•0 comments

Microsoft OpenClaw

https://github.com/microsoft/openclaw
10•qainsights•23m ago•5 comments

Why English is my new favorite user interface

https://www.robot-future.com/preview/69e8284090457dba8223b433
1•robot-future•23m ago•0 comments

Show HN: Roids – Open Source Steroids for your Agents

https://github.com/Developing-Gamer/roids
1•DevelopingGamer•23m ago•0 comments

PEP 831 – Frame Pointers Everywhere: Enabling System-Level Observability

https://peps.python.org/pep-0831/
2•rbanffy•25m ago•0 comments

Den stora Älgvandringen – The great moose migration (live)

https://www.svtplay.se/video/jXv3A5G/den-stora-algvandringen/idag-00-00
1•donjoe•25m ago•0 comments

Anthropic releases Claude Opus 4.7

https://platform.claude.com/docs/en/release-notes/overview
3•arabicalories•27m ago•1 comments

Google blocks sitemaps served from github.io

https://github.com/orgs/community/discussions/149884
1•jurf•28m ago•0 comments

Trump's Justice Department is bringing back firing squads for federal executions

https://www.cnn.com/2026/04/24/politics/trump-justice-department-firing-squads-federal-executions
4•FireBeyond•29m ago•0 comments

Stoffel, the Honey Badger That Can Escape from Anywhere – BBC [video]

https://www.youtube.com/watch?v=c36UNSoJenI
1•gurjeet•30m ago•0 comments
Open in hackernews

Zig and GPUs

https://alichraghi.github.io/blog/zig-gpu/
57•Cloudef•1y ago

Comments

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