[Mon Mar 28 08:08:36 CDT 2016]

A few interesting projects to do with the Raspberry Pi. Ideal for a technology project with the kids.

{link to this entry}

[Mon Mar 28 07:39:19 CDT 2016]

Here is a quick tip on how to indent multiple lines in vim, my favorite text editor. {link to this entry}

[Fri Mar 4 20:29:42 CST 2016]

If you miss the old KompoZer HTML editor from the repos of your favorite Linux distro, simply download the BlueGriffon binary from here. It runs without problem. Also, you may be interested in the article 4 open source alternatives to Dreamwaver. {link to this entry}

[Fri Mar 4 20:26:31 CST 2016]

Here is an easy command to run when you need to copy a directory recursively to a remote system using SSH:

$ scp -rp source user@system:/path
The -r option makes it recursive, while -p preserves the modification time, access time, and modes from the original files. {link to this entry}