This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var mapimg; | |
var montreal = { | |
lat: 45.501689, | |
long: -73.567256 | |
} | |
var clat = montreal.lat; | |
var clon = montreal.long; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cryptography | |
http://www.cryptage.org/chiffre-cesar.html | |
CPP Tutorial | |
https://www.programiz.com/cpp-programming/ | |
Midland - Final Credsits Samples | |
Voice : https://www.youtube.com/watch?v=ZaBHAsBxYBs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import processing.sound.*; | |
SoundFile song; | |
FFT fft; | |
void setup() { | |
size(514, 360); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" alternatively, pass a path where Vundle should install plugins | |
"call vundle#begin('~/some/path/here') | |
" let Vundle manage Vundle, required | |
Plugin 'gmarik/Vundle.vim' | |
Plugin 'StanAngeloff/php.vim' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
#include <vector> | |
using namespace std; | |
void vectorFunctions(vector<int> const& a) { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!!! Meeting | |
Xavier | |
-- Travaille usr API de HEC pour le kickstart | |
-- Back end est chez HEC et nous file des API pour | |
Étienne | |
--Tentative Framer | |
--Un peu de fix sur Quebec en Forme (1) | |
--Librarie PDF | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PImage img; | |
int pointillize = 4; | |
int noise = 1; | |
int gravity = 0; | |
int pressedCounter = 0; | |
void setup() { | |
size(600,600); | |
img = loadImage("loud.jpeg"); | |
background(0); | |
smooth(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class DatasTool { | |
public $sources; | |
public $processed = array(); | |
// Give me a SQL ressource and bind it with the "label" to the DatasTool | |
public function parseSql($ressource, $label) { | |
$this->processed[$label]= array(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
Created on Thu Apr 5 15:15:16 2018 | |
@author: antoine.fortin | |
""" | |
import numpy as np | |
import matplotlib.pyplot as plt | |
import pandas as pd | |
dataset = pd.read_csv('Data.csv') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Round[] R = new Round[5]; | |
int circleWidth = 15; | |
int circleHeight = 15; | |
int counter = 0; | |
void setup() { | |
background(55); | |
size(1200,600); | |
for(int i = 0; i < 5; i++) { | |
R[i] = new Round(); |