Lennart Kolmodin
Lennart Kolmodin
I haven't found a way to scroll the page without using the mouse. Alt+PageUp/Down and Alt+ArrowUp/ArrowDown changes the channel, but how to scroll the text in the channel itself?
It'd be really cool if stylish-haskell could support files that uses c2hs. I'm mainly looking for support for making imports stylish. The `.chs` files include lines like ``` haskell {#pointer...
Using `C->Haskell Interface Version C->Haskell Compiler, version 0.28.1 Switcheroo, 1 April 2016` I'm defining a pointer ``` haskell data CChannel {#pointer *channel as Channel foreign finalizer channel_destroy -> CChannel#} ```...
The Rpc monad is defined as ```haskell type Rpc a = ExceptT RpcError IO a ``` which is problematic. It doesn't compose well. Catching errors in the monad gives a...
`c2hs` fails with errors like this; ``` Building grpc-0.1.0.0... Preprocessing library grpc-0.1.0.0... c2hs: C header contains errors: /usr/include/time.h:153: (column 72) [ERROR] >>> Syntax error ! The symbol `__attribute__' does not...
There's a [description of interop tests](https://github.com/grpc/grpc/blob/master/doc/interop-test-descriptions.md). Not all tests are implemented; - [x] empty_unary - [ ] cacheable_unary - [x] large_unary - [ ] client_compressed_unary - [ ] server_compressed_unary -...
The current `Rpc` monad does not capture `RECV_STATUS_ON_CLIENT` well. Should maybe check for each `Rpc` operation whether the status has been received, and if so, throw exception to end the...
The default timeout is no timeout, it'll wait indefinitely. See what other language bindings are doing and select a reasonable timeout.
The `toYUYV()` and `toRGB()` functions assume that the data from the device is in YUYV. Webcams may give data in other formats too, like `MPEG` or `H264`. Currently there is...