frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Development Containers

https://containers.dev/
1•hecanjog•2m ago•0 comments

A (small) language model walks through its training text

https://github.com/chrishwiggins/shannon-language-model
2•raybb•3m ago•0 comments

Converting ISO Country Codes to Flag Emojis

https://danq.me/2026/05/31/iso-country-codes-to-flags/
2•bovermyer•7m ago•0 comments

Show HN: Orchid Mantis – A PoC in Rust for Zero Knowledge Proofs of Exploit

https://github.com/unprovable/OrchidMantis
1•unprovable•7m ago•1 comments

When an agent can explain anything, what is the role of human-centric docs?

https://www.dbreunig.com/2026/05/31/what-do-humans-need-from-docs.html
2•dbreunig•10m ago•0 comments

We Built a Real-Time AI Research Collaborator into Our Jot Writing Tool

https://medium.com/@vektormemory/we-built-a-real-time-ai-research-collaborator-into-our-jot-writi...
1•vektormemory•11m ago•0 comments

Show HN: Llmff v1.0 FFmpeg for Inference

https://github.com/syndicalt/llmff
2•syndicalt•14m ago•0 comments

Show HN: Zaxy v1.0

https://docs.zaxy.io/
1•syndicalt•15m ago•0 comments

The global oil market is running out of options

https://finance.yahoo.com/markets/article/the-global-oil-market-is-running-out-of-options-you-can...
1•wslh•16m ago•0 comments

I built a programming language in C (Arc) with a custom interpreter

https://github.com/VxidDev/arc
1•VoidDev•17m ago•0 comments

The AI Takeover Has Arrived

https://thehonestsorcerer.substack.com/p/the-ai-takeover-has-arrived
2•heyimada•18m ago•0 comments

Why so many Americans moved to the middle of nowhere

https://thehustle.co/originals/why-so-many-americans-moved-to-the-middle-of-nowhere
3•rmason•18m ago•1 comments

Penguin travels every year to visit man who rescued him (2016)

https://www.cbc.ca/news/trending/dindim-o-lindo-pinguim-1.3487668
1•downbad_•22m ago•0 comments

Show HN: Grenzwert – Medical Viewer

https://grenzwert.net/en/
1•MickGorobets•22m ago•0 comments

Show HN: A "gym" for art value studies using images from your Pinterest boards

https://valuestudiescoach.com
1•sailorganymede•25m ago•0 comments

1979: Will Word Processors Start a Home Working Revolution?

https://www.youtube.com/watch?v=b6URa-PTqfA
3•tcp_handshaker•25m ago•0 comments

TCNs as Alternative to Transformers?

4•adinhitlore•27m ago•0 comments

The ITL Robotic Safe Cracker. (ITL-2000) (1001) [video]

https://www.youtube.com/watch?v=nDgC8JOQhiM
1•Cider9986•32m ago•1 comments

Emergence World: A Laboratory for Evaluating Long-Horizon Agent Autonomy

https://www.emergence.ai/blog/emergence-world-a-laboratory-for-evaluating-long-horizon-agent-auto...
1•Anon84•35m ago•0 comments

Deep Dive into Kubernetes Gateway API

https://www.romaglushko.com/blog/k8s-gateway-api/
2•karakoram•42m ago•0 comments

"At Meta, 90% of my coworkers were Chinese, non-Chinese were routinely excluded"

https://twitter.com/jeremybernier/status/2058243373161722185
12•qwertyuiop_•42m ago•1 comments

Practical Uses of Monads in Haskell

https://nauths.fr/en/2026/05/28/practical-use-of-monads.html
2•karakoram•42m ago•0 comments

Show HN: AionDbB

https://github.com/ayoubnabil/aiondb
3•K9987plus•47m ago•1 comments

Ruby Client for the Model Context Protocol (MCP)

https://github.com/zarpay/manceps
2•mooreds•52m ago•0 comments

Show HN: Web-based wc3 warlocks brawl

https://warlocks.app/
2•razum9•53m ago•0 comments

World Cup Sponsorships: Online Communities Changing the Game

https://graphika.com/posts/world-cup-sponsorships-online-communities-changing-the-game
2•mooreds•53m ago•0 comments

Markdown Tables Generator – Tablesgenerator.com

https://www.tablesgenerator.com/markdown_tables
4•wingmanjd•53m ago•1 comments

US healthcare still stupidly expensive, with pathetic outcomes, study finds

https://arstechnica.com/health/2026/05/us-healthcare-still-stupidly-expensive-with-pathetic-outco...
6•rbanffy•53m ago•3 comments

HarnessKit – Manage skills/MCP/hooks/plugins/memory across all your Agents

https://github.com/RealZST/HarnessKit
4•cyberditto•54m ago•0 comments

New solar desalination breakthrough makes fresh water without toxic brine

https://www.sciencedaily.com/releases/2026/05/260530053418.htm
5•rmason•56m 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.