In 2008, two of my co-workers were talking at the desk next to me at the office. I respected both of these people. They were both great hard workers that I helped and helped me back succeeding and growing the company we were working for. I was pretty alarmed that they both knew of this […]
Blog Posts
LMMS Remove Other Tracks
After importing a MIDI, I wanted to strip the track down to just the track I wanted to learn. Some midis have a dozen layers each with multiple automations attached. It gets tedious deleting these over and over. So I added a feature to “Remove other tracks”. Here is the lmms fork I added it […]
Songs
Your browser does not support the audio element. Phantom Klowns Duck Song Tetris Pink Panther
Roblox Sound Effects Heard by you, but not by Opponents
So I created a Roblox game. I added a gun. The gun works quite well. It shoots people and kills them just like a gun should do. When I shoot my gun, I hear it just fine. But when others shoot me in the game, I don’t hear them. My guns sounds don’t appear to […]
Notes For – Building makemore Part 5: Building a WaveNet
makemore: part 5¶ In [1]: import torch import torch.nn.functional as F import matplotlib.pyplot as plt # for making figures %matplotlib inline In [2]: # read in all the words words = open('names.txt', 'r').read().splitlines() print(len(words)) print(max(len(w) for w in words)) print(words[:8]) 32033 15 ['emma', 'olivia', 'ava', 'isabella', 'sophia', 'charlotte', 'mia', 'amelia'] In [3]: # build the vocabulary of characters […]
Roblox Bummer
I wanted to create a Roblox game. It was coming along slowly. I insist on developing in Linux which means I had to Wine Roblox Studio. After working several days, I was dissappointed with my progress. The game was to captue a flag and bring it to the top of an obby. First person shooter. […]