Skip to content

Instantly share code, notes, and snippets.

View Bernardstanislas's full-sized avatar
🛫
Taking off

Stanislas Bernard Bernardstanislas

🛫
Taking off
View GitHub Profile
@Bernardstanislas
Bernardstanislas / README
Created March 5, 2015 19:28
Les biatchs de l'espace
Structure de l'appli :
-- server.js
-- package.json
-- public/
---- index.html
---- js/
------ app.js
---- css/
------ style.css
@Bernardstanislas
Bernardstanislas / algo.py
Created January 16, 2015 08:32
TP1 de vision par ordinateur
import numpy as np
import cv2
from math import *
import os
databasePath = "db"
outputPath = "output"
def readImage(imagePath):
@Bernardstanislas
Bernardstanislas / Circle.cpp
Created October 20, 2014 20:38
Composite pattern issue
#include "Circle.hpp"
#include <iostream>
#include <string>
using namespace std;
Circle::Circle(float x, float y, float r, Circle::Color color) {
myX = x;
myY = y;
myR = r;
@Bernardstanislas
Bernardstanislas / 0_reuse_code.js
Last active August 29, 2015 14:07
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console