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
| Port TCP UDP Description Status | |
| 0 UDP Reserved | |
| 1 TCP UDP TCP Port Service Multiplexer (TCPMUX) | |
| 2 TCP UDP CompressNET[2] Management Utility[3] | |
| 3 TCP UDP CompressNET[2] Compression Process[4] | |
| 4 TCP UDP Unassigned | |
| 5 TCP UDP Remote Job Entry | |
| 7 TCP UDP Echo Protocol | |
| 8 TCP UDP Unassigned |
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
| libffi libyaml | |
| probably with a *-dev |
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
| Tried and tested on Ubuntu | |
| 1) Open the terminal and create a folder and cd into that folder. | |
| 2) Go over to downloads section on Ruby website and there is a link for ftp server stable version of Ruby. | |
| 3) now copy that link and then type | |
| wget link_to_download |
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
| 1) receive the key that 10gen has setup | |
| sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10 | |
| 2) sudo vi /etc/apt/sources.list and add this line at the end | |
| deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen | |
| 3) Update. This step is very important to load everything from sources.list from the previous step. |
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
| libxslt-dev | |
| libxml2 | |
| libxml2-dev | |
| libffi | |
| libffi-dev | |
| libyaml | |
| libyaml-dev | |
| build-essential | |
| zlib |
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
| # This should do it. | |
| config.assets.compile = [ Proc.new { |path| | |
| !File.extname(path).in?(['.js', '.css', '']) | |
| }, /(?:\/|\\|\A)application\.(css|js)$/ ] |
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
| http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer/ |
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
| # Installation | |
| gem install capistrano | |
| # Setting up capistrano | |
| # Go to your application directory in the terminal and run capify . | |
| capify . | |
| cap deploy:setup |
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
| require "bundler/capistrano" | |
| set :application, "quadmint" | |
| set :repository, "[email protected]:quadmint" | |
| default_run_options[:pty] = true | |
| # set :use_sudo, false | |
| set :scm, :git | |
| # set :scm_command, "/usr/bin/git" |
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
| MongoDB shell version: 2.0.4 | |
| connecting to: test | |
| Fri May 4 10:30:24 Error: couldn't connect to server 127.0.0.1 shell/mongo.js:84 | |
| exception: connect failed |