Marek Gagolewski

Results 118 comments of Marek Gagolewski

Sorry, I meant trying to set the R_DEFAULT_INTERNET_TIMEOUT environment variable, perhaps via Sys.setenv. :) Maybe this could help fix the issue? Marek Gagolewski https://www.gagolewski.com *Sent from my mobile device. Please...

Interestingly, a somewhat related issue appeared recently; see #485

So maybe installing via: ``` R_DEFAULT_INTERNET_TIMEOUT=300 Rscript --vanilla -e 'install.packages("stringi")' ``` will do the trick?

Or rather: ``` Rscript --vanilla -e 'install.packages("stringi", configure.vars="R_DEFAULT_INTERNET_TIMEOUT=300")' ```

This is postponed. Not a high priority feature.

related to #149 and #8: substring width should be taken into account

Good idea, but this can also be easily implemented with the `outer()` function + `apply()`. Hence, I'm not super convinced if it's really necessary to include yet another function. I'd...

So in other words, you're advocating for a set of functions for: 1. testing whether, for each string, there is a match to 1 of the patterns from a set...