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

Set Scite default encoding to to UTF-8

  1. Open Scite, click Options > Open global options file
  2. search for “#code.page=65001″ and uncomment it (remove# symbol) -> code.page=65001
  3. comment out “code.page=0″ (add # symbol) ->  #code.page=0
  4. save the global ooptions file and restart Scite

HTML, XML, XHTML, SMIL, MathML… Validator

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 stylesheetsMobileOK content, or to find broken links, there are other validators and tools available.

Premature optimization is the root of all evil. D.E. Knuth

Premature optimization is the root of all evil.

D.E. Knuth
Professor Emeritus of
The Art of Computer Programming at Stanford University

How to Create UTF-8 Encoded HTML Pages

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>

</head>

The best disk encryption software for Windows, Mac and Linux

http://www.truecrypt.org/ It’s open source!
http://www.truecrypt.org/downloads

Encryption algorithms: AES-256Serpent, and Twofish. Mode of operation: XTS.

Not even FBI was able to decrypt it.

How Google search works

How Google works

Subversion + apache 2 (linux | debian)

#sudo aptitude install subversion libapache2-svn
The install should automatically enable the module.T
o 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 /home/svn to the location of your repository.
Create the location if you haven't:
#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 fred with 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