Skip to content

Instantly share code, notes, and snippets.

View KirinDave's full-sized avatar

Dave Fayram KirinDave

View GitHub Profile
@KirinDave
KirinDave / Helpers_SassCompiler.hs
Created September 24, 2012 06:34
Rewritten sass helper for hakyll.
{-# LANGUAGE OverloadedStrings, QuasiQuotes #-}
module Helpers.SassCompiler (compressSassCompiler, sassCompiler) where
import qualified Data.ByteString.Char8 as B
import Control.Arrow ((>>>))
import Data.Conduit
import Data.Conduit.Process
import System.Process.QQ
import Data.Conduit.List (consume)
@KirinDave
KirinDave / popquiz.clj
Created June 19, 2012 18:22
Pop quiz, spot the clojure bug
(defn normalize-json-args [map]
(letfn [(keyify [s] (keyword (string/replace s "_" "-")))
(cleaner [[k v]] (if (string? k) [(keyify k) v] [k v]))
(walker [x] (if (map? x) (into {} (map cleaner x)) x))]
(postwalk walker map)))
@KirinDave
KirinDave / troll.txt
Created June 16, 2012 17:49
An elegant attempt to troll #haskell
[10:48am] singpolyma joined the chat room.
[10:48am] singpolyma:https://github.com/ericmoritz/wsdemo/blob/results-v1/results.md
[10:48am] singpolyma left the chat room.
// Initializing variables
var action = "enter";
var location = {
name: "CrowdFlower",
latitude: "37.00000",
longitude: "-122.00000"
};
console.log("Setting up campfire chatter.");
halp :: Int -> IO [Int]
halp 0 = return []
halp a = do
putStrLn "Tick in IO [Int]"
y <- halp (a - 1)
return $ 1 : y
halphalp :: Int -> [IO Int]
halphalp n = replicate n $ (putStrLn "Tick in [IO Int]" >> return 1)
main = do
xmonad $ ewmh $ defaultConfig
{ manageHook = manageDocks <+>
manageHook defaultConfig <+>
-- ...
namedScratchpadManageHook sessionScratchpads
, layoutHook = avoidStruts $ smartBorders myLayoutHook
, logHook = dynamicLog >> updatePointer (Relative 0.1 0.05)
, modMask = modMaskKey
@KirinDave
KirinDave / chef_env.hs
Created November 2, 2011 22:46
A quick script to read my knife file (if it exists) and output some data for my zshrc
import System.IO
import System.Environment
import Data.List
import Data.Maybe
import Control.Applicative
import HSH
isQuote x = x == '"' || x == '\''
isntQuote = not . isQuote
lineWith = find . isInfixOf
@KirinDave
KirinDave / .zshrc-excerpt
Created October 31, 2011 20:21
More ZSH rprompt help
export PAGER=less
export MANPAGER="less -r"
alias lesr='less -r'
# Git commands
alias gb='git branch -a --color -v'
alias gr="gitk --all --since='last week' &"
# Helpful
alias pu=pushd
#!/bin/bash
xrdb -merge .Xresources
eval `ssh-agent`
feh --bg-scale ~/Pictures/Wood-Clean.jpg
unity-2d-panel &
sleep 1
gnome-screensaver &
{-# LANGUAGE GeneralizedNewtypeDeriving, OverloadedStrings #-}
module Fanboy.State (
Fanboy,
FanboyState(..),
FanboyConfig(..),
runFanboy,
getHandle,
sayLine) where
import Data.ByteString (ByteString)
import qualified Data.ByteString as B