4
6
3
118
And an #rstats function of mine that is older than your `rtweet` package and still in hourly use:
tweet <- function(txt) {
con <- pipe("bti --config ~/.bti.conf", "w")
cat(txt, file=con)
close(con)
}
where bti is from the trusted repo github.com/gregkh/bti
Feb 4, 2022 ยท 4:21 AM UTC
1
10


