Skip to content

Instantly share code, notes, and snippets.

View xseignard's full-sized avatar
🦄
Internet thuggin'

Xavier Seignard xseignard

🦄
Internet thuggin'
View GitHub Profile
@xseignard
xseignard / Partie_1.md
Last active December 12, 2016 09:03
Partiel 2016

Recréer la page suivante - 5 points

resultat

Contraintes HTML

N'utiliser que les éléments suivants et dans les quantités indiquées!

  • un header
  • deux sections
atom-text-editor::shadow .hard-tab {
text-decoration: line-through;
}
atom-text-editor::shadow .indent-guide {
box-shadow: inset 1px 0 rgba(48, 64, 71, 0.2);
}
atom-pane-resize-handle::before {
background: #009688!important;
opacity: 0.3!important;
}
@xseignard
xseignard / README.md
Last active November 21, 2016 13:13
ECV-EXAM-2

Créer un échiquier en utilisant flexbox.

HTML

N'utiliser que des divs. Chaque case de l'échiquier doit être une div. Vous pouvez grouper les cases par ligne, c'est à dire d'avoir 8 div représentant les lignes de l'échiquier et contenant chacune des div représentant chaque cases de la ligne.

Je retire 1 point par élément HTML qui n'est pas une div!!! Vous êtes prévenus!!

CSS

Keybase proof

I hereby claim:

  • I am xseignard on github.
  • I am xseignard (https://keybase.io/xseignard) on keybase.
  • I have a public key whose fingerprint is F242 E79F 6B72 11AB 0863 EDFB F9A0 85AD E302 C7C1

To claim this, I am signing this object:

@xseignard
xseignard / instructions.md
Last active September 8, 2016 13:31
Build omnidome ubuntu 16.04
sudo apt-get install build-essential git cmake mesa-common-dev freeglut3-dev clang
git clone https://github.com/cr8tr/omnidome.git
cd omnidome
./bootstrap.sh
cmake . -DQT_PATH=/your/path/to/qt
./deploy_ubuntu.sh
./bin/Release/omnidome
// cf. http://www.righto.com/2010/03/detecting-ir-beam-break-with-arduino-ir.html
// 2 ir leds on PIN 3, in parallel
#include <IRremote.h>
#define PIN_IR 3
#define PIN_RED 4
#define PIN_BLUE 5
#define PIN_STATUS 9
IRsend irsend;
@xseignard
xseignard / main.ino
Created June 27, 2016 14:09
dfplayer_somo2
// #include <Somo2.h>
//
// Somo2 somo(11, 12);
// void setup () {
// somo.begin();
// somo.reset();
// delay(1000);
// somo.setVolume(30);
// somo.playTrack(1, 3);
// }
import React, { Component } from 'react';
import { DrawerLayoutAndroid } from 'react-native';
import { Provider } from 'react-redux';
import { store } from './store';
import NavRoot from './components/NavRoot';
import Menu from './components/Menu';
import { startWatch, stopWatch } from './services/geolocator';
import { startCheckZones, stopCheckZones } from './services/zonesChecker';
export default class Main extends Component {
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.