frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

UN votes to adopt new world map to reflect Africa's true size

https://www.bbc.com/news/articles/ce30vp55dnlo
1•thunderbong•10s ago•0 comments

Collectivist Anarchism

https://en.wikipedia.org/wiki/Collectivist_anarchism
1•Bluestein•20s ago•0 comments

A native macOS app for reviewing GitHub pull requests

https://github.com/alaminopu/difft
1•alaminopu•1m ago•0 comments

Who runs the labor market? Women accounted for 98% of U.S. job gains in August

https://finance.yahoo.com/economy/articles/runs-labor-market-women-accounted-142403497.html
1•bilsbie•1m ago•0 comments

Extropic Z1T

https://extropic.ai/writing/z1t/
1•handfuloflight•1m ago•0 comments

Responsive Windows for Workgroups 3.11

https://win31.gross.is/
1•endtwist•3m ago•0 comments

Floss Security

https://seirdy.one/posts/2022/02/02/floss-security/
1•Cider9986•9m ago•0 comments

Dwelling in the Fuchun Mountains

https://k9s.gr/ramblings/dwelling_in_the_fuchun_mountains.html
1•rafael859•13m ago•0 comments

Truckers – AI data centers as business booms

https://www.cnbc.com/2026/09/05/ai-data-centers-cost-economy.html
1•cramer4next•13m ago•0 comments

Clove: Agent Skills for Mac

https://www.kshv.me/clove
1•handfuloflight•14m ago•0 comments

Computer Science Achievement and Writing Skills Predict Vibe Coding Proficiency

https://arxiv.org/abs/2603.14133
1•ai_critic•17m ago•0 comments

Enhanced Marinara: Pomodoro Assistant

https://chromewebstore.google.com/detail/enhanced-marinara-pomodor/lndmnhfeakddkplpflindoclekcogomk
1•Ksenofanex•18m ago•1 comments

AI and the collapse of the intelligence-based hierarchy of merit

https://mattbruenig.com/2026/08/31/more-thoughts-on-ai/
1•rzk•21m ago•0 comments

"Shatnered" [video]

https://www.youtube.com/watch?v=6Mo3G3LqIeo
1•giardini•25m ago•0 comments

What If We Had Taxed the Internet?

https://thesaltroad.net/p/what-if-we-had-taxed-the-internet
2•Ariarule•26m ago•1 comments

Zopt: Low-ceremony command line parsing for Zig

https://codeberg.org/hgrsd/zopt
1•birdculture•28m ago•0 comments

Hikers rescued after using Google Gemini for planning

https://techcrunch.com/2026/09/05/hikers-rescued-after-using-google-gemini-for-planning/
1•sbulaev•29m ago•0 comments

Workforce behind AI spans 160M workers, many in the Global South

https://www.thecooldown.com/green-tech/global-south-data-workers-ai-labor-organization/
1•01-_-•33m ago•0 comments

Sense motion with the Wi-Fi using ESP32

https://github.com/francescopace/espectre/discussions/163
1•FloatArtifact•37m ago•0 comments

Show HN: Vibe code keeps running, even with the lid closed

https://touchmac.app/en/
1•Touchnow•44m ago•0 comments

You're paying for Claude's thinking and you're not getting it

https://gist.github.com/64-megabyte/bc218bd074fa56c26b7dce828adf21a2
2•zerotoken•1h ago•0 comments

Should coding agents have persistent understanding of a codebase?

https://github.com/thecolourfoundation/rune
1•malikfyua•1h ago•0 comments

Flight Over the Earth game (based on Google Maps)

https://flightoverearth.com/
1•yeellow•1h ago•0 comments

Luxuries as an Adult

https://argentumaspicio806903.substack.com/p/luxuries-as-an-adult
1•rickyyean•1h ago•0 comments

Halv used 51% fewer tokens per correct answer on SWE-rebench

https://halv.ai/blog/halv-swe-rebench-20-pairs/
2•handfuloflight•1h ago•0 comments

Is AI ruining my brain?

https://thoughtbot.com/blog/is-ai-ruining-my-brain
5•encyclopedism•1h ago•1 comments

Higher semaglutide dose associated with lower psych events ind. of weight loss

https://www.nature.com/articles/s44324-026-00131-3
1•jtc331•1h ago•0 comments

Blockchained

https://www.blockchainednovel.com/read.html
1•mck-•1h ago•0 comments

Spatiotemporal Composability and Cordis

https://spatiotemporal-composability.pages.dev/
1•srid•1h ago•0 comments

Good AI Slop

https://blog.bilus.dev/posts/good-ai-slop/
1•bilus•1h ago•3 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.