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
sudo kill `ps -ax | grep 'coreaudiod' | grep 'sbin' |awk '{print $1}'` |
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
// Usage: node proxy.js | |
// Open browser and navigate to http://localhost:8080/[url] | |
// Example: http://localhost:8080/http://www.google.com | |
var url = require('url') | |
, http = require('http') | |
, https = require('https'); | |
var PORT = process.argv[2] || 8080; | |
var server = http.createServer(function(req, res) { |