Skip to content

Instantly share code, notes, and snippets.

View vitorbarbosabyside's full-sized avatar

vitorbarbosabyside

View GitHub Profile
@vitorbarbosabyside
vitorbarbosabyside / gist:2224998
Created March 28, 2012 09:20
Javascript: MD5
var MD5 = function (string) {
function RotateLeft(lValue, iShiftBits) {
return (lValue<<iShiftBits) | (lValue>>>(32-iShiftBits));
}
function AddUnsigned(lX,lY) {
var lX4,lY4,lX8,lY8,lResult;
lX8 = (lX & 0x80000000);
lY8 = (lY & 0x80000000);
@vitorbarbosabyside
vitorbarbosabyside / gist:2225017
Created March 28, 2012 09:25 — forked from padolsey/gist:527683
Javascript: Detect IE
// ----------------------------------------------------------
// 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) {}