Winston Chang

Results 285 comments of Winston Chang

@kennedymwavu Yes, I agree it would be good if the `bindEvent` documentation mentioned that it's a bit different for `renderPlot`.

@kaijagahm Can you file a new issue, with a minimal reproducible example? For the others that have experienced this issue, when I run the example apps, I don't see the...

@SigurdJanson Thanks for that example. This is a difficult (or really, almost impossible) problem to fix in general, because of R's nature as a loosely-typed language. The root issue is...

The problem I had was that when I ran `yarn` (version 1.22.17), it errored out because it apparently didn't know how to get the commit of rstudio/shiny specified in yarn.lock....

* On Windows, when there are long filenames, spaces, or non-ASCII characters in a path, and the filesystem is configured without short file names, installation can fail. http://r.789695.n4.nabble.com/Bug-Issues-on-Windows-with-SFN-disabled-td4745459.html There are...

This is probably the same issue as https://github.com/rstudio/httpuv/issues/360. I've copied and pasted the comment from @gadenbuie in that issue: ***** I think you're running into an issue caused by changes...

I don't think that a `getWithDefault()` is necessary, since the `get()` method already has a `missing` parameter. The `map()` method is interesting. In the rough version you've shown, it modifies...

If Chromote starts Chrome when no other Chrome process is running, then clicking on the Chrome icon will not start a new (headful) Chrome browser. I'm not sure if there's...

Apparently it's possible by starting Chrome with the flag `--headless=new` instead of just `--headless`. https://stackoverflow.com/a/75179479 https://developer.chrome.com/docs/chromium/new-headless That would require a change here: https://github.com/rstudio/chromote/blob/916ebc5fd3de58dc655e1751fc9462de48fedd45/R/chrome.R#L175

I think the problem is the use of `Sys.sleep()`. That will block the entire R process. You should do something like this: ```R library(shiny) library(chromote) ui