frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Robotics Needs Fewer Roboticists

https://www.a16z.news/p/robotics-needs-fewer-roboticists
1•sebg•2m ago•0 comments

Migrant children detained California used as bait to arrest and deport parents

https://laist.com/news/migrant-children-southern-california-used-as-bait-to-arrest-deport-parents
1•hedora•2m ago•0 comments

The Cursive Transformer

https://greydanus.github.io/2025/03/30/cursive-transformer/
1•sebg•2m ago•0 comments

Ask HN: Did you ever consciously create technical debt?

1•philippta•2m ago•0 comments

Poker Legend and Author of 'The Theory of Poker' David Sklansky Passes Away

https://www.pokernews.com/news/2014/02/poker-legend-david-sklansky-passes-away-50722.htm
1•rurp•7m ago•0 comments

How Anthropic's Claude Thinks

https://blog.bytebytego.com/p/how-anthropics-claude-thinks
1•shric•10m ago•0 comments

Show HN: Druids – coordinate and deploy coding agents across machines

https://github.com/fulcrumresearch/druids
5•etherio•10m ago•0 comments

My story on how I created my own open source project

1•packetsniffer•12m ago•0 comments

Google is first hyperscaler to promise GW-scale power demand response

https://blog.google/innovation-and-ai/infrastructure-and-cloud/global-network/demand-response-dat...
1•khofo•18m ago•1 comments

Show HN: BallotGuessr – Guess the 2024 election margin from a Street View photo

https://ballotguessr.com
2•jiratickets•19m ago•0 comments

Constructing an LLM-Computer

https://www.percepta.ai/blog/constructing-llm-computer
1•Philpax•20m ago•0 comments

Show HN: Stella Foster – iMessage on Any Phone

https://stellafoster.com/
1•jacobgc•20m ago•0 comments

An open source benchmarking framework for IT automation

https://github.com/itbench-hub/ITBench
1•pranay01•22m ago•0 comments

A Former Anthropology Student from Los Angeles Might Be the George Lucas of AI

https://www.hollywoodreporter.com/movies/movie-news/gossip-goblin-zack-london-ai-films-watch-1236...
3•Kaibeezy•22m ago•0 comments

Air Force tanker tore up asphalt at Alaska airport with engine test

https://taskandpurpose.com/news/air-force-tanker-asphalt-accident/
1•ilamont•25m ago•1 comments

Making React ProseMirror Fast

https://handlewithcare.dev/blog/making_react_prosemirror_really_really_fast/
1•smoores•28m ago•1 comments

5 AIs. One Answer on iOS

https://apps.apple.com/us/app/pingpongit/id6758229301
1•husky8•30m ago•0 comments

Show HN: Rick – Open-source AI CEO that autonomously runs your startup

https://meetrick.ai
1•MeetRickAI•31m ago•0 comments

Running Tesla Model 3's Computer on My Desk Using Parts from Crashed Cars

https://bugs.xdavidhu.me/tesla/2026/03/23/running-tesla-model-3s-computer-on-my-desk-using-parts-...
6•driesdep•31m ago•0 comments

Ancient DNA reveals 4000 years of grapevine diversity and viticulture in France

https://www.nature.com/articles/s41467-026-70166-z
3•layer8•40m ago•0 comments

The Military Failures of Fascism

https://acoup.blog/2024/02/23/fireside-friday-february-23-2024-on-the-military-failures-of-fascism/
2•JumpCrisscross•40m ago•0 comments

Brad Feld – Quality (Essay on Zen and the Art of Motorcycle Maintenance)

https://feld.com/archives/2026/03/quality/
1•rmason•43m ago•0 comments

Health NZ staff told to stop using ChatGPT to write clinical notes

https://www.rnz.co.nz/news/national/590645/health-nz-staff-told-to-stop-using-chatgpt-to-write-cl...
21•billybuckwheat•44m ago•1 comments

Specula: A framework for finding deep bugs in system code using TLA+

https://github.com/specula-org/Specula
2•matt_d•46m ago•0 comments

Nonfiction Publishing, Under Threat, Is More Important

https://newrepublic.com/article/207659/non-fiction-publishing-threat-important-ever
1•Hooke•46m ago•0 comments

Show HN: Text2troff – automatically converts plain text to TROFF format

https://github.com/jazzfan2/text2troff
1•robtoscani•46m ago•0 comments

Silence is the KPI: agents that don't talk

https://diegodella1.github.io/chango-daily/2026/03/03/silence-is-the-kpi-agents-that-do-not-talk/
1•changobot_dg•47m ago•0 comments

China is mass-producing hypersonic missiles for $99,000

https://kdwalmsley.substack.com/p/on-sale-now-china-is-mass-producing
52•zdw•47m ago•11 comments

RedSwarm Adversarial AI security scanner, one file, zero deps

https://github.com/beee003/redswarm
1•bee003•48m ago•1 comments

UK bans crypto donations to political parties in bid to curb foreign influence

https://apnews.com/article/uk-political-donations-cryptocurrency-ban-4deae8e71d664a042363fa79d617...
3•toomuchtodo•48m ago•1 comments
Open in hackernews

Zig and GPUs

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

Comments

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