Skip to content

Instantly share code, notes, and snippets.

  • Get virtualization software (we recommend Virtual Box https://www.virtualbox.org unless you have a VMWare or other license. These directions depend on the default Virtual Box)
    • Install it
  • Get Vagrant from http://vagrantup.com
    • Install it
  • If you are on Windows, install git from http://msyspit.github.io
    • Make sure that you choose Use Git from Windows Command Prompt
  • If you are on Windows run the following commands from with in a git bash prompt. If you are on Mac or Linux, just use a command prompt
  • Make a directory for your vagrant boxes (ie, mkdir Vagrants) and change directory into it
~ ☯ whois dicemonkeys.com
Whois Server Version 2.0
Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net
for detailed information.
Domain Name: DICEMONKEYS.COM
Registrar: GODADDY.COM, LLC
@tsykoduk
tsykoduk / mac_env.md
Last active September 7, 2016 14:48

###Mac OSX Development/Admin Tools

0 - XCode

XCode, or at least the XCode command line extensions, are at the core of any development work that you are going to do on a Mac. You'll need to install it to get things like the C Complier and bootstrap the build environment. If you are going to be doing iOS or Mac OSX development, get the entire package from the App Store. If you are not, just install Homebrew, and it will prompt you to install the XCode CLI tools.

1 - Homebrew

OSX Unix Package Manager. The site is at brew.sh. You can use this to install things like Git, Ruby, Python, etc.

@tsykoduk
tsykoduk / gist:a8430235b6ccde7a1b805ca61c836487
Created September 9, 2019 21:57 — forked from beanieboi/gist:ad526faf063181f336a2
Codeship Nginx Config for Heroku
daemon off;
# Heroku dynos have at least 4 cores.
worker_processes <%= ENV['NGINX_WORKERS'] || 4 %>;
events {
use epoll;
accept_mutex on;
worker_connections 1024;
}