Borys Lykah
Borys Lykah
**Is your feature request related to a problem? Please describe.** The buttons on a saved remote are displayed as a list. It may take long time to scroll to the...
# Description Consider a simple datatype data Entity { somevalue :: String, somelist :: [String] } ### Current schema Entity references list table. List values table references list table. Triggers...
This is a cause for #45 reported by @mightybyte
Implementing embedded sum types will allow more flexible mapping between types and DB. Field types like `(Either Int String)` or `(Maybe MyEmbedded)` where Maybe is treated as another embedded sum...
Getting more data about the changes that are grouped by path would unlock new ways to use this action. My motivation is to get enough data to make a comment...
This adds the ability to input text with external keyboard. I have developed and tested this on Kobo Libra 2. Likely this works on any Linux device that has USB...
This is required for https://github.com/koreader/koreader/pull/9540. With this change a reader can have a USB role of either host or device. The existing event `CODE_FAKE_USB_PLUG_IN/OUT` has been renamed to `CODE_FAKE_USB_HOST_PLUG_IN/OUT` to...
The readme file points to the release page to download the nets. The recent releases did not publish them. Should the link point to this release instead? https://github.com/lightvector/KataGo/releases/tag/v1.4.5
The plugin zsh-completions has a workaround to avoid double initialization of completions https://github.com/zsh-users/zsh-completions/issues/603. Its installation manual recommends setting fpath instead of adding this to the list of plugins. ``` fpath+=${ZSH_CUSTOM:-${ZSH:-~/.oh-my-zsh}/custom}/plugins/zsh-completions/src...
To turn a FixedPrim into a strict ByteString, with the current public interface I can do something like this: ``` myTypePrim :: FixedPrim MyType myTypeToLazyByteString :: MyType -> BL.ByteString myTypeToLazyByteString...