frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tools to understand how content was created and edited

https://blog.google/innovation-and-ai/products/identifying-ai-generated-media-online/
1•7777777phil•55s ago•0 comments

Big Tech's AI Trap

https://crib.social/notice/B6SoGrSEip75oKAcGO
1•gslepak•1m ago•0 comments

Depression linked to bacterium-chemical interaction in personal care products

https://tech-paper.com/new-research-found-that-depression-may-begin-in-your-gut-when-a-common-bac...
1•cachecrab•2m ago•0 comments

The Sunk Cost Fallacy and How It Influences Our Decisions

https://almossawi.substack.com/p/the-sunk-cost-fallacy
1•anarbadalov•2m ago•0 comments

Andrej Karpathy Joins Anthropic

https://www.thevccorner.com/p/breaking-andrej-karpathy-joins-anthropic
2•vinni2•4m ago•0 comments

Google Antigravity CLI

https://antigravity.google/blog/introducing-google-antigravity-cli
2•jbirnick•4m ago•0 comments

Google introduces Gemini Spark, a 24/7 agentic assistant with Gmail integration

https://techcrunch.com/2026/05/19/google-introduces-gemini-spark-a-24-7-agentic-assistant-with-gm...
1•gfortaine•5m ago•0 comments

Show HN: Logbox – let Claude monitor your dev logs

https://github.com/struct-dot-ai/logbox
2•nimeshmc•6m ago•0 comments

Likely AI-generated short story won a major prize

https://twitter.com/nabeelqu/status/2056397504824963296
2•thatoneengineer•6m ago•0 comments

Show HN: Melogen – Generate MIDI melodies for free

https://www.melogen.ai/
1•squirrelon•8m ago•0 comments

Show HN: FastBack end – schema-first back end runtime with OpenAPI output

https://github.com/darula-hpp/fastbackend
1•ombedzi•9m ago•0 comments

The Gemini app becomes more agentic, delivering proactive, 24/7 help

https://blog.google/innovation-and-ai/products/gemini-app/next-evolution-gemini-app/
2•gfortaine•12m ago•0 comments

Disney Erased FiveThirtyEight

https://www.natesilver.net/p/disney-erased-fivethirtyeight
5•7777777phil•13m ago•0 comments

Which campaigns actually drive your leads?

https://www.digitalpilot.app/
1•iamjeylabrecque•14m ago•0 comments

Show HN: Coding agent where a second agent QAs every PR in a real browser

https://www.notesasm.com/
1•kavin_key•15m ago•0 comments

The missing men of the American marriage market

https://www.npr.org/sections/planet-money/2026/05/19/g-s1-122695/the-missing-men-of-the-american-...
2•sizzle•15m ago•0 comments

Scientists worried about de-extinction ethics as biotech co. touts breakthrough

https://www.rnz.co.nz/news/science-and-technology/595719/scientists-concerned-about-de-extinction...
3•billybuckwheat•16m ago•0 comments

Automate your computer using real code – not drag-and-drop blocks

https://github.com/hassananayi/codeonix
1•hassananayi•16m ago•1 comments

The Trouble with Emotion AI

https://www.computerworld.com/article/4171382/the-trouble-with-emotion-reading-ai.html
2•mikelgan•16m ago•1 comments

Lapdog: Local Coding Agent Assistant

https://lapdog.datadoghq.com/
1•astuyvenberg•17m ago•1 comments

Ruby vs. Java vs. TypeScript: Building Claude Cowork Docx Plugin

https://tanin.nanakorn.com/ruby-java-typescrip-claude-docx-plugin/
2•tanin•18m ago•0 comments

Mistral AI Python package compromised on PyPI [2026-05-12]

https://github.com/mistralai/client-python/issues/523
2•r2vcap•18m ago•0 comments

Finding Unpinned and Unpinnable GitHub Actions Across Your Org

https://www.pavel.gr/blog/finding-unpinned-and-unpinnable-github-actions
1•howlett•19m ago•0 comments

From Compute Overhang to Compute Crunch

https://secondthoughts.ai/p/the-ai-race
1•speckx•20m ago•0 comments

Chrome Dev Blog: Declarative Partial Updates (Interleaved HTML Streaming)

https://bsky.app/profile/did:plc:ilj6i6evo5xxl5iixp2y76nt/post/3mm7rxrubqs2v
1•avarev•21m ago•0 comments

Show HN: Search 67K .AI domains by AI-extracted tags and descriptions

https://ratemyaisite.com/explore
1•prolly97•22m ago•0 comments

Gemini Omni Flash is coming soon

https://gemini-omni-flash.net/
1•Jenny249•23m ago•0 comments

A case against the case against full-body MRI screening

https://medium.com/the-tideline/why-the-smartest-people-i-know-are-ignoring-their-doctors-on-full...
1•biancaleeman•24m ago•1 comments

TinyFish Vault: Your Web Agent Can Now Log in Without Touching Your Passwords

https://www.tinyfish.ai/blog/tinyfish-vault-your-web-agent-can-now-log-in-without-touching-your-p...
1•gargigupta•24m ago•0 comments

AI slop is flooding maths YouTube [video]

https://www.youtube.com/watch?v=mRO_QonhC2c
5•Imustaskforhelp•27m ago•1 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.