Results 25 issues of Ivan Lazar Miljenovic

(Semi related to #7) It's rather fiddly having to switch between using cabal and stack with ebal (specifically with having the same default options for things like `install` to be...

In my (internal) codebase, I've just written this type: ```haskell -- | Try parsing a value. If it fails, record the error message. newtype Try a = Try { tryValue...

More a discussion point than anything else. If we read a CSV file using `FromNamedRecord`, should the lookups of column names be caseless? If so, we'd probably want to use...

I tried having this in my Haskell source: ```haskell {-# LANGUAGE CPP #-} module Foo where import Prelude () import Prelude.Compat hiding (() #if MIN_VERSION_base_compat (0,9,3) , () #endif )...

This is probably a fault of haskell-src-exts, but I have some CPP macros that I use to help [implement some repetitive instances](https://github.com/ivan-m/theseus/blob/edbac4a80bcbff110e224eac4c4ba5cb5d134849/src/Data/Theseus/Values.hs#L54). However, stylish-haskell fails to parse this with: ```...

Whilst pandoc-mode is nice to use within Emacs and to help explore different settings for pandoc, I also need to be able to convert my documents from the command-line (within...

By all accounts Postgres.app has ssl support: ```bash ivan $ otool -L /Applications/Postgres.app/Contents/MacOS/Postgres /Applications/Postgres.app/Contents/MacOS/Postgres: /Applications/Postgres.app/Contents/Versions/9.6/lib/libpq.5.dylib (compatibility version 5.0.0, current version 5.9.0) @rpath/Sparkle.framework/Versions/A/Sparkle (compatibility version 1.6.0, current version 1.14.0) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation (compatibility...

Hopefully this will allow for proper source building and linking from Haddock docs on Hackage.