frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Anthropic installs spyware when you install Claude Desktop

https://blog.alexewerlof.com/p/local-browser-ai
2•hanifbbz•5m ago•0 comments

They Went Abroad to Save Money. Moving Back Seems Unaffordable

https://www.nytimes.com/2026/04/19/business/americans-abroad-cheaper-living-costs.html
1•toomanyrichies•14m ago•0 comments

Tinkerer transforms a filthy 1990s PlayStation into the 'ultimate PS1'

https://www.popsci.com/technology/transform-1990s-playstation/
1•Brajeshwar•19m ago•0 comments

The Infinite Machine Olto is part motorcycle, part bike, part Cybertruck

https://www.theverge.com/transportation/913008/infinite-machine-olto-ebike-review
1•walterbell•30m ago•0 comments

Show HN: OpenRegistry – MCP for global company registry search

https://github.com/sophymarine/openregistry
1•richardwong1•31m ago•0 comments

A cache-friendly IPv6 LPM with AVX-512 (linearized B+-tree, real BGP benchmarks)

https://github.com/esutcu/planb-lpm
2•debugga•31m ago•0 comments

Introductory Biology: Evolutionary and Ecological Perspectives

https://pressbooks.umn.edu/introbio/
2•rolph•36m ago•0 comments

Is AI pressure making developer burnout worse? (anonymous survey inside)

1•rechargedaily•43m ago•0 comments

WebUSB Extension for Firefox

https://github.com/ArcaneNibble/awawausb
2•luu•46m ago•0 comments

Autonomous Testing and AI‑Driven Tooling Are Redefining Developer Productivity

https://semanticed.online/editorial-why-autonomous-testing-and-ai-driven-tooling-are-redefining
2•alihassaanmug•49m ago•0 comments

Qwen releases Qwen3-Embedding-0.6B

https://huggingface.co/Qwen/Qwen3-Embedding-0.6B
3•arabicalories•50m ago•1 comments

Box-shadow is no alternative to outline

https://www.matuzo.at/blog/2026/box-shadow-no-alternative-to-outline
1•salkahfi•51m ago•0 comments

Show HN: Ribbon, a Native iOS Linkding Client

https://apps.apple.com/us/app/ribbon-a-linkding-client/id6762416055
1•cdrnsf•52m ago•0 comments

Wonderful Life: The Burgess Shale and the Nature of History[pdf]

https://ia601309.us.archive.org/20/items/historyDEEPWEB/Wonderful%20Life_%20The%20Burgess%20Shale...
1•rolph•54m ago•0 comments

Detecting Gunshots with a Watch Accelerometer

https://humanparadox.org/garmin-fenix-shot-timer-app/
2•colingauvin•1h ago•0 comments

Unfortunate day for companies named Context

https://www.context.dev/blog/we-are-context-dev-not-context-ai
2•ICodeSometimes•1h ago•2 comments

Mac Mini and Mac Studio Supply Shortages

https://www.wsj.com/tech/personal-tech/apple-mac-mini-supply-3e7a7509
3•Brajeshwar•1h ago•1 comments

Henry David Thoreau 2026 film

https://www.pbs.org/show/henry-david-thoreau/
2•rasengan0•1h ago•0 comments

Scalable Fluxonium Quantum Processors via Tunable-Coupler Architecture

https://arxiv.org/abs/2604.13363
2•jonbaer•1h ago•0 comments

Anthropic installed a spyware bridge on my machine?

https://www.thatprivacyguy.com/blog/anthropic-spyware/
44•twapi•1h ago•10 comments

The Khan Ted Institute [video]

https://www.youtube.com/watch?v=kEhRi1tFlhs
1•apparent•1h ago•1 comments

Contra Benn Jordan, data center (and all) sub-audible infrasound issues are fake

https://blog.andymasley.com/p/contra-benn-jordan-data-center-and
2•logicprog•1h ago•1 comments

Where Did FIFA Seat Lottery Winners?

https://seat-transparency.com/
4•hnburnsy•1h ago•1 comments

Deception is strongly amplified in the job market (a statistical model)

https://bosoncutter.substack.com/p/deception-is-amplified-by-default
4•the_tyger•1h ago•1 comments

Why every developer needs their own agent-skills

https://olshansky.substack.com/p/why-every-developer-needs-their-own
1•Olshansky•1h ago•0 comments

Vercel Incident Response Playbook

https://github.com/OpenSourceMalware/vercel-april2026-incident-response
5•6mile•1h ago•4 comments

Third New Glenn launch suffers upper stage malfunction

https://spacenews.com/third-new-glenn-launch-suffers-upper-stage-malfunction/
2•ExpertAdvisor01•1h ago•2 comments

Google should allow third-party search engines access to data, EU says

https://www.reuters.com/world/google-should-allow-third-party-search-engines-access-data-eu-says-...
4•1vuio0pswjnm7•1h ago•1 comments

Show HN: TikTok-style mobile scroller for Civitai, self-hosted recs on a $5 VPS

https://testflight.apple.com/join/JkKUCXY6
1•alongbottom•1h ago•0 comments

Earthset

https://twitter.com/astro_reid/status/2046009031613907029
1•jbegley•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.