frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

"Lisp: Programming and Proving" by John McCarthy and Carolyn Talcott (1980)

https://archive.org/details/lisp-programming-and-proving
1•mself•3m ago•1 comments

Jurors wade through daunting evidence in high-stakes Meta trial re: social media

https://apnews.com/article/meta-new-mexico-lawsuit-a7374a4dbf19c885f0239431b2341e60
1•1vuio0pswjnm7•4m ago•0 comments

Why do we need apps like cursor?

1•amanhij•5m ago•0 comments

Ask HN: When Will AI Disappear?

1•roschdal•6m ago•0 comments

Jury finds Elon Musk misled investors during Twitter purchase

https://www.latimes.com/business/story/2026-03-20/jury-finds-elon-musk-misled-investors-during-tw...
2•1vuio0pswjnm7•7m ago•0 comments

Sit on Your Ass Web Development

https://blog.jim-nielsen.com/2025/sit-on-your-ass-web-dev/
1•fagnerbrack•10m ago•0 comments

Why Do Humanoid Robots Still Struggle with the Small Stuff?

https://www.quantamagazine.org/why-do-humanoid-robots-still-struggle-with-the-small-stuff-20260313/
1•nsoonhui•11m ago•0 comments

Built some free agents They've helped my business a lot

https://marketplace-weld-alpha.vercel.app
1•Yungdaddi•11m ago•0 comments

Cyber actors linked to Russia targeting users of messaging apps, FBI says

https://www.reuters.com/technology/cyber-actors-linked-russia-are-targeting-users-commercial-mess...
1•petethomas•16m ago•0 comments

Show HN: React-container-kit – named React providers and provider composition

https://github.com/harveyrandall/react-container-kit
1•harveyrandall•17m ago•0 comments

Tokens may soon drive the AI economy

https://www.ft.com/content/b7f681a5-fef8-4156-bbfa-88f9c93e08b4
2•paulpauper•24m ago•0 comments

The 'Seinfeld' Theory of Fiction

https://www.theatlantic.com/books/2026/03/down-time-andrew-martin-pandemic-novel-review/686455/
1•paulpauper•25m ago•0 comments

Gangs of Karachi

https://harpers.org/archive/2015/09/gangs-of-karachi/
2•ajax33•27m ago•0 comments

Bitfield Pitfalls

http://www.os2museum.com/wp/bitfield-pitfalls/
1•userbinator•28m ago•0 comments

Departure Mono Font

https://departuremono.com/
2•iamwil•28m ago•0 comments

Moonshot AI Keynote on Kimi 2.5 at Nvidia GTC

https://twitter.com/kimi_moonshot/status/2035011542115393973
1•curtsmith•29m ago•0 comments

The Trillion Dollar Race to Automate Our Lives

https://www.wsj.com/tech/ai/claude-code-cursor-codex-vibe-coding-52750531
4•fortran77•31m ago•3 comments

Principles and Practice of Deep Representation Learning

https://ma-lab-berkeley.github.io/deep-representation-learning-book/index.html
1•vinhnx•32m ago•0 comments

Windows 11's Start menu was built using React – now switching to native WinUI

https://www.windowscentral.com/microsoft/windows-11/windows-11-major-improvements-announced-movab...
9•steviey19•39m ago•4 comments

Who Tried to Put Age Verification into Linux (and Why?)

https://www.sambent.com/the-engineer-who-tried-to-put-age-verification-into-linux-5/
5•felineflock•47m ago•1 comments

Show HN: Agent-password – a local macOS password manager for agent workflows

https://github.com/tartavull/agent-password
2•tartavull•47m ago•1 comments

Personality Self-Replicators

https://www.lesswrong.com/posts/fGpQ4cmWsXo2WWeyn
1•causalityltd•47m ago•0 comments

Constellation Draw

https://neal.fun/constellation-draw/
1•vismit2000•48m ago•0 comments

The Unusual Billboard Strategy That Got Us Our First Contract

https://twitter.com/gaurab/status/2034985493574668414
1•dsr12•54m ago•0 comments

CopySpeak – A lightweight tool for quick AI text-to-speech

https://github.com/ilyaizen/CopySpeak
3•ilyaizen•1h ago•0 comments

FTC order directing Intuit to stop deceptive TurboTax ads thrown out by US court

https://www.reuters.com/world/us-appeals-court-tosses-ftc-order-against-intuit-over-turbotax-adve...
5•shscs911•1h ago•1 comments

Show HN: AI chat, search, notes, collaborate, channels, cloud drive in one place

https://github.com/NitroRCr/nyaai
1•krytro•1h ago•0 comments

Coastal Grotesque

https://www.tabletmag.com/sections/arts-letters/articles/coastal-grotesque-bret-easton-ellis
1•bonefishgrill•1h ago•0 comments

Show HN: An open-source AI Scrum Team that lives natively in GitHub Issues

https://github.com/plusai-solutions/ai-scrum-master-template
1•dongjiewu•1h ago•0 comments

Crimson Desert refuses to launch on Intel Arc GPUs, developer says seek refunds

https://www.club386.com/crimson-desert-refuses-to-launch-on-millions-of-intel-arc-gpus-developer-...
1•josephcsible•1h ago•0 comments
Open in hackernews

Zig and GPUs

https://alichraghi.github.io/blog/zig-gpu/
57•Cloudef•11mo ago

Comments

LegNeato•11mo ago
See also https://github.com/Rust-GPU/rust-gpu and https://github.com/rust-gpu/rust-cuda
ladyanita22•11mo 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•11mo ago
Microsoft indicated they are switching to SPIR-V from DXIL: https://devblogs.microsoft.com/directx/directx-adopting-spir...
skywal_l•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo ago
The Zig compiler can compile C, though.