Irvue for OS X

If you have a Mac, you should definitely get this app. It changes your wallpaper to a random selection from Unsplash after a configurable interval. irvue Source: Irvue for OS X

An easier way to kill processes

I’ve moved on from ps aux | grep -i processname; kill PID. The Mac (along with many other Unix-likes) has two handy utilities: pgrep and pkill. pgrep does a case-insensitive search for processes matching the expression you provide, and returns all matching PIDs, one per line. pkill does the same search, but just kills the …