frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Amazon's Zoox wins first US approval for paid robotaxis with no human controls

https://www.reuters.com/world/amazons-zoox-wins-first-us-approval-paid-robotaxis-with-no-human-co...
1•mortenjorck•29s ago•0 comments

Show HN: A self-hostable, distributed, S3-compatible object store on the BEAM

https://github.com/wizenink/aethers3
1•wizenink•47s ago•0 comments

Dogfooding at scale: migrating cdnjs to Cloudflare's Developer Platform

https://blog.cloudflare.com/cdnjs-dev-platform-migration/
1•MattIPv4•1m ago•0 comments

BSD Make extravaganza: Mandelbrot Set In bmake

https://github.com/b-aaz/bmake-extravaganza/tree/master
1•signa11•1m ago•0 comments

I finally did it, I forked WordPress

https://getdmpress.com/
1•ghere•1m ago•0 comments

Czechia, Iceland and Spain among Europe's top trending destinations for 2026

https://www.euronews.com/travel/2026/07/29/czechia-iceland-and-spain-among-europes-top-trending-d...
1•Markoff•2m ago•0 comments

What will more intelligence actually do for us?

https://www.noahpinion.blog/p/what-will-more-intelligence-actually
1•bookofjoe•2m ago•0 comments

Pushing the limits of RISC-V emulation

https://shuklaayu.sh/blog/riscv-recompiler
1•shuklaayush•2m ago•1 comments

Web developer setup 2026: Zed

https://www.scopecreep.co.uk/ultimate-web-developer-setup-2026-zed/
1•helloiamjamie•3m ago•0 comments

Quiet – Slack over Tor. Private Messaging. No Servers

https://tryquiet.org/
1•janandonly•4m ago•0 comments

The State of Comprehension Debt: I measured 22 major repos

https://graspscore.com/
1•bcink•6m ago•0 comments

Can AI Agents Be Aligned with Human Rights?

https://www.techpolicy.press/can-ai-agents-be-aligned-with-human-rights/
1•cdrnsf•6m ago•0 comments

Bokode at Home – Recreating MIT's bokode tech with everyday materials (2009)

https://har.ms/wp-content/bokode/
1•bariumbitmap•7m ago•0 comments

Show HN: Duckle was benchmarked against 4 open source ELT/ETL tools

https://medium.com/@souravroy7864/duckle-was-benchmarked-against-4-open-source-data-ingestion-elt...
2•souravroy78•10m ago•0 comments

RFC 8890 – The Internet is for End Users (2020)

https://mnot.net/blog/2020/for_the_users
5•notarobot123•10m ago•0 comments

Show HN: Homebutler – Homelab CLI that gives agents commands, not a shell

https://github.com/Higangssh/homebutler
3•swq115•11m ago•0 comments

Finland to Cut Cable Lines Carrying Up to 70% of Russia's Foreign Web Traffic

https://united24media.com/world/finland-to-cut-cable-lines-carrying-up-to-70-of-russias-foreign-w...
3•donohoe•12m ago•0 comments

Kimi k3 run on RTX 5090

https://github.com/RightNow-AI/local-kimi
2•OsamaJaber•13m ago•0 comments

PEP 836 – JIT Go Brrr: The Path to a Supported JIT Compiler for CPython

https://peps.python.org/pep-0836/
2•bratao•15m ago•1 comments

'VPNs are lawful technical tools,' says EU Court in landmark copyright ruling

https://remysharp.com/links/2026-07-23-35890312
3•speckx•15m ago•0 comments

Show HN: An AI bug fixer for VS Code that explains why your code broke

https://marketplace.visualstudio.com/items?itemName=NeoBugForge.neo-bug-forge
2•yabdulaah52•16m ago•0 comments

CLIs are more token-efficient than MCP. Or are they?

https://www.checklyhq.com/blog/mcp-vs-cli-token-efficiency/
2•stefanjudis•16m ago•0 comments

Show HN: SwiftNet 0.6.0 – Lightweight l2 C networking lib (pcap and early DPDK)

2•morcules•16m ago•0 comments

Anthropic's new MCP spec, Kimi K3 open weights on Ollama, GPT Transcribe, plus

https://ddsboston.com/blogs/vibe-code-academy/ai-news-for-vibe-coders-daily-2026-07-30
2•robert_dds•18m ago•0 comments

Of all 18,849 servers in the MCP registry 1 in 6 is dead

https://mcpqueen.com/reports/state-of-mcp-2026-07
2•healthai•19m ago•0 comments

Show HN: I got shadowbanned on X (Twitter), so I built a checker

https://amishadowbanned.com
2•lime66•19m ago•0 comments

Tripplet AI

https://www.tripplet.lol/
2•efjejdejxjs•20m ago•0 comments

Show HN: 3D CSS Super Mario 64

https://codepen.io/editor/alowpoly/pen/019fae67-50d9-74ce-8025-4b9dd5a7c484
2•rofko•21m ago•0 comments

FitForge – Solo-built fitness tracker that adapts to your training age

https://fitforgehq.com
2•hoggan83•21m ago•0 comments

Show HN: wthrtxt – the same weather forecast in the browser and terminal

https://wthrtxt.com
2•qrv3w•22m ago•1 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.