| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
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
| # When sitting down to work, it's a good idea to update the | |
| # develop branch and fetch the information about the remote, | |
| # and make sure all submodules are current. | |
| > git checkout develop | |
| > git fetch | |
| > git pull origin develop | |
| > git submodule sync | |
| > git submodule update --init | |
| > git status |
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 'json' | |
| require 'httparty' | |
| require 'redis' | |
| require 'resque' | |
| require 'securerandom' | |
| require 'csv' | |
| class ResponseEnumerator | |
| include Enumerable |
This is a paragraph, which is text surrounded by whitespace. Paragraphs can be on one
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
| Jantix Shafalcon joined the room. | |
| Ghost of Illusio joined the room. | |
| 13loood joined the room. | |
| JABSWAN joined the room. | |
| Jantix Shafalcon: jungle pref | |
| JABSWAN: shyte.. the afk vayne | |
| JABSWAN: she first wotn look at mini map..then she afks 15 mintues into the game | |
| Ghost of Illusio: the shitting twtich jungle is there! | |
| JABSWAN: ghsot is the afker | |
| Jantix Shafalcon: really I don't mind.. but if I'm in jungle there is a bigger chance of me doing terrible |
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
| def math(a, b) | |
| a + b | |
| end |
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
| def p(s) | |
| s + "!!!!!" | |
| end | |
| print p("This automatic GitHub bot is neat") |
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
| while vpnIsDown | |
| puts "Hello World" | |
| end |
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
###Array ####Definition:
- Stores data elements based on an sequential, most commonly 0 based, index.
- Based on tuples from set theory.