Philip Wales
Philip Wales
I noticed that [coc-metals](https://github.com/scalameta/coc-metals) can be installed with either `:CocInstall` or with `vim-plug`. I prefer the `vim-plug` method since it can be saved to my dotfiles. I was wondering if...
From the Mono repo example, say if I define a local dependency like so ```dhall let overrides = { liba = ./liba/spago.dhall as Location } ``` in `packages.dhall`. But `liba/spago.dhall`...
Hyper-boring's `HttpsConnector` requires the `Response` type to implement `Debug`. Since `ProxyStream` doesn't implement `Debug` one cannot create a `HttpsConnector` with Boring SSL. Compilation will fail with this error ``` error[E0277]:...
This is sort of not conventional but is valid: ```scala val foo: Int => Int = { x => val y = 2 * x y * y } ```...
```scala trait A abstract class B(b: String) class C(c: String) extends B(c) with A ``` Output from nvim-treesitter/playground ``` trait_definition [0, 0] - [0, 7] name: identifier [0, 6] -...
## Meta: **CircleCI CLI Version:** 0.1.21812+72528b8 (release) **Operating System:** ``` Build-agent version () System information: Server Version: 20.10.18 Storage Driver: overlay2 Backing Filesystem: extfs Cgroup Driver: systemd Cgroup Version: 2...
The following works ```python tables = c.acs5.tables(year=2020) fields = c.acs5.fields(year=2020) ``` The following raises a json decode error from a 404 response ```python fields = c.acs5.fields(year=2020) ``` This is because...
#### What would you like to be added: Complete documentation of the schemas for the `pod-config.[yaml|json]` and `container-config.[json|yaml]` used by the `crictl run` and `crictl runp` commands. _Or links to...
First link in the first exercise is to: - `http://chuusai.com/blog/2012/04/27/shapeless-polymorphic-function-values-1/` But clicking on it redirects us to: - `http://milessabin.com/blog/2012/04/27/shapeless-polymorphic-function-values-1/` which is now "purehempseedoil.com". `chuusai.com` says it's now `underscore.io` `http://underscore.io/blog/2012/04/27/shapeless-polymorphic-function-values-1/` 404s....
### Describe the bug Call `:Inspect` on `true` or `false` ``` Treesitter - @boolean.scala links to Boolean scala Semantic Tokens - @lsp.type.keyword.scala links to Statement priority: 125 ``` I know...