frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Now Hiring: Senior Open Source Maintainer

https://nesbitt.io/2026/08/28/now-hiring-senior-open-source-maintainer.html
2•rapnie•1m ago•0 comments

Global Trade and the United States Navy

https://acoup.blog/2026/08/28/collections-global-trade-and-united-states-navy/
1•Pwntheon•1m ago•0 comments

A simple "copy this code" button in JavaScript

https://shkspr.mobi/blog/2026/08/a-simple-copy-this-code-button-in-javascript/
1•Brajeshwar•1m ago•0 comments

AULA Factory Tour: How Mechanical Keyboards Are Made [video]

https://www.youtube.com/watch?v=UTonUNfe0WY
1•skibz•1m ago•0 comments

Backlash Against AI Data Centers Is Real, Organic, Widespread

https://www.yahoo.com/news/politics/articles/backlash-against-ai-data-centers-115222320.html
2•newsomix9xl•4m ago•0 comments

Agentic SQL for Free: Qwen3.8 27B and DuckDB

https://motherduck.com/blog/Agentic-SQL-for-Free-with-Qwen3.8-27B-and-DuckDB/
1•1egg0myegg0•6m ago•0 comments

Musk says Grok's political lean is 'a function of SF Bay Area political views'

https://tokenstead.ai/guides/musk-grok-politics-bay-area-views
1•cdnsteve•8m ago•0 comments

I'm teaching an introductory 12 week course on Quantum Oracle Engineering

https://shukla.io/quantum-oracle-engineering/
2•BinRoo•14m ago•0 comments

Show HN: Visual workspace to design and operate daily multi-agent workflows

https://github.com/ringlochid/oh-my-subagents
1•ringlochid•15m ago•0 comments

Sabine Hossenfelder on "Extraordinary claims require extraordinary evidence"

https://twitter.com/skdh/status/2093615046244884953
1•mellosouls•15m ago•0 comments

Build your web-based game with AI

https://quetab.com/games
1•firasabb•19m ago•0 comments

How Boris Uses Claude Code

https://howborisusesclaudecode.com
2•Fake4d•20m ago•0 comments

Google Showing Fewer PDF Files in Search

https://www.seroundtable.com/google-search-fewer-pdf-files-41946.html
1•rdmuser•20m ago•0 comments

Positorium: Database with features from RDBMS, graph, columnar, name-value DBs

https://github.com/roenbaeck/positorium
2•thunderbong•20m ago•0 comments

30% on AR-AGI-1 at $0.0007 per task

https://arxiv.org/abs/2608.09888
1•randomizedalgs•20m ago•0 comments

Intoxication Culture

https://theanarchistlibrary.org/library/flower-bomb-intoxication-culture
2•choutos•22m ago•0 comments

Alt text passes automated checks. That doesn't mean it's any good

https://github.blog/engineering/user-experience/your-alt-text-passes-automated-checks-that-doesnt...
2•torutofu•23m ago•0 comments

Show HN: Turn mineral collections into 3D virtual museums

1•dinarino•23m ago•0 comments

I Let Google's Personal Intelligence Access My Life–and It's a Help

https://www.wsj.com/tech/ai/google-personal-intelligence-dreambeans-gemini-review-81f12a16
1•doener•27m ago•0 comments

Ask AI buttons like social media links for webpages

https://llmcheck.app/ai-ask-buttons/
1•loudsilence•27m ago•0 comments

Yap: A Particular Kind of Slop

https://mckayla.blog/posts/yap.html
1•eric_h•27m ago•0 comments

StateUI

https://github.com/idexus/StateUI
1•frizlab•29m ago•0 comments

FOSDEM 2026 – Mainline kernel for Fairphones – 2026 update [video]

https://www.youtube.com/watch?v=UnvKm3mzasI
1•pizzaiolo•29m ago•0 comments

Godot Sandbox: The Answer is 42

https://libriscv.no/blog/godot-sandbox-fortytwo/
1•fwsgonzo•32m ago•0 comments

Rig – Agentic Workflows in Rust

https://github.com/0xplaygrounds/rig
3•monneyboi•34m ago•0 comments

Cancer is a Quantum System

https://www.cuimc.columbia.edu/news/cancer-quantum
1•alephnerd•35m ago•0 comments

Show HN: The impact that made the Moon, 262k particles in a browser tab

https://gaploid.github.io/cosmic-collisions/
1•gaploid•36m ago•0 comments

7th Circuit Rules AI-Generated CSAM Is Protected Speach

https://media.ca7.uscourts.gov/cgi-bin/OpinionsWeb/processWebInputExternal.pl?Submit=Display&Path...
2•piker•39m ago•0 comments

For better or worse, Yayoi Kusama's Infinity Rooms reshaped the world

https://www.cnn.com/2026/08/28/style/yayoi-kusama-infinity-mirrors-art-impact
2•reconnecting•39m ago•1 comments

Give Coding Agents Permission, Not Just Prompts

https://engineeringspec.org/blog/give-coding-agents-permission-not-just-prompts/
1•mak8•43m 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.