View Conversion de fichiers de latin1 à UTF8. Le logiciel convmv effectue la conversion des noms de fichiers contenus dans "répertoire/" de latin1 vers UTF8 : convmv --notest -r -f latin1 -t... Read More
View A prototype for Number.toFixed in JavaScript Note if toFixed is not defined if (!num.toFixed) { Number.prototype.toFixed = function(precision) { var power = Math.pow(10, precision || 0); ... Read More
View Distance between two points (given the latitude/longitude of those points) FUNCTION for MySQL Note Great circle distance Great circle distance Find the distance in kilometres between two points on the surface of the earth. This is just... Read More
View MySQL permissions for backup GRANT SHOW DATABASES, SELECT, LOCK TABLES, RELOAD ON *.* to backup@localhost IDENTIFIED BY ‘password’; FLUSH PRIVILEGES; Note Create a specific user for backups purpose... Read More
View Lister les fichiers d’un répertoire et de ces sous-répertoires avec le chemin complet Note Pour écrire ces informations dans un fichier : > dir *.* /b /s >liste.txt dir *.* /b /s Read More