Administrateur

Notes

1/ Copie de l’image vers une micro-sd : $ sudo fdisk -l … Device Boot Start End Sectors Size Id Type /dev/mmcblk0p1 8192 30318591 30310400 14,5G c W95 FAT32 (LBA) $ sudo dd bs=4M if=2016-03-18-raspbian-jessie.img of=/dev/mmcblk0

[Android] Exemple de RPG avec Andengine

[Android] Exemple de RPG avec Andengine. Capture d’écran : Liens : * Site original : http://pilotpol.blogspot.fr/2013/05/rpg-android-andengine-1.html https://github.com/pilotpol/classicrpg * Mes petites modifications : https://github.com/Nekrofage/Android_RPG

[Git] Remplacer la branche origin

[Git] Remplacer la branche origin. 1) Afficher l’actuel branche origin : [~/ANDROID.rpg/classicrpg] ➔ git remote show origin * distante origin URL de rapatriement : https://github.com/pilotpol/classicrpg.git URL push : https://github.com/pilotpol/classicrpg.git Branche HEAD : master Branche distante : master suivi Branche locale configurée pour ‘git pull’ : master fusionne avec la distante master Référence locale configurée pour […]

[GANDI][SH][GIT] Transfert d’application de Bitbucket vers un dépôt git d’une instance Simple Hosting

[GANDI][SH][GIT] Transfert d’application de Bitbucket vers un dépôt git d’une instance Simple Hosting. I) Bitbucket. 1/ Sous Bitbucket, créer un dépot git. Ajouter sa clé publique dans son compte. 2/ Création d’un répertoire de travail : ➜ ~ mkdir -p DEPOT/BB ➜ ~ cd DEPOT/BB/ 3/ Création du répertoire de base ‘htdocs/’ de l’application : […]

[Gandi][SH] Utilisation de git v0.0.1

[Gandi][SH] Utilisation de git. Le versionning git d’un application se fait à partir de l’ordinateur de développement. 1) Répertoire de travail : [~] ➔ mkdir -p SIMPLEHOSTING/PERSO/EspaceBidouilleur/Git/ [~] ➔ cd SIMPLEHOSTING/PERSO/EspaceBidouilleur/Git/ [~/SIMPLEHOSTING/PERSO/EspaceBidouilleur/Git] ➔ 2) Création de fichier : [~/SIMPLEHOSTING/PERSO/EspaceBidouilleur/Git] ➔ touch README.md [~/SIMPLEHOSTING/PERSO/EspaceBidouilleur/Git] ➔ mkdir htdocs [~/SIMPLEHOSTING/PERSO/EspaceBidouilleur/Git] ➔ touch htdocs/bonjourtoutlemonde.html 3) Initialisation du repo Git […]

[Gandi][API] Auto-reply

Auto-reply via API 1/ The date start and the date end must be match to the following regexp : /^(\\d{4})-(\\d{2})-(\\d{2})\\s+(\\d{1,2})\\:(\\d{1,2})\\:(\\d{1,2})(.[0-9]{1,6})?$/ By example : 2016-02-10 15:20:00 2/ For more information, feel free to read the following wiki page: https://wiki.gandi.net/en/mail/create-email-autoreply 3/ The php code. 4/ Python code. Auto-reply activation: #!/usr/bin/python3 import pprint import xmlrpc.client import sys pp […]

[WordPress] Changer les url

1) Réquêtes SQL : # Changer l’URL du site UPDATE wp_options SET option_value = replace(option_value, ‘http://www.ancien-site.com’, ‘http://www.nouveau-site.com’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’; # Changer l’URL des GUID UPDATE wp_posts SET guid = REPLACE (guid, ‘http://www.ancien-site.fr’, ‘http://www.nouveau-site.fr’); # Changer l’URL des médias dans les articles et pages UPDATE wp_posts SET post_content = REPLACE […]