frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I built a $5.99 alternative to CleanMyMac because I was tired of paying $40/yr

https://onclean.onllm.dev/
1•TusharShukla•48s ago•0 comments

Show HN: Think Fast. Type Faster

https://wordsnap.up.railway.app/
1•oyahud•2m ago•0 comments

Everyone can build now. Few know what to build

https://microfactory.dev/preamble
1•pless•2m ago•0 comments

AgentMint – Runtime enforcement for AI agent tool calls

https://github.com/aniketh-maddipati/agentmint-python
1•keertahacker•2m ago•0 comments

Show HN: ReceiptMatrix – Local-only receipt organizer for Mac freelancers

https://receiptmatrix.app/
2•michaelboling•3m ago•0 comments

Tesla, SpaceX Plan to Build New Chip Factory in Texas

https://www.wsj.com/tech/tesla-spacex-plan-to-build-new-chip-factory-in-texas-4dfb9a46
1•andsoitis•4m ago•0 comments

Create Context Graph: AI agents with graph based memory, scaffolded in seconds

https://github.com/neo4j-labs/create-context-graph
1•johnymontana•4m ago•0 comments

Sudo hold me – Three unsupervised LLMs on a Unix Socket

https://linuxtoaster.com/blog/emergent.html
1•dirk94018•4m ago•0 comments

D for learning and real world D: D Language Yale Univ Colloquium 2025 [video]

https://www.youtube.com/watch?v=k5r8d5KCOBE
1•teleforce•5m ago•0 comments

Show HN: ClawX – OpenClaw Instance in 30s

1•Yogender78•5m ago•0 comments

AMD GPU-Initiated I/O (GPU <-> NVMe P2P DMA)

https://thegeeko.me/blog/nvme-amdgpu-p2pdma/
1•thegeeko•5m ago•1 comments

Firefox 149.0 Release Notes

https://www.firefox.com/en-US/firefox/149.0/releasenotes/
1•N19PEDL2•6m ago•0 comments

Usecomputer – Zig CLI to screenshot, click and type in any coding agent

https://github.com/remorses/usecomputer
1•xmorse•7m ago•1 comments

Blender Optimization Leads to 2x Performance on CPU Bottlenecked Scenes

https://www.phoronix.com/news/Blender-EEVEE-2x-Perf
1•rbanffy•8m ago•0 comments

NesusFix – Zero-alloc, compile-time hardened FIX engine for sub-100ns

https://github.com/SilverstreamsAI/NexusFix
1•dalvrosa•9m ago•0 comments

Show HN: OrbStudio Native Mac app for designing animated orbs with code export

https://www.orbstudio.app/
1•okbye•10m ago•0 comments

Aesthetic Programming: A Handbook of Software Studies (2021)

https://www.openhumanitiespress.org/books/titles/aesthetic-programming/
1•the-mitr•10m ago•0 comments

LG Display starts mass-producing LTPO-like 1 Hz LCD displays for laptops

https://arstechnica.com/gadgets/2026/03/lg-display-starts-mass-producing-ltpo-like-1-hz-lcd-displ...
1•rbanffy•11m ago•0 comments

Why move antimatter by road? CERN tests a truck-ready antiproton trap

https://phys.org/news/2026-03-antimatter-road-cern-truck-ready.html
2•Brajeshwar•12m ago•0 comments

Krita 6.0 Released with Qt6 Port and Better Wayland Support

https://www.phoronix.com/news/Krita-6.0-Released
3•doener•13m ago•0 comments

Krita 5.3.0 and 6.0.0 Released

https://krita.org/en/posts/2026/krita-5.3.0-released/
2•jrepinc•13m ago•0 comments

Iran internet offline for 25 days and

https://twitter.com/netblocks/status/2036343014277165512
1•ukblewis•13m ago•1 comments

A mission NASA might kill is still returning science from Jupiter

https://arstechnica.com/space/2026/03/a-mission-nasa-might-kill-is-still-returning-fascinating-sc...
1•rbanffy•14m ago•0 comments

Guile Knots

https://www.cbaines.net/posts/announcing_guile_knots/
1•ibobev•15m ago•0 comments

Mendeleev's Inequality

https://www.johndcook.com/blog/2026/03/24/mendeleevs-inequality/
1•ibobev•16m ago•0 comments

Lines of Code Are Useful

https://entropicthoughts.com/lines-of-code
1•ibobev•16m ago•0 comments

Show HN: MangoWave – Open-source browser audio visualizer

https://mangowave.app/
1•lmascari•16m ago•0 comments

Understaffing as a Form of Enshittification

https://pluralistic.net/2026/03/22/nobodys-home/
2•toomuchtodo•16m ago•0 comments

io_uring, libaio performance across Linux kernels and an unexpected IOMMU trap

https://blog.ydb.tech/how-io-uring-overtook-libaio-performance-across-linux-kernels-and-an-unexpe...
5•tanelpoder•16m ago•1 comments

Ignition: NASA's Plan for the Moon [video]

https://www.youtube.com/watch?v=yIlTwwJv1Ac
1•trothamel•16m ago•1 comments
Open in hackernews

Next-Gen GPU Programming: Hands-On with Mojo and Max Modular HQ

