Skip to content

Instantly share code, notes, and snippets.

View DILL44's full-sized avatar
🌍
on Idcity

Nicolas DILL44

🌍
on Idcity
View GitHub Profile
@DILL44
DILL44 / InstallDopCom.sh
Last active October 11, 2015 17:47
script dopCom
git clone git://github.com/DILL44/DopCom.git&&
mv DopCom/* . &&
mv DopCom/.git* . &&
rm -R DopCom &&
wget http://ftp.drupal.org/files/projects/drupal-7.19.zip &&
unzip drupal-7.15.zip &&
rm -R drupal-7.15/sites/&&
mv drupal-7.15/* . &&
mv drupal-7.15/.htaccess . &&
rm -R drupal-7.15* &&
@DILL44
DILL44 / drupal update
Last active October 13, 2015 03:38
update for drupal on shared server
wget http://ftp.drupal.org/files/projects/drupal-7.18.zip &&
unzip drupal-7.18.zip &&
rm -R drupal-7.18/sites/ &&
cp -R sites/ drupal-7.18/ &&
mv drupal-7.18/ ../ &&
rm drupal-7.18.zip &&
mkdir ../backup &&
mv * ../backup/ &&
mv .htaccess ../backup/ &&
rm -R ../drupal-7.18/.git*&&
@DILL44
DILL44 / php file for debug
Created November 29, 2012 09:57
write file for testing variable in a php file.
$file=fopen("/path/to/the/file/test.txt", 'w+',true);
$content='';
foreach ($aray as $value){
$content.="id: ".$value."\n";
}
fwrite($file,$content);
fclose($file);
}
void setup() {
Serial.begin(9600);
pinMode(13, OUTPUT);
}
void loop() {
if (Serial.available() > 0) { // if there is data coming from the serial port
int data = (int)Serial.read(); // get that data and print it
Serial.println(data);
if (data == 1) { // do what you want with this data
digitalWrite(13, HIGH);
!#/bin/bash
#exercie
#
#etape 1
#
#creer fonction bash qui permet d'afficher les information d'un fichier ou d'un dossier:
#
#fichier.sh est un fichier
#koalas a les droits en lecture , a les droits en ecriture , a les droits en execution
@DILL44
DILL44 / cups
Created January 31, 2014 11:02
#!/bin/bash
liste(){
ps -eo "%p %P %r %U %G %y %x %c %C"
ecrire=expr`ps -eo "%p %P %r %U %G %y %x %c %C"`
}
arbre_par_pid(){
read -p "donnez le pid d un processus: " pid
while [ ! "$(echo $pid | grep "^[ [:digit:] ]*$")" ]
do
echo "$processus n'est pas un pid "
int sens1_1 = 8;
int sens1_2 = 9;
int sens2_1 = 10;
int sens2_2 = 11;
int segond=1000;
int led = 13;
void setup() {
pinMode(sens1_1, OUTPUT);
pinMode(sens1_2, OUTPUT);
hautrec=84;
largrec=50;
longrec=35;
epeseur=12;
rayon=35;
trou=7;
hautren=37;
largren=26;
difference() {
#!/bin/bash
read -s -p "Enter root DB Password: " PASSDB
echo ""
read -s -p "Enter new DB Password: " PASSWORD
echo ""
read -s "Enter website server host: " HOST
echo ""
EXPECTED_ARGS=2