Email or username:

Password:

Forgot your password?
Devil Lu Linvega

I can't stop thinking about making a DAW, something like Cubase on Macintosh.

It's keeping me up at night, and as much as I try to tell myself that it's completely stupid, I don't need a daw, I don't even know what I would do with the thing even, I don't need to write more software, it's just-no, the idea is still there, and it's stopping me from thinking about other things which is taking its toll.

I think I'll have to just get it over with so I can move on with my life.

4 comments
Devil Lu Linvega

Let's begin by making something like Mario Paint, a simple piano roll that lets me paint notes, see how much steam I have left when I get there, hopefully it'll discourage me to keep going.

Devil Lu Linvega

This piano octave design is neat because it's only two draw calls :maru:

Devil Lu Linvega

If you want to do a quick modulo that falls on a number in the (2,4,8,16) series, you can use the AND bitwise operator with the bound-1 value.

Example:

% 4, is the same as & 3
% 8, is the same as & 7
etc..

Go Up