frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN

https://github.com/nadav-senseit/ai-accessibility-enforcement
1•nadav_senseit•31s ago•0 comments

Ask HN: Have you noticed how the number of 'Show HN' posts has skyrocketed?

1•nodivbyzero•34s ago•0 comments

CSUN Assistive Technology Conference 2026 files

https://daisy.org/news-events/articles/csun-conference-2026-files/
1•bryanrasmussen•51s ago•0 comments

Show HN: Chatddit.com Fresh off the vibe press

1•gitprolinux•1m ago•0 comments

I'm a Coin Boy, Too (2023)

https://taylor.town/coin-boys
1•surprisetalk•1m ago•0 comments

Formal Verification in the Age of AI

https://verse.systems/blog/post/2026-03-05-formal-verification-ai/
1•matt_d•1m ago•0 comments

I Love Email (2023)

https://blog.xoria.org/email/
1•surprisetalk•1m ago•0 comments

Case Study: lynnandtonic.com 2025 refresh

https://lynnandtonic.com/thoughts/entries/case-study-2025-refresh/
1•surprisetalk•1m ago•0 comments

A Day in the Life of an Enshittificator [video]

https://www.youtube.com/watch?v=T4Upf_B9RLQ
1•surprisetalk•1m ago•0 comments

Collabora at Embedded World 2026: Open-Source AI and Embedded Innovation

https://www.collabora.com/news-and-blog/news-and-events/bringing-the-ai-experience-to-embedded-wo...
1•losgehts•2m ago•0 comments

I built a real-time RER/train tracker for Paris commuters (PWA, no app store)

https://o-rer.com
2•raduvul•3m ago•1 comments

Arc Raiders – Discord SDK Data Exposure

https://timothymeadows.com/arc-raiders-discord-sdk-data-exposure/
2•esnard•4m ago•0 comments

Researchers discover Chickpeas can grow in moon dirt and make seeds

https://www.sciencenews.org/article/chickpeas-moon-dirt-seeds-space-farming
1•ck2•5m ago•0 comments

Asymmetric Goal Drift in Coding Agents Under Value Conflict

https://arxiv.org/abs/2603.03456
1•lrakster•6m ago•0 comments

Is Web Development Returning to PHP?

https://andreasyanaram.medium.com/is-web-development-quietly-returning-to-php-8dd5c3d47eee
1•ulrischa•7m ago•0 comments

Containers, but Without the Magic Part 1: Networking

https://www.nightshift.sh/blog/containers-without-magic-01
1•tensor_ninja•9m ago•0 comments

Show HN: ColdPitch – Find anyone, get a personalized cold email in seconds

https://www.coldpitch.ai
1•arishec•9m ago•0 comments

Spawn-Agent: On chain monitoring and analytics infrastructure

https://github.com/Spawn-Agent/Spawn-Agent
1•tosh•9m ago•0 comments

Why do elephants have such wrinkly skin?

https://www.sciencefocus.com/nature/why-do-elephants-have-such-wrinkly-skin
1•thunderbong•9m ago•0 comments

Left-handed people may have a psychological edge in competition

https://phys.org/news/2026-03-left-people-psychological-edge-competition.html
2•simonebrunozzi•9m ago•0 comments

The OpenAI Files

https://www.theverge.com/openai/688783/the-openai-files-will-help-you-understand-how-sam-altmans-...
2•MrBuddyCasino•10m ago•0 comments

Show HN: I trained a small local model to translate natural language to CLI

https://github.com/spicy-lemonade/zest-cli-infra
1•kiki_kuuki•10m ago•0 comments

How we fixed Postgres connection pooling on serverless with PgDog

https://circleback.ai/blog/how-we-fixed-postgres-connection-pooling-on-serverless-with-pgdog
2•alihaghani•10m ago•0 comments

No Cloud, No Waiting: Tool-Calling Agents on Consumer Hardware with LFM2-24B-A2B

https://www.liquid.ai/blog/no-cloud-tool-calling-agents-consumer-hardware-lfm2-24b-a2b
1•nimar•10m ago•0 comments

Kaoslabs – My Linux VPS and self-hosting experiments

https://kaoslabs.org
1•wilhart•11m ago•1 comments

Type-safe, K-sortable, globally unique identifier inspired by Stripe IDs

https://github.com/jetify-com/typeid
1•alcazar•14m ago•0 comments

Donald Trump insists there are no wind farms in China. Here are 20 in pictures

https://www.theguardian.com/us-news/gallery/2026/mar/05/pictures-china-wind-farms-trump
11•beardyw•15m ago•3 comments

Heuristics for lab robotics, and where its future may go

https://www.owlposting.com/p/heuristics-for-lab-robotics-and-where
1•abhishaike•15m ago•0 comments

.test

1•bengothard•15m ago•3 comments

AntScan – high-throughput phenomics of ant biodiversity via synchrotron

https://www.antscan.info
1•marojejian•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•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.