frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

GPT-5.4 Scores 0.62 F1 on Understanding Handwritten Edits in Dickens

https://dorrit.pairsys.ai/
1•svcrunch•1m ago•0 comments

Ask HN: Do AI startups even bother with patents anymore?

1•maxtqw•3m ago•0 comments

Show HN: EnvSentinel – contract-driven .env validation, zero dependencies

https://github.com/tweakyourpc/envsentinel
1•tweakyourpc•6m ago•0 comments

A basket of new fruit varieties is coming your way

https://www.economist.com/science-and-technology/2026/03/04/a-basket-of-new-fruit-varieties-is-co...
1•vinni2•7m ago•0 comments

Quantized Hall Drift in a Frequency-Encoded Photonic Chern Insulator

https://link.aps.org/doi/10.1103/2dyh-yhrb
1•westurner•7m ago•0 comments

Qcut – Free browser video editor (no install, no signup)

https://qcut.app/
2•martin_renaud•11m ago•1 comments

Claude Code Compaction Viewer

https://github.com/swyxio/claude-compaction-viewer/
1•handfuloflight•14m ago•0 comments

Modular Diffusers – Composable Building Blocks for Diffusion Pipelines

https://huggingface.co/blog/modular-diffusers
2•nathanmarz•14m ago•0 comments

Ask HN: Do you have a good solution for isolated workspaces per project?

1•straydusk•20m ago•0 comments

TeX Live 2026 is available for download now

https://www.tug.org/texlive/acquire.html
7•jithinraj•33m ago•0 comments

Show HN: Triplecheck – Review your code free with local LLMs

https://github.com/raullenchai/triplecheck
1•raullen•50m ago•0 comments

Gemini-flash-latest silently broke Search grounding for 1 month

2•takibboinz•50m ago•0 comments

Show HN: AI Benchy – AI benchmarks and comparisons

https://aibenchy.com/
1•XCSme•51m ago•0 comments

Did anyone try this Docker desktop alternative?

https://www.empiricapps.com/zenithal/download
1•mburlac•52m ago•0 comments

Caroline affair – eventually influencing the development of international law

https://en.wikipedia.org/wiki/Caroline_affair
1•vinnyglennon•1h ago•0 comments

Show HN: WingNews – Htmx Hacker News Reader

https://news.wingman.actor/
1•ChaseRensberger•1h ago•0 comments

AI Doesn't Remember Yesterday. How to Design Team Memory for AI Workflows

https://github.com/htuzel/flalingo-mem-bridge
1•htuzel•1h ago•0 comments

Ask HN: Wish Linux tmpfs support compression option

2•gry_gh•1h ago•0 comments

Howard Abrams' Literate Programming with Org Mode [video]

https://www.youtube.com/watch?v=OUuz9-CtCwY
2•todsacerdoti•1h ago•0 comments

My SoC Analyst Writeup – Support by star, thanks guys

https://github.com/ogtamimi/SOC-Analyst-WriteUp-LetsDefend.io
2•ogtamimi•1h ago•0 comments

Create PDF Resume

https://createpdfresume.com/
1•tahirasadov•1h ago•0 comments

All of you doubted me, and said I was hallucinating on AI

https://ryanshamim.substack.com/p/the-inference-efficiency-paradox
1•anima-core•1h ago•1 comments

Tech titans vow to 'take back' California

https://nypost.com/2026/03/05/us-news/tech-titans-vow-to-take-back-california-from-lefties-call-o...
4•mudil•1h ago•0 comments

First Aptera Solar EV Rolls Off Validation Assembly Line

https://aptera.us/first-vehicle-off-validation-line/
1•TeaVMFan•1h ago•0 comments

Show HN: Yappy – A Python TUI to automate LinkedIn yapping

https://github.com/JienWeng/yappy
2•jienweng•1h ago•0 comments

Shut Up and Take My Money

https://lorendb.dev/posts/shut-up-and-take-my-money/
4•LorenDB•1h ago•0 comments

Spell UI

https://spell.sh/
2•handfuloflight•1h ago•0 comments

Show HN: Swarm – Program a colony of 200 ants using a custom assembly language

https://dev.moment.com/
20•armandhammer10•1h ago•9 comments

Show HN: Custom Search Engine on Safari and Spotlight (macOS)

https://knhash.in/custom-search-engine-on-safari-and-spotlight-macos/
3•knhash•1h ago•0 comments

Show HN: SafeAgent – exactly-once execution guard for AI agents

2•Lions2026•1h 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•10mo ago

Comments

solarmist•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo ago
Why? Will the new Nvidia Python stuff work on AMD GPU and other non-nvidia accelerators?
pjmlp•10mo 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•10mo 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•10mo ago
That is already taking place with work graphs, and making shader languages more C++ like.
ttoinou•10mo ago
Seems like with it you will be able to compile and execute one code on multiple GPU targets though
ashvardanian•10mo ago
There is a "hush-hush open secret" between minutes 31 and 33 of the video :)
refulgentis•10mo ago
TL;Dr same binary runs on Nvidia and ATI today, but not announced yet
throwaway314155•10mo ago
They desperately need to disable whatever noise cancellation they're using on the audio. Keeps cutting out, sounds terrible.
solarmist•10mo 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•10mo 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•10mo ago
This is covered by ARM which they consider CPU, and doesn’t fall into that clause. IOW no restrictions.