Daniil Iaitskov

Results 92 comments of Daniil Iaitskov

These days TH can even generate haddocs for generated functions.

> Cabal does make use of the path environment variable I started grepping cabal source code - exception is thrown from lookupProgram which looks into a some Db and I...

@graninas, I located all places specific to Sqlite and have problem with handling connection parameters. Sqlite use connect and accepts a path to db file. Mysql also has connect function,...

so did anybody open an issue in babel project?

add modify in place flag - stick to sed until then. these days everything serious is dockerized/nixified etc and there is no danger of concurrent access to dirty file.

I looked at https://github.com/NixOS/nixpkgs/blob/master/pkgs/by-name/wi/wire-desktop/package.nix it does strange thing - instead of building wire from sources in installs deb file. wire readme file doesn't mention any rare dependency. At first glance...

> You should basically never need to do anything so that GHC links the underlying shared library of the rts. I develop a dynamic module for Emacs to interpret embedded...

Trifunctor works ``` class Trifunctor p where trimap :: (a -> d) -> (b -> e) -> (c -> f) -> p a b c -> p d e f...

I figured out how to define lenses manually as a workaround: ``` fooName :: forall (f1 :: Type -> Type) (f2 :: Type -> Type). Functor f2 => (Columnar f1...