frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

US Space Force gives Rocket Lab $397M to build threat-tracking 'Flatellites'

https://www.space.com/space-exploration/satellites/us-space-force-gives-rocket-lab-usd397-million...
1•walrus01•42s ago•0 comments

A Workaphile's Apology

https://moalquraishi.wordpress.com/2026/08/10/a-workaphiles-apology/
1•superfx•1m ago•0 comments

Dario Amodei on Regulation and Concentration of Power

https://xcancel.com/DarioAmodei/status/2088758816376807762
1•yurivish•5m ago•0 comments

Snail OS – Custom Firmware for the Xteink X4

https://snailos.org
2•alibosworth•14m ago•0 comments

Omarchy Quattro by DHH Released [video]

https://www.youtube.com/watch?v=F7fe9pa8OeE
2•ayatollah•20m ago•0 comments

Why Your Summer Wardrobe Should Include UV Protection, Linen Clothing

https://www.bloomberg.com/news/features/2026-08-14/why-your-summer-wardrobe-should-include-uv-pro...
2•petethomas•29m ago•0 comments

California Energy Storage System Survey

https://www.energy.ca.gov/data-reports/energy-almanac/california-electricity-data/california-ener...
2•toomuchtodo•34m ago•1 comments

Theory of Constraints

https://en.wikipedia.org/wiki/Theory_of_constraints
2•diatone•35m ago•1 comments

Destroying My Homelab with Kubernetes – Linux Society UNSW 2026 [video]

https://www.youtube.com/watch?v=U-xqxMQD2QE
3•l-mdev•36m ago•0 comments

Guiding Ships with Moire Patterns

https://tinkerings.org/2018/03/28/guiding-ships-with-moire-patterns/
2•Eridanus2•38m ago•0 comments

TrueStar – AI moderated expert interviews and multi-agent deep research

https://truestar.tech
2•vineetkia•41m ago•1 comments

CosmicOS: An open source Contact message

https://cosmicos.github.io/
3•paulfitz•44m ago•0 comments

We Can't Control the Bots

https://12gramsofcarbon.com/p/tech-things-we-cant-control-the-bots
3•theahura•50m ago•1 comments

Privacy is an underrated advantage in Slack apps

2•alance•54m ago•1 comments

Dots3-Note Preview

https://huggingface.co/dots-studio/dots3-note-prev
2•handfuloflight•56m ago•0 comments

One Moment – A temporary clipboard that lives only in the browser

https://onemoment.me/
2•diosnelayalag•59m ago•0 comments

Attention Through Arithmetic Intensity

https://changyi.fun/posts/attention-arithmetic-intensity/
3•jxmorris12•1h ago•0 comments

Snap Chart AI

https://www.snap-chart.ai/
3•trendyking•1h ago•0 comments

Privibe - LLM Cli Local first+privacy focus+llama.cpp cache branch + Qwen3.x

https://github.com/alainnothere/privibe/tree/main
2•xlayn•1h ago•1 comments

Parts Pairing Kills Independent Repair (2023)

https://www.ifixit.com/News/69320/how-parts-pairing-kills-independent-repair
3•evolve2k•1h ago•0 comments

Show HN: Mic Drop, a real-time multiplayer karaoke game

https://www.micdrop.gg/
4•johnsillings•1h ago•2 comments

Why Buy It When You Can Print It? A DIY Nation Has a Fix for Broken Doodads

https://www.wsj.com/tech/why-buy-it-when-you-can-print-it-a-diy-nation-has-a-fix-for-broken-dooda...
2•mikhael•1h ago•0 comments

Show HN: I built a native app for coding agents with Rust and GPUI

https://waku.sh
3•0x142857•1h ago•1 comments

Jevons Paradox

https://en.wikipedia.org/wiki/Jevons_paradox
4•elsewhen•1h ago•1 comments

Just shared my experience building a full marketplace with Claude

https://initacademy.oyakoo.store/products/build-it-with-ai
2•zooboole•1h ago•0 comments

The AI Bubble Is on Its Last Legs

https://www.youtube.com/watch?v=szK9LIGvW1o
3•cable2600•1h ago•0 comments

MIT Webscraper :)

https://liamis.dev/blogs/MitWebscraper/MitWebscraper.html
3•ForgottenMail•1h ago•4 comments

An Idiot's Guide to Winning Elections

https://outlookzen.com/2026/08/15/an-idiots-guide-to-winning-elections/
3•whack•1h ago•0 comments

ChatGPT lost 22 points of web share in a year

https://aicharts.grok.me/c/market-share
17•echohive42•1h ago•34 comments

The complete AI SEO playbook: from zero to 4.6M impressions in 3 months

https://github.com/TraceCohenTech/ai-seo-playbook
5•t_cohen•1h ago•4 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.