I hereby claim:
- I am okdewit on github.
- I am okdewit (https://keybase.io/okdewit) on keybase.
- I have a public key ASBxC_8ujh7hI0vAmrOJsq8LpjAW5CGMlRHSZgszn4vekgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
/* | |
Sidebar Theme: | |
#140E1D,#140E1D,#65375B,#FFABED,#65375B,#F9B98C,#FFABED,#FFABED | |
*/ | |
* { | |
box-shadow: unset !important; | |
} | |
.client_main_container, |
// My HCL Color Scheme | |
// Hue 0-360 in 40 degree angles, Chroma 60, Luminance 80 | |
$blush : #FFACBF | |
$peach : #F9B98C | |
$straw : #D2C970 | |
$apple : #9AD685 | |
$jade : #51DDB5 | |
$aqua : #3ADAE4 | |
$sky : #8ECDFF |
module Handler.Mainhandler where | |
import Import | |
import Service.Theme | |
import Service.Mixin | |
getMainR :: Handler Html | |
getMainR = do | |
defaultLayout $ do | |
setTitle "Main page" |
'use strict'; | |
function *fibonacci(a=0,b=1) { | |
while (true) { | |
yield a; [a,b] = [b,a+b] | |
} | |
} | |
function *odd(f) { | |
while (true) { |
/** | |
* Experimental directive for CodeMirror + Merge Addon. | |
*/ | |
angular.module('ui.codemirror', []) | |
.constant('uiCodemirrorConfig', {}) | |
.directive('uiCodemirror', uiCodemirrorDirective); | |
function uiCodemirrorDirective($timeout, uiCodemirrorConfig) { | |
'use strict'; | |
return { |