frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Cancer jab can eradicate tumours in patients, trial shows

https://www.theguardian.com/science/2026/may/30/cancer-jab-can-eradicate-entire-tumours-in-patien...
1•tosh•1m ago•0 comments

Claude Code vs. Codex: FRA challenge 75746d-2025

https://gist.github.com/joelonsql/c49129b151d7e77fb83250f675ffea07
2•JoelJacobson•5m ago•0 comments

I Ported Pixal3D over to Apple Silicon

https://blog.chillaid.art/posts/porting-pixal3d-one-cursed-kernel-at-a-time
1•pawelma•6m ago•1 comments

Cancer Alley

https://en.wikipedia.org/wiki/Cancer_Alley
2•amarcheschi•6m ago•0 comments

Looking at code behind File Pilot

https://www.youtube.com/watch?v=Ww26eO1WeGQ
1•vjekoslav•7m ago•0 comments

Wordiply

https://www.wordiply.com/
1•saikatsg•8m ago•0 comments

Bluey deal FOMO will kill the next Bluey. Do you want dreams or dollarbucks?

https://oblongataresearch.substack.com/p/bluey-deal-fomo-will-kill-the-next
2•basiljh•9m ago•0 comments

The Largest Vocabulary in Hip Hop

https://pudding.cool/2017/02/vocabulary/
2•chistev•10m ago•0 comments

NNSI Architecture – Standalone Neuromorphic memory chip specification (v0.1)

https://app.notion.com/p/Show-HN-NNSI-Architecture-Standalone-Neuromorphic-memory-chip-specificat...
1•nyan_archive•12m ago•0 comments

Review of Linux Android Gaming Emulator Solutions

https://ivonblog.com/en-us/posts/android-emulators-for-linux/
1•ivo8n52•12m ago•0 comments

Ming (Clam)

https://en.wikipedia.org/wiki/Ming_(clam)
1•thunderbong•14m ago•0 comments

US plans to halt immigration, customs processing at 'sanctuary city' airports

https://www.reuters.com/legal/government/us-drawing-up-plans-halt-immigration-customs-processing-...
5•littlexsparkee•17m ago•0 comments

Zig's New Relationship with LLVM (2020)

https://kristoff.it/blog/zig-new-relationship-llvm/
1•tosh•18m ago•0 comments

I built a wallpaper app with Tauri and Rust

https://github.com/Halfaxas/Splashy
1•Halfaxa•20m ago•1 comments

Internet Speed Test by Cloudflare

https://speed.cloudflare.com/
1•gurjeet•25m ago•0 comments

Rigid C++: A Pragmatic Architecture for High-Performance Systems

https://github.com/I-A-S/Rigid-Cpp
2•I-A-S•28m ago•1 comments

Opensecrets Bulk Data

https://www.opensecrets.org/bulk-data
2•mooreds•30m ago•0 comments

We are constantly broadcasting emotional data

https://www.tonyrice.me/emotional-intelligence/
2•tonyrice•33m ago•0 comments

Updata portfolio company job board

https://jobs.updata.com/jobs
1•mooreds•33m ago•0 comments

Hormuz crisis side effect: a sharp rise in container shipping rates

https://www.lloydslist.com/LL1157327/Hormuz-crisis-side-effect-a-sharp-rise-in-container-shipping...
5•mooreds•33m ago•0 comments

Temporal Primer – Building Long-Running Systems

https://arpitbhayani.me/blogs/temporal-primer/
1•vasudua1•33m ago•0 comments

Hints for Computer System Design (1983)

https://dl.acm.org/doi/epdf/10.1145/800217.806614
1•jruohonen•34m ago•0 comments

Boogy: Production Infrastructure for Vibe Coders

https://boogy.ai/
1•notgelotto•38m ago•2 comments

DockWarden – open-source power-user companion for Bitwarden

https://github.com/JaredScar/DockWarden
2•JaredScar•38m ago•0 comments

White House's Aliens.gov Site Brags That ICE Arrested More Than 700 US Citizens

https://www.wired.com/story/white-house-aliens-gov-us-citizens-arrested/
25•hydrolox•38m ago•2 comments

'Hidden datacentre tax' costing Irish households millions, report says

https://www.theguardian.com/technology/2026/may/28/irish-datacentres-household-bills-electricity
2•saikatsg•40m ago•0 comments

Original 'Star Trek' Enterprise Model Resurfaces Decades After It Went Missing

https://www.smithsonianmag.com/smart-news/first-ever-star-trek-enterprise-model-boldly-returns-af...
5•geox•42m ago•0 comments

Terence Tao's promotional video for OpenAI

https://twitter.com/OpenAI/status/2060451757818601808
1•fuglede_•43m ago•0 comments

They STOLE his $200k Lego Collection – – – LEGALLY? [video]

https://www.youtube.com/watch?v=14ktgvoH4Mc
1•abirch•43m ago•2 comments

GitHub Copilot charges GPT 5.5 with a 57x multiplier per request from June first

https://docs.github.com/en/copilot/reference/copilot-billing/request-based-billing-legacy/model-m...
2•theanonymousone•44m 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.