Skip to content

Instantly share code, notes, and snippets.

View mallowigi's full-sized avatar
🌴
Salut tout le monde les gens!

Elior Boukhobza mallowigi

🌴
Salut tout le monde les gens!
View GitHub Profile
@mallowigi
mallowigi / millisecondsToHMS.coffee
Last active August 29, 2015 14:01
millisecondsToHMS
millisecondsToHMS: (ms) ->
hms = {
h: Math.floor(ms/(60*60*1000)),
m: Math.floor((ms/60000) % 60),
s: Math.floor((ms/1000) % 60)
}
tc = []
tc.push(hms.h) if (hms.h > 0)
m = hms.m;
@mallowigi
mallowigi / .bowerrc
Created September 16, 2013 15:04 — forked from facultymatt/.bowerrc
{
"directory": "components"
}