Launch day

I’m sharing out StreamWords with people. Hopefully people will enjoy it. We have fun playing it on stream. Things I’ve learned about StreamWords. I want to include a tournament mode. Set it to 10, 20, or 30 words, and let it run. People get points…

I don't journal

But maybe I should. I should try to come up with basic quesitons I ask myself each day. Coffee. I like coffee. With honey. My desire to cook. I enjoy cooking, and I enjoy exploring new recipes, and making things up as I go along.

How to disable the beep in PowerShell

This was annoying, but easily resolved. You can easily disable this in PowerShell by running this command: Set-PSReadlineOption -BellStyle None However, what you probably want is to disable this every time you open up PowerShell. Doing this is simple. In PowerShell, type notepad $profile This…

PowerShell for Bash Users

Working with Objects PowerShell works with objects rather than plain text. While this might seem odd, it's also pretty powerful. So, if you run the ls command, it will return a bunch of objects that have fields (Members). You can figure out what this is easily…