Merge pdf files
sudo apt-get install gs pdftk (Debian, Ubuntu)
gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=mergedfile.pdf -dBATCH file1.pdf file2.pdf file3.pdf
sudo apt-get install gs pdftk (Debian, Ubuntu)
gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=mergedfile.pdf -dBATCH file1.pdf file2.pdf file3.pdf
http://validator.w3.org by W3C
W3C validator checks the markup validity of Web documents in HTML, XML, XHTML, SMIL, MathML, etc. If you wish to validate specific content such as RSS/Atom feeds or CSS stylesheets, MobileOK content, or to find broken links, there are other validators and tools available.
Premature optimization is the root of all evil.
D.E. Knuth
Professor Emeritus of The Art of Computer Programming at Stanford University
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
http://www.truecrypt.org/ It’s open source!
http://www.truecrypt.org/downloads
Encryption algorithms: AES-256, Serpent, and Twofish. Mode of operation: XTS.
#sudo aptitude install subversion libapache2-svn
The install should automatically enable the module.To check it:
#sudo a2enmod dav_svn
You need to configure Apache:
#sudo nano /etc/apache2/mods-enabled/dav_svn.conf
Edit the file:
<Location /svn>
DAV svn SVNPath /home/svn AuthType Basic AuthName "Subversion Repository" AuthUserFile /etc/apache2/dav_svn.passwd Require valid-user </Location> Change#sudo mkdir /home/svn #sudo svnadmin create /home/svn Make Apache the owner of the repository: #sudo chown -R www-data /home/svn To secure Subversion, do the following to create a password file: #sudo htpasswd -cm /etc/apache2/dav_svn.passwd fred Replace/home/svnto the location of your repository. Create the location if you haven't:fredwith username you want to use, and then when prompted enter a password. Restart Apache:#sudo /etc/init.d/apache2 restart It's done! Try to access: http://yourserver/svn