Skip to content

Instantly share code, notes, and snippets.

View xmonkee's full-sized avatar

Mayank Mandava xmonkee

View GitHub Profile
@xmonkee
xmonkee / 0_reuse_code.js
Created April 28, 2014 14:44
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
@xmonkee
xmonkee / evenFib.go
Created January 26, 2014 02:17 — forked from anonymous/evenFib
package main
import "fmt"
func isEven(n int, c chan<- int) {
if n%2 == 0{
c <- n
}
}