Andy Teucher

Results 92 issues of Andy Teucher

Partially working but I still think it's more complex than need be and the built-in DBI/dbplyr function mapping is not working quite right... #304

I think it's as easy as adding a row to [layers_df.csv](https://github.com/bcgov/bcmaps/blob/master/data-raw/layers_df.csv) and running `bcmaps:::make_shortcuts()`, right @boshek?

This uses `use_tidy_dependencies()`, which most consequentially adds glue to Imports, and adds brings in `import-standalone-purrr.R` To start to make use of these I've replaced most instances of `paste0()` with `glue()`....

This changes `check_no_github_repo()` to check the name of the response from the GitHub API against the provided spec (user/repo) - If they are different it assumes it's a redirect and...

If I create a repo on GitHub, then rename it and then try to use `use_github()` with the old name, it errors with `"Repo [reponame] already exists on 'github.com'"`, even...

bug
git

It would be great to have some code to help us detect images in READMEs, vignettes, etc. that do not have alt-text. This would include R code chunks in quarto/R...

feature
docs 💡
upkeep :broom:

I believe this should return the default value set `""`: ``` r library(desc) desc character(0) ``` I believe the culprit is [here](https://github.com/r-lib/desc/blob/c8463062edf4dc5501c66d4e8f6019743fae3fa3/R/description.R#L899), calling `strpslit()` on the empty string returns `character(0)`....

documentation
tidy-dev-day :nerd_face:

``` r library(rmapshaper) library(readr) geo ms_simplify(keep = 0.01) #> Registered S3 method overwritten by 'jsonify': #> method from #> print.json jsonlite apply_mapshaper_commands(geo, "-proj init=EPSG:25833 crs=EPSG:4326") #> Warning: The command returned...

bug