Frederiek - Maarten Kerckhof

Results 33 comments of Frederiek - Maarten Kerckhof

Based upon [zzz.R](https://github.com/rstudio/pins/blob/main/R/zzz.R) it would appear I could "trick" the lambda runtime to pretend to be R CMD CHECK by setting a non-empty value to the `_R_CHECK_PACKAGE_NAME_` cf. https://github.com/rstudio/pins/blob/2a1a0d89af8e9e3b696c656d5bb166502cec1ee0/R/utils.R#L115 which...

I have been able to resolve this by setting the environmental variables in the lambda runtime before loading the pins library as follows: ```r Sys.setenv(R_USER_CACHE_DIR = tempfile()) Sys.setenv(R_USER_DATA_DIR = tempfile())...

I am re-opening this issue since the fix above appears to not work any longer. I used to get warnings for not being able to create a directory from normalizePath...

While this is possible using [paws](https://github.com/paws-r/paws), I did not want to introduce extra dependencies in my current code that works with aws.s3. Hence I have found a workaround after some...

I have the same issue using "Arial" with R3.4.4, extrafont 0.17 and extrafontdb 1.0 on a Win10 machine. My `devtools::session_info()` is as follows: ``` Session info ------------------------------------------------------------------------------------------------------ setting value version...

I have just started a Rino project on Windows 10 (with Node and yarn) - if there is anything I can test for you feel free to let me know.

> Just tested and at the current latest version doesn't work - still the same error as seen above. However if you go to ~/.local/lib/python3.8/site-packages/notion and manually change `client.py` and...

Thanks for including me @juliasilge In the end, I went with setting the following system environmental variables in my runtime _before_ loading the pins package (or packages that call pins)...

I would be very interested in this option as well (for use with a general R markdown with runtime shiny) - like you I have tried to use `isolate()` but...

a full-fledged shiny app has the `shiny::conditionalPanel` functionality for this goal but it is reliant on JavaScript expressions that potentially get re-evaluated - I do not know enough about the...