Ecosyste.ms: Timeline
Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.
jeroen opened an issue on curl/curl
Incorrect 'added in' for curl_url_set
### Specify which documentation you found a problem with https://curl.se/libcurl/c/curl_url_set.html ### The problem The man page for [curl_url_set](https://curl.se/libcurl/c/curl_url_set.ht...jeroen created a comment on an issue on jeroen/curl
Yikes. Looks like this was actually fixed already in recent libcurl (I think 8.8.0) but that doesn't help us much. I'll add a workaround I guess.
jeroen created a comment on an issue on r-universe-org/help
Maybe we should implement it ourselves: https://developers.cloudflare.com/analytics/analytics-engine/get-started/
jeroen created a comment on a pull request on jeroen/curl
A parent process or privileged user can send a SIGINT to a process to try to interrupt it. This could be done by the user by pressing CTRL+C in a terminal window, or pressing 'stop' in the IDE. But...
jeroen pushed 1 commit to main r-universe-org/frontend
- do not track visits for preview pages a83cf3b
jeroen closed an issue on jeroen/curl
Error on Mac: "unable to load shared object"
Hi @jeroen--I hope this is an okay place to post; I'm stumped. I'm trying to use `usethis::gh_token_help()`, which apparently calls `{curl}`. I get the following error: ``` > usethis::gh_tok...jeroen created a comment on an issue on jeroen/curl
I modified it a bit to reset the connection before the jump. Please lmk if this seems to work for you.
jeroen closed a pull request on jeroen/curl
Allow open(curl(url)) to be interrupted
Fixes https://github.com/jeroen/curl/issues/363 I'm not sure if this is right... for example, do I need to make sure `reset(con)` is called?jeroen closed an issue on jeroen/curl
User interrupt re-signalled as error, not interrupt
```R library(curl) for (i in 1:5) { tryCatch( curl::curl_download("http://httpbin.org/delay/5", tempfile()), error = function(err) { cli::cli_warn("Errored in round {i}", pa...jeroen closed an issue on jeroen/curl
Curl connection open() can't be interrupted
We make heavy use of `curl::curl()` in [ellmer](https://github.com/tidyverse/ellmer). Sometimes when the LLM APIs get slow, it puts the R session in an uninterruptible hang. ## Repro steps Fi...jeroen closed a pull request on jeroen/curl
Re-throw interrupts
This is a nicer experience in interactive mode, however when running in non-interactive scripts (particularly CI jobs) I think it may still be better to raise an error, such that the log files clea...jeroen pushed 1 commit to interrupt jeroen/curl
- Revert "Only signal interrupt in interactive mode" R_interactive is apparently also a forbidden API call. This reve... cdcc67e