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
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
| 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"; | |
| } |
| <!-- https://youtu.be/HQDkXTlgY14 --> | |
| <input type="text" class="js-filter"> Full Regular Expression Search (case insensitive) | |
| <ul class="js-posts"></ul> |
| <!-- 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> | |
| <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"> |
| 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; |
A Pen by thinsoldier on CodePen.
A Pen by thinsoldier on CodePen.
| <? | |
| // This $files string is list of file names will be turned into an array. | |
| $files = ' | |
| 3.jpg | |
| 4.jpg | |
| 5.jpg | |
| 6.jpg | |
| 7.jpg | |
| 8.jpg | |
| 9.jpg |
| @supports( display: grid) | |
| { | |
| #quicksearch form { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); | |
| grid-gap: .5em; | |
| min-height: 208px; | |
| justify-content: center; | |
| } | |