http://www.smashingmagazine.com/2010/07/12/css3-design-contest-results/
16
2010
06
2010
16
2010
25
2010
10
2010
09
2010
Excellent video lecture about JavaScript
The lectures about history of computer since and JavaScript and Ajax
06
2010
28
2009
How to install driver for printer HP in windows 7 if HP doesn’t have the driver?
I’ve got that situation.
I needed print from my new laptop with windows 7.
I could not because HP doesn’t have that driver.
I did :
1) I downloaded driver for windows Vista.
2) Unzip. (When you try to install, driver is unarchived on disc C:\hp )
3) Copy all folder when you will see message about “We don’t have driver for windows 7″ (before click “OK”)
4) Control panel -> Hardwar -> add device
5) install driver from a folder. (We copied the folder after unarchived)
6) use the printer
I think if you will not find driver for windows 7 for any devices, you can try that method.
02
2009
Crop or Cut Picture.
I work with web and sometimes i need crop or cut picture or photo. I do not like to run PhotoShop or other graphic editor. For that i have made simple website to do it. It very easy like one, two, three.
One is select and upload picture on the website.
Two is select area on picture by mouse
Three is button Crop and save on your computer.
15
2009
How to make backup on your VPS by ssh?
=== MySql ===
ssh command line: mysqldump -A –user=mysqlLogin –password=mysqlPass > mysql_2009_06_14.sql;
it makes dump all tables of your Date base.
ssh command line: tar -czf mysql_2009_06_14.tar.gz mysql_2009_06_14.sql;
it makes gzip archive of your dump
ssh command line: rm -f mysql_2009_06_14.sql;
This will delete the temporary file with dump
=== files ===
Go to directory with your web sites. (if you have Plesk then it will be var/www/)
ssh command line: tar -czf vps_2009_06_14.tar.gz vhosts
tar -czf [file name with your gzip backup] [directory with your web sites or * - all directory]



