frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I Lost $150 in 20 Minutes Market-Making on Kalshi

https://rlafuente.com/posts/2025-3-5-i-lost-150-market-making-on-kalshi
1•andes314•5m ago•0 comments

Spektr – Ask plain English questions about any CSV, get charts

https://github.com/spektr-org/spektr
1•thepocketledger•8m ago•0 comments

Major TCPA Shift: Fifth Circuit Rules Oral Consent Is Valid

https://natlawreview.com/article/major-tcpa-shift-fifth-circuit-rules-oral-consent-valid
2•petethomas•8m ago•0 comments

OpenAI Symphony

https://github.com/openai/symphony
1•tosh•8m ago•0 comments

Show HN: Stop wasting time managing your hardware projects and focus on building [video]

https://www.youtube.com/watch?v=YPuKl5_qoG8
1•oleksg•10m ago•0 comments

Show HN: We built governed multi-agent teams months before Anthropic announced

https://github.com/rigovo/rigovo-virtual-team
1•erashu212•11m ago•0 comments

Monica helps you organize the social interactions with your loved ones

https://www.monicahq.com/
1•rickcarlino•14m ago•0 comments

Show HN: Orion – Native Training LLMs on the Apple Neural Engine Without CoreML

https://github.com/mechramc/Orion
2•mechramc•15m ago•1 comments

I quit my YC job and moved to the USA to change how people learn to code

https://www.aximon.ai/
2•dizerv2•17m ago•0 comments

AI Scenarios: From Doomsday Destruction to Do-Nothing Bots

https://aswathdamodaran.blogspot.com/2026/03/ai-scenarios-from-economic-doomsday-to.html
2•jshchnz•20m ago•0 comments

Show HN: Linkly AI – Spotlight for AI Agents

https://linkly.ai
2•blueeon•21m ago•1 comments

Show HN: Nowline, a real-time trend signal feed

https://nowline.ai
2•ddakbro•23m ago•1 comments

Ask HN: iOS Alarm Bug or Intended?

3•stovestone•27m ago•0 comments

LLM model statistics from my Strix testing

https://theartificialq.github.io/2026/03/03/llm-model-statistics-from-my-strix-testing.html
1•HonzaT•29m ago•0 comments

Why a Robotics Startup's Failure Proves the Robot Starts with the Actuator

https://www.firgelli.com/blogs/news/k-scale-labs-failure-proves-robot-starts-with-actuator
1•RobbieDickson•38m ago•0 comments

Relicensing with AI-Assisted Rewrite

https://tuananh.net/2026/03/05/relicensing-with-ai-assisted-rewrite/
10•tuananh•45m ago•5 comments

NHS official pushed to add patient data to Palantir while advising company

https://www.ft.com/content/6c548670-0f3e-45f1-ba08-8bb6dd152af5
6•Jimmc414•48m ago•0 comments

Large-Scale Agentic RL for CUDA Kernel Generation

https://cuda-agent.github.io/
2•gmays•53m ago•0 comments

Ask HN: Seeing More Techcrunch on Frontpage?

1•par•53m ago•0 comments

Website showing LLM solutions to Knuth's Problems?

1•daly•53m ago•0 comments

Unified In-Process Agent Interface for Claude Code, Codex, Kimi

https://github.com/odysa/one-agent-sdk
2•agentforce•54m ago•0 comments

DOJ proposes policy aimed at limiting state bar ethics probes into its attorneys

https://abcnews.com/US/doj-proposes-policy-aimed-limiting-state-bar-ethics/story?id=130755238
12•petethomas•54m ago•1 comments

Global Consciousness Live Data

https://gcp2.net/#home_page_live_data
3•avonmach•55m ago•1 comments

RoundsKeeper – Score tracking for board/card games (Swift/SwiftUI, iCloud sync)

https://apps.apple.com/us/app/roundskeeper/id6754217431
1•justbustr•56m ago•1 comments

Show HN: The hardware isn't changing, why not get AI to build custom drivers?

https://github.com/eli7vh/signal-chain
1•elijahlucian•59m ago•0 comments

Show HN: Scape – One-click worktrees and orchestrators for Claude Code

https://www.scape.work/
3•bgnm2000•1h ago•0 comments

The Global Coherence Initiative [video]

https://www.youtube.com/watch?v=QFqsY-DT6rg
1•avonmach•1h ago•0 comments

Show HN: Fast Chladni figure simulation in Python with NumPy vectorization

https://github.com/ratwolfzero/Chladni_Figures
3•ratwolf•1h ago•1 comments

Show HN: Session-safe uploads and artifacts for remote MCP servers

https://aakashh242.github.io/remote-mcp-adapter/
1•aakashh242•1h ago•0 comments

You Just Reveived

https://dylan.gr/1772520728
24•djnaraps•1h ago•3 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.