frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: How can I tell if AI bots are scraping my sites?

1•palad1n•1m ago•0 comments

Boeing Tackles Quality with a 'War on Defects'

https://www.nytimes.com/2025/11/25/business/boeing-737-max-factory.html
1•JojoFatsani•2m ago•0 comments

What Does "Capitalism" Really Mean, Anyway?

https://www.newyorker.com/magazine/2025/12/01/capitalism-a-global-history-sven-beckert-book-review
1•mitchbob•3m ago•1 comments

Quick Wins Become a Costly Addiction

https://ottic.ai/blog/marketing-quick-wins-with-examples/
1•rafaepta•4m ago•0 comments

Take Your Time

https://www.jmeiners.com/take-your-time/
1•speckx•6m ago•0 comments

Feedback on an open source Ruby – LLM project

https://github.com/pcarolan/magic
2•pcarolan•6m ago•1 comments

AMD could cancel RX 9070 GRE 16 GB due to explosive increase in memory prices

https://www.notebookcheck.net/AMD-could-cancel-RX-9070-GRE-16-GB-due-to-explosive-increase-in-mem...
1•doener•6m ago•0 comments

What Makes You Senior

https://terriblesoftware.org/2025/11/25/what-actually-makes-you-senior/
2•theanonymousone•9m ago•0 comments

Ret: Online Assembly Playground and Reverse Engineering Tool

https://ret.futo.org/
1•petabyt•9m ago•0 comments

Six Things I Bet You Didn't Know You Could Do with Chrome's Devtools, Part 1

https://www.readwriterachel.com/things-i-learned/2025/11/09/devtools-1.html
1•speckx•11m ago•0 comments

Mobile browsers see telephone numbers everywhere

https://sethmlarson.dev/mobile-browsers-and-telephone-numbers
1•SethMLarson•13m ago•0 comments

Ask HN: What did Stripe change (Value Add)?

2•dzonga•13m ago•1 comments

Europe's Cold Snap Puts New Heat Pumps to the Test

https://www.bloomberg.com/news/articles/2025-11-20/europe-s-cold-snap-puts-thousands-of-new-heat-...
2•toomuchtodo•14m ago•1 comments

Diffusers Welcomes Flux-2

https://huggingface.co/blog/flux-2
1•ibobev•15m ago•0 comments

One of the Greatest Polar-Bear Hunters Confronts a Vanishing World

https://www.newyorker.com/magazine/2025/12/01/one-of-the-greatest-polar-bear-hunters-confronts-a-...
2•mitchbob•17m ago•1 comments

Broken Promises: How Technology Companies Bait and Switched All Generations

https://josebriones.substack.com/p/broken-promises
1•toomuchtodo•19m ago•0 comments

Making tennis analytics more scaleable

https://splitstep.ai/
1•jwsmithers•20m ago•0 comments

PR CheckMate – automate lint, formatting, deps and NPM audit

https://www.npmjs.com/package/pr-checkmate
1•def-to-explore•22m ago•1 comments

Moloch: A Revival of the Metropolis LaTeX Beamer Theme

https://jolars.co/blog/2024-05-30-moloch/
1•gjvc•23m ago•1 comments

And fastest domain search website

https://instantdomainsearch.com
1•amukbils•23m ago•1 comments

Euclyd launches "Craftwerk" silicon to shave AI inference cost and power by 100×

https://euclyd.ai/
1•stefvw93•24m ago•0 comments

We Rewrote Our Startup from PHP to Gleam in 3 Weeks

https://www.radical-elements.com/minor-epiphanies/we-rewrote-our-startup-from-php-to-gleam-in-3-w...
2•kamilap•24m ago•1 comments

Show HN: SafeShare – Clean tracking params locally (PWA and bookmarklets

https://j-ai-71.github.io/Supersystem/
2•safeshare•26m ago•0 comments

Ilya Sutskever – We're moving from the age of scaling to the age of research

https://youtu.be/aR20FWCCjAs?si=SD1bp8f5jOcUdl78
4•blufish•28m ago•1 comments

AI Tools Dashboard (Updated Daily)

https://phshort.com/ai
1•mohamadkk7•28m ago•0 comments

Show HN: God's Eye – Subdomain recon with local AI analysis

https://github.com/Vyntral/god-eye
1•vyntral•28m ago•0 comments

Larry Ellison Met with Trump to Discuss Which CNN Reporters They Plan to Fire

https://www.techdirt.com/2025/11/25/larry-ellison-met-with-trump-to-discuss-which-cnn-reporters-t...
7•throw0101a•29m ago•0 comments

Nimbalyst: WYSIWYG Markdown editor with visual diffs powered by Claude Code

https://github.com/Nimbalyst/nimbalyst
5•wek•30m ago•2 comments

DJI ROMO robot vacuum [video]

https://www.youtube.com/watch?v=Iv7BYURURRI
1•surprisetalk•31m ago•0 comments

Show HN: StepKit, an open and cross-platform durable execution standard

16•tonyhb•31m ago•4 comments
Open in hackernews

Zig and GPUs

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

Comments

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