###File Structure
This is an example of a component named quote
.
app/assets/stylesheets/
├── application.scss
/** | |
* Provides requestAnimationFrame in a cross browser way. | |
* @author paulirish / http://paulirish.com/ | |
*/ | |
if ( !window.requestAnimationFrame ) { | |
window.requestAnimationFrame = ( function() { | |
return window.webkitRequestAnimationFrame || |
/* CSS code for keyboard key text from | |
* http://techsperia.blogspot.com/2013/11/keyboard-key-effect-css-blogger.html | |
*/ | |
kbd { | |
border:0px solid gray; | |
padding:1px 5px; | |
margin:0 5px; | |
font-size:1.5em; | |
text-transform:uppercase; | |
-webkit-box-shadow:1px 0 1px 0 #fff, 0 2px 0 2px lightGray, 0 2px 0 3px #333; |
#!/bin/bash | |
# | |
# Notify of Homebrew updates via Notification Center on Mac OS X | |
# | |
# Author: Chris Streeter http://www.chrisstreeter.com | |
# Requires: terminal-notifier. Install with: | |
# brew install terminal-notifier | |
TERM_APP='/Applications/Terminal.app' | |
BREW_EXEC='/usr/local/bin/brew' |
<div class="form-group"> | |
<label for="input" class="col-sm-2 control-label">:</label> | |
<div class="col-sm-10"> | |
<select name="" id="input" class="form-control"> | |
<option value="">-- Select One --</option> | |
</select> | |
</div> | |
</div> |
<div class="form-group"> | |
<label for="input" class="col-sm-2 control-label">:</label> | |
<div class="col-sm-10"> | |
<select name="" id="input" class="form-control"> | |
<option value="">-- Select One --</option> | |
</select> | |
</div> | |
</div> |
{ | |
// Your GitHub API token | |
// see: https://github.com/condemil/Gist#generating-access-token | |
"token": "debff1d64b5af9c076fd4385902ef70c2be80864", | |
// Show GitHub organizations | |
// Example: "company1", "company2" | |
"include_orgs": [], | |
// Show GitHub users |
A Pen by ontouchstart on CodePen.
function to () { | |
if test "$2"; then | |
cd "$(apparix "$1" "$2" || echo .)"; | |
else | |
cd "$(apparix "$1" || echo .)"; | |
fi | |
pwd | |
} | |
function bm () { | |
if test "$2"; then |