Fractals hands

Des mains fractales trouvées complètement par hasard sur Internet. Incroyable,non ?

Kill the shadoks

Un site à ne pas rater :

How to change the Mysql users and root password

There are two way to change the mysql user and root password

mysqladmin
If you have never set a root password for MySQL, the server does not require a password at all for connecting as root. To setup root password for first time, use mysqladmin command at shell prompt as follows:

$ mysqladmin -u root password NEWPASSWORD

However, if you want to change (or update) a root password, then you need to use following command

$ mysqladmin -u root -p oldpassword newpass

Enter password:
Change MySQL password for other user

To change a normal user password you need to type (let us assume you would like to change password for nikesh):

$ mysqladmin -u nikesh -p oldpassword newpass

Changing MySQL root user password using mysql sql command
This is another method. MySQL stores username and passwords in user table inside MySQL database. You can directly update password using the following method to update or change password for user vivek:

1) Login to mysql server, type following command at shell prompt:

$ mysql -u root -p

2) Use mysql database (type command at mysql prompt):

mysql> use mysql;

3) Change password for user nikesh:

mysql> update user set password=PASSWORD(“NEWPASSWORD”) where User=’nikesh’;

4) Reload privileges:

mysql> flush privileges;
mysql> quit

source : http://linuxpoison.blogspot.com/

Brioche à la fleur d’oranger

Pour 8 personnes
Préparation : 20 min. Cuisson : 30 min

Réduisez en pommade 100g de beurre mou. Dans une terrine, mettez 400g de farine, 1 pincée de sel, 100g de sucre.Ajoutez 3 oeufs, 2 cuillères à soupe d’eau tiède, de la levure de boulanger, 10 cl de lait tiède et 1 cuill. à soupe d’arôme de fleur d’oranger.

Pétrissez la pâte, couvrez la d’un torchon et laissez-la gonfler dans un endroit tiède pendant 2h.

Au bout de ce temps, travaillez la pâte comme la première fois.

Versez la pâte dans un moule à brioche beurré, puis laissez-la à nouveau lever 2h.

Avant cuisson, nappez votre pâte avec un jaune d’oeuf battu mélangé à une 1 cuill. à soupe d’arôme de fleur d’oranger.

Faites cuire votre brioche à four préchauffé th.7 (210°C) pendant 30 min.

MTRG – The Multi Router Traffic Grapher

You have a server, you want to know what it does all day long? Then MRTG is for you. It will monitor SNMP network devices and draw pretty pictures showing how much traffic has passed through each interface.

MTRG – The Multi Router Traffic Grapher