Winston Chang

Results 285 comments of Winston Chang

Thanks for the info. I wonder if it x Does it happen when you run the code without a private event loop, like this? ```R fn fn { + print(Sys.time())...

When a loop is created with `create_loop()`, the current event loop should be its parent. Normally, the parent would be the global event loop. When a parent loop runs, it...

@DavorJ I finally dug out my Windows machine and tested on it, and I get the same result as you, so it seems likely that there's something not right about...

I'm OK with keeping this open until httpuv is on CRAN. For reference, this is the PR that fixed the issue (I believe): https://github.com/rstudio/httpuv/pull/248 Installing the dev version of httpuv...

I recently encountered a similar situation where CRAN was getting significant warnings with R-devel and gcc 8, but this docker image had an older compiler so it wasn't immediately easy...

Yes, I think it's a great idea to build multi-arch images. I don't know anything about the GitHub container registry, but if the images can be hosted there instead of...

How did the build go? IIRC, it already uses `-j4`.

I have a possible fix in the Rttf2pt1 package (wch/Rttf2pt1#20). If you would like to try it out, please install this build of Rttf2pt1 the following and let me know...

Suppose someone calls `sliderInput()` without min/max/value. Before the change, this is the error: ``` Error in validate_slider_value(min, max, value, "sliderInput") : argument "min" is missing, with no default ``` After...

Hm, it looks like using `force()` also results in an uninformative error: ```R sliderInput("x", "x") #> Error in force(min) : argument "min" is missing, with no default ``` But simply...