Recent Tweet
- I said 'like' so many times in a description of Journey I cried upon playback. 15 hours ago
My dad and I were in the living room recently and he was using our TV computer. While using Chrome, he kept mouse over to each little circular x to close each tab. I suggested he try a different shortcut. If you’re using a mouse with a scroll wheel, you can press the scroll wheel [...]
I was helping a friend with a little C-program recently. C is not my language of choice, and when I was tinkering years ago, I was using a Windows compiler and not gcc. Things are a little different in the Ubuntu compilation world. I was receiving an unexpected error message even though I had proper [...]
Saving the contents of a bash curl call is pretty easy. Variables in bash work something like this. Capturing input is relatively easy too. If you echo’d out the contents of variable, you’d print out whatever was in the directory when you ran the command. So if you put the two together along with curl, [...]
For a little project I needed to save lots of index positions from many arrays to file. They were numbers, so they were basically ints, but instead of four bytes, I could get away with a single byte, saving on memory. It was more efficient too save bytes directly instead of parsing strings of integers [...]