frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Pyongyang Once Had a Muslim Governor (Probably)

https://lostfutures.substack.com/p/pyongyang-once-had-a-muslim-governor
1•Lost-Futures•54s ago•0 comments

Shopify's AI Developer

https://twitter.com/tobi/status/2053121182044451016
1•talal7860•2m ago•0 comments

Show HN: DDoS detection in 500 lines of Python (MIT, no cloud, no account)

https://github.com/Flowtriq/ftagent-lite
1•jacob_masse•3m ago•0 comments

Russia can falsify GPS signals deep into Europe

https://www.reuters.com/business/aerospace-defense/russia-can-falsify-gps-signals-deep-into-europ...
2•jonbaer•3m ago•0 comments

Bedrock and a hard place: Claude adventure leaves AWS user with $30K invoice

https://www.theregister.com/saas/2026/05/14/bedrock-and-a-hard-place-claude-adventure-leaves-aws-...
3•ValentineC•6m ago•0 comments

Big Tech's Anti-Labor Playbook Has Come for Wikipedia

https://medium.com/@jakeorlowitz/wikipedia-is-doing-the-capitalist-thing-56a393232943
2•cdrnsf•8m ago•0 comments

After DeepSeek, Xiaomi cuts AI costs by up to 99%

https://twitter.com/i/status/2059314052892099070
3•try-working•10m ago•0 comments

Numb – Full Album – YouTube Exclusive Pre-Release

https://www.youtube.com/watch?v=M63nJq8IdIo
1•keithgdarley•12m ago•0 comments

We won't be looking at jobs numbers in 5 years (to gauge economy) [video]

https://www.youtube.com/watch?v=yyECa58Kg4Q
1•donsupreme•13m ago•0 comments

Terminal coding agent for DeepSeek V4

https://github.com/Hmbown/CodeWhale
2•nhatcher•13m ago•0 comments

Destroy My Paper

https://destroymypaper.com/
2•ThouYS•14m ago•0 comments

Robotics giant Figure AI demonstrates its robots to the world

https://forgeglobal.com/insights/figure-ai-robotics-growth-2026/
1•andsoitis•15m ago•0 comments

IT Capex Now Accounts for More Than a Third of S&P 500 Capex Spending

https://www.apollo.com/wealth/the-daily-spark/it-capex-now-accounts-for-more-than-a-third-of-s-p-...
1•akyuu•16m ago•0 comments

`A sense of trusting one's self': how to start building confidence

https://www.theguardian.com/wellness/2026/may/26/how-to-start-building-confidence
3•jethronethro•17m ago•0 comments

User-testing the user-tester: synthetic user feedback driven self improvemnt

https://noemica.io/blog/user-testing-the-user-tester
1•SebastianSosa•17m ago•0 comments

Bay Area mom out thousands after scammers use AI to mimic daughter's voice

https://abc7news.com/post/bay-area-mom-thousands-scammers-use-ai-mimic-daughters-voice-fake-kidna...
3•arkadiyt•18m ago•0 comments

There are now more ETFs than stocks in the US

https://www.apollo.com/wealth/the-daily-spark/more-etfs-than-stocks
2•akyuu•20m ago•1 comments

Claude, Author of the Humanitas

https://www.greaterwrong.com/posts/wRNJZz2iYrfDaSDdz/claude-author-of-the-humanitas
1•Jakob•21m ago•0 comments

Iran Is Back Online

https://mastodon.social/@netblocks/116642131173028444
3•2dvisio•26m ago•0 comments

The Psychology of Arrival in Coworking Spaces

https://twofifty.co/en/blog/psychology-of-arrival-coworking-spaces
1•inchevd•27m ago•0 comments

I'm 19 and built an AI golf swing analyzer with on-device CoreML

https://apps.apple.com/us/app/the-swing-sensei/id6759412468
1•TheSwingSensei•28m ago•0 comments

iOS 26.6 adds new alert when you try blocking too many contacts

https://9to5mac.com/2026/05/26/ios-26-6-adds-new-alert-when-you-try-blocking-too-many-contacts/
1•cdrnsf•28m ago•0 comments

The Nation-State Is a Legacy System. Time for an Upgrade

https://gccsproject.pages.dev/
1•pear01•29m ago•0 comments

Encrypted DNS in 2026: DoH, DoT and DoQ compared with real benchmarks

https://www.copahost.com/blog/encrypted-dns/
1•ggallas•30m ago•0 comments

The worst job interview I ever had

https://www.oliverio.dev/blog/the-worst-job-interview-i-had
1•oliverio•30m ago•0 comments

Being a 1.5-10x Developer

https://build.ms/2026/5/26/being-a-1-5-10x-developer/
1•mergesort•31m ago•0 comments

6M Fake GitHub Stars: How to Vet Open-Source AI Tools

https://www.chatgpt.ca/blog/github-fake-stars-ai-tool-evaluation
2•b-man•31m ago•0 comments

Mysteries of the Griffin iMate

https://www.projectgus.com/2023/04/griffin-imate/
1•geerlingguy•34m ago•0 comments

The Computer That Was Too Advanced for Its Own Good [video]

https://www.youtube.com/watch?v=OWPnEDXVTl8
3•devonnull•35m ago•0 comments

Optimization Constants in Mathematics

https://teorth.github.io/optimizationproblems/
2•bmc7505•41m 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.