[Minecraft] ComputerCraft
[Minecraft] ComputerCraft. Minecraft : 1.7.10 + Forge 1) Installation : [~] ➔ cd .minecraft/mods [~/.minecraft/mods] ➔ wget http://minecraft.curseforge.com/mc-mods/67504-computercraft/files/2216236/download [~/.minecraft/mods] ➔ mv download ComputerCraft1.65.jar 2) Captures d’écran : – 2 ordinateurs : – Interface en ligne de commande : – Mini programme : – Exécution du programme : 3) Vérification : [~] ➔ cd ~/.minecraft/saves/Nouveau\ monde/computer/ […]
[Article] Rock-star du code !
* Si vous rêvez d’envoyer balader votre patron, devenez développeur « Si tu veux devenir une rockstar et/ou un ninja, deviens développeur ! » http://rue89.nouvelobs.com/2014/12/08/si-revez-denvoyer-balader-patron-devenez-developpeur-256237 * Les « dev » ces nouvelles stars que l’on s’arrache « Il faut être une éponge, s’intéresser à tout. Le reste, la technique, ça s’apprend » « Quelque part, on est des rebelles qui […]
[Git] Modifier un commit antérieur
[Git] Modifier un commit antérieur. Contributeur : Joris M. 1) Sauvegarder les modifications en-cours : git stash 2) Chercher le commit précédent du commit que l’on veut modifier : git log 3) Se positionner sur ce précédent commit : git rebase –interactive eadffa4ee174b70583345 4) Remplacer « pick » par « edit » de la ligne du commit à modifier […]
[Minecraft][MCPI] Création d’une Tortue/Logo
[Minecraft][MCPI] Création d’une Tortue/Logo. Script : https://github.com/Nekrofage/MinecraftPython Lien : http://www.stuffaboutcode.com/2014/05/minecraft-graphics-turtle.html
[Minecraft][MCPI] Chargement de modele 3d .obj
[Minecraft][MCPI] Chargement de modele 3d .obj. Script : https://github.com/Nekrofage/MinecraftPython/blob/master/minecraft-renderObj.py Serenity : Rendu en fil de fer : https://github.com/Nekrofage/MinecraftPython/blob/master/renderSerenityWireframe.py Rendu en surface : https://github.com/Nekrofage/MinecraftPython/blob/master/renderSerenitySurface.py Modéle 3d .obj : https://github.com/Nekrofage/MinecraftPython/blob/master/serenity.obj.zip Rendu en surface : Lien : http://www.stuffaboutcode.com/2013/03/minecraft-pi-edition-create-massive-3d.html
[Minecraft][MCPI] Création de forme-blocs
[Minecraft][MCPI] Création de forme-blocs. Module : https://github.com/Nekrofage/MinecraftPython/blob/master/mcpi/minecraftstuff.py Exemple : https://github.com/Nekrofage/MinecraftPython/blob/master/createFormBlock.py Lien : http://www.stuffaboutcode.com/2013/11/coding-shapes-in-minecraft.html
[Minecraft][MCPI] Détecte la position du joueur
[Minecraft][MCPI] Détecte la position du joueur. Script : https://github.com/Nekrofage/MinecraftPython/blob/master/playerAction.py Coordonnées des coins : +————————–+ | | | 344.700/4/-302.700 | | +————+ 344.700/4/-301.300 | | | | | | | | | | | | | | | | | | | 343.300/4/-301.300 +——+————+ | | |343.300/4/-302.700 | | | | +——+——————-+
[Minecraft][MCPI] Créer une image bloc
[Minecraft][MCPI] Créer une image bloc. Script : https://github.com/Nekrofage/MinecraftPython/blob/master/createImage.py Lien : http://www.tecoed.co.uk/rendering-pixels.html
[Minecraft][MCPI] Ecrit un texte en bloc
[Minecraft][MCPI] Ecrit un texte en bloc. Script : https://github.com/Nekrofage/MinecraftPython/blob/master/createText.py Lien : http://www.stuffaboutcode.com/2013/08/raspberry-pi-minecraft-twitter.html
[Minecraft][MCPI] Afficher le dernier tweet dans la fenêtre de discussion
[Minecraft][MCPI] Afficher le dernier tweet dans la fenêtre de discussion. Installation de Python-Twitter : https://github.com/Nekrofage/MinecraftPython/blob/master/installation_twitter.txt Script MCPI : https://github.com/Nekrofage/MinecraftPython/blob/master/tweeter.py