SJ

Results 222 comments of SJ

The closest analogy I have are the various per-backend/per-tool config or lock files, which are inline.

@benjyw They'd be single-instance files. For instance, this is something like the zsh completion: ``` #compdef _pants_completions pants # zsh completion support for Pants function _pants_completions() { compadd $(pants complete...

Are there any Rust protobufs that are heapless/noalloc? Basically, the `nanopb` equivalent? I'm investigating just embedding nanopb into my embedded app at this point.

Yep, they do support no_std. I was testing it out the other day. They do require alloc though. My (hopefully temporary) solution is to create nanopb bindings using `bindgen` and...

Note to reviewers: I'm going to close this one and open up a few smaller PRs, as this is getting unfairly large - especially with some modifications I haven't yet...

Anyone have any luck with snippets? The wrapper components are boilerplate-laden - was hoping to not have to do that. If anyone has any pointers, I'm happy to give it...

EDIT: Ignore this part - after a LOT of debugging, this seems to be a problem when using `happy-dom` instead of `jsdom` - which is insane, since I use happy-dom...

@mcous If you have any suggestions for directed ways to help, I'm all ears :) Though, less familiar with the internals of the lib. Is the issue that they removed...

When I tried testing-lib out a week or so ago, it was working - but also note that there are still bugs depending on whether you're using JSDom vs Happy-Dom,...

@uhinze Did you come up with a re-usable pattern that you liked? I'm working on something where I'd need this too. Almost identically start something with a timer to turn...