Edward Bernays – Propagande en démocratie

Edward Louis Bernays (22 novembre 1891 – 9 mars 1995) est considéré comme le père de la propagande politique institutionnelle dont il met au point les méthodes pour des firmes comme Philip Morris et à laquelle il donne le nom de Relations publiques.

En combinant les idées de Gustave Le Bon et Wilfred Trotter sur la psychologie des foules avec les idées sur la psychanalyse de son oncle, Sigmund Freud, Eddy Bernays a été un des premiers à vendre des méthodes pour utiliser la psychologie du subconscient dans le but de manipuler l’opinion publique.

Source : http://fr.wikipedia.org/wiki/Edward_Bernays

Message de l’industrie du divertissement

Obama

http://www.bakchich.info/article6516.html

More Surgical Strikes in Gaza

Que restera t’il de notre Terre ?

L’homme détruit son espace de vie.
Le mode de fonctionnement capitaliste est destructeur des ressources. Que faire ??

Domains names for RoxApps

There are new domains names for RoxApps, Roxsciences, Knosciences and Knomath wiki :
http://roxapps.net
http://roxsciences.net

De l’incoherence des politiques !

Ils le savent depuis toujours, ils sont juste profondément incohérents.

source : http://eco.rue89.com/2008/12/30/le-chomage-plus-haut-qua-larrivee-de-nicolas-sarkozy

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/