Igor Pashev

Results 47 comments of Igor Pashev

I did this way: 1. Create a new key (with `ssh-keygen`). 2. Login (as root) to the host. 3. Inspect `/etc/ssh/sshd_config` to find the place where your root keys rest....

> now this issue is about whether unquoted strings are actually valid in TOML. They are not: https://toml.io/en/v1.0.0#string

I have an idea which I'm going to try: extend the Provide type by adding a new field - `providerMetadata :: FilePath -> IO Metadata` (or something line this). And...

Meh, Pandoc metadata is not trivial (I personally do not want to lose title formatting - from LaTeX), someone may use Hakyll without Pandoc, etc. After all I want a...

I am trying to "postprocess" the rules. That's I write the rules for a site in the normal way, than I want to extend the site by creating a translated...

Probably it could have a code path for the case when stdin is not a tty.

Maybe that means a minor design issue in server? Delay can be very long, I would say server should respond with something like 303 See Other, or somehow make it...

Disabling it is not trivial in nixpkgs pinned to specific version. I'd use separate program/flag to run at travis.

I'm looking for options. `dontCheck` will require a lot of levels of overrides. Meanwhile the test does not work for most of consumers.

This works: ``` # cat modules/pkgs/mywatch/default.nix { haskell, haskellPackages }: let myHaskellPkgs = haskellPackages.override { overrides = self: super: { mysql = haskell.lib.dontCheck super.mysql; mysql-simple = haskell.lib.dontCheck super.mysql-simple; }; };...