frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: How are you handling market-state verification for financial AI agents?

1•Headless_Oracle•1m ago•0 comments

iOS / Swift Engineer – BLE, Maps, Real-World Asset Tracking and Gamification

https://www.dudewhereisthiscar.com/contact/
1•timgavern•3m ago•0 comments

Review: The Design and Engineering of Curiosity

https://www.thespacereview.com/article/3491/1
1•teleforce•9m ago•0 comments

Agenlon – let your agents bid in tenders for tasks

https://github.com/ufukkaraca/agenlon
2•ufukkaraca•17m ago•0 comments

Ask HN: Is this the new normal, a generational gap, or an AI psychosis epidemic?

1•ozozozd•18m ago•2 comments

Prompt-hacking the new p-hacking?

https://cacm.acm.org/opinion/prompt-hacking-the-new-p-hacking/
1•kgarten•19m ago•0 comments

In Search of Banksy

https://www.reuters.com/investigates/special-report/global-art-banksy/
1•divbzero•20m ago•0 comments

Perfect Green Screen Keys

https://github.com/nikopueringer/CorridorKey
1•dan353hehe•22m ago•0 comments

Sheetbest

https://sheetbest.com/
1•skogstokig•22m ago•0 comments

OpenFuse: Persistent shared context for AI agents, via plain files

https://github.com/wearethecompute/openfused
2•wearethecompute•31m ago•0 comments

Core JavaScript and TypeScript Features Become Free in IntelliJ Idea

https://blog.jetbrains.com/idea/2026/03/js-ts-free-support/
4•vilasa•38m ago•0 comments

Show HN: Unwind – I built a security proxy for AI agents on a Raspberry Pi

2•David-Brug-Ai•41m ago•0 comments

VerifySignups – real-time API to block disposable and invalid emails

https://www.verifysignups.com/
2•likelystoryllc•42m ago•0 comments

Ships cross St. of Hormuz as Iran exports oil bbl. despite war

https://apnews.com/article/ships-iran-oil-china-us-trump-hormuz-82a9acb473837f1bf7a821d0c3f95205
2•dr_kiszonka•43m ago•2 comments

UK Officials to investigate if meningitis outbreak bacteria has mutated

https://www.thetimes.com/uk/healthcare/article/meningitis-outbreak-kent-university-london-canterb...
3•petethomas•46m ago•0 comments

The free-energy principle: a rough guide to the brain? [pdf]

https://www.fil.ion.ucl.ac.uk/~karl/The%20free-energy%20principle%20-%20a%20rough%20guide%20to%20...
2•nill0•47m ago•0 comments

Show HN: GTM Simulator – Build a B2B Startup from Seed to IPO

https://gtmsimulator.com
1•anoop4bhat•50m ago•1 comments

Stack Overflow lays off approx 40 staff

https://meta.stackexchange.com/questions/417803/thank-you-v2blast-again-rosie-slate-charlotte-hoi...
5•saltyoutburst•50m ago•0 comments

Ask HN: How do you programmatically evaluate if an LLM sounds "too AI"?

1•shubhamoriginx•59m ago•0 comments

I attended a Claude for Excel webinar that 10k people attended

https://anthropic.ondemand.goldcast.io/on-demand/dfd8dc34-c59d-469e-aad2-3b093bd8ef86
1•dogscatstrees•1h ago•0 comments

How Zipper Works [video]

https://www.youtube.com/watch?v=9szhjhO9epA
1•vismit2000•1h ago•0 comments

Show HN: Kbot – terminal AI agent that learns from every user who uses it

https://github.com/isaacsight/kernel
1•isaacsight•1h ago•0 comments

Kin: Semantic version control that tracks code as entities, not files

https://github.com/firelock-ai/kin
2•troyjr4103•1h ago•0 comments

Super Brain

https://superbrain.base44.app
1•TommyDotDev•1h ago•0 comments

The Loneliness of a Room of One's Own

https://newrepublic.com/article/206731/loneliness-room-one-virginia-woolf-hold-up
1•prismatic•1h ago•0 comments

ArXiv Declares Independence from Cornell

https://www.science.org/content/article/arxiv-pioneering-preprint-server-declares-independence-co...
38•bookstore-romeo•1h ago•1 comments

macOS app to copy text from screenshot automatically

https://github.com/Blobosle/screen-copy
2•blobosle•1h ago•0 comments

Live Nation CEO: 'disgusting' that a top exec talked about 'robbing fans blind'

https://www.cnn.com/2026/03/19/politics/live-nation-ceo-defends-business-on-witness-stand-in-anti...
3•FireBeyond•1h ago•1 comments

Wordle but for Software Engineers

https://swedle.mokh.xyz
1•Mokhles01•1h ago•1 comments

Studying a Battle Born LFP Battery's Death Under Controlled Conditions

https://hackaday.com/2026/03/19/studying-a-battle-born-lfp-batterys-death-under-controlled-condit...
1•anonymousiam•1h ago•1 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.