frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Use your Nvidia GPU's VRAM as swap space on Linux

https://github.com/c0dejedi/nbd-vram
1•tanelpoder•2m ago•0 comments

FullPAC files S-1 [pdf]

https://d1io3yog0oux5.cloudfront.net/gotv/sec/0001493152-26-026911/0001493152-26-026911.pdf
1•naryJane•3m ago•1 comments

Always Be Blaming: how Git blame answers the wrong question

https://matklad.github.io/2026/05/18/always-be-blaming.html
1•pgedge_postgres•7m ago•0 comments

Show HN: Reloops – Open-Source Frame.io Alternative for AI Agents and Teams

https://github.com/Reloops-App/reloops/
1•dheerajbhatia27•8m ago•0 comments

Show HN: Ordinary and Ordinaryd v0.6.0

https://codeberg.org/ordinarylabs/Ordinary/src/branch/main/docs/quick-start.md
1•seanwatters•9m ago•0 comments

Feds failing in bid to take a supercomputer from a climate research center

https://arstechnica.com/science/2026/06/judge-blocks-part-of-trump-admins-effort-to-hurt-colorado...
1•yodon•10m ago•0 comments

I hadn't coded in 30 years. Then I built a space game with Godot

2•CosmicGoldRush•11m ago•0 comments

AI enthusiasts are in race against time, AI skeptics are in race against entropy

https://charitydotwtf.substack.com/p/ai-enthusiasts-are-in-a-race-against
1•wapasta•11m ago•0 comments

Eupago for Python – The First Python SDK for Portugal's MB Way/Multibanco

https://github.com/bilouro/eupago-python
1•bilouro•12m ago•0 comments

This creepy blob robot will keep going even if you break its legs

https://www.popsci.com/technology/unstoppable-blob-robot/
1•mhb•18m ago•1 comments

Law Professors Prefer AI over Peer Answers [pdf]

https://law.stanford.edu/wp-content/uploads/2026/06/salinas_et_al.pdf
1•droidjj•19m ago•0 comments

Titan Network claims 5% of Asia's AI data market using crowdsourced home devices

https://www.coindesk.com/tech/2026/06/02/here-s-how-one-decentralized-cloud-provider-says-private...
1•Reaktornano•21m ago•1 comments

Paseo – Beautiful open-source coding agent interface (desktop, mobile, CLI)

https://github.com/getpaseo/paseo
2•timhigins•22m ago•1 comments

The Empty Field That Wasn't: GPS, OTAD and Two Decades of Encrypted Broadcasts

https://lsc-pagepro.mydigitalpublication.com/publication/?i=865273&p=62&view=issueViewer
1•ahlCVA•24m ago•0 comments

WinUtils: Shell-powered CLI tools for Windows 95

https://www.codenaked.com/winutils
2•code_naked•24m ago•1 comments

We tore down our no-code site and went back to code

https://twitter.com/chrismuccioli/status/2061909833893257389
4•nadis•25m ago•1 comments

ContextWall – Context firewall for AI agents and RAG pipelines

https://contextwall.io/
2•sumeshpk•26m ago•0 comments

Show HN: Scholar Sidekick – citation verifier for the "real DOI, wrong paper"

https://scholar-sidekick.com
1•ProductivePhys•27m ago•1 comments

Dense Retrievers Know More Than They Can Express

https://www.mixedbread.com/blog/latent-terms
1•emschwartz•28m ago•0 comments

Android gets fake-call detection for spoofed calls

https://arstechnica.com/gadgets/2026/06/google-announces-deepfake-call-detection-for-android-new-...
1•Lihh27•30m ago•0 comments

Understand your AI generated code

https://archtocode.com/blog
1•grzelazny•34m ago•0 comments

4K years ago, Mohenjo-daro grew more equal over time

https://archaeologymag.com/2026/05/mohenjo-daro-grew-more-equal-over-time/
2•marojejian•35m ago•0 comments

A harness for every task: dynamic workflows in Claude Code

https://claude.com/blog/a-harness-for-every-task-dynamic-workflows-in-claude-code
2•cebert•35m ago•0 comments

JavaScript Crossword

https://lyra.horse/fun/jscrossword/
2•patrikcsak•36m ago•0 comments

Short Seller (Andrew Left) Convicted for $21M Stock Market Manipulation Scheme

https://www.justice.gov/opa/pr/activist-short-seller-convicted-21m-stock-market-manipulation-scheme
4•gnabgib•37m ago•1 comments

Pigeons navigate using magnetic sensors in their livers

https://phys.org/news/2026-05-pigeons-magnetic-sensors-livers.html
2•marojejian•38m ago•0 comments

Gleam v1.17.0 Released

https://gleam.run/news/single-file-gleam-beam-programs-with-escript/
36•figbert•41m ago•3 comments

Copper imbalance tied to autism's social symptoms and white matter development

https://medicalxpress.com/news/2026-06-copper-imbalance-autism-social-symptoms.html
3•OutOfHere•42m ago•1 comments

Firefox AI Coding Policy

https://firefox-source-docs.mozilla.org/contributing/ai-coding.html#firefox-ai-coding-policy
1•Topfi•44m ago•1 comments

The Last Whole Earth Catalog, Catalog (2026)

https://wholeearth.cjohnson.io
2•natural219•44m 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.