John Simon
John Simon
VSCode has this feature:  However they don't support all providers like this plugin does. They only support the "big three" (AWS/Azure/GCloud). I did a tiny bit of research on...
The corresponding flag for wasm-bindgen is called `--reference-types`. Maybe we should use the same longer name here for consistency?
Good points. I did check these cases for compatibility with shellcheck before opening the issue. (And I'm not sure if any other shell linters exist besides IDE-specific ones) I just...
This is particularly important if you're bundling multiple apps that each contain their own styles for `html`, `body`, etc.
`br` is very close to working on windows in git bash. If you run `br` and press alt+enter, broot writes this to the outcmd file: ``` cd C:\Users\John ``` The...
Another thing I'd add to that list is the pattern of passing arguments by reference instead of value. Particularly for small structs like `UnitComplex` or `Point3` that are only a...
What about giving the result location a name like any other variable? ```zig fn makeArray() result: []u8 { fillArray(result); } fn fillArray(array: []u8) { ... } ``` Of course, that...
>will probably trip users up Can confirm, I am a tripped-up user! I'm here because I was wondering if `span!` didn't support the debug sigil `?`. I got a misleading...
This caught me too. It seems like the obvious move is to rename `expectEqual`'s arguments but leave the types as is. Like so: ```zig const std = @import("std"); pub fn...
It looks like `-f` only has an effect if you pass a query on the command line, not if you run cs without args and type the query interactively. I...