frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SigilJS – Runtime Types for JavaScript

https://github.com/antistructured/sigiljs
1•antistructured•24s ago•1 comments

The Vibe to Production Pipeline

https://bandarra.me/posts/vibe-to-production
1•andreban•2m ago•0 comments

The evolution of Lego sorting (2001)

https://news.lugnet.com/storage/?n=707
1•fifilura•2m ago•0 comments

Rails Testing on Autopilot: Building an Agent That Writes What Developers Won't

https://mistral.ai/news/rails-testing-on-autopilot-building-an-agent-that-writes-what-developers-...
1•pember•2m ago•0 comments

Distributed Python dataframes and machine learning with Livebook and Elixir

https://dashbit.co/blog/distributed-python-livebook
1•tosh•3m ago•0 comments

I emailed 70 consulting partners. No replies. What it taught me

https://willem720055.substack.com/p/i-emailed-70-consulting-partners
2•anqer•3m ago•1 comments

Hotpatching goes default in Windows Autopatch whether you like it or not

https://www.theregister.com/2026/03/11/microsoft_hotpatching/
1•Bender•4m ago•0 comments

ICO fines Police Scotland over data-sharing debacle in gross misconduct case

https://www.theregister.com/2026/03/11/ico_fines_police_scotland_over/
3•Bender•5m ago•0 comments

Autopen

https://en.wikipedia.org/wiki/Autopen
1•thunderbong•6m ago•0 comments

Idempotent Slices with Applications to Code-Size Reduction

https://arxiv.org/abs/2603.09726
1•matt_d•8m ago•0 comments

A Message to Our Customers

https://www.stryker.com/us/en/about/news/2026/a-message-to-our-customers-03-2026.html
3•LostMyLogin•9m ago•0 comments

Binance sues WSJ, panicked by gov't probes into sanctioned crypto transfers

https://arstechnica.com/tech-policy/2026/03/binance-sues-wsj-over-report-sparking-government-prob...
4•xoa•10m ago•0 comments

Is launching a product on here a thing

3•charliewehan10•11m ago•2 comments

Iran tells world to get ready for oil at $200 a barrel

https://www.reuters.com/world/middle-east/combatants-mideast-war-trade-more-air-strikes-iran-clam...
4•geox•12m ago•1 comments

Apple Studio Displays have 128 GB of storage

https://www.macrumors.com/2026/03/11/studio-display-internal-storage-128gb/
2•dabinat•12m ago•0 comments

Designing AI agents to resist prompt injection

https://openai.com/index/designing-agents-to-resist-prompt-injection
1•surprisetalk•12m ago•0 comments

Code reviews do find bugs

https://entropicthoughts.com/code-reviews-do-find-bugs
1•fanf2•15m ago•0 comments

Anthropic GAAP revenue only $5B -not $19B

https://www.reuters.com/commentary/breakingviews/anthropic-gives-lesson-ai-revenue-hallucination-...
1•GorbachevyChase•15m ago•0 comments

The Anthropocentric Blind Spot

https://langmodelle.substack.com/p/the-anthropocentric-blind-spot
1•datanality•17m ago•0 comments

Show HN: Hyper – A stupidly non-corporate voice AI app for IRL conversations

https://apps.apple.com/us/app/hyper-ai-for-real-talk/id6760206718
7•shainvs•17m ago•1 comments

//go:fix inline and the source-level inliner

https://go.dev/blog/inliner
2•commotionfever•17m ago•0 comments

Rust is slowly but surely eating PostgreSQL: Deep dive into Neon, and more

https://kerkour.com/rust-eating-postgres
3•amatheus•17m ago•0 comments

Industry reports point to potential farm waste energy boom amid federal scrutiny

https://www.thenewlede.org/2026/02/biogas-rng-farm-digester-potential/
1•PaulHoule•17m ago•0 comments

Guess I was wrong about Kubernetes. Blame geopolitics

https://www.robinosborne.co.uk/2026/03/10/guess-i-was-wrong-about-kubernetes-blame-geopolitics/
2•donutshop•18m ago•0 comments

OpenRCA benchmark – Improving Claude's root cause analysis accuracy by 12 pp

https://relvy.ai/blog/relvy-improves-claude-accuracy-by-12pp-openrca-benchmark
5•behat•18m ago•0 comments

Show HN: Social Media, Reset

3•novateg•19m ago•0 comments

'Black rain' in Tehran – what are the health effects?

https://www.nature.com/articles/d41586-026-00800-9
3•saikatsg•20m ago•0 comments

You Can't Waymo to Tahoe – Yet

https://sfstandard.com/2026/03/10/can-t-waymo-tahoe/
2•standardUser•20m ago•0 comments

PostTrainBench: How well can AI agents post-train language models?

https://posttrainbench.thoughtfullab.com/
2•pr337h4m•20m ago•0 comments

Greek Govt: Time to open debate on abolishing online anonymity

https://www.amna.gr/mobile/article/976994/Athens-Alitheia-Forum-Marinakis-Time-to-open-debate-on-...
2•seydor•20m ago•0 comments
Open in hackernews

Zig and GPUs

https://alichraghi.github.io/blog/zig-gpu/
57•Cloudef•10mo ago

Comments

LegNeato•10mo ago
See also https://github.com/Rust-GPU/rust-gpu and https://github.com/rust-gpu/rust-cuda
ladyanita22•10mo 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•10mo ago
Microsoft indicated they are switching to SPIR-V from DXIL: https://devblogs.microsoft.com/directx/directx-adopting-spir...
skywal_l•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo ago
The Zig compiler can compile C, though.