Rehno Lindeque
Rehno Lindeque
Hi, I was trying to create a diwata package for [NixOS](https://nixos.org/) (and other platforms where the nix package manager is available). However, in order to get it to build I've...
Trying this out on a hosted database I got the following: ``` connection Error: DbError(PlatformError(PostgresError(GenericError("From conversion", Error(Db(DbError { severity: "FATAL", parsed_severity: None, code: SqlState("28000"), message: "no pg_hba.conf entry for host...
GHC docs can be pretty hefty and I'd like to exclude it from my closure. ``` $ du /nix/store/0j54xxdj3ani5hsarjwmra55jqkmcmqd-ghc-9.2.2-doc -d 0 -h 662M /nix/store/0j54xxdj3ani5hsarjwmra55jqkmcmqd-ghc-9.2.2-doc ``` Is there a recommended approach...
This was discussed offline at some point, but I thought I'd just double-check that this is really what we want? The feature is still brand new so it seems worth...
Currently for error conditions outside of transactions `hedis` returns a `Left (Error ByteString :: Reply)`, which confuses me a little bit. For example it was not immediately clear to me...
### 🐛 Describe the bug The `.on_disk_cache()` data pipe uses `.demux()` under the hood with a default `buffer_size` of 1000. Unfortunately this appears to break when the source datapipe has...
This removes the dependency on libpcre in order to make deployment slightly easier (See #12)
Pcre-light is a bit of an annoyance when deploying code since it requires carrying along libpcre. It's only used in one place: http://github.com/bos/mysql-simple/blob/e0c79e6c8a6874709565cca6de6c6ce6d1dcc8ce/Database/MySQL/Simple.hs#L165 I'm hoping to replace that regular expression...
My understanding is that supplying passwords vai command-line arguments is not considered good practice as it [can leak information](https://unix.stackexchange.com/questions/78734/why-shouldnt-someone-use-passwords-in-the-command-line). For example: ``` $ sqlcrush -p supersecretpassword ``` ``` $ ps...
### 🚀 The feature Expose `torchvision.transforms.functional.hsv_to_rgb` and `torchvision.transforms.functional.rgb_to_hsv` in the public api. ### Motivation, pitch There is already a private [`_hsv_to_rgb`]( https://github.com/pytorch/vision/blob/ffc58ef43afa0d40da66bd95a4f9e2f97c2153f0/torchvision/transforms/v2/functional/_color.py#L312-L339) and [`_rgb_to_hsv`](https://github.com/pytorch/vision/blob/ffc58ef43afa0d40da66bd95a4f9e2f97c2153f0/torchvision/transforms/v2/functional/_color.py#L272-L309) (and the older [`_hsv2rgb`](https://github.com/pytorch/vision/blob/ffc58ef43afa0d40da66bd95a4f9e2f97c2153f0/torchvision/transforms/_functional_tensor.py#L262-L298), [`_rgb2hsv`](https://github.com/pytorch/vision/blob/ffc58ef43afa0d40da66bd95a4f9e2f97c2153f0/torchvision/transforms/_functional_tensor.py#L262-L298)). I'd...