frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Formulas for Pi

https://mathworld.wolfram.com/PiFormulas.html
1•dap•17s ago•0 comments

Meta weighing 20% workforce layoffs to offset AI infrastructure costs: report

https://www.foxbusiness.com/technology/meta-eyes-massive-20-workforce-cut-ai-infrastructure-costs...
1•1vuio0pswjnm7•1m ago•0 comments

Updated Debian 13: 13.4 released

https://www.debian.org/News/2026/20260314
1•allddd•2m ago•0 comments

Show HN: Data-anim – Animate HTML with just data attributes

https://github.com/ryo-manba/data-anim
1•ryo-manba•2m ago•0 comments

Analyzing OpenClaw's 3-layer defense against prompt injection

1•aunicall•3m ago•0 comments

Vesper – MCP server that lets AI agents handle ML dataset workflows autonomously

https://getvesper.dev/
1•sultanchek•7m ago•1 comments

Show HN: Pantr AI Creative Studio

https://www.pantr.co/
1•andrevaillant•7m ago•0 comments

Debauit Announced as Debian Source Package Auditor

https://www.phoronix.com/news/Debian-debaudit
2•maxloh•9m ago•0 comments

Show HN: FalconAI – AI-Powered Smart TV Streaming, Search and Voice Control

https://www.falconai-tv.com/
2•erind_musliu•10m ago•3 comments

DroneClaw: Flying a Drone with Voice Commands

https://twitter.com/Viewforge/status/2032800448269398081
1•GPUboy•11m ago•0 comments

The AI Powering Firefox's Shake to Summarize

https://blog.mozilla.org/en/firefox/firefox-ai/ai-powering-firefox-shake-to-summarize/
1•bundie•11m ago•0 comments

Zoë Kravitz: "Bluetooth does not work" [video]

https://www.youtube.com/watch?v=6iva-qFZ29c
1•sgt•13m ago•0 comments

KDE resurrects feature it killed in Plasma 5.21

https://www.neowin.net/news/good-news-for-kde-plasma-users-this-dead-feature-is-finally-being-res...
1•bundie•15m ago•0 comments

Why physical AI is becoming manufacturing's next advantage

https://www.technologyreview.com/2026/03/13/1134184/why-physical-ai-is-becoming-manufacturings-ne...
1•Brajeshwar•15m ago•0 comments

BunkerVM – Run AI agents in isolated Firecracker microVM sandboxes

https://github.com/ashishgituser/bunkervm
2•ashishch111•17m ago•0 comments

Vitest vs. Jest

https://howtotestfrontend.com/resources/vitest-vs-jest-which-to-pick
1•howToTestFE•17m ago•1 comments

Ask HN: Would this eliminate bots for good?

1•piratesAndSons•17m ago•2 comments

The most SHAMELESS structural manipulation of a index I've ever seen

https://substack.com/@georgenoble/note/c-226667679
3•Zigurd•18m ago•0 comments

Show HN: Autoresearch-WebGPU uses agents to iteratively train LMs in the browser

https://twitter.com/gucaslelfond/status/2032824470209986746
1•lucasgelfond•19m ago•0 comments

Nighttime tornadoes are 2.5 times more deadly

https://www.accuweather.com/en/severe-weather/nighttime-tornadoes-are-2-5-times-more-deadly-6-dan...
2•rustoo•19m ago•0 comments

Scaling Postgres Connections with Pgbouncer

https://planetscale.com/blog/scaling-postgres-connections-with-pgbouncer
1•bddicken•20m ago•0 comments

Show HN: Track Congress, superinvestors, and insider trades from SEC

https://super-investor.com
1•super_investor•21m ago•0 comments

Show HN: Kremis – Rust graph DB; every answer is fact, inference, or unknown

https://github.com/TyKolt/kremis
1•TyKolt•24m ago•1 comments

Show HN: I added barcode scanning to my AI pricing app – 92% cheaper per scan

https://underpricedai.com
1•fkratzer•24m ago•0 comments

Show HN: A body-mass weighted caffeine limit simulator for developers

https://thehealthytechpro.com/daily-caffeine-intake-calculator/
1•thehealthytech•26m ago•1 comments

A Hard Reset, and What Comes Next (2026)

https://digg.com/
3•Balgair•26m ago•1 comments

Agentic Commerce

https://robonomics.substack.com/p/agentic-commerce-202603
1•gmays•27m ago•0 comments

LLM Tracing

1•skele•27m ago•1 comments

Taylor Soper Named Director of Seattle's AI House

https://www.geekwire.com/2026/taylor-soper-named-director-of-seattles-ai-house-after-remarkable-r...
1•mooreds•30m ago•0 comments

The Programmers's Guide to Co-Designing with Agents

https://davidwhitney.co.uk/blog/2026/03/11/co_design_with_agents/
1•mooreds•30m ago•0 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.