frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Build Your Own OpenClaw – A step by step guide

https://github.com/czl9707/build-your-own-openclaw
1•zane__chen•26s ago•0 comments

JavaScript Minification Benchmarks

https://github.com/privatenumber/minification-benchmarks
1•javatuts•34s ago•0 comments

Readme, Don't Agents.md Me

https://www.joshbeckman.org/blog/practicing/readme-dont-agentsmd-me
1•bckmn•37s ago•0 comments

Twenty years of Amazon S3 and building what's next

https://aws.amazon.com/blogs/aws/twenty-years-of-amazon-s3-and-building-whats-next/
1•soheilpro•39s ago•0 comments

Cursor Cloud Telegram Connector

https://github.com/tb5z035i/cursor-tg
1•javatuts•54s ago•0 comments

Top 100 Gen AI Consumer Apps – 6th Edition

https://a16z.com/100-gen-ai-apps-6/
1•bookofjoe•1m ago•0 comments

Openreach: Fiber can sniff out leaky water pipes – if anyone bothers fixing them

https://www.theregister.com/2026/03/13/openreach_fiber_water_leaks/
1•Brajeshwar•1m ago•0 comments

Backblaze Now Serving 314T Digits of Pi

https://www.backblaze.com/blog/backblaze-now-serving-314-trillion-digits-of-pi/
1•soheilpro•1m ago•0 comments

The Dirty, Dystopian World of AI Data Centers

https://www.theatlantic.com/magazine/2026/04/ai-data-centers-energy-demands/686064/
2•fortran77•5m ago•1 comments

US issues 30-day sanctions waiver for purchase of Russian oil at sea

https://www.reuters.com/business/energy/us-issues-new-russia-related-general-license-oil-treasury...
2•geox•8m ago•0 comments

Show HN: WSG - turn project activity into client-ready reports

https://daniel043apps.gumroad.com/l/wgs
1•ThunderDanOAE•9m ago•1 comments

Nanny state discovers Linux, demands it check kids' IDs before booting

https://www.theregister.com/2026/03/13/opinion_os_verification/
3•jjgreen•10m ago•1 comments

Production-ready Agent Skills, 17 agents, and a orchestration protocol

https://alirezarezvani.github.io/claude-skills/
2•jungard•10m ago•1 comments

Show HN: Golf – A browser version of the classic card game

https://www.golfingwithcards.com/
1•beagle_byte•11m ago•1 comments

SmolClaw, a Microvm to Run Picoclaw

https://github.com/NetBSDfr/smolBSD/tree/main/service/clawd
1•iMil•11m ago•0 comments

NYC plans new AI-focused school as rules for the tech are delayed

https://gothamist.com/news/nyc-plans-new-ai-focused-school-as-rules-for-the-tech-are-delayed
1•righthand•12m ago•0 comments

Bonus – Clean Room as a Service

https://nickvidal.github.io/bonus/
1•nickvidal•12m ago•0 comments

Show HN: DashClaw – intercept and audit AI agent decisions before they execute

https://github.com/ucsandman/DashClaw
1•ucsandman•13m ago•1 comments

Show HN: StatusDrop – Status page and live widget for your SaaS in 30 seconds

https://statusdrop.dev
1•razvanmac•16m ago•0 comments

How the classic computer game Doom became a tool for science

https://www.nature.com/articles/d41586-026-00813-4
1•sohkamyung•16m ago•0 comments

Show HN: Chat.nvim v1.4.0 – OpenClaw-like AI assistant for Neovim

https://github.com/wsdjeg/chat.nvim/releases/tag/v1.4.0
2•wsdjeg•16m ago•0 comments

In search of Banksy, Reuters found the artist took on a new identity

https://www.reuters.com/investigates/special-report/global-art-banksy/
1•speckx•17m ago•0 comments

E2E encrypted messaging on Instagram will no longer be supported after 8 May

https://help.instagram.com/491565145294150
2•mindracer•17m ago•0 comments

Drain3: A robust streaming log template miner based on the Drain algorithm

https://github.com/logpai/Drain3
2•kvaranasi_•18m ago•1 comments

301M Records Exposed: The HIPAA Breach Epidemic

https://ciphercue.com/blog/hipaa-breach-epidemic-301-million-records
3•adulion•20m ago•0 comments

Tell HN: Apple Developer Agreement AI Updates

3•alexfromapex•20m ago•0 comments

Show HN: I made an open source/API/aiagent first ride sharing app like-Uber grab

https://github.com/sawirricardo/openjek.com
1•sawirricardo•21m ago•0 comments

"Open" Data/AI Platforms for Increasingly Specialized Compute Engines

https://www.hopsworks.ai/post/data-ai-platforms-should-be-open-for-use-by-increasingly-specialize...
2•jamesblonde•22m ago•0 comments

Tendem: Outsource Tasks to Hybrid AI and Human Workflow

https://tendem.ai/
1•MrBuddyCasino•22m ago•0 comments

First rubber road laid in New Zealand is made from recycled tyres

https://www.rnz.co.nz/news/national/589544/first-rubber-road-laid-in-new-zealand-is-made-from-rec...
1•colinprince•24m 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.