Peter Waller

Results 203 comments of Peter Waller

This is closed by #15, no? /cc @hoisie

xref https://github.com/serprex/byteplay/issues/3

I get exactly this behaviour just trying to ssh to the local machine from the local machine: ``` $ tele -server -in=:22 -out=localhost:40300 ``` ``` $ tele -client -in=:2224 -out=127.0.0.1:40300...

Minimal(ish) script to reproduce (from scratch): ``` #! /usr/bin/env bash set -u -e mkdir test-bzr cd test-bzr bzr init echo start >> test bzr add test bzr commit -m "Bzr...

I've hit this. It's trying to pick up MyProjectFoo/bar/dist/setup-config when the path should instead be: ``` $ cd MyProjectFoo/bar $ ls bar.cabal src $ stack path --dist-dir .stack-work/dist/x86_64-linux/Cabal-2.0.1.0 ``` (It...

To answer my own question, this appears to work: ``` stack exec --no-ghc-package-path haskell-code-indexer -- -p . --dist $(stack path --dist-dir) ```

So in my situation there is a `MyProjectFoo/stack.yaml` but no `MyProjectFoo/bar/stack.yaml`; the dist directory for `bar` is at `MyProjectFoo/bar/.stack-work/dist/x86_64-linux/Cabal-2.0.1.0`. Should the indexer check upper directories for a `stack.yaml` and if...

Apologies, I've filed a separate issue for that https://github.com/alexwl/haskell-code-explorer/issues/13.

I see that the relevant C API is `vips_image_new_from_memory`, which was exposed via `NewImageFromNativeImage` in https://github.com/davidbyttow/govips/pull/79. So clearly it's possible to do this for an RGBA image by making a...