Archive for February 23rd, 2009

Sacred Shield vs Aura

I’m not sure how correct this is, but I thought it would be fun to compared how much Sacred Shield can absorb against a regular source of raid damage (in this case Sapphiron’s frost aura in Naxx25)
The mechanics of SS is a little strange, best to read up on the skill on WoWHead, or WoWWiki

Each [...]

Posted by Matthew on February 23rd, 2009

Filed under games | No Comments »

array_unique javascript snippet

function array_unique(a)
{
    return a.reduce(function(u, e)
    {
        if(!(e in u))
            u.push(e);

        return u;
    }, []);
}

Posted by Matthew on February 23rd, 2009

Filed under javascript, programming | No Comments »