frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Video Friday: Digit Learns to Dance

https://spectrum.ieee.org/video-humanoid-dancing
2•jruohonen•1m ago•0 comments

AdGuard ad trackers What ad-based surveillance does to your traffic

https://adguard.com/en/blog/adguard-ad-tracker-report-2025.html
1•XzetaU8•3m ago•0 comments

Pale Blue Dot

https://en.wikipedia.org/wiki/Pale_Blue_Dot
1•thunderbong•3m ago•0 comments

EU cyber agency attributes major data breach to TeamPCP hacking group

https://therecord.media/european-commission-cyberattack-teampcp
1•jruohonen•10m ago•1 comments

Show HN: AI Dev Board – Job Board for AI Developers with a Full REST API

https://aidevboard.com/
1•8bitconcepts•14m ago•0 comments

Ask HN: Why still embed heavy 3rd-party iFrames for simple social proof?

1•LordKode•15m ago•0 comments

Show HN: HyprMac – I missed Hyprland after switching to Mac, so I built it

https://github.com/zacharytgray/HyprMac
1•zachtgray•18m ago•0 comments

Thoughts on AI and Research [pdf]

https://economics.mit.edu/sites/default/files/2026-04/IA%20AI%20note_1.pdf
2•jxmorris12•21m ago•0 comments

Jungle old school drum and bass radio

https://radio.aklein.studio/public/lounge24_radio
2•misterthp•24m ago•0 comments

It's open season for refusing AI

https://www.bloodinthemachine.com/p/its-open-season-for-refusing-ai
5•HotGarbage•32m ago•2 comments

No luck for Broadcom as Netflix and Quinn Emanuel succeed in nullity claim

https://www.juve-patent.com/cases/no-luck-for-broadcom-as-netflix-and-quinn-emanuel-succeed-in-an...
2•breve•32m ago•0 comments

How to Evaluate Claude Skill Output Quality for Prompt-to-SQL Scenarios

https://dekart.xyz/blog/how-to-evaluate-claude-skill-output-quality-for-prompt-to-sql-scenarios/
2•delfrrr•32m ago•0 comments

Mcpx: a Rust proxy that catches MCP schema changes and tool poisoning at runtime

https://github.com/MeghP89/mcpx
2•meghp89•33m ago•0 comments

Naming rights to street auctioned in San Francisco

https://paintastreet.com/auction
2•18nleung•35m ago•0 comments

Show HN: Clangine-de-Poitrine

https://github.com/jerpint/clangine-de-poitrine
1•jerpint•39m ago•0 comments

New Wave of Privacy Litigation Under 2005 Colorado Telemarketing Fraud Act

https://web.archive.org/web/20260212222452/https://www.troutman.com/insights/new-wave-of-privacy-...
1•1vuio0pswjnm7•48m ago•1 comments

Auto-harness: Self improving agentic systems with auto-evals (open-sourced)

https://twitter.com/gauri__gupta/status/2040251170099524025
2•gauri1902•50m ago•2 comments

A Big Alignment Loophole of Current Froniter LLMs

https://github.com/wuyoscar/ISC-Bench
3•pythonsen•52m ago•1 comments

I am fish and this is my little monkey terrarium

https://fish2fish.neocities.org/mainpage/main
2•random__duck•1h ago•0 comments

Show HN: Rust HTTP library modeled after Go but 2-3x faster

https://github.com/alshdavid/uhttp
1•apatheticonion•1h ago•0 comments

Lenovo ThinkPad P16 Gen 3 Review: RTX Pro 5000 Power in True Workstation Laptop

https://www.storagereview.com/review/lenovo-thinkpad-p16-gen-3-review-rtx-pro-5000-power-in-a-tru...
2•teleforce•1h ago•0 comments

Anthropic struggling with Chinese competition, its own safety obsession

https://www.theregister.com/2026/03/28/miss_anthropic_not_those_who/
3•davikr•1h ago•0 comments

Egypt's New Pyramid Scheme

https://economist.com/interactive/1843/2026/04/02/egypts-new-pyramid-scheme
2•andsoitis•1h ago•0 comments

Ask HN: Query Regarding WebRTC and PeerJS

1•rwasimsk•1h ago•0 comments

1 in 30 – Artemis, Greatness, and Risk

https://1517.substack.com/p/1-in-30-artemis-greatness-and-risk
2•areoform•1h ago•0 comments

Latest Lenovo Legion Tab Gen 5 tablet impresses in gaming and emulation tests

https://www.notebookcheck.net/Latest-Lenovo-Legion-tablet-impresses-in-gaming-and-emulation-tests...
2•teleforce•1h ago•0 comments

Series Seed (Sane Edition): The Goldilocks Financing for Seed-Stage Startups

https://www.flux.law/blog/series-seed-sane-edition
1•finsrud•1h ago•0 comments

Delve sets the record straight on anonymous attacks

https://delve.co/blog/delve-sets-the-record-straight-on-anonymous-attacks
3•frenchtoast8•1h ago•1 comments

Electron and React and TypeScript and Tailwind and Shadcn Starter Kit

https://github.com/p32929/electron-shadcn-typescript
1•alexdevson42•1h ago•0 comments

CCheckpoints: A checkpoint system for Claude Code CLI sessions

https://github.com/p32929/ccheckpoints
2•alexdevson42•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.