This file contains 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
#my notes / commands for installing graphite | |
#pycairo | |
apt-get install libcairo2-dev | |
apt-get install python-cairo | |
#git | |
apt-get install git | |
#django |
This file contains 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
var http = require("http"); | |
var dgram = require('dgram'); | |
process.on('uncaughtException', function(err) { | |
console.log(err); | |
var message = new Buffer("bad things happened uncaughtException"); | |
var client3 = dgram.createSocket("udp4"); | |
client3.send(message, 0, message.length, 514, "127.0.0.1"); | |
process.exit(1); |