dakom
- Karma
- 0
- Created
- ()
- Submissions
- 0
- Show HN: AwsmAudio – a WebAudio editor with native MCP (audio.awsm.fun)
Hey y'all, So - the main idea of this is to make a WebAudio synthesis/sequencer tool which humans can use via the UI, but where the big unlock is for agents to drive with MCP It's semi decent as "make a groovy jazz…
- Show HN: AwsmRenderer, a browser-native WebGPU renderer in Rust (dakom.github.io)
- Show HN: Not a Game (github.com)
I built this as a sortof "using code as therapy/art" thing - processing the frustration I feel with the world as a whole, through making a browser game in Rust and DIY renderer.
-
How do you subscribe to a comment thread to get notified on changes? Even if just a thread that I participated in?
- Show HN: TodoMVC with Rust Shipyard ECS (github.com)
-
Very often, the front page of HN seems to have a disproportionate amount of submissions around a particular topic. They are often related but not exactly the same... e.g. they might be "testing methodologies" or…
- Multi-value slotmap experiment in JavaScript (github.com)
-
Consider the following: 0xFFFFFFFF >> 0 === -1 0xFFFFFFFF >>> 0 === 4294967295 1 << 31 === -2147483648 1 << 31 >> 1 === -1073741824 1 << 31 >>> 1 === 1073741824 Generally, I'd think unsigned is the more typical use case…
- A Functional JavaScript Stack (medium.com)
-
I've been asked to do a little consulting for a new VC firm, specifically to do due diligence on the startups' tech stack after they've passed through some other screening. Does anyone have a template they use for this…
- Show HN: XState media widgets proof-of-concept (github.com)
- Show HN: Deep React state with Context and lenses (codesandbox.io)
- Show HN: FRP Ball Bounce (github.com)
-
Is there some good data about the overhead in JS<->WebGL communication? Specifically, I'm interested in using JS to handle the view (whether WebGL or DOM) and as like a broker between worker threads, as well as general…
-
I took a rough go at using React to drive something like the "PIXI bunnymark", and performance sucks: https://github.com/dakom/react-pixi-bunnymark Is the bottleneck React itself? I've tried a few different things you…