Skip to content

Instantly share code, notes, and snippets.

View ntc2's full-sized avatar
🐵
🍌🍌🍌🍌🍌🍌🍌🍌🍌🍌

Nathan Collins ntc2

🐵
🍌🍌🍌🍌🍌🍌🍌🍌🍌🍌
View GitHub Profile
compiler: ghc-8.2.0.20170404
compiler-check: match-exact
resolver: lts-8.8
setup-info:
ghc:
linux64:
8.2.0.20170404:
url: https://downloads.haskell.org/~ghc/8.2.1-rc1/ghc-8.2.0.20170404-x86_64-deb8-linux.tar.xz
content-length: 138846620
sha1: 3fd303b5753b095ce020131405dcf43199e6b447

ubuntu updates breaking xmonad

The switch to unity-control-center and baking everything into unity seems to make it impossible to mix and match things any more.

It may be worth exploring cinnamon or some other desktop environment as the background manager.

dbus-send

Syntax change:

@ntc2
ntc2 / LC.hs
Last active December 17, 2015 20:28
Scrap Your Boilerplate (SYB) based normalizer for untyped lambda calculus.
{-# LANGUAGE DeriveDataTypeable , Rank2Types , ViewPatterns #-}
import Control.Applicative
import Control.Arrow
import Control.Monad.Reader
import Control.Monad.Writer
import Data.Generics
import Data.Set (Set)
import qualified Data.Set
----------------------------------------------------------------