https://www.youtube.com/live/uul6hZ5NXC8?si=mKxZJy2xAD-rOc3g
44•solarmist•11mo ago

Comments

solarmist•11mo ago
I'm really hoping Modular.ai takes off. GPU programming seems like a nightmare, I'm not surprised they felt the need to build an entire new language to tackle that bog.
mirsadm•11mo ago
GPU programming isn't really that bad. I am a bit skeptical this is the way to solve it. The issue is that details do matter when you're writing stuff on the GPU. How much shared memory are you using? How is it scheduled? Is it better to inline or run multiple passes etc. Halide is the closest I think.
solarmist•11mo ago
What are you skeptical of? I believe the problem this is solving is a framework that's not CUDA that allows low level access to the hardware, makes it easy to write kernels, and is not Nvidia only. If you watch the video you can write directly in asm if you need to. You have full control if you want it. But it provides primitives and higher level objects that handle common cases.

I'm a novice in the area, but Chris is well respected in this area and cares a lot of about performance.

pjmlp•11mo ago
There are already plenty of languages in CUDA world, that is one reasons it is favoured.

The problem isn't the language, rather how to design the data structures and algorithms for GPUs.

solarmist•11mo ago
Not sure I fully understand your comment, but I'm pretty sure the talk addresses exactly that.

The primitives and pre-coded kernels provided by CUDA (it solves for the most common scenarios first and foremost) is what's holding things back and in order to get those algorithms and data structures down to the hardware level you need something flexible that can talk directly to the hardware.

pjmlp•11mo ago
C, C++, Fortran, Python JIT from NVidia, plus Haskell, .NET, Java, Futuhark, Julia from third parties, and anything else that can bother to create a backend targeting PTX, NVVM IR, or now cuTile.

The pre-coded kernels help a lot, but you don't have to use them necessarly.

melodyogonna•11mo ago
Yes, the problem isn't language, it is the entire stack. I think people focus too much on Mojo while ignoring the actual solution Modular has built, which is MAX. The main idea here is that MAX provides a consistent API for both library authors (e.g vLLM, Ollama) to target, as well as for hardware vendors to integrate with - so similar to LLVM.

Basically, imagine if you can target Cuda, but you don't have to do too much for your inference to also work on other GPU Vendors e.g AMD, Intel, Apple. All with performance matching or surpassing what the hardware vendors themselves can come up with.

Mojo comes into the picture because you can program Max with it, create custom kernels that is JIT compiled to the right vendor code at rumtime.

diabllicseagull•11mo ago
It is a noble cause. I've spent ten years of my life using CUDA professionally, outside the AI domain mind you. Most of these years, there was a strong desire to break off of CUDA and the associated Nvidia tax on our customers. But one thing we didn't want was to move from depending on CUDA to depending on another intermediary which would also mean financial drain, like the enterprise licensing these folks want to use. Sadly, open source alternatives weren't fostering much confidence, either with their limited feature coverage or just not knowing if they will be supported in the long term (support for new hardware, fixes, etc.).
pjmlp•11mo ago
Also while as language nerd I find Mojo cool, given NVidia's going full speed ahead with Python support in CUDA as announced at GTC 2025, to the point of designing a new IR as basis for their JIT, very few researchers will bother with Mojo.

Also what NVIDIA is doing has full Windows support, while Mojo support still isn't there, other than having to make use of WSL.

melodyogonna•11mo ago
Why? Will the new Nvidia Python stuff work on AMD GPU and other non-nvidia accelerators?
pjmlp•11mo ago
It still remains to be seen how much that will happen to Mojo and MAX, while most researchers are using CUDA anyway, and best of all, it works on their laptops, which cannot be said for AMD GPU and other non-nvidia accelerators.

Naturally assuming they are using laptops with NVidia GPUs.

catapart•11mo ago
My mistake completely, but I thought this was going to be something to do with a new scheme or re-thinking of graphics programming APIs, like Metal, Vulkan or OpenGL. Now I'm kind of bummed that it is what it is, because I got really excited for it to be that other thing. =(
pjmlp•11mo ago
That is already taking place with work graphs, and making shader languages more C++ like.
ttoinou•11mo ago
Seems like with it you will be able to compile and execute one code on multiple GPU targets though
ashvardanian•11mo ago
There is a "hush-hush open secret" between minutes 31 and 33 of the video :)
refulgentis•11mo ago
TL;Dr same binary runs on Nvidia and ATI today, but not announced yet
throwaway314155•11mo ago
They desperately need to disable whatever noise cancellation they're using on the audio. Keeps cutting out, sounds terrible.
solarmist•11mo ago
Yeah, the mic quality was terrible.
hogepodge•10mo ago
This was the first time we ran an event in the office with this wireless mic setup. We're definitely aware of the problems, and will have them fixed for the next event.
Archit3ch•11mo ago
> Other Accelerators (e.g. Apple Silicon GPUs): free for <= 8 devices

From their license.

It's not obvious what happens when you have >8 users, with one GPU each (typical laptop users).

threecheese•11mo ago
This is covered by ARM which they consider CPU, and doesn’t fall into that clause. IOW no restrictions.