Skip to content

Instantly share code, notes, and snippets.

View nataren's full-sized avatar

César López-Natarén nataren

View GitHub Profile
@nataren
nataren / 0_reuse_code.js
Created October 24, 2016 18:31
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
@nataren
nataren / p4merge4git.md
Created December 12, 2015 00:10 — forked from tony4d/p4merge4git.md
Setup p4merge as a visual diff and merge tool for git
// Creating new threads
open System
open System.Threading
//What will execute on each thread
let threadBody() =
for i in 1..5 do
//Wait 1/10 of a second
Thread.Sleep(100)
printfn "[Thread %d] %d ..."