Jennifer (Jenny) Bryan
Jennifer (Jenny) Bryan
Re: catering survey: make this more constrained than a free text box.
For next time, remember to get nametags and sharpies.
In terms of what's happening, `read_csv()` is really calling `vroom::vroom(delim = ",", locale = default_locale())` and the default locale has UTF-8 encoding. The escape sequence `\xf1` is not valid UTF-8,...
The noise/errors around the original example (which originates in R4DS) have probably gotten worse over time due to changes in base R. Some relevant items from NEWS: > * 4.3.0:...
To further elaborate on the problems, the advice on how to use `spec()` is also pretty underwhelming. Because you can't just call `spec()`, you need to call it on the...
I've removed `.Renviron` and `.Rprofile` and see the same result as before (failure in the RStudio build pane). FWIW this is with RStudio Version 2023.12.1+402 (2023.12.1+402).
Looks same as you: ``` r rstudioapi::getThemeInfo() #> $editor #> [1] "Chrome" #> #> $global #> [1] "Modern" #> #> $dark #> [1] FALSE #> #> $foreground #> [1] "rgb(0,...
testthat 3.2.1 Freshly re-installed and re-checked, for good measure. Still seeing my same result.
I'm going to close this, because it's sort of foggy for me now. If it's still real, I'll encounter it again and we can discuss then.
To answer a question from above, positron's "Install R package" gesture (aimed at local package dev work) is currently wired up to `pak::local_install(upgrade = FALSE)`: https://github.com/posit-dev/positron/blob/f6c0c1b159f2e7f937e339af634068d7a347a4cc/extensions/positron-r/src/tasks.ts#L48-L49 Personally, I am very...