This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias battery='ioreg -w0 -l | grep Capacity | cut -d " " -f 17-50' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Helper method for Prototype to loop over a collection of elements | |
// and run a method on existing elements within the dom | |
Object.extend(Array.prototype, { | |
each_element_invoke: function(method) { | |
var args = $A(arguments).slice(1); | |
return this.map(function(element) { | |
return element && element[method].apply(element, args); | |
}); | |
} | |
}); |
NewerOlder