Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/rladies/awesome-rladies-blogs
- Owner: rladies
- License: cc0-1.0
- Created: 2021-02-19T02:16:11.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-18T19:37:29.000Z (8 months ago)
- Last Synced: 2024-05-23T02:20:02.445Z (7 months ago)
- Topics: awesome, awesome-list, rladies
- Language: R
- Homepage:
- Size: 385 KB
- Stars: 81
- Watchers: 7
- Forks: 37
- Open Issues: 3
-
Metadata Files:
- Readme: README.Rmd
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- jimsghstars - rladies/awesome-rladies-blogs - Awesome R-Ladies' Blogs (R)
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/)