Archive for August, 2005

How to convert dos file to unix/linux format.

Wednesday, August 24th, 2005

How to get rid off all bad Windows line endings?
it’s simple, for example to convert all *.php files in directory write:
for x in *.php; do dos2unix $x; done

Apache Server Tutorial Part I: Preparing to Install WAMP on Windows NT 2000 Pro

Tuesday, August 16th, 2005

Definition WAMP is an acronym for the combination Microsoft Windows, Apache, MySQL and one or more of Perl, PHP and Python. It is modelled after the more well-known LAMP, referring to the all-open source/free software approach which uses Linux instead of Windows.