Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am hhulkko on github.
  • I am heikki (https://keybase.io/heikki) on keybase.
  • I have a public key whose fingerprint is 10F5 DDC7 0787 1674 AE2B C389 09B6 9BE5 0897 5A2C

To claim this, I am signing this object:

lscpu
wget http://nmon.sourceforge.net/docs/MPG_nmon_for_Linux_14a_binaries.zip
unzip MPG_nmon_for_Linux_14a_binaries.zip
sudo mv nmon_x86_64_centos5 /usr/local/bin/nmon
nmon -h
NMON=cmdrvtan nmon
NMON=cmdvtan nmon
NMON=cmdn nmon
sudo yum install dstat
dstat
@hhulkko
hhulkko / gist:845141
Created February 26, 2011 11:48
Possible workaround for lack of proper namespaces in js
function mixIn(module, target) {
for (var name in module)
target[name] = module[name]
}
BASE = {
styled: function(x) { return '<b>' + x + '</b>' }
}
FOO = (function() {