frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AIs as Modern Genies

https://www.schneier.com/blog/archives/2026/09/ais-as-modern-genies.html
1•Bluestein•2m ago•0 comments

Standupd, a Letterboxd for stand-up comedy

https://standupd.com/
1•alpkorpe•4m ago•0 comments

Norton Neo Browser

https://neobrowser.ai/
1•phantomathkg•6m ago•0 comments

Musk's secretive backer builds $40B SpaceX stake

https://www.ft.com/content/c765f312-e698-4d31-bf71-f64a656ad6f4
3•sbulaev•7m ago•0 comments

GP data added to Palantir's NHS data platform

https://www.ft.com/content/5d15de64-49cc-4b6a-a2ea-51061f1cddc7
2•sbulaev•7m ago•0 comments

Show HN: Nearby places ranked by quality score, not ads

https://realnear.app/
1•stdcall83•7m ago•0 comments

Shared Code: Democratizing AI Companies

https://www.cip.org/blog/shared-code
1•erlend_sh•13m ago•0 comments

Show HN: ProofOfDonation, replace CAPTCHAs with charity donations

https://github.com/mgriley/proof-of-donation/
1•mgriley•14m ago•0 comments

Show HN: PDF Pocket Tools – offline PDF toolkit as a single 200KB HTML file

https://pdfpockettools.itch.io/pdf-pocket-tools
1•pdfpockettools•15m ago•0 comments

Sam Altman addresses AI doomsday fears in new interview

https://fortune.com/2026/09/12/sam-altman-interview-ai-doomsday-safety-models-control-ipo-2027/
1•JeremyTheo•20m ago•1 comments

How supermarkets are using AI to watch you in the aisles

https://www.rte.ie/brainstorm/2026/0911/1590631-retail-surveillance-ai-technology/
2•austinallegro•24m ago•0 comments

Ryanair CEO compares rival airlines to 'rapists'

https://www.brusselstimes.com/2312302/ryanair-ceo-compares-rival-airlines-to-rapists
2•Daniyal45•29m ago•0 comments

Marriott Guest Says Hotel Insisted a Rubbermaid Laundry Cart Was a Baby Crib

https://www.fashiontimes.co.uk/marriott-guest-rubbermaid-cart-instead-crib-1763854
1•extasetoi12•31m ago•0 comments

Homebrew 7.0.0

https://brew.sh/2026/09/13/homebrew-7.0.0/
6•mikemcquaid•33m ago•1 comments

Man arrested after allegedly sexually abusing koi fish in Bangkok

https://www.khaosodenglish.com/featured/2026/09/11/man-arrested-after-allegedly-sexually-abusing-...
1•face2sunny•34m ago•0 comments

Robots protest in Poland over AI regulation concerns

https://www.aljazeera.com/video/newsfeed/2026/9/7/robots-protest-in-poland-over-ai-regulation-con...
1•dinesshsaini21•36m ago•0 comments

Toposes are NOT scary – Urs Schreiber [video]

https://www.youtube.com/watch?v=_3TslhCBQ1E
1•hackandthink•37m ago•0 comments

Download More RAM – Nvidia CMP 170HX Cmpunlocker

https://www.lttlabs.com/articles/2026/09/12/cmp-170hx-cmpunlocker
2•willx86•41m ago•0 comments

In Clover: What does McKinsey do? (2022)

https://www.lrb.co.uk/the-paper/v44/n24/laleh-khalili/in-clover
1•Tomte•46m ago•0 comments

Show HN: Run coding agents on your own machine, steer them from anywhere

https://github.com/phyra-research/roamux
2•mwiki•53m ago•0 comments

Diablo 5 Announced

https://sea.ign.com/diablo-iv/248747/diablo-5-announced
2•nsoonhui•54m ago•0 comments

Ask HN: Should we start airgapping our personal devices?

2•emerongi•55m ago•1 comments

Android – Morphe patch app list

https://morphe-patches.software/#apps
1•dockerd•55m ago•0 comments

Deepfakes are wrecking influencers' credibility, one fake ad at a time

https://www.theguardian.com/technology/2026/sep/12/deepfakes-wrecking-influencers-credibility
4•andsoitis•59m ago•1 comments

Genuine curiosity will always beat performative intellectualism

https://hasifcore.substack.com/p/genuine-curiosity-will-always-beat
3•the-mitr•59m ago•0 comments

Rawtree – A ClickHouse Fork by Tinybird

https://rawtree.com/
2•knuckleheads•59m ago•0 comments

Matt Berry is now a sentient IKEA shelf in Skyrim

https://www.pcworld.com/article/3233287/matt-berry-is-now-a-sentient-ikea-shelf-in-skyrim.html
1•jubayer9906•1h ago•0 comments

Ask HN: What if anyone could sell AI tokens from their idle GPU?

1•edurights-team•1h ago•2 comments

Show HN: How LLMs work, explained through music, football or cricket analogies

https://understand-ai.dev/
1•understandaidev•1h ago•0 comments

Persimmon v0.1 Model Card

https://persimmon.humansand.ai/blog/persimmon-model-card.html
1•pr337h4m•1h 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.