Jani
Jani
I see. If I understand correctly, initially `SET_IDLE` is issued always when the remote is plugged in, but after a second or so, the official software does something, which will...
Here's my workaround, if anybody needs it: ```lua local lsp_setup = function() local required_plugins = { "nvim-lsp-installer", "nvim-lspconfig", } for _, name in ipairs(required_plugins) do local plugin = _G.packer_plugins[name] if...
NB. there's [an example in the repo](https://github.com/gcanti/io-ts/blob/1f23c7c4936690506eda3e1f7ad0066e84aa8bb1/test/JsonSchema.ts), which uses [`Schema`](https://github.com/gcanti/io-ts/blob/1f23c7c4936690506eda3e1f7ad0066e84aa8bb1/Schema.md) to convert to JSON schema. It works wonderfully. However, it is using the older [`json-schema`](https://www.npmjs.com/package/typescript-json-schema) package, but it's easy to...
The new error model looks great! > I kind of like a sum type that retains as much meta info as possible. I guess that having such specialized members should...
Silly me, I can just mark my proper `withMessage` errors with `Wrap` of `DE.fold` and let the marked messages take priority over fallback messages generated in `Leaf`.
If anyone else ends up here, adding FTS to SQL Server on Linux seems a little easier as there's no need to edit and rebuild the `Dockerfile` as you can...
I've revised [the steps I posted above](https://github.com/Microsoft/mssql-docker/issues/161#issuecomment-351697672): ```bash apt-get update apt-get install --yes curl apt-transport-https curl --fail --silent --show-error --location https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor | tee /usr/share/keyrings/microsoft-archive-keyring.gpg > /dev/null curl...
Regarding the Linux image: Since Microsoft has changed how the Docker images are build, installing `mssql-server-fts` does not work anymore (it'll warn about missing dependency of `mssql-server`). However, you can...
@Mic92: I just tried age support. It seems I need to set `sops.gnupg.sshKeyPaths` to an empty list for age keys to work. In other words, this won't work: ```nix {...
> Notice that this a limitation in sops itself, where sops-nix has little control over. Does it? To me it seems it's [`sops-nix` doing the unmarshalling](https://github.com/Mic92/sops-nix/blob/ae84c313c5250a832d61dae9e1e659b27542c47b/pkgs/sops-install-secrets/main.go#L218-L226). A hack would be...