Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rladies/awesome-rladies-blogs

Awesome R-Ladies' Blogs
https://github.com/rladies/awesome-rladies-blogs

List: awesome-rladies-blogs

awesome awesome-list rladies

Last synced: about 1 month ago
JSON representation

Awesome R-Ladies' Blogs

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```

# Awesome R-Ladies' Blogs

[![Awesome](https://awesome.re/badge.svg)](https://awesome.re)

Curated list of awesome blogs by R-Ladies, inspired by this [Tweet](https://twitter.com/WeAreRLadies/status/1362021673239785473).
The content of this list i rendered on the [R-Ladies website](https://www.rladies.org/activities/rladies-blogs/).
The list also is the source for the [R-Ladies mastodon bot](https://fosstodon.org/@[email protected]), that occasionally toots links to posts from these blogs.

To contribute to the list, please see the [contributing](CONTRIBUTING.md) instructions.

## List of blogs

Created by accessing the json files in [blogs/](blogs/)

```{r, echo = FALSE, results='asis'}
json_list <- list.files(here::here("blogs"), "json$", full.names = TRUE)
dt <- lapply(json_list, jsonlite::read_json)

invisible(
lapply(dt, function(x){
cat(sprintf(" - [%s](%s) by %s",
x$title, x$url,
paste(sapply(x$authors, function(x) x$name), collapse=", ")),
sep = "\n")
})
)
```

## License

[![CC0](https://upload.wikimedia.org/wikipedia/commons/6/69/CC0_button.svg)](https://creativecommons.org/publicdomain/zero/1.0/)