frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SED Diode

http://www.catb.org/jargon/html/S/SED.html
1•drmacak•1m ago•0 comments

git-sync

https://github.com/entireio/git-sync
1•tosh•4m ago•0 comments

Top Storyblok CMS Migration Companies to Choose From

https://focusreactive.com/blog/storyblok-cms-migration-companies/
1•katarinadrozd•4m ago•0 comments

Claude Code Source Code Breakdown

https://kuber.studio/blog/AI/Claude-Code%27s-Entire-Source-Code-Got-Leaked-via-a-Sourcemap-in-npm...
1•sea-gold•13m ago•0 comments

Vibe Maintainer

https://steve-yegge.medium.com/vibe-maintainer-a2273a841040
2•duggan•16m ago•0 comments

Oscar goes missing after Academy Award winner is blocked from taking on flight

https://www.bbc.com/news/articles/cz72j59znw3o
1•saikatsg•20m ago•0 comments

When Vibe Coding Fails: When to Buy versus When to Build

https://www.forbes.com/councils/forbesbusinesscouncil/2026/04/30/when-vibe-coding-fails-when-to-b...
2•sminchev•21m ago•0 comments

Canonical/Ubuntu have been under DDoS for more than 15h

https://status.canonical.com/#/incident/KNms6QK9ewuzz-7xUsPsNylV20jEt5kyKsd8A-3ptQEHpOd8VQ40ZQs-K...
4•jtlebigot•22m ago•0 comments

What Happened with Mars Sample Return?

https://mceglowski.substack.com/p/what-happened-with-mars-sample-return
2•calcifer•22m ago•0 comments

Nvidia's Jim Fan on the End Game for Robotics [video]

https://www.youtube.com/watch?v=3Y8aq_ofEVs
2•pbd•25m ago•1 comments

Show HN: WeSearch – Anonymous news aggregator with no algorithm, 700 sources

https://wesearch.press/
3•EGCstudy•25m ago•0 comments

SoftBank, Intel to develop ZAM memory – new memory designed as lower-power HBM

https://www.tomshardware.com/tech-industry/artificial-intelligence/softbank-subsidiary-working-wi...
4•rbanffy•25m ago•0 comments

Music with Lyrics Interferes with Cognitive Tasks (2023)

https://journalofcognition.org/articles/10.5334/joc.273
2•XzetaU8•30m ago•0 comments

Show HN: Git Shield – local hooks for secrets and PII

1•veke87•32m ago•0 comments

US lawmakers vote to reduce NSF funding by 20%

https://www.nature.com/articles/d41586-026-01427-6
3•warbaker•34m ago•0 comments

A more efficient implementation of Shor's algorithm

https://lwn.net/Articles/1066156/
2•signa11•37m ago•0 comments

Show HN: Global DNS record propagation visualization

https://www.tidelock.dev/dns/propagation
2•vojtechrichter•45m ago•1 comments

Special-Use Domain 'home.arpa.' (2018)

https://www.rfc-editor.org/rfc/rfc8375.html
1•rdpintqogeogsaa•46m ago•0 comments

OpenClaw Got Safer in Public

https://openclaw.ai/blog/openclaw-security-in-public
1•jacobtomlinson•50m ago•0 comments

Forget Ambition: A Case for Hopeless Creativity

https://www.youtube.com/watch?v=JdlagZ2iDgU
2•stuaxo•50m ago•0 comments

China Planted 78B New Trees Affecting Its Water Cycle

https://www.popularmechanics.com/science/environment/a71126116/china-reforesting-changes-hydrology/
4•kaptain•51m ago•0 comments

My local agentic dev setup today

https://willemvandenende.com/blog/engineering/my-local-agentic-dev-setup-today
2•ColinEberhardt•1h ago•0 comments

Exclusive eBook: Inside the stealthy startup that pitched brainless human clones

https://www.technologyreview.com/2026/04/30/1136684/exclusive-ebook-inside-the-stealthy-startup-t...
2•joozio•1h ago•0 comments

Lightweight OpenCode profile for routine dev work with focused agents

https://github.com/gc-victor/supersimple
1•gcv•1h ago•0 comments

I Built GeoGuesser but for Guns

https://gunguesser.com
2•salad-vr•1h ago•3 comments

Show HN: Parse your chat exports to find restaurants, trips, and activity ideas

https://github.com/DocSpring/chat_to_map
1•nathan_f77•1h ago•0 comments

Ubuntu / Canonical Launchpad Down

https://status.canonical.com/
2•tankenmate•1h ago•1 comments

'Completely horrible': UK job hunters share frustration with AI interviews

https://www.theguardian.com/technology/2026/may/01/uk-job-hunters-frustration-ai-interviews
5•beardyw•1h ago•4 comments

SlothDB a 5X Faster Alternative to DuckDB, ClickHouse DB

1•souravroy78•1h ago•0 comments

RLS sounds great until it isn't

https://planetscale.com/blog/rls-sounds-great-until-it-isnt
1•ksec•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.