coding
ExifEdit Launch!
Recently I’ve been working on a program to solve a nuisance of mine, why do digital cameras label pictures arbitrarily as DSC_1234.JPG? It’s a meaningless naming convention and makes it difficult later to go through all your pictures to find that one you took last week.
Failing to find any tool on the web that does [...]
Process wait script
Often times I would run commands that depended on processes to finish on another tab within a screen session. Unfortunately, bash’s wait command only works within the existing shell, so I came up with a quick script to check versus executable name.
#!/bin/bash
if [ $# -ne 0 ]; then
while pgrep ^$1 > /dev/null; do sleep [...]
Game Creation
I’ve just been bitten by the video game creation bug again. I think at one point in time all gamers thought, “I could make a better game than this!” but inevitably being gamers, we go back to our unproductive selves by throwing that thought aside and playing more games.
There was a recent article posted on [...]
