Dan Cecile

Results 22 comments of Dan Cecile

My workaround is to add a silent command that does nothing except reference the used variables: ```yaml - cmd: 'true # /{{.WATCH}}/{{.RESTART}}/{{.MODE}}/{{.TEST}}/{{.NAME}}/{{.ARGS}}/' silent: true ``` So it seems like interpolated...

Seems related to this Watchdog feature request: https://github.com/gorakhargosh/watchdog/issues/212

> maintenance of `base-noprelude` package It doesn't seem sustainable for `base-noprelude` to be maintained outside of the GHC source code (where `base` [lives](https://gitlab.haskell.org/ghc/ghc/-/tree/master/libraries)). Could we merge #435 or remove the...

Same issue with another upsert form: ```sh echo "insert into version (id) values (cast(:id as integer)) on conflict do nothing;" >script.sql sqlfluff lint script.sql --dialect=sqlite ``` Workaround example: ```sql insert...

Still seem to be seeing this in v2.15.13: https://github.com/ElemeFE/element/blob/v2.15.13/packages/tooltip/src/main.js#L75

Following [suggestions for using an SDL crate](https://users.rust-lang.org/t/storing-two-objects-in-a-wrapper-struct-where-ones-lifetime-depends-on-the-other/75366) (also a C library wrapper), [Ouroboros](https://github.com/joshua-maros/ouroboros) looks like decent way to use the current API. _Edit: This is includes unsafe code, so you...

> @dcecile you could use [prepare_cached](https://docs.rs/rusqlite/latest/rusqlite/struct.Connection.html#method.prepare_cached). Right, thanks! I may switch to that, but I was thinking that since all my queries are known at startup time, I would try...

Updated title and description to clarify the scope of the error.

It's my first time using Babel (and .po files in general) and I ran into this issue thinking that the header could be omitted without affecting compilation. The header should...

There are two levels of regexes that a color value needs to pass: https://github.com/microsoft/vscode/blob/39aba8e0afffb3ed32005b1456d911a3cc77d97d/src/vs/editor/common/languages/defaultDocumentColorsComputer.ts#L104 https://github.com/microsoft/vscode/blob/39aba8e0afffb3ed32005b1456d911a3cc77d97d/src/vs/editor/common/languages/defaultDocumentColorsComputer.ts#L124 ```ts const s1 = 'hsl(253, 100.00%, 47.10%)'; const s2 = 'hsl(0, 83.60%, 47.80%)'; const initialValidationRegex...