Browsing articles from "August, 2010"
Aug
9
9
Opacity in IE7 and IE8
This isn’t really a full blog post but I figured I could throw it on here anyway. Follow the link below for a full explanation of opacity in IE7 and IE8.
Aug
4
4
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.... DATE="$(date '+%Y_%m_%d_%H%M')" # password associated with the user PW="" # the name of the user you will connect to the MySQL server with. This user must have read access to the database you are attempting to backup USER="" # the name of the database you want to backup DB="" # Where the backup will be written to FILE="$DB.$DATE.sql" mysqldump -u $USER -p$PW $DB > $FILE && echo "$FILE written successfully...." echo "FIN!" |
Categories
- Database (1)
- Oracle (1)
- Design (1)
- Linux (3)
- News (2)
- Programming (8)
- Uncategorized (2)
Archives
- July 2011 (2)
- April 2011 (1)
- February 2011 (3)
- October 2010 (3)
- September 2010 (1)
- August 2010 (2)
- July 2010 (3)

