frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Flipbook – one-click file sharing for visual media scrubbing

https://browser-session-it94u.pages.dev/
1•keepamovin•7m ago•1 comments

Using a Bitcoin Microstructure Model to Predict Epileptic Seizures

https://zenodo.org/records/19669062
1•juhopaajanen•9m ago•0 comments

The Vercel Breach Needed Malware. The Next One Needs a Bad Readme

https://grith.ai/blog/next-vercel-breach-ai-coding-agent
1•edf13•12m ago•1 comments

Claude Cowork now has Live Artifacts

https://support.claude.com/en/articles/9487310-what-are-artifacts-and-how-do-i-use-them
1•manishfp•15m ago•1 comments

Following America's Artemis-2 Moon Mission Through China

https://www.china-in-space.com/p/following-americas-artemis-2-moon
1•JPLeRouzic•15m ago•0 comments

GitHub Copilot Pro+ not allowing Claude Opus 4.6

https://github.com/microsoft/vscode/issues/311590
2•vikrantrathore•17m ago•1 comments

The Toaster Project(2011) [pdf]

https://www.thomasthwaites.com/folio5/wp-content/uploads/2019/07/Toaster_Project-Thomas_Thwaites-...
1•o4c•17m ago•0 comments

Amazon to invest up to $25B in Anthropic as part of $100B cloud deal

https://www.reuters.com/technology/anthropic-spend-over-100-billion-amazons-cloud-technology-2026...
1•teleforce•17m ago•0 comments

Cocaine pollution gives salmon wanderlust

https://www.science.org/content/article/cocaine-pollution-gives-salmon-wanderlust
1•1659447091•17m ago•0 comments

Most "launch platforms" are built backwards (and it hurts solo founders)

https://buildfeed.co
1•moodiverse•18m ago•1 comments

Show HN: PrivacyScrubber - Local PII redactor for AI (works in Airplane Mode)

https://www.privacyscrubber.com/
1•privacyscrubber•20m ago•0 comments

Lipovive Helps Boost Metabolism and Burn Fat

https://www.morningstar.com/news/accesswire/1138075msn/lipovive-reviews-shocking-2026-report-what...
1•FinnMarden•20m ago•0 comments

Tim Cook Steps Down as CEO of Apple Inc

https://www.apple.com/community-letter-from-tim/
3•Koshima•22m ago•0 comments

Show HN: AI agents deploy apps autonomously (no accounts, no API keys)

https://nodeops.network/createos/docs/MPP/Overview
1•alex_creates•23m ago•0 comments

I analysed 17 years of fast food and coffee spending using OpenAI Codex

https://chrisflemming.com/blog/20260421-fast-food-coffee-spending-codex/
1•cpf_au•24m ago•0 comments

Trump signs order to accelerate access to psychedelic drug treatments

https://www.reuters.com/world/trump-announces-reforms-accelerate-access-psychedelic-drug-treatmen...
1•XzetaU8•27m ago•0 comments

Mason – A multi agent system in a container using Claude Code

https://github.com/Mason-Teams/mason-teams
1•dpark2026•28m ago•1 comments

Israeli soldiers using sexual assault to force Palestinians out of West Bank

https://www.theguardian.com/world/2026/apr/21/israeli-soldiers-using-sexual-assault-to-force-pale...
37•hebelehubele•29m ago•2 comments

TS Eliot's 20th-century nightmare

https://observer.co.uk/culture/books/article/ts-eliots-20th-century-nightmare
1•bryanrasmussen•37m ago•0 comments

18 Years Later, IPv6 Reaches Majority

https://pulse.internetsociety.org/en/blog/2026/04/18-years-later-ipv6-reaches-majority/
2•jruohonen•43m ago•1 comments

AI job scams are booming – and I was fooled by one. Here is how to avoid them

https://www.theguardian.com/money/2026/apr/21/how-to-avoid-ai-online-job-recruitment-scams
1•sorokod•44m ago•0 comments

Simple ways to make meetings work better for employees on the autism spectrum

https://apnews.com/article/autism-awareness-work-neurodivergent-meetings-89dfea1bd912184ab0628377...
1•petethomas•47m ago•0 comments

Good-egg – Trust scoring for GitHub PR authors based on contribution history

https://github.com/2ndSetAI/good-egg
1•zdw•49m ago•0 comments

I made a rap album about SRE/DevOps incidents and outages and it slaps

https://poddaddy5x9.vercel.app/
1•logicminds•49m ago•1 comments

Subtyping, Subclassing, and Trouble with OOP

https://okmij.org/ftp/Computation/Subtyping/
1•signa11•54m ago•0 comments

Malicious Packages Don't Fit the Vulnerability Intelligence Model

https://www.first.org/blog/20260420-Malicious-Packages-Dont-Fit
1•jruohonen•55m ago•0 comments

An information operating system powered by local files

https://galaxybrain.com
1•marcinignac•55m ago•1 comments

Foundations of Computer Science: C edition (1994) [pdf]

https://blough.ece.gatech.edu/3020/focs.pdf
1•nill0•56m ago•0 comments

Social media content creator boost

https://www.qten.ai/
1•bandishankar•56m ago•1 comments

Aiguard-scan – Find secrets and vulnerabilities in AI-generated code

https://github.com/Hephaestus-byte/agent-guard
2•Hephaestus-byte•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.