Tweetdeck in 64bit Ubuntu

I found this post to work perfectly. Check it out! You may have to restart Tweetdeck a time or two for it to work. I had to restart it just once. Enjoy

Simple MySQL Backup Bash Script

Wrote this script to backup a MySQL database of mine. Let me know if you have trouble using it 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #!/bin/bash # This script was created by Brad Janke # www.bradjanke.com # Please use with caution =D # <3 Penguins.... ...

Automatically Add SSH Key to Your Servers

I am constantly working with multiple linux servers (mostly Debian). Whenever I create a new server I immediately execute this simple script I created which adds my box’s public key to the server I am trying to communicate with. If you know about SSH and SSH Keys then you know what I am talking about… ...