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
django:angular-phonecat yuetsu$ sudo ./scripts/web-server.js | |
Password: | |
Http Server running at http://localhost:8000/ | |
events.js:72 | |
throw er; // Unhandled 'error' event | |
^ | |
Error: listen EADDRINUSE | |
at errnoException (net.js:901:11) | |
at Server._listen2 (net.js:1039:14) |
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') | |
http.createServer(function(req, res) { | |
if (req.url === '/') { | |
res.write('ohai'); | |
res.end() | |
} | |
}).listen(9748) |
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
rename : .subl782.tmp | |
rename : .subled8.tmp | |
rename : .sublf43.tmp | |
rename : .subl898.tmp |
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
Process: Finder [2877] | |
Path: /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder | |
Identifier: com.apple.finder | |
Version: 10.9 (10.9) | |
Build Info: Finder_FE-885000002000000~2 | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [379] | |
Responsible: Finder [2877] | |
User ID: 502 |
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 answer to step three in code academy module on recursion in JavaScript | |
var stack = []; | |
function countDown(int) { | |
stack.push(int); | |
if (int === 1) { | |
return 1; | |
} |
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
$ brew doctor | |
Please note that these warnings are just used to help the Homebrew maintainers | |
with debugging if you file an issue. If everything you use Homebrew for is | |
working fine: please don't worry and just ignore them. Thanks! | |
Warning: Broken symlinks were found. Remove them with `brew prune`: | |
/usr/local/lib/node_modules/libulockmgr.0.0.0.dylib | |
Warning: Your XQuartz (2.7.5) is outdated | |
Please install XQuartz 2.7.6: |
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
$ brew install -v /usr/local/Library/Taps/josegonzalez/homebrew-php/Formula/php55.rb | |
Warning: php55-5.5.15 already installed |
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
$ brew update && brew upgrade && brew install php55 | |
Already up-to-date. | |
==> Upgrading 5 outdated packages, with result: | |
couchdb 1.6.0_1, git 2.1.0, icu4c 53.1, mongodb 2.6.4, node 0.10.31 | |
==> Upgrading couchdb | |
==> Installing couchdb dependency: icu4c | |
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/icu4c-53.1.mavericks.bottle.tar.gz | |
######################################################################## 100.0% | |
==> Pouring icu4c-53.1.mavericks.bottle.tar.gz | |
==> Caveats |
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
$ brew doctor | |
Please note that these warnings are just used to help the Homebrew maintainers | |
with debugging if you file an issue. If everything you use Homebrew for is | |
working fine: please don't worry and just ignore them. Thanks! | |
Warning: Your XQuartz (2.7.5) is outdated | |
Please install XQuartz 2.7.6: | |
https://xquartz.macosforge.org | |
Warning: Your Homebrew is outdated. |
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
# | |
# This is the main Apache HTTP server configuration file. It contains the | |
# configuration directives that give the server its instructions. | |
# See <URL:http://httpd.apache.org/docs/2.2> for detailed information. | |
# In particular, see | |
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html> | |
# for a discussion of each configuration directive. | |
# | |
# Do NOT simply read the instructions in here without understanding | |
# what they do. They're here only as hints or reminders. If you are unsure |
OlderNewer