2017-03-30
Log into c9.io and open one of your workspaces
Go to the terminal for that workspace.
Make a new folder:
mkdir shankster
| body:before{ | |
| content:''; | |
| position: fixed; | |
| top:0; | |
| bottom:0; | |
| width: 100%; | |
| background-image: | |
| radial-gradient(circle, transparent, #006), | |
| linear-gradient(to bottom, transparent 30%, yellow,orange,green); | |
| height: 100vh; |
| <main> | |
| <section id="controls"> | |
| <ul class="filter-controls"> | |
| <li class="active"data-category="">All</li> | |
| <li data-category="landscape">Landscape</li> | |
| <li data-category="urban">Urban</li> | |
| <li data-category="portrait">Portrait</li> | |
| </ul> | |
| </section> | |
| <div class="grid-wrapper"> |
| <!-- https://youtu.be/HQDkXTlgY14 --> | |
| <div id="app"> | |
| <input type="text" v-model="query"> Full Regular Expression Search (case insensitive) | |
| <ul> | |
| <li v-for="item in filteredItems">{{item}}</li> | |
| </ul> | |
| <!-- https://youtu.be/HQDkXTlgY14 --> | |
| <input type="text" class="js-filter"> Full Regular Expression Search (case insensitive) | |
| <ul class="js-posts"></ul> |
| var userChoice = prompt("Do you choose rock, paper or scissors?"); | |
| var computerChoice = Math.random(); | |
| if(computerChoice <= 0.33){ | |
| computerChoice = "rock"; | |
| } | |
| else if(computerChoice >= 0.34 && computerChoice <= 0.66){ | |
| computerChoice = "paper"; | |
| } |
2017-03-30
Log into c9.io and open one of your workspaces
Go to the terminal for that workspace.
Make a new folder:
mkdir shankster
| <!-- | |
| version history: | |
| too many dots | |
| --> | |
| <h1>Once upon a time...</h1> | |
| <p>first foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar </p> | |
| <p>foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar </p> |
| #!/usr/bin/env php | |
| <?php | |
| // 2016-12-06 github.com/thinsoldier | |
| error_reporting(E_ALL); | |
| //----------------------------- | |
| if( !isset($argv[1]) ) { | |
| echo "CODEPEN PEN URL MUST BE PROVIDED!"; |
| /* | |
| ----------------------------- | |
| 2017-01-08 | |
| ----------------------------- | |
| Birthday Defaults | |
| grade 1: 01/01/2009 | |
| grade 2: 01/01/2008 | |
| grade 3: 01/01/2007 | |
| grade 4: 01/01/2006 |
| var count = 0; | |
| function cc(card) { | |
| // Only change code below this line | |
| data = {}; | |
| for ( x of [2,3,4,5,6] ){ data[x] = 1; } | |
| for ( x of [7,8,9] ){ data[x] = 0; } |