frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Walking Tour of Surveillance Infrastructure in San Francisco

https://www.foglinesf.com/p/a-walking-tour-of-surveillance-infrastructure-in-san-francisco
1•littlexsparkee•1m ago•0 comments

AI took my job as a translator. I'm starting over at 39 [video]

https://www.youtube.com/watch?v=OovTIngZtCY
2•mmarian•2m ago•0 comments

Ossature can now catch code that compiles but is wrong

https://ossature.dev/blog/code-compiles-but-is-wrong/
1•beshrkayali•3m ago•0 comments

Show HN: Skill Studio – mine, edit, and manage Agent Skills

https://github.com/AltrinaAI/skill-studio
1•harveyhu•4m ago•0 comments

Spotlight on the Shingles Vaccine–Again

https://erictopol.substack.com/p/spotlight-on-the-shingles-vaccineagain
1•paulpauper•5m ago•0 comments

A Maybe Type for C++

https://lzon.ca/posts/tips/cpp-maybe-type/
1•jpmitchell•5m ago•0 comments

The Moonshot

https://writing.antonleicht.me/p/the-moonshot
1•paulpauper•5m ago•0 comments

Dave Baszucki on Roblox, Teen Entrepreneurs, and the Future of Play (Ep. 280)

https://conversationswithtyler.com/episodes/dave-baszucki/
1•paulpauper•6m ago•0 comments

Robust External Hash Aggregation in the Solid State Age (2024)

https://duckdb.org/library/robust-external-hash-aggregation/
1•tosh•7m ago•0 comments

Tons of Loctite adhesive used in Sagrada Familia's central towers

https://www.henkel.com/press-and-media/press-releases-and-kits/2026-06-17-henkel-technology-suppo...
2•melenaboija•7m ago•0 comments

Show HN: Myco Brain – source-traceable memory for AI agents on your own Postgres

https://github.com/thegoodguysla/myco-brain
1•thegoodguys•7m ago•0 comments

Agent for AI Pricing Strategy

https://cloud.limitr.dev/assessment
1•AmeliaWampler•8m ago•0 comments

I told them forced consent was unlawful. 5 years later it cost Elkjop €1.8M

https://www.thatprivacyguy.com/blog/elkjop-forced-consent-fine/
1•speckx•8m ago•0 comments

Robert Mueller (2002): FBI looking to leverage AI to predict 9/11-style attacks

https://www.youtubetrimmer.com/view/?v=1QgQrU4ZMbM&start=1152&end=1196&loop=0
1•BostonFern•8m ago•0 comments

The most important conversational rule most people never learn [video]

https://www.youtube.com/watch?v=XdpnVowlawA
1•gmays•9m ago•0 comments

The AI Hate Progression

https://www.xodium.net/2026/06/the-ai-hate-progression.html
2•gpi•9m ago•0 comments

Show HN: Orchid – An AI Assistant

1•nizzyabi•10m ago•0 comments

DOJ aims to block suit over Musk data center pollution, citing national security

https://www.washingtonpost.com/technology/2026/06/16/justice-department-aims-block-lawsuit-agains...
3•1vuio0pswjnm7•10m ago•0 comments

Choji: Agents to take a customer ask to pull request autonomously

https://twitter.com/chptung/status/2067675275513798730
1•chptung•11m ago•0 comments

GLM-5.2: Benchmarks, Architecture and How to Run It

https://www.techaffiliate.in/blog/glm-5-2-how-to-use-free-benchmarks-review
1•Aditya_kachhawa•13m ago•0 comments

Infrastructure Is the Source of Truth

https://substack.com/@markellens/p-202605003
1•gpi•14m ago•0 comments

Compile Zod (30x faster Zod validation)

https://gajus.com/blog/optimize-zod
1•gajus2•16m ago•0 comments

Wolves outperform dogs in following human social cues

https://www.sciencedirect.com/science/article/abs/pii/S0003347208003631
3•berkeleyjunk•17m ago•0 comments

Show HN: ToNotDo – a tool that helps you know what NOT to do, not a todo app:)

https://tonotdo.cc
1•maz225•19m ago•0 comments

Ask HN: What is the job market like?

9•gardnr•19m ago•2 comments

GAN vs. VAE vs. Diffusion

https://research.rudrite.com/compare/gan-vs-vae-vs-diffusion
1•mridul_sahu•20m ago•0 comments

Show HN: 1pager: Fixing the AI verbosity problem

https://github.com/cfitzgerald-pd/1pager/tree/main
1•bennydog224•20m ago•0 comments

Billionaire tax proposal declared eligible for the November ballot

https://www.latimes.com/california/story/2026-06-17/controversial-billionaire-tax-proposal-appear...
1•1vuio0pswjnm7•20m ago•0 comments

Adding a give_feedback tool to our MCP server

https://www.sanity.io/blog/how-to-get-product-feedback-from-agents
1•kmelve•20m ago•0 comments

Matthias Wandel's web page overflow area

http://matt.wandel.ca
1•OJFord•20m 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.