Skip to content

Instantly share code, notes, and snippets.

@brianfernalld
brianfernalld / gist:c0351bf195797242a4bd
Created May 7, 2014 22:49
Hubot Script - Carlton.coffee
# Description:
# Carlton Celebration
#
# Dependencies:
# None
#
# Configuration:
# None
#
# Commands:
@brianfernalld
brianfernalld / gist:5136208
Created March 11, 2013 17:56
Remove duplicates from array
/**
* Remove duplicates from array
* @param {Object} num
*/
function removeDup(num){
cleaned = [];
original = num;
for(i=0;i<original.length;i++){
if (cleaned.indexOf(original[i]) === -1){
cleaned.push(original[i]);
// ----------------------------------------------------------
// A short snippet for detecting versions of IE in JavaScript
// without resorting to user-agent sniffing
// ----------------------------------------------------------
// If you're not in IE (or IE version is less than 5) then:
// ie === undefined
// If you're in IE (>=5) then you can determine which version:
// ie === 7; // IE7
// Thus, to detect IE:
// if (ie) {}