Saturday, December 22nd, 2007 10:30 PM
Find the IP address of all the active interfaces.
ifconfig | egrep -o '^[a-z0-9]{1,12}|inet addr:[0-9.]+'
No Comments »
Sunday, October 28th, 2007 10:44 PM
Creating Chainable interfaces in javascript…
(function() {
function _init() {
return this;
}
_init.prototype = {
"myFunction": function() {
return this;
}
// Put all the functions here - make sure all 'return this;'
}
chainer = function() {
return new _init();
}
})();
Roll out your own JavaScript Interfaces
[tags][/tags]
No Comments »