frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Released Jid v1.1.0

https://github.com/simeji/jid/releases/tag/v1.1.0
1•jamslater•46s ago•1 comments

Tell HN: Pangram is easily-defeatable with Claude

1•nunez•1m ago•0 comments

Statistics Canada to Replace Food and Gas with "Huge TVs" in Inflation Reporting

https://lzon.ca/posts/series/duck/tv-inflation/
1•jpmitchell•1m ago•0 comments

Skip the TSA Line: Where to Find Travel by Bus, Train, and Boat

https://www.wired.com/story/skip-the-tsa-line-where-to-find-travel-by-bus-train-and-boat/
1•joozio•4m ago•0 comments

Building Tanks While the Ukrainians Master Drones

https://www.theatlantic.com/national-security/2026/03/who-needs-tanks-age-drones/686540/
1•PanMan•5m ago•0 comments

ICE Agents Frustrate Airport Workers as Shutdown Drags On

https://www.wired.com/story/ice-agents-frustrate-airport-employees-as-shutdown-drags-on/
1•joozio•5m ago•0 comments

The Download: the internet's best weather app, and why people freeze their brai

https://www.technologyreview.com/2026/03/27/1134755/the-download-best-weather-forecasting-app-why...
1•joozio•7m ago•0 comments

Shoofly – intercepts your AI agent's tool calls before they execute

https://shoofly.dev
2•evanvuckovic•8m ago•1 comments

GLM 5.1 Is Out

https://old.reddit.com/r/LocalLLaMA/comments/1s51id3/glm_51_is_out/
2•morenatron•8m ago•0 comments

Do you need Forward Deployed Engineers?

https://www.aienablementinsider.com/p/do-you-really-need-forward-deployed-engineers
3•dylancollins•8m ago•0 comments

Telnyx Python SDK: Supply Chain Security Notice

https://telnyx.com/resources/telnyx-python-sdk-supply-chain-security-notice-march-2026
3•KomoD•9m ago•0 comments

A real-time HUD (heads-up display) for OpenClaw power users

https://github.com/just-claw-it/claw-hud
2•just-claw-it•10m ago•0 comments

Has Anyone Tried Deerflow?

https://github.com/bytedance/deer-flow
2•udayan_w•11m ago•0 comments

Chats with sycophantic AI make you less kind to others

https://www.nature.com/articles/d41586-026-00979-x
4•jyunwai•11m ago•0 comments

Show_HN: ClawHub Skills Benchmarking – Find Bugs, Drift, and Slowdowns

https://github.com/just-claw-it/claw-bench
2•just-claw-it•11m ago•0 comments

We broke 92% of SHA-256 – you should start to migrate from it

https://stateofutopia.com/papers/2/we-broke-92-percent-of-sha-256.html
7•logicallee•12m ago•1 comments

Stephen Wolfram and Matt Mullenweg Talk About AI [video]

https://www.youtube.com/watch?v=T_tALmMq7Ok
2•chilipepperhott•13m ago•0 comments

Show HN: Control Codex via WhatsApp using a Codex plugin

https://github.com/abuiles/codex-whatsapp-relay
2•abuiles•18m ago•0 comments

Prompt Repetition Improves Non-Reasoning LLMs

https://arxiv.org/abs/2512.14982
3•wslh•18m ago•0 comments

Stop Embedding Your Corpus Blindly

https://decompressed.io/learn/sample-first-rag
2•zacole•21m ago•0 comments

Toolcast – Turn any API into an AI agent tool with one command

https://github.com/Djsand/toolcast
2•Djsand•23m ago•0 comments

US warns EU to pass trade deal or risk losing 'favourable' access to LNG

https://www.ft.com/content/6bf153e4-11af-44d5-9d1c-48b5c7ad26ef
5•geox•25m ago•1 comments

Pkgmirror: self-host your own Zig mirror

https://devlog.hexops.org/2026/announcing-pkgmirror/
2•emidoots•25m ago•0 comments

Reasoning-Based Personalized Generation for Users with Sparse Data

https://arxiv.org/abs/2602.21219
2•PaulHoule•27m ago•0 comments

OpenCode-LLM-proxy – use any OpenCode model via OpenAI/Anthropic/Gemini API

https://github.com/KochC/opencode-llm-proxy
2•kochc•28m ago•2 comments

Show HN: Build AI Trading Agents in Cursor/Claude with an MCP Server

https://financialdata.net/mcp-server
2•financial-data•28m ago•0 comments

Anthropic throttles Claude subscriptions to meet capacity

https://www.infoworld.com/article/4151196/anthropic-throttles-claude-subscriptions-to-meet-capaci...
3•ceejayoz•28m ago•1 comments

More AI-Generated Slop (2026)

https://www.dotnetperls.com/2026_3_24_more-ai-generated-slop
2•speckx•29m ago•0 comments

Some uncomfortable truths about AI coding agents

https://standupforme.app/blog/some-uncomfortable-truths-about-ai-coding-agents/
3•borealis-dev•35m ago•0 comments

Show HN: Open-Source Animal Crossing–Style UI for Claude Code Agents

https://github.com/outworked/outworked/releases/tag/v0.3.0
8•ZeidJ•43m ago•2 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.