dakom

↗ HN profile [ 65.8 ms ] full profile
Karma
0
Created
()
Submissions
0
  1. 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…

  2. 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.

  3. How do you subscribe to a comment thread to get notified on changes? Even if just a thread that I participated in?

  4. 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…

  5. 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…

  6. 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…

  7. 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…

  8. 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…