frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Systemd Linger

https://etbe.coker.com.au/2026/07/24/systemd-linger/
1•edward•28s ago•0 comments

Genesis Mission Overview

https://github.com/donutloop/donutloop-genesis/blob/main/README.md
1•donutloop•2m ago•0 comments

France and Spain wildfires: more than 300k people displaced

https://www.cnn.com/2026/07/26/world/live-news/france-spain-wildfires-evacuations
1•tosh•2m ago•0 comments

As Burlington reviews data centre plan, councillors reject moratorium

https://www.cbc.ca/news/canada/hamilton/data-centre-moratorium-burlington-9.7282901
1•01-_-•4m ago•0 comments

Against the System: Rise of the Robots (2001)

https://phrack.org/issues/57/10#article
1•negura•5m ago•0 comments

Show HN: Termic – desktop app for running CLI coding agents (Claude Code, Codex)

https://termic.dev/
1•SimionBaws•6m ago•0 comments

Show HN: Cfbench – A lightweight native CLI for Cloudflare speed tests

https://github.com/fcendesu/cfbench
1•fcen•7m ago•0 comments

Corner Chess

https://cs.nyu.edu/~shasha/drecco/games/2016/cornerchess/
1•tosh•9m ago•0 comments

Emacs Writing Machine

https://chainsawriot.com/postmannheim/2026/07/25/writeredeck.html
1•birdculture•9m ago•0 comments

Robots programmed by kids to speak their Indigenous languages

https://www.npr.org/2026/07/26/nx-s1-5825798/robot-speaks-endangered-native-american-languages
1•defrost•10m ago•0 comments

Apertus 1.5, Swiss open-weight, open-source, open training data model

https://apertus-ai.org/articles/2026-07-apertus-1-5/
1•flaburgan•11m ago•1 comments

Interactive 3D Dice Roller with Custom Physics and Shaders

https://ttrpg.dies.kmcprizmquest.dev/
1•Radversalo•21m ago•0 comments

How to be useful as a software architect

https://swizec.com/blog/how-to-be-useful-as-a-software-architect
2•meetpateltech•24m ago•0 comments

Elevated Errors for Opus 5

https://status.claude.com/incidents/zftg3gqkmv18
2•TimCTRL•25m ago•0 comments

I built a jav data API, need honest feedback

1•javinfo•26m ago•0 comments

Show HN: OpenStrap – use a WHOOP 4.0 band without a subscription

https://openstrap.github.io/edge/
1•abdulsaheel123•31m ago•0 comments

Show HN: Tawrida – Global Trade Tools – Export-Document Generators

https://tawrida.xyz/tools
2•m-zakarya•35m ago•0 comments

Anthropic should learn from those cotton-picking socialists

https://asteriskmag.com/issues/15/rust-and-boll
2•maxall4•37m ago•0 comments

Practice your YC interview against Garry Tan's gstack specialists, on a meeting [video]

https://www.youtube.com/watch?v=PMiIytmoEuk
4•anand_pattern•37m ago•1 comments

High Volume Transaction Processing Without Concurrency Control (1997)

https://www.researchgate.net/publication/2310700_High_Volume_Transaction_Processing_Without_Concu...
1•tosh•38m ago•0 comments

Ruff v0.16.0 – Significant new updates – 413 default rules up from 59

https://astral.sh/blog/ruff-v0.16.0
5•vismit2000•42m ago•0 comments

Build a self-scaling OCR pipeline with Qwen 3.5 and Kubernetes

https://github.com/neural-maze/production-ocr-course
2•mtrofficus•56m ago•0 comments

Claude Code has a hardcoded instruction telling Opus 5 not to use subagents

https://old.reddit.com/r/ClaudeCode/comments/1v6y5q2/claude_code_has_a_hardcoded_instruction_tell...
4•bredren•58m ago•0 comments

The most capable resume editor I could build, as a solo dev

https://www.roleframe.ai/product/ai-resume-builder
1•larbisahli•1h ago•0 comments

The diminishing returns of productivity culture (2021)

https://annehelen.substack.com/p/the-diminishing-returns-of-productivity
4•downbad_•1h ago•0 comments

Show HN: Reproducibility Benchmark a Risk Quantitative Model

https://github.com/Fluxara-GOD/fluxara1-audit-verification-pack
3•mingshi_tz•1h ago•0 comments

What will more intelligence do for us?

https://www.noahpinion.blog/p/what-will-more-intelligence-actually
4•jinjin2•1h ago•0 comments

HomeLab #2: Immutable GitOps homelab and MikroTik hardening

https://justsomebody.dev/blog/gitops-k3s-flux
1•rafal_opilowski•1h ago•1 comments

If you feel the need to tell me your answer is AI-based, work it more

https://cephalosec.com/blog/the-hidden-cost-of-ai-is-someone-elses-time/
1•Versipelle•1h ago•0 comments

The Context Bootloader

https://adlrocha.substack.com/p/adlrocha-the-context-bootloader
1•adlrocha•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.