Watal M. Iwasaki

Results 32 comments of Watal M. Iwasaki

For `fs::dir_exists(rel_ln)`, `link_path(path[links])` returns just `fs::path_file(x)` (`"file772215100b6f"` in this case), which can be followed from the directory where `rel_ln` is, not from the current directory. Calling `is_dir("file772215100b6f")` in the current...

Confirmed that setting `PKG_PLATFORMS` works as expected (and loading pkgdepends before setting the env var is allowed). Thank you for your prompt reply! ``` > Sys.setenv(PKG_PLATFORMS = pkgdepends::current_r_platform()) > Sys.getenv("PKG_PLATFORMS")...

Thanks for the clarification. I also realized that `pkgdepends::current_r_platform()` is overkill in this context because it is equivalent to `R.version$platform` on non-Linux systems. Now I'm satisfied with the following code...

Agreed. I think "Latest Changes" and "Page History" can be better too.

Thank you, @cschleiden, it works great. Aside from the one sparr reported in 224, a minor problem I had was to find a way to revoke authentication and to get...

Thank you for the response. Suppose you have hundreds of slides to show. Press and hold the down/right/space key to proceed very quickly, then stop. If the reveal is configured...

Good point. But the large diff because of additional indentation can be avoided by using `continue` like this: ```c++ if (tokenIter->empty()) {continue;} ```

Thank you for the response, but I am not talking about R **binary**.

FYI, adding `cache-globals` does not help invalidation. ```` ```{r, dst2} #| cache-globals: #| - x z = 100 * x z ``` ````

Thank you @atusy. Here is my current understanding: 1. Both `autodep = TRUE` and `knitr::dep_auto()` are required in knitr>=v1.46. 2. `knitr::dep_auto()` has long been there, but I did not know...