Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

gtk-reactive-banana (master)$ stack build --verbose
Version 2.1.3, Git revision 0fa51b9925decd937e4a993ad90cb686f88fa282 (7739 commits) x86_64 hpack-0.31.2
2020-02-22 11:39:43.457068: [debug] Checking for project config at: /Users/dirk/projects/haskell/gtk-reactive-banana/stack.yaml
2020-02-22 11:39:43.458047: [debug] Loading project config file stack.yaml
2020-02-22 11:39:43.462746: [debug] SELECT COUNT(*) FROM "last_performed" WHERE ("action"=?) AND ("timestamp">=?); [PersistInt64 1,PersistUTCTime 2020-02-21 10:39:43.462699 UTC]
2020-02-22 11:39:43.463220: [debug] Using package location completions from a lock file
2020-02-22 11:39:43.671978: [debug] Running hpack on /Users/dirk/projects/haskell/gtk-reactive-banana/package.yaml
2020-02-22 11:39:43.680354: [debug] hpack output unchanged in /Users/dirk/projects/haskell/gtk-reactive-banana/gtk-reactive-banana.cabal
2020-02-22 11:39:43.685428: [debug] Asking for a supported GHC version
2020-02-22 11:39:43.685536: [debug] Getting system compiler version
@dirkz
dirkz / change-dates.hs
Created October 30, 2016 13:33
Rewrite mercurial (hg) commit dates/timestamps with haskell
{-|
How to use:
```
hg export -g -r 1: | runhaskell ~/projects/haskell/mercurial/change-dates.hs > ../patch.txt
# rm the same commits, e.g. with histedit
hg import ../patch.txt
```
-}
@dirkz
dirkz / .bash_profile
Created May 26, 2013 11:41
dot configs
echo .bash_profile
alias eject="hdiutil eject"
alias ll="ls -l"
alias lll="ls -al"
# git aliases
alias gs="git status"
alias s='git status'