Arnaud Gallou

Results 12 comments of Arnaud Gallou

Thanks, I'm happy enough with your `vec_group_id_propagate_missing` function for my use case. I didn't know I could pass a tibble directly to `vec_group_id()`. That said, if you decide to implement...

I'm having issues uploading files using trackdown `1.5.1`. `upload_file()` redirects me to a page to choose which Google account to connect with. After selecting the appropriate account, I'm getting a...

Thank you so much for the help. Restarting R Studio fixed the problem with the function. Everything is working fine now :)

This is the normal behaviour since `str_glue()` is a wrapper around `glue::glue()` which trims some whitespaces by default. See [glue's trimming rules](https://glue.tidyverse.org/reference/trim.html) for details, and more specifically the second bullet...

FWIW, you can already achieve that with `str_detect()` and regular expressions: ``` r mtcars |> tibble::as_tibble(rownames = "car") |> dplyr::filter(stringr::str_detect(car, "Lotus|Duster|Drive")) #> # A tibble: 3 × 12 #> car...

There're two more typos that are worth fixing while you're at it: - line 12: invokation -> invocation - line 28: THis -> This

Just to add to the previous points that have been made. Using a keyring is more secure when backing up data on an external hard drive because credentials should still...

I agree that's what you should do in practice but for an average user like me who only has a couple of API keys to secure and regularly back up...

Thanks for considering my FR. Looking forward to seeing this implemented. Just wanted to let you know the NEWS file references the wrong issue ID (6155 when it should be...