Présentation du Raspberry Pi à la Librairie Plume & Bulle
Présentation du Raspberry Pi à la Librairie Plume & Bulle. Librairie Plume & Bulle de Charleville-Mézières L’événement : Présentation Raspberry Pi 2
Ajouter des bandes noires à OMXPlayer
Ajouter des bandes noires à OMXPlayer. Exemple : xterm -fullscreen -fg black -bg black -e omxplayer tears_of_steel_720p.mkv Lien : http://stevenhickson.blogspot.fr/2012/08/setting-up-omxplayer-gui-on-raspberry-pi.html
[Mod] Archimede’s Ships
[Mod] Archimede’s Ships (Rédaction en-cours) Sujet : Utilisation de base Source code : https://github.com/Ckathode/archimedes-ships Montage vidéo et prise de son : Geoffroy Soutien moral (!!) : Jean-Baptiste La mod a été compilé sous Eclipse. Mon propre binaire : [1.7.10-10.13.0.1198]ArchimedesShips-universal-1.7.2-gitbuild-2015-07-04_09-38-07.jar Minecraft version : 1.7.10 Les vidéos « in-game » ont été enregistré sous Ubuntu 12.04 1) Vidéo : […]
[Dev] Ajouter une entité/mob
Ajouter une entité/mob. Code source : https://github.com/Nekrofage/MinecraftForgeModEclipse/commit/4036fb030d9a3e006661526bea7226ca96108a59 Capture d’écran :
[Dev] Ajouter une commande
Ajouter une commande. Ouvrir : /Minecraft/src/main/java/ckathode/weaponmod/BalkonsWeaponMod.java Chercher : public void initMod(FMLInitializationEvent event) Ajouter après : /* * Add command */ @EventHandler public void serverLoad(FMLServerStartingEvent event) { event.registerServerCommand(new SampleCommand()); } Ouvrir : /Minecraft/src/main/java/ckathode/weaponmod/SampleCommand.java Ajouter : package ckathode.weaponmod; import java.util.ArrayList; import java.util.List; import net.minecraft.command.ICommand; import net.minecraft.command.ICommandSender; import net.minecraft.util.ChatComponentText; /* * Add sample command */ public class SampleCommand […]
[Mod][BalkonsWeapon] Ajout de recette.
[Mod][BalkonsWeapon] Ajout de recette. Ouvrir : /Minecraft/src/main/java/ckathode/weaponmod/BalkonsWeaponMod.java Chercher : private void addModItems() Ajouter : // Recipes // uses 1 item cookie and 7 block sponge in the pattern to make 1 diamond. GameRegistry.addRecipe(new ItemStack(Items.diamond), « y y », « yxy », « yyy », ‘y’, Blocks.sponge, ‘x’, Items.cookie ); //uses 4 iron in a the pattern to make 2 gold.(The same […]
Installation d’une clé ssh sur un serveur distant
Installation d’une clé ssh sur un serveur distant. 1) Installation du paquetage client : [~] ➔ sudo apt-get install openssh-client 2) Génération des clés publiques et privées: [~] ➔ ssh-keygen -t dsa -b 1024 Generating public/private dsa key pair. Enter file in which to save the key (/home/util01/.ssh/id_dsa): Enter passphrase (empty for no passphrase): Enter […]
Installation de navigateur web en mode texte
Installation de navigateur web en mode texte. [~] ➔ sudo apt-get install lynx links links2
Installation de Samba : Répertoire réseau partagé
Installation de Samba : Répertoire réseau partagé. 1) Installation de Samba : [~] ➔ sudo apt-get install samba samba-common-bin 2) Création d’un utilisateur : [~] ➔ sudo adduser util01 [~] ➔ sudo pdbedit -a util01 [~] ➔ sudo smbpasswd util01 3) Création d’un partage : [~] ➔ su util01 Mot de passe : util01@raspberrypi /home/pi […]
Installation de LeoCAD
Installation de LeoCAD. 1) Répertoire de travail : [~] ➔ mkdir -p GRAPH3D/LEOCAD [~] ➔ cd GRAPH3D/LEOCAD/ [~/GRAPH3D/LEOCAD] ➔ 2) Téléchargement du code source : [~/GRAPH3D/LEOCAD] ➔ svn co http://svn.leocad.org/trunk leocad [~/GRAPH3D/LEOCAD] ➔ cd leocad/ [~/GRAPH3D/LEOCAD/leocad] ➔ 3) Configuration du fichier de compilation : Ouvrir : leocad.qrc Chercher et supprimer : resources/leocad_pt.qm 4) Configuration de […]