Skip to content

Instantly share code, notes, and snippets.

View kuzyn's full-sized avatar

kuzyn kuzyn

View GitHub Profile
@kuzyn
kuzyn / README.md
Last active December 2, 2015 21:38
Hello!

Nom du client

[Une phrase descriptive super high level, ex: 'Site web responsive pour XYZ.']

Version Date
x.x.x 01 Janvier 2016

Lead du projet:

[Nom du gestionaire de projet]
@kuzyn
kuzyn / gulpfile.js
Created June 11, 2015 08:33
gulp-nodemon
var gulp = require('gulp')
var path = require('path')
var watch = require('gulp-watch')
var nodemon = require('gulp-nodemon')
var less = require('gulp-less')
var notify = require('gulp-notify')
var livereload = require('gulp-livereload')
// LESS
gulp.task('less', function () {
@kuzyn
kuzyn / Instructions.pde
Created December 6, 2011 04:49
s.t.e.v.e.
//***
//Class that load and read instructions
//**
class Instructions extends Thread {
// -----properties
String fileName;
int nbLines;
String[] instrLines;
boolean running;
class TweetStream {
Queue tweetQueue;
ArrayList<Tweet> collection;
boolean firstSave = true;
TweetStream() {
collection = new ArrayList();
@kuzyn
kuzyn / Button.pde
Created October 21, 2011 14:44
slivers
//***
//Class that draw buttons
//***
class Button {
// -----properties
int xPos;
int yPos;
int buttonSize;
//since the readHead class redraw the grid at each pass, colors are set-up over there
@kuzyn
kuzyn / index.php
Created October 19, 2011 19:19
Grease
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- include craigslist css -->
<link type="text/css" rel="stylesheet" media="all" href="http://www.craigslist.org/styles/craigslist.css?v=9">
<!-- library to manipulate html and change them dynamically -->
<?php include('lib/shd1_5/simple_html_dom.php');?>
<!-- class that fetch urls from a craigslist rss feed -->
<?php include('lib/rssFetch.php');?>