Hadley Wickham
Hadley Wickham
I do think this is now out of scope for usethis as we turn out limited developer time to supporting positron.
Somewhat more minimal reprex: ``` r library(httr2) path quartz_off_screen #> 2 body req_body_json(body) |> req_dry_run(quiet = TRUE) request("http://127.0.0.1:8080/v2/send") |> req_body_json(body) |> req_body_multipart(base64_attachments = curl::form_file(path)) |> req_dry_run(quiet = TRUE) #> Error...
Oh hmmm, the problem is really that `req_body_json()` and `req_body_multipart()` are mutually exclusive, but clearly something is going wrong when flipping from one to the other. I'll definitely fix that,...
I think you just need `recipients
``` r library(forcats) .f ℹ Use `.na_rm = TRUE` to silence this message. #> ℹ Use `.na_rm = FALSE` to preserve NAs. #> Error in `lvls_reorder()`: #> ! `idx` must...
The problem is that you need vectors of length 1, instead of arbitrary objects which we generally think of a scalars (e.g. a linear model or error object only ever...
I think we can add an explicit argument. Is this specifically about opening the page for the first time?
I think this change is worth it, but you need to (a) put palmerpenguins in imports, not suggests (since otherwise you need to protect all the examples) and (b) load...
Somewhat simpler/clearer reprex: ``` r library(DBI) con [1] "?" df x #> 1 ? dbRemoveTable(con, "testunicode") ``` Created on 2023-12-12 with [reprex v2.0.2.9000](https://reprex.tidyverse.org)
I _think_ that the implementation of this would be relatively straightforward since you could use `vec_chop()` — you'd just have to figure out how to generate the right vector of...