I hereby claim:
- I am kristoferjoseph on github.
- I am dam (https://keybase.io/dam) on keybase.
- I have a public key whose fingerprint is C57C BCA0 3E80 13C3 76AA 8790 68C9 8869 1845 EC5E
To claim this, I am signing this object:
:set cursorline | |
" keyboard shortcuts | |
inoremap jj <ESC> | |
nnoremap ; : | |
"NAVIGATION | |
nnoremap <up> <nop> | |
nnoremap <down> <nop> | |
nnoremap <left> <nop> | |
nnoremap <right> <nop> |
//Defends against es2015 default export | |
function defendAgainstDefault(component) { | |
if (component.default) { | |
component = component.default | |
} | |
return component | |
} |
.grid { | |
margin: 0 auto; | |
max-width: 75rem; | |
} | |
.padded { | |
padding: 0 2rem; | |
} | |
.gutters > .row { |
:root { | |
--primary-color: #d12028; | |
} | |
/* fallback values in case a variable is not supplied FTW */ | |
body { | |
background: var(--primary-color, red); | |
} |
$viewport-xs: 30em; | |
$viewport-sm: 40em; | |
$viewport-md: 60em; | |
$viewport-lg: 75em; | |
$xs: 'xs'; | |
$sm: 'sm'; | |
$md: 'md'; | |
$lg: 'lg'; |
// ---- | |
// Sass (v3.4.9) | |
// Compass (v1.0.1) | |
// ---- | |
.calendar { | |
width: 20rem; | |
&__event { | |
background: blue; | |
&--disabled { |
I hereby claim:
To claim this, I am signing this object:
/* | |
* Scale CSS | |
* ========= | |
* | |
* API | |
* --- | |
* | |
* Use an @import file to override the | |
* `--ratio` variable. | |
* Default is the golden ratio or phi |
var express = require('express'), | |
instant = require('instant'), | |
colors = require('colors'), | |
app = express(); | |
app.use(instant(__dirname)); | |
app.listen(3000, | |
console.log('Navigate to ' + 'http://localhost:3000'.green + ' to view your page') | |
); |
var awesomeModule = require('awesome-module'); | |
module.exports = function() { | |
var myThing = {}; | |
return awesomeModule.doStuff(myThing); | |
}; |