I hereby claim:
- I am stephan83 on github.
- I am stephan83 (https://keybase.io/stephan83) on keybase.
- I have a public key ASDFeXz35RvvbvrXek5djzzGQO_fyczSuNFoFGebbEG5jgo
To claim this, I am signing this object:
| {-# LANGUAGE FlexibleContexts #-} | |
| {-# LANGUAGE FlexibleInstances #-} | |
| {-# LANGUAGE GeneralizedNewtypeDeriving #-} | |
| {-# LANGUAGE LambdaCase #-} | |
| -- | Tic Tac Toe | |
| module Main where | |
| import Control.Monad.IO.Class ( MonadIO | |
| , liftIO |
| {-# LANGUAGE FlexibleContexts #-} | |
| {-# LANGUAGE FlexibleInstances #-} | |
| {-# LANGUAGE FunctionalDependencies #-} | |
| {-# LANGUAGE GeneralizedNewtypeDeriving #-} | |
| {-# LANGUAGE UndecidableInstances #-} | |
| -- | Fun with monads | |
| module ReaderT where | |
| import Control.Monad.IO.Class ( MonadIO |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| set -e | |
| if [ "$1" = 'redis-server' ]; then | |
| chown -R redis . | |
| exec gosu redis "$@" | |
| fi | |
| exec "$@" |
I hereby claim:
To claim this, I am signing this object:
| template = require './path/to/template' | |
| html = template {text: 'This is awesome.'} |
| browserify = require 'browserify' | |
| eco = require 'eco' | |
| bundle = browserify { | |
| mount: '/javascripts/bootstrap.js' | |
| } | |
| bundle.register '.eco', (body) -> | |
| "module.exports = #{eco.precompile body};" | |
| bundle.addEntry path.join(__dirname, './lib/bootstrap.coffee') |
| layout | title | baseline |
|---|---|---|
post |
My first post |
This is my first blog post! |
Welcome to my github/Jekyll blog.
| permalink: /:month-:day-:year/:title.html | |
| # Theme settings | |
| theme: | |
| # Site name | |
| site_name: My blog | |
| # Google analytics UID | |
| google_analytics_uid: UA-12345678-1 |