This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module WhenToDropIt | |
( Sitch (..) | |
, whatDoIDo | |
) where | |
data Sitch = Pigs | Pimps | NgAttitude | |
suffix :: String | |
suffix = " like it's hot." ++ | |
"\nI got the rolly on my arm and I'm puring Chandon." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" vundle | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim/ | |
call vundle#rc() | |
Plugin 'gmarik/vundle' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE OverloadedStrings #-} | |
import Control.Monad.Trans.Resource | |
import Data.Conduit | |
import Data.Conduit.Binary | |
import Data.Conduit.Blaze | |
import Data.Text as T | |
import Data.XML.Pickle | |
import Data.XML.Types as X | |
import Text.XML |
NewerOlder