Sunday, June 02, 2013
Fire Protection Systems Provider In India Call 022 - 23792525 Now
Wednesday, April 03, 2013
Reminder about your invitation from Ketan Kulkarni
| |||||||||||||||||||||||||||||||||||||||||
Wednesday, March 27, 2013
Reminder about your invitation from Ketan Kulkarni
| |||||||||||||||||||||||||||||||||||||||||
Wednesday, March 20, 2013
Invitation to connect on LinkedIn
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Wednesday, October 28, 2009
Apache: .htaccess redirection
the new domain, use the following code in .htaccess file placed in the
document root of your old website.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?olddomain\.com [NC]
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L]
This way, visitors of
http://olddomain.com/some_file.html
will be redirected to
http://www.newdomain.com/some_file.html
Wednesday, August 05, 2009
Linux: Avoid scp when copying a lot of files
scp. This is because scp spawns a new process for each file and can be
resource intensive.
When using the -r switch, scp does not care about symbolic links and
will follow them, even if it has already copied the file. This can
lead to scp copying an infinite amount of data and can easily fill up
your hard disk.
Therefore, when you think of backups or remote copy of directories,
think of rsync.
Linux: Download whole website with wget
wget -r -p -np -k http://www.sonomamgmt.com
Friday, July 10, 2009
Linux : Install fonts on Linux
system-wide) follow this procedure.
If ~/.fonts does not exist,
% mkdir ~/.fonts
Download and copy the .ttf files into this directory and run
% fc-cache
For users who need to download Devanagari fonts, here's a good resource.
http://www.wazu.jp/gallery/Fonts_Devanagari.html
