Tyler Littlefield
Tyler Littlefield
## Prework - [x] Read and abide by **pointblank**'s [code of conduct](https://www.contributor-covenant.org/version/2/0/code_of_conduct/) and [contributing guidelines](https://github.com/rich-iannone/pointblank/blob/master/.github/CONTRIBUTING.md). - [x] Search for duplicates among the [existing issues](https://github.com/rich-iannone/pointblank/issues) (both open and closed). ## Proposal...
Change [`scrape.R`](https://github.com/fivethirtyeight/data/blob/master/police-deaths/scrape.R) so that it scrapes all the data. Currently `scrape.R` gives: ``` [1] person dept eow cause (or 0-length row.names) ``` The modified `scrape.R` now gives: ``` # A...
I was able to get swarmpit stack working with the tiniest change: `image: couchdb:2.3.0` -> `image: couchdb:2.3.1` Just letting others know in case they want to get this stack running...
Take the following example: ```r library(reactable) x
The `rstudio/plumber` image only supports `linux/amd64` but it would be nice to also support `linux/arm64`. I am currently doing this by using `r-base` image which supports ARM CPUs already. See...
Consider the following example that emphasizes nodes when hovering over the lines: ```{r} library(echarts4r) library(dplyr) df % e_charts() %>% e_sankey( source = name, target = target, value = value, emphasis...
I've copied my SSH key using: ```bash ssh-copy-id -i ~/.ssh/id_rsa.pub @ ``` I then attempt to login to the machine with: ```bash ssh @ ``` And I successfully login, no...
Fair warning, zero experience incoming! I have a cluster of raspberry pi's I'm playing with. I have a static site hosted with NGINX on one of the nodes with a...
First, thanks for this template, it's very pretty! I wanted to ask if the tags are working properly. My expectation was that when you select one from a post, it'll...
Consider this `plumber.R` file: ```r library(plumber) #* Sort letters #* @param letters:[] #* @json #* @get /letters function(letters) { sort(letters) } ``` How do I change the request from this:...