frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Creating word recordings with AI: learning where to cut

https://freshteapot.net/writing/creating-word-audio-with-ai/
1•freshteapot•2m ago•0 comments

US Air Force secretary reveals deployment of on-orbit space control weapons

https://www.militarytimes.com/news/your-military/2026/09/14/us-air-force-secretary-reveals-deploy...
1•dustfinger•2m ago•0 comments

I Have to Bury My Talent in Yesterday

https://www.reddit.com/r/LocalLLaMA/comments/1wgii3h/deepseek_engineer_relections_on_rsi_burying_my/
2•deyiao•12m ago•1 comments

Show HN: Knecht, a tool for building software factories for agencies

https://knecht.works
1•samuelreichor•17m ago•0 comments

Challenging AI

https://jensrantil.github.io/posts/challenging-ai/
1•JensRantil•17m ago•0 comments

I built a free tool that turns your resume into a personal website

https://self.cv/en
1•javier_yc_new•20m ago•0 comments

'Decimated My Life': The Risks of Pushing the Limits for Clicks

https://www.nytimes.com/2026/09/12/us/influencers-social-media-algorithm.html
2•thm•21m ago•0 comments

Show HN: QuantSupport, a Rust-based quant library

https://github.com/jmelo11/quantsupport
1•jmelo11•22m ago•0 comments

Show HN: Back Me Up – Find papers that back your argument

https://backmeup.loomlabs.au
1•argilium•22m ago•0 comments

SkyForce UI – React and Tailwind UI Suite with an Offline Electron Builder

https://skyforceui.com/
1•alexandrubulacu•22m ago•0 comments

A metasearch engine and privacy-first multi-engine search aggregator

https://ethfata.com/
1•massimilianosal•23m ago•1 comments

Show HN: Spec sheets for humans – who you are and how to work with you

https://spec.md
1•allanmaeots•28m ago•0 comments

Trying to understand SR-1 Freedom

https://mceglowski.substack.com/p/trying-to-understand-freedom
1•calcifer•29m ago•0 comments

Study links low-arousal background music to healthier food choices in restaurant

https://www.nature.com/articles/s41538-026-01146-2
1•giuliomagnifico•30m ago•0 comments

Keeping Markdown canonical once decisions start referencing each other

https://github.com/FrancisMarzynski/operating-memory-public
1•francismarzynsk•31m ago•0 comments

OpenAI's SWE-bench harness relies on unisolated host Docker sockets

https://github.com/SWE-bench/SWE-bench/issues/144
1•amoriz•31m ago•0 comments

The Git Cheat Sheet

https://devopscycle.com/blog/the-ultimate-git-cheat-sheet
2•MrLA•33m ago•1 comments

Obsidian Vault to Enterprise Company Brain

https://www.ssp.sh/blog/from-obsidian-to-enterprise-company-brain/
2•interstingstuff•35m ago•0 comments

Adam Conover explains how YouTube ruined everything

https://www.theverge.com/podcast/991471/adam-conover-youtube-tv-media-union-labor-ai
1•DavideNL•36m ago•0 comments

The terminal should not own the work

https://lezli01.is-a.dev/vincent/docs/why/the-terminal-should-not-own-the-work.html
2•whatsthatandwhy•39m ago•1 comments

Osborne Computer's Bankruptcy and the Osborne Effect

https://dfarq.homeip.net/osborne-computers-bankruptcy-and-the-osborne-effect/
1•giuliomagnifico•44m ago•0 comments

Show HN: Control Claude Code from your Tesla's screen

https://teslacode.dev
1•kvakkefly•51m ago•2 comments

CSS Text-Box-Trim

https://developer.chrome.com/blog/css-text-box-trim
2•dsego•53m ago•1 comments

Pythoncall.jl – Python and Julia in Harmony

https://github.com/JuliaPy/PythonCall.jl
2•TheWiggles•55m ago•0 comments

Alternatives to MinIO for single-node local S3

https://rmoff.net/2026/01/14/alternatives-to-minio-for-single-node-local-s3/
2•rmoff•58m ago•0 comments

I built a Grok Bot inspired theme for Hermes Desktop client

https://github.com/guidsen/hermes-grok-bot-skin
1•guidsen•1h ago•0 comments

Show HN: A reader ranked Indian news platform powered by feed

https://news.lokutu.com
1•reactivematter•1h ago•0 comments

RFC 10042: Post-Quantum/Traditional Hybrid Key Exchange in SSH

https://www.rfc-editor.org/info/rfc10042/
1•Alien1Being•1h ago•0 comments

Einride, Lidl deploy first cab-less autonomous truck in Germany

https://www.reuters.com/business/retail-consumer/einride-lidl-deploy-first-cab-less-autonomous-tr...
2•JumpCrisscross•1h ago•0 comments

How much should lenders charge hyperscalers?

https://www.ft.com/content/ba38df40-9898-48a0-bc9e-39d8a3da4305
1•JumpCrisscross•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.