frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude Code Field Kit: a tested safety hook and lean Claude.md templates

https://github.com/OactoDev/claude-code-field-kit
1•ninetyquid•1m ago•0 comments

Show HN: I built a free App Store screenshot editor with posable 3D devices

https://ultrashot.io/
1•elliotekj•2m ago•1 comments

The creator of Jujutsu has joined ERSC

https://ersc.io/blog/martin-joins-ersc
3•steveklabnik•4m ago•0 comments

Once Globally Preeminent, U.S. Universities Are Sliding into Decline

https://washingtonmonthly.com/2026/08/17/us-higher-education-decline-chinese-universities/
2•DemiGuru•5m ago•0 comments

Show HN: Three Pins a daily 3-hole golf game in the browser

https://threepins.golf/
1•colin_rightwork•5m ago•0 comments

AI admissions navigator for students in Central Asia

https://www.lumifield.app
1•Aarnur•6m ago•1 comments

Show HN: Rust Glancer 0.2 – new Rust LSP server targeting <100mb idle RSS

https://rust-glancer.github.io/blog/0-2-0/
1•popzxc•7m ago•0 comments

Empty intervals are valid intervals

https://nigeltao.github.io/blog/2025/empty-intervals.html
1•fanf2•9m ago•0 comments

Bitcoin 101 Classroom

https://classroom.google.com/c/ODc2ODU0NDI5MTY1/m/ODc2ODUzMzg4MTI5/details
1•JustReaper•9m ago•0 comments

Show HN: Semantic Overlays – an NX bit for LLM prompt injection (live demo)

https://semantic-overlays.vercel.app/
2•joshua_s_penman•10m ago•0 comments

China's installed solar power capacity surpasses coal power for the first time

https://www.globaltimes.cn/page/202609/1369526.shtml
2•giuliomagnifico•12m ago•0 comments

Stopping the Unstoppable: When an unstoppable force meets a dashpot snubber

https://practical.engineering/blog/2026/9/1/stopping-the-unstoppable
1•crescit_eundo•13m ago•0 comments

New Zero-Cal Sugar Is 3,500 Times Sweeter Than Sucrose,but Doesn't Spike Insulin

https://www.sciencealert.com/this-new-zero-cal-sugar-is-3500-times-sweeter-than-sucrose-but-doesn...
1•ivewonyoung•13m ago•0 comments

PureTube: No ads on YouTube

2•wariya•13m ago•0 comments

Circuit Loop Theory: a mathematical formalism for electromagnetic boundaries

https://github.com/obinexus/circuit_loop_theory/blob/main/CLP_CLA_Mathematical_Formalism.md
1•obinexus•14m ago•0 comments

Atlas: A World Model for Spatial Intelligence

https://www.worldlabs.ai/blog/atlas
31•johnsutor•15m ago•0 comments

Patent-pending live company intelligence for AI agents

https://www.bytemine.ai/blog/temporal-company-intelligence-gtm-agents
1•kokoz•15m ago•0 comments

Launch HN: Nori Robotics (YC S26) – A low-cost humanoid robot for development

https://www.norirobotics.com/
9•AntonioLi•16m ago•0 comments

The model picker is a dead end

https://lovable.dev/blog/the-model-picker-is-a-dead-end
1•tosh•16m ago•1 comments

July in Servo: more platforms, faster canvas, web fonts in SVG, and more

https://servo.org/blog/2026/08/31/july-in-servo/
1•birdculture•16m ago•0 comments

Dark Fiber–An Archaeology of the Dot-Com Bubble (2025)

https://www.technostatecraft.com/p/dark-fiberan-archaeology-of-the-dot
1•mkl95•17m ago•0 comments

Nicholas Decker in Hell

https://www.astralcodexten.com/p/nicholas-decker-in-hell
1•paulpauper•18m ago•0 comments

Did Europeans Get Fat from Neandertals?

https://www.science.org/content/article/did-europeans-get-fat-neandertals
1•paulpauper•18m ago•0 comments

Cloud Imperium Cash Shop Records $8.5M in Sales in August 2026

https://nosygamer.blogspot.com/2026/09/cloud-imperium-cash-shop-records-85.html
1•speckx•20m ago•0 comments

Timelapse of the Future: A Journey to the End of Time [video]

https://www.youtube.com/watch?v=uD4izuDMUQA
1•gurjeet•21m ago•0 comments

John Ternus Replaces Tim Cook as Apple CEO

https://www.nytimes.com/2026/09/01/technology/apple-tim-cook-john-ternus.html
3•FinnLobsien•22m ago•0 comments

Show HN: Sift, an iOS app that auto-detects recipes in Safari and stores them

https://siftapp.me/
1•mthomaswicher•22m ago•0 comments

The Light Herder: 4K Analog Video Feedback Device

https://www.thelightherder.com/
1•glitcher•23m ago•0 comments

Leaked Files Reveal How Russia Trains Hackers for Military Cyber Operations

https://gbhackers.com/leaked-university-files/
4•speckx•23m ago•0 comments

Agentic Video in Gemini

https://blog.google/innovation-and-ai/models-and-research/gemini-models/introducing-agentic-video...
2•ilreb•25m 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.