- Go to
c9.io
in your browser - Click "Try it Now"
- Fill in username, email, and password
- Click "Create your free account"
- Click "Go to your dashboard"
- Click "Create a new workspace"
- Under "Choose a template" click "Wordpress"
- Click "Create workspace" at the bottom
- Wait for your workspace to load
- Find your files on the left
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 situation = 'pigs'; | |
var conditionEnd = ' like it\'s hot.'; | |
switch (situation) { | |
case 'pigs': | |
console.log('Park it' + conditionEnd); | |
break; | |
case 'pimps': | |
console.log('Drop it' + conditionEnd); | |
break; |
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
#!/bin/bash | |
lasttag=$(git describe --abbrev=0 --tags) | |
tagparts=(${lasttag//./ }) | |
if [ ! -z $1 ] && [ $1 == "--hotfix" ] | |
then | |
declare -i hotfix | |
hotfix=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
javascript: (function () {var jsCode = document.createElement('script'); jsCode.setAttribute('src', 'https://localhost/~nateallen/ytwall/ytwall.js'); document.body.appendChild(jsCode); }()); |
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
71, Hannibal Buress: Animal Furnace | |
80, Hannibal Buress: Comedy Camisado | |
17, Meet My Valentine | |
55, Experimenter | |
75, French Dirty | |
11, Love | |
7, I Love You Phillip Morris | |
9, A Ballerina's Tale | |
67, Hellions | |
65, The Land Before Time XIV: Journey of the Brave |
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
class MastermindTest | |
def test_if_I_input_i_do_I_get_game_instructions | |
mastermind = Mastermind.new | |
output = mastermind.process_input("i") | |
assert_equal "instructions", output |
Electives
- Gitx
- There's different versions
- Use cases
- Stage
- Making multiple small commits after a lot of work
- Eliminating generated files
- Stage
- Viewing history
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
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,600); | |
body { | |
background-color: white; | |
font-family: "Open Sans", Helvetica, sans-serif; | |
font-size: 12px; | |
} | |
td, th { | |
padding: 0.5em; |
- The things that affect how you feel about your actions. If you take action consistent with your values, you feel good about yourself. If you take actions inconsistent with your values, you will dwell on it, and feel bad about yourself.
- They're often called core values.
- A lot of your thoughts, feelings and actions are affected by your core values.
- Through an understanding of your values, you can put yourself in situations that are more likely to result in actions that you feel good about.
- Ultimately, this does affect your productivity.
OlderNewer