frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: LibreThinker, free AI assistant for LibreOffice Writer, 10k installs

https://librethinker.com/
1•mmarian•32s ago•0 comments

Why do AI models hallucinate? [video]

https://www.youtube.com/watch?v=005JLRt3gXI
1•simonebrunozzi•1m ago•0 comments

Rabbi boasting of buldozing Gazan homes to light torch for Israel's national day

https://www.theguardian.com/world/2026/apr/21/rabbi-who-boasts-bulldozing-palestinian-homes-light...
1•hebelehubele•4m ago•0 comments

Ask HN: People who moved away from tech business/career, what do you do?

1•throwaway_32u10•5m ago•0 comments

Delivering a dynamic hexagonal world map in just 10kb

https://calibreapp.com/blog/building-our-beloved-hex-map
1•robin_reala•9m ago•0 comments

A guide on how to be a Programmer (2002)

https://github.com/braydie/HowToBeAProgrammer
1•downbad_•19m ago•1 comments

Colorado Age Attestation bill gets amendments to have open source excluded

https://www.gamingonlinux.com/2026/04/colorado-age-attestation-bill-gets-amendments-to-have-open-...
2•jurgemaister•27m ago•0 comments

SpaceX says unproven AI space data centers may not be commercially viable

https://www.reuters.com/world/spacex-says-unproven-ai-space-data-centers-may-not-be-commercially-...
2•1vuio0pswjnm7•29m ago•0 comments

Went to bed with a $10 budget alert. Woke up to $25,672 in debt to Google Cloud

https://old.reddit.com/r/googlecloud/comments/1ssagtw/went_to_bed_with_a_10_budget_alert_woke_up_to/
3•ratg13•29m ago•1 comments

I built a simple flowchart tool to organize ideas

https://www.processon.io/
1•shujie_li•31m ago•0 comments

Florida Attorney General launches criminal probe into ChatGPT over FSU shooting

https://apnews.com/article/florida-chatgpt-fsu-gunman-b32a7276426f621193f61a0f904f924c
2•1vuio0pswjnm7•32m ago•0 comments

Show HN: Content-mill: Index any static content into Meilisearch via YAML config

https://github.com/blueinit/content-mill
1•centrali•32m ago•1 comments

Let's Measure Gravity

https://owl.billpg.com/lets-measure-gravity/
2•billpg•33m ago•0 comments

Show HN: We benchmarked 18 LLMs on OCR (7K+ calls) – cheaper models win

https://www.arbitrhq.ai/leaderboards/
3•TimoKerr•34m ago•1 comments

Top Law Firm Apologizes to Bankruptcy Judge for AI Hallucination

https://www.bloomberg.com/news/articles/2026-04-21/top-law-firm-apologizes-to-bankruptcy-judge-fo...
2•1vuio0pswjnm7•35m ago•0 comments

Show HN: Notation – an iOS chess coach (Stockfish and optional BYOK Claude)

https://notationchesscoach.app
1•darrenc81•36m ago•1 comments

Orson Scott Card on feedback from editors

https://twitter.com/i/status/2046702294406680751
2•Michelangelo11•37m ago•1 comments

You can make something good

https://sfalexandria.com/posts/farzas-creations/
1•aadillpickle•42m ago•0 comments

Git for web services – everything as a file for coding agents

https://github.com/KrzysztofBogdan/gitfs
1•kpbogdan•42m ago•1 comments

American Supply Chain

https://twitter.com/bihanmahadewa/status/2046732759339552772
1•bihan•43m ago•1 comments

In Search of (Claude's) Lost Time - Globalizing Claude's project memories

https://www.gsarigiannidis.gr/claude-global-memory/
2•gsarig•46m ago•0 comments

Deep Research Max

https://blog.google/innovation-and-ai/models-and-research/gemini-models/next-generation-gemini-de...
2•markerbrod•46m ago•0 comments

Aube: A fast Node.js package manager

https://github.com/endevco/aube
1•icar•46m ago•0 comments

Spain's greatest matador gored by bull in comeback from retirement

https://www.thetimes.com/world/europe/article/morante-bullfighter-injured-bull-goring-tsj0bt7ks
2•petethomas•48m ago•2 comments

C++ Scripting with Libriscv

https://libriscv.no/blog/expert-example/
1•fwsgonzo•49m ago•0 comments

Anthropic CVP – Run 2

https://sunglasses.dev/reports/anthropic-cvp-opus-4-7-evaluation-run-2
1•azrollin•52m ago•0 comments

Shared Agent Harness

https://github.com/goncalossilva/.agents
1•ankitg12•57m ago•0 comments

Rspack 2.0

https://rspack.rs/blog/announcing-2-0
3•0x1997•1h ago•1 comments

The Free Universal Construction Kit

https://fffff.at/free-universal-construction-kit/
1•robinhouston•1h ago•0 comments

Force all app traffic into the tunnel in the iOS app

https://mullvad.net/en/blog/force-all-app-traffic-into-the-tunnel
1•eptcyka•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.