Install CasperJS with PhantomJS on Cygwin
Stumbled across this much easier solution today for rigging up my favorite modern headless javascriptable browser tools on my favorite Windows-compatible shell. Should work in pretty much all versions of Windows/Cygwin/phantomjs/casperjs. Download phantomjs and casperjs and unzip them in c:\phantomjs…
How to install JavaScript tools for Nagios
Node Install Node on the Nagios machine (My Nagios XI VM running CentOS… for other platforms see nodejs.org) wget http://nodejs.tchol.org/repocfg/el/nodejs-stable-release.noarch.rpm sudo yum localinstall –nogpgcheck nodejs-stable-release.noarch.rpm sudo yum install nodejs-compat-symlinks npm rm nodejs-stable-release.noarch.rpmwget http://nodejs.tchol.org/repocfg/el/nodejs-stable-release.noarch.rpm sudo yum localinstall –nogpgcheck nodejs-stable-release.noarch.rpm sudo yum…
Looking for innocence
I want programming computers to be like coloring with crayons and playing with duplo blocks… I just want to make computers suck less. — Ryan Dahl, creator of Nodejs.
Parsing ISO 8601 dates in JavaScript
So, I had to deal with ISO 8601 formatted dates in JavaScript, and I can’t just use the cool ISO 8601 support in js 1.8.5’s Date.parse because of IE 6. I found a couple of examples out there on blogs…