# Search in a generic way
search_site("r-project", "google")
# Search Google
search_google("r-project")
# Search Bing
search_bing("Microsoft R")
# Search DuckDuckGo
search_duckduckgo("R language")
# Search startpage
search_startpage("VS Code")
# Search Rseek
search_rseek("searcher")
# Search Qwant
search_qwant("Quarto")
# Search RStudio Community
search_rstudio_community("RStudio IDE")
# Search Twitter
search_twitter("searcher")
# Search StackOverflow for Convolutions in the r tag
search_stackoverflow("convolutions")
# Search all languages on StackOverflow for convolutions
search_stackoverflow("convolutions", rlang = FALSE)
# Search GitHub Issues for bivariate normal in the language:r
search_github("bivariate normal")
# Search all languages on GitHub Issues for bivariate normal
search_github("bivariate normal", rlang = FALSE)
# Search R code on GitHub for numerical optimization
search_grep("optim")
# Search all code on GitHub for numerical optimization
search_grep("optim", rlang = FALSE)
# Search BitBucket for assertions
search_bitbucket("assertions")
if (FALSE) {
# On error, automatically search the message on google
options(error = searcher("google"))
options(error = search_google)
}
Run the code above in your browser using DataLab