Saturday, August 13, 2016

Linux Drivers for HP Printers

I couldn't use my old HP color printer any more on Windows since it automatically updated to Win10.

But Linux has a driver for it! Why was I using Windows again?

http://hplipopensource.com/hplip-web/install/install/index.html

Wednesday, July 13, 2016

Delete all .bak files

In Bash, you can delete all .bak files like this:


rm $(find . -name '*.bak')


Short and sweet!

How to I pull into a bare Git repository?

This pulls from one bare repository into another:




git fetch origin master:master