frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Xiaomi MiMo releases token plan

https://platform.xiaomimimo.com/#/docs/news/token-plan-release
1•gainsurier•4m ago•0 comments

EmDash is not what the WordPress community requires

https://yosisubo.com/notes/emdash-is-not-what-the-wordpress-community-requires/
1•alprado50•5m ago•0 comments

A simplified presentation of Einstein's unified field equations (1929)

https://www.gutenberg.org/cache/epub/78343/pg78343-images.html
1•petethomas•5m ago•0 comments

Cleer AI – Phone-Triggered Desktop Automation with Zero Setup

https://cleer.archonic.dev
1•ypadamat•9m ago•0 comments

Can servers use elicitation for HITL scenarios?

https://realarcherl.github.io/posts/mcp_security/
1•ArcherL•14m ago•0 comments

Dlarc: The Radio Geek's Doomscrolling Antidote

https://www.radioworld.com/news-and-business/news-makers/dlarc-the-radio-geeks-doomscrolling-anti...
1•petethomas•14m ago•0 comments

A Rave Review of Superpowers (For Claude Code)

https://emschwartz.me/a-rave-review-of-superpowers-for-claude-code/
2•emschwartz•25m ago•0 comments

It's Time to Take Down Your Smart Cameras [video]

https://www.youtube.com/watch?v=UMIwNiwQewQ
3•latchkey•26m ago•0 comments

Emacs ATX April 2026 meetup [video]

https://www.youtube.com/watch?v=465GSalM6oI
1•iLemming•28m ago•0 comments

The Whispering Earring

https://gwern.net/doc/fiction/science-fiction/2012-10-03-yvain-thewhisperingearring.html
1•shpat•28m ago•0 comments

Microsoft Readies $10B AI Investment Plan in Japan

https://www.bloomberg.com/news/articles/2026-04-03/microsoft-drafts-10-billion-investment-plan-in...
2•petethomas•33m ago•1 comments

Pool compute to run powerful open models

https://docs.anarchai.org/
1•gasull•33m ago•0 comments

Show HN: Minimal Brain Teaser Web Game (Handcrafted, No AI)

https://mehuleo.github.io/encircle/
2•arttaboi•34m ago•0 comments

Government of Verdis

https://verdisgov.org/
2•skogstokig•39m ago•0 comments

Microdrive Anatomy(2008)

https://www.hjreggel.net/hdtechdat/hd-anatomy.html
1•o4c•41m ago•0 comments

How are people treating/deploying on-device AI?

https://minimal-light-theme.yliu.me/
1•romerocruzsa•44m ago•1 comments

Hacker News MOTD shell script

https://gist.github.com/brandonpollack23/db78386cb84389772974edeb9e9e29bc
5•brandonpollack2•47m ago•1 comments

The Grammar Is Not Its Own Ground

https://jimiwen.substack.com/p/si-wu-zi-c36
1•jimiwen•49m ago•0 comments

When a reasoning LLM chooses, which comes first: thought or decision?

https://arxiv.org/abs/2604.01202
1•dotvignesh•51m ago•0 comments

What Would You See Changed in Haskell?

https://blog.haskell.org/what-would-you-see-changed-in-haskell/
1•shpat•53m ago•0 comments

How Squarespace Implemented Support for HTML Video/Audio Lazy Loading

https://engineering.squarespace.com/blog/2026/squarespace-and-web-standards-how-we-helped-bring-h...
1•beeandapenguin•53m ago•0 comments

Iran targeted Amazon data centers

https://theconversation.com/why-iran-targeted-amazon-data-centers-and-what-that-does-and-doesnt-c...
5•ranit•55m ago•2 comments

Framecraft – Generate demo videos from a prompt using HTML Canvas/Skill/MCP/LLM

https://github.com/vaddisrinivas/framecraft
1•srinivasvaddi•1h ago•1 comments

Most AI trading tools: one model, one prediction, done

https://orallexa-ui.vercel.app
1•xji12026•1h ago•0 comments

Microdrive History(2008)

https://www.hjreggel.net/hdtechdat/hd-micro.html
2•o4c•1h ago•0 comments

S&P Licenses S&P 500 to Trade[XYZ] for Perpetual Contracts on Hyperliquid

https://www.spglobal.com/spdji/en/index-announcements/article/sp-dow-jones-indices-licenses-sp-50...
1•OutOfHere•1h ago•0 comments

Show HN: Ubik – Analyze local files like NotebookLM, with Cursor-like power

https://www.ubik.studio/features
1•ieuanking•1h ago•0 comments

Everyone is building the same thing (a generalist agent)

https://twitter.com/nichochar/status/2039739581772554549
2•nichochar•1h ago•0 comments

Analyzing 38,000 Dota games to see if this item helps [video]

https://www.youtube.com/watch?v=wYE3RUyzHlE
1•marysminefnuf•1h ago•0 comments

Cc-plugin-audit: Defensive supply-chain security analysis on plugin auto-update

https://github.com/STRML/cc-plugin-audit
1•Sottilde•1h 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•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•11mo 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.