#HTML, CSS, Git
###Set up a Repository on Github
- New Repo.
- Add a Readme to the Project.
- In terminal navigate to where you want the project to be.
- Clone your repo to your computer.
###HTML Practice
- Think of a topic you want for your website.
#HTML, CSS, Git
###Set up a Repository on Github
###HTML Practice
| { | |
| "font_face": "Menlo", | |
| "font_size": 20.0, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "tab_size": 2, | |
| "save_on_focus_lost": true, | |
| "translate_tabs_to_spaces": true |
#Useful Sublime Plugins ###Download Sublime Package Controll https://sublime.wbond.net/installation
####Color Picker https://github.com/weslly/ColorPicker
Find the color you want without leaving the sublime window.
####Emmet
| # detect `$rvm_path` | |
| if [ -z "${rvm_path:-}" ] && [ -x "${HOME:-}/.rvm/bin/rvm" ] | |
| then rvm_path="${HOME:-}/.rvm" | |
| fi | |
| if [ -z "${rvm_path:-}" ] && [ -x "/usr/local/rvm/bin/rvm" ] | |
| then rvm_path="/usr/local/rvm" | |
| fi | |
| # load environment of current project ruby | |
| if |
Some of the basic setup for the gems I use the most.
source 'https://rubygems.org'
gem 'rails', '3.2.15'
gem 'simple_form'
gem 'devise'
gem 'figaro'
| source 'https://rubygems.org' | |
| gem 'rails', '3.2.15' | |
| # gem 'rails-i18n', '~> 3.0.0' | |
| gem 'simple_form' | |
| # gem 'devise' | |
| gem 'figaro' | |
| gem 'pg' |
Browsing documentation in Pry is easy with the show-doc command. If you every want to look a methods documentation while working on your code, show-doc will save you time.
Running the -h or --help option on the show-doc command will give you a basic over view of the different options and examples.
[1] pry(main)> show-doc -h