Skip to content

Instantly share code, notes, and snippets.

Version 2.1.1, Git revision f612ea85316bbc327a64e4ad8d9f0b150dc12d4b (7648 commits) x86_64 hpack-0.31.2
2019-07-04 22:13:12.499533: [debug] Checking for project config at: /Users/bjorn/repos/umlaut/stack.yaml
2019-07-04 22:13:12.500669: [debug] Loading project config file stack.yaml
2019-07-04 22:13:12.509255: [debug] SELECT COUNT(*) FROM "last_performed" WHERE ("action"=?) AND ("timestamp">=?); [PersistInt64 1,PersistUTCTime 2019-07-03 20:13:12.509152 UTC]
2019-07-04 22:13:12.509734: [debug] Using package location completions from a lock file
2019-07-04 22:13:12.698871: [debug] Running hpack on /Users/bjorn/repos/umlaut/package.yaml
2019-07-04 22:13:12.701872: [debug] hpack output unchanged in /Users/bjorn/repos/umlaut/umlaut.cabal
2019-07-04 22:13:12.704033: [debug] Asking for a supported GHC version
2019-07-04 22:13:12.705980: [debug] Installed tools:
- ghc-8.6.5
Version 1.5.1, Git revision aa5003a153504f54051e42a844a0c1c3d7f82163 (5099 commits) i386 hpack-0.17.1
2017-08-18 21:39:53.656996: [debug] Checking for project config at: C:\Users\bjorn\repos\cabal-flib-invalid-cache-repro\stack.yaml
@(Stack\Config.hs:882:9)
2017-08-18 21:39:53.656996: [debug] Loading project config file stack.yaml
@(Stack\Config.hs:908:13)
2017-08-18 21:39:53.656996: [debug] Decoding build plan from: C:\sr\build-plan\nightly-2017-08-15.yaml
@(Stack\Snapshot.hs:151:5)
2017-08-18 21:39:54.704418: [debug] Using standard GHC build
@(Stack\Setup.hs:614:9)
2017-08-18 21:39:54.704418: [debug] Getting global package database location
@bjornbm
bjornbm / InternalRequest.hs
Created September 16, 2011 15:09
Test parseWaiRequest nonces and langs
{-# LANGUAGE OverloadedStrings #-}
module Test.InternalRequest where
import Data.List (nub)
import System.Random (StdGen, mkStdGen)
import Blaze.ByteString.Builder
import Yesod.Internal.Request
import Network.Wai as W
@bjornbm
bjornbm / Swedish.hs
Created September 11, 2011 08:31
Swedish internationalization of Yesod's FormMessages
{-# LANGUAGE OverloadedStrings #-}
module Yesod.Form.I18n.Swedish where
import Yesod
import Data.Monoid (mappend)
import Data.Text (Text)
swedishFormMessage :: FormMessage -> Text
swedishFormMessage (MsgInvalidInteger t) = "Ogiltigt antal: " `mappend` t
swedishFormMessage (MsgInvalidNumber t) = "Ogiltigt nummer: " `mappend` t