Liverpool is great!!! Dudek dance is great

May 26th, 2005

Liverpool is great!!! Dudek dance rulez ;-]

Easydrive review

May 23rd, 2005

If you are looking for a fine carkit - look at this:

EasyDrive car kit from Parrot, the ranks of cellphone users adopting Bluetooth hands-free speakerphones for their cars may grow as well. read more

How to convert mp3 to wav in Linux?

May 20th, 2005

It’s very simple - you need lame package. I you have one, just type:

lame –decode example_file.mp3
and you get example_file.mp3.wav

Interesting article: Installing Fedora Core on the Mac mini

May 18th, 2005

I think it should also work with iBook, I’ll try to try :-) it with my iBook. here You can read it

Digikam 0.7.2 for Fedora Core 3

May 18th, 2005

I was looking for Digikam 0.7.2 for Fedora Core 3, I’ve just found one, but for Fedora Core 2, but it works in Fedora 3.

To install 0.7.2 version you need download and rpm -Uhv (upgrade or new installation) following packages:
digikam-0.7.2-1.0.2.kde.i386.rpm
dcraw-0.0-0.fdr.0.1.20041026.2.i386.rpm
libkexif-0.2.1-1.0.2.kde.i386.rpm
libkipi-0.1.1-1.0.2.kde.i386.rpm
digikamimageplugins-0.7.2-1.0.2.kde.i386.rpm
imlib2-1.2.0-0.fdr.5.2.i386.rpm
kipi-plugins-0.1-0.fdr.0.3.beta1.2.i386.rpm

Very usefull cheat sheets!

May 17th, 2005

At ilovejackdaniels.com you can find very usefull cheat sheets.

Available formats - pdf or png, so you can print it. One of the examples is php cheat sheet

VoIP (Voice over IP) with Linksys PAP2

May 14th, 2005

Few weeks ago I decided to get rid off standard analog telephony. One week ago I bought VoIP gateway - Linksys PAP2.

Now I’m sure it was a good choice! It works perfect, and can call all over the word and pay less than before the decision to buy Linksys PAP2.

Interesting article: “How to snatch an expiring domain”

May 3rd, 2005

If you plan to snatch some domain look at mikeindustries blog to find out, how to do it.

Another reason to use Firefox

May 2nd, 2005

If you’re google adsense user - check this: Adsense Notifier - Firefox Extension

How to secure a web page. How to secure password.

April 29th, 2005

How to secure a web page? How to secure passwords? How to secure database password?

As you probably noticed, putting password in a config file in html directory is not a good idea?

Task: improve security of web page.

Solution: put all of your config files in another directory (but not placed in html). For example you may create directory ../my_configs, and put file my_database.conf.php in it.

How to include that file in php?
Solution is simple - you must do such a trick:

let’s assume your file is in /var/www/my_configs
your php files are in /var/www/html/ and other files are in /var/www/html/xyz/

to include my_database.conf.php just write a line: require(’/var/www/html/../my_configs/my_database.conf.php’);

Of course instead of /var/www/html you can define $web_path=/var/www/html/ and just write:
require($web_path . ‘../my_configs/my_database.conf.php’); [Note: dot merges two strings]

There’s no possibility (I assume the server is properly configured) to take files outside html directory from the internet, put php on the server can securely take it.