frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Jevlang: Python with a Smart "If"

https://github.com/sumanmichael/jevlang
1•sumanmichael•1m ago•0 comments

China's 6th-Gen J-36 Fighter-Bomber to Feature Combat Laser

https://en.defence-ua.com/news/chinas_6th_gen_j_36_fighter_bomber_to_feature_combat_laser-19834.html
1•motionlessveloc•1m ago•0 comments

Why we're building the omics crate

https://claymcleod.dev/blog/2026-07-26-why-were-building-omics
1•clmcleod•3m ago•0 comments

Shooter game with every NPC tactical decisions made by Jev

https://coffee.yardsort.sh/
1•joaoh82•3m ago•1 comments

Preschoolers Who Blink More Often Show Stronger Self-Control, Study Finds

https://studyfinds.com/preschoolers-who-blink-more-often-show-stronger-self-control-study-finds/
1•mdp2021•6m ago•0 comments

Named and Optional Arguments Are Awesome

https://botahamec.dev/named-optional-args
1•bluepeter•6m ago•0 comments

Ask HN: How do SaaS companies continue to charge my replaced credit card?

1•sarim•6m ago•1 comments

The Beauty of West African Textiles

https://www.collectorsweekly.com/articles/the-beauty-of-west-african-textiles-and-the-amazing-var...
1•mooreds•7m ago•0 comments

Malicious NPM packages evade install-script defenses at runtime

https://www.bleepingcomputer.com/news/security/malicious-npm-packages-evade-install-script-defens...
2•sbulaev•7m ago•0 comments

Mathematicians Feel Threatened by AI. They Can't Quit It

https://www.wired.com/story/mathematicians-cant-quit-ai/
1•ent101•7m ago•0 comments

Nobody pays for FOSS, we can force them to

https://seldo.com/posts/nobody-pays-for-open-source-we-can-force-them-to/
2•Muhammad523•10m ago•0 comments

Show HN: Badbox – A deterministic bad-pattern detector for codebases

https://github.com/0ctacity/badbox
1•ata-sesli•10m ago•0 comments

Complete Production Webapp in Lean

https://github.com/paulbutcher/lean-todomvc-max
1•dgordev1982•11m ago•0 comments

Modifying my Casio PT-10 toy keyboard to become a synthesizer

https://www.chzsoft.de/site/hardware/modifying-my-casio-pt-10-toy-keyboard-to-become-a-synthesizer/
1•nynyny7•11m ago•0 comments

Jonathan Frakes Asks You Things [video]

https://www.youtube.com/watch?v=9S1EzkRpelY
1•mooreds•13m ago•0 comments

Ogre Battle 64 Recompiled Project at 99.05%

https://github.com/lfarroco/ogre-battle-64-recomp
1•frozenlettuce•15m ago•1 comments

A (necessarily) brief history of the remainder of mathematics

https://cofault.com/math-remainder.html
1•oecumena•19m ago•0 comments

One Minute Park

https://oneminutepark.tv/
1•namuorg•19m ago•0 comments

Rebuilding our agent with Jev as a core primitive

https://usenym.com/technical-blog/rebuilding-our-agent-with-jev
1•ianbutler•19m ago•0 comments

Brownian Motion

https://gregorygundersen.com/blog/2026/04/22/brownian-motion/
1•andsoitis•27m ago•0 comments

Last Course: a $9 online course that is one .txt file

https://www.yourlastcourse.store
2•flxblck•28m ago•1 comments

Zephyr RTOS Ported to WebAssembly

https://github.com/beriberikix/zephyr-wasm-soc
1•adunk•28m ago•1 comments

Scam awareness training seemed futile. ChatGPT's data is changing my mind

https://charlemagnelabs.substack.com/p/how-much-daylight-is-there-between
1•therealjpg•29m ago•0 comments

Taking Apart Infatica

https://vasie.dev/blog/inside-infatica/
1•vasie•29m ago•0 comments

Why the 2026 Battle for the House Is More Uncertain Than It Looks

https://medium.com/freedomofthought/why-the-2026-battle-for-the-house-is-more-uncertain-than-it-l...
1•raynchad•30m ago•0 comments

Panic Won't Fix the Looming A.I. Threat. Politics Will

https://www.nytimes.com/2026/09/19/opinion/ai-hugging-face-big-tech-danger.html
1•jay_kyburz•30m ago•2 comments

The Life of Death and the Enshittificator [video]

https://www.youtube.com/watch?v=d6SPV4GZp-U
1•tcmb•30m ago•1 comments

Metadata requests no longer tracked in PyPI download counts

https://blog.pypi.org/posts/2026-08-31-download-counts/
1•rbanffy•31m ago•0 comments

Polars – Migration strategies for going from Pandas to Polars

https://pola.rs/posts/pandas-to-polars-migration-strategies/
1•rbanffy•32m ago•0 comments

How Big Tech Runs Tech Projects and the Curious Absence of Scrum (2021)

https://newsletter.pragmaticengineer.com/p/project-management-in-tech
1•taubek•32m 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.