frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

LLMs for Mortals 6 months later

https://crimede-coder.com/blogposts/2026/LLMsForMortalsUpdate
1•apwheele•37s ago•0 comments

Halftone Generator

https://twenty.com/halftone
1•Bluestein•3m ago•0 comments

Alongside: A learning partner that turns any webpage into an editable whiteboard

https://github.com/SinghCoder/alongside
1•vismit2000•5m ago•0 comments

Applying Game Design to Reality

https://peterlebek.com/posts/applying-game-design-to-reality.html
1•lebek•7m ago•0 comments

Show HN: Aveela – Screenshots to client docs, hosted end-to-end in the EU

https://aveela.com/en
1•rgroli•7m ago•0 comments

At Right Angles Magazine – A Resource for School Mathematics

https://atrightangles.azimpremjiuniversity.edu.in/magazine-issues/
1•vismit2000•8m ago•0 comments

WVM – A headless Windows 11 execution sandbox for AI agents

https://github.com/AndrewProject-Zion/WVM
1•andy1571•8m ago•0 comments

Canada invited to become first 'associate member' of the EU

https://www.euronews.com/my-europe/2026/09/16/canada-to-become-first-associate-member-of-the-eu
1•thunderbong•9m ago•1 comments

GPUThor: Amplifying Rowhammer Attacks via Non-Uniform Patterns to Exploit

https://arxiv.org/abs/2609.16546
1•sbulaev•11m ago•0 comments

Most workers would take a pay cut for job security

https://www.marketwatch.com/story/most-workers-would-take-a-pay-cut-for-job-security-right-now-i-...
1•cramer4next•12m ago•0 comments

Show HN: Zhenzhu – Look up Chinese while reading on macOS

https://zhenzhu.app/
3•minhmoc710•13m ago•0 comments

Private Cloud Compute Security Guide – Documentation

https://security.apple.com/documentation/private-cloud-compute
2•djoldman•13m ago•0 comments

Agility's new humanoid robot will stop, squat to avoid harming human coworkers

https://arstechnica.com/ai/2026/09/agilitys-new-humanoid-robot-will-stop-squat-to-avoid-harming-h...
1•rbanffy•16m ago•1 comments

Maze Synopsis

https://www.futilitycloset.com/2026/09/03/synopsis/
1•surprisetalk•18m ago•0 comments

How to get a DOI for your blog posts

https://shkspr.mobi/blog/2026/09/how-to-get-a-doi-for-your-blog-posts/
2•n_plus_1_acc•18m ago•0 comments

Dream-RSI: Recursive Self-Improvement Through Evolving Worlds

https://www.dream-rsi.com/
1•fofoz•19m ago•0 comments

Ask HN: Might complex software have infinitely many vulnerabilities?

1•cogs•22m ago•0 comments

Where Direction Changes, but Nobody Mentions It

https://medium.com/@gurvinder372/article-18-where-direction-changes-but-nobody-mentions-it-6bdab9...
1•gps372•22m ago•0 comments

Show HN: TurboBench, the Compression Lie Detector, 100 Codecs, Daily Update

https://github.com/powturbo/TurboBench/blob/master/benchmark.md
3•powturbo•22m ago•0 comments

Interpreting Pangram

https://lucumr.pocoo.org/2026/9/14/interpreting-pangram/
1•tmarice•22m ago•0 comments

Why AI Coding Needs Specs, Not Better Prompts [video]

https://www.youtube.com/watch?v=f289f2GgfFE
1•Harish_0089•22m ago•0 comments

The more you study consciousness, the weirder it gets [video]

https://www.youtube.com/watch?v=hYrgLn7pWp8
1•binyu•23m ago•0 comments

Show HN: Vortole, word games for language learning at your proficiency level

https://vortole.com/
1•nohowtech•25m ago•0 comments

Turbocrypt: Universal File Encryption

https://github.com/jedisct1/turbocrypt
1•jedisct1•25m ago•0 comments

Apple detectives solved mystery of ancient tree and rewrote the history of fruit

https://www.scientificamerican.com/article/how-apple-detectives-solved-the-mystery-of-an-ancient-...
2•nkurz•25m ago•0 comments

Hightouch brings customer history from data warehouses to real-time marketing

https://hightouch.com/blog/same-session-architecture
1•mooreds•26m ago•0 comments

Signal registration without a phone number now available in Android beta

https://aboutsignal.com/news/signal-registration-without-a-phone-number-now-available/
2•bertman•26m ago•0 comments

The EU Bans Social Media for Under-13s

https://www.wired.com/story/the-eu-bans-social-media-for-under-13s/
1•AndrewDucker•27m ago•0 comments

Explaining to business people why building software is still hard

https://www.manager.dev/newsletter/cursing-the-day-lovable-was-born
1•theanonymousone•27m ago•0 comments

Qwen3.8-Flash passed 17/17 checks on a DeepSWE v1.1 task in our agent harness

https://github.com/taiheqi718-art/AIC-Evals
1•htqmike•27m 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.