frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI dev platform that keeps project context across the whole codebase lifecycle

https://brunelly.com/
1•RihabAI•5m ago•0 comments

Using 'claude -p' for running Mr.Jassy - AWS butler agent

1•anoop_kumar•8m ago•0 comments

Wasmer: Fast, secure, lightweight containers based on WebAssembly

https://wasmer.io/
2•handfuloflight•11m ago•0 comments

BYD Denza Z steer-by-wire

https://carnewschina.com/2026/07/01/byd-denza-z-steer-by-wire-fudi-chassis/
2•Alien1Being•14m ago•0 comments

Google used its Android phone network's accelerometers as mini-seismometers

https://substack.com/@jklundblad/note/c-285567479
1•initramfs•15m ago•0 comments

From Open Source Software to Open Source Strategy

https://p3institute.substack.com/p/from-open-source-software-to-open
2•cletusigwe•17m ago•0 comments

The Free Market Lie: Why Switzerland Has 25 Gbit Internet and America Doesn't

https://stefan.schueller.net/posts/the-free-market-lie/
40•talonx•17m ago•5 comments

How to avoid AI in as many places as possible

https://www.fastcompany.com/91566861/how-to-avoid-ai-in-as-many-places-as-possible
1•1vuio0pswjnm7•23m ago•0 comments

Show HN: Bedtimeforkids let kids learn while entertain

https://bedtimeforkids.vercel.app
1•dutay05•26m ago•0 comments

Ua-tracer: what does a user agent fetch, follow and run

https://uatracer.com/
1•twapi•27m ago•0 comments

Every AI Visibility Tool Is Lying to You

https://canonry.ai/blog/ai-visibility-tools-are-lying
1•arberx•27m ago•0 comments

Google loses fight against record €4.1B EU antitrust fine

https://www.reuters.com/world/eu-top-court-dismisses-google-fight-against-record-41-billion-eu-an...
2•1vuio0pswjnm7•29m ago•0 comments

What Would Mark Twain Think of America at 250?

https://www.theatlantic.com/ideas/2026/07/mark-twain-america-anniversary-critique/687718/
1•paulpauper•35m ago•0 comments

Why Everyone Is Suddenly Talking About 'Universal Basic Capital'

https://www.theatlantic.com/economy/2026/07/universal-basic-capital-ai/687759/
3•paulpauper•36m ago•0 comments

Merlin: A computed tomography vision–language foundation model and dataset

https://www.nature.com/articles/s41586-026-10181-8
1•bryanrasmussen•36m ago•0 comments

Show HN: I built a declarative layout engine for SVG, Canvas, WebGL

https://github.com/carnworkstudios/boxwood
2•bonzai2carn•39m ago•0 comments

Artificial and Fake Eggs: Dance of Death

https://www.researchgate.net/publication/281149909_Artificial_and_Fake_Eggs_Dance_of_Death
1•ms7892•42m ago•0 comments

The Programming Wars: How Microsoft Crushed Borland

https://www.youtube.com/watch?v=AQiULz4Z4TQ
1•cable2600•42m ago•0 comments

14× faster embeddings: how we rebuilt the ONNX path in Manticore

https://manticoresearch.com/blog/onnx-embeddings-speedup/
2•snikolaev•44m ago•0 comments

DGX station and "frontier" models, my hunt for answers

https://www.atcyrus.com/stories/dgx-station-local-frontier-ai-memory
1•connorturland•45m ago•1 comments

Surge will do marketing for you

https://www.surgeos.app/
1•yernururu•46m ago•0 comments

How the Big Four's wheels fell off Down Under

https://www.ft.com/content/f0f852ef-637e-4be7-8eee-e3ad2b767cf4
1•petethomas•47m ago•0 comments

June heatwave may have killed around 20k people in Europe

https://www.newscientist.com/article/2532825-june-heatwave-may-have-killed-around-20000-people-in...
5•littlexsparkee•55m ago•1 comments

Show HN: Dabs spawns dumb agents in boxes for free

https://github.com/jjmerino/dabs
1•jjmerino•55m ago•0 comments

BitTorrent's disastrous, legendary, and controversial story

https://www.theverge.com/tech/959848/bittorrent-story-25-years-piracy
1•aarvin_roshin•56m ago•1 comments

In Defense of AI Mandates

https://charity.wtf/2026/07/02/in-defense-of-ai-mandates-xpost/
1•backlit4034•59m ago•0 comments

Show HN: Imagent – agentic image/video/speech generation

https://github.com/unliftedq/imagent
2•unliftedq•1h ago•0 comments

Spotify deletes streams of chart-topping song after suspicious Kalshi bets

https://www.ft.com/content/2e10851c-9f47-410d-b46e-2a617118b05a
2•thm•1h ago•0 comments

Qwicut – A Desktop App to Turn Any Selection into Intelligence

https://www.qwicut.com
1•yukidkwlbn•1h ago•0 comments

Reducing AI costs with smart pricing

1•millereffect•1h 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.