daily

所属分类:博客
开发工具:HTML
文件大小:8069KB
下载次数:0
上传日期:2023-06-10 00:34:22
上 传 者sh-1993
说明:  R的新闻博客聚合器网站
(News Blog aggregator website for R)

文件列表:
.Rbuildignore (28, 2023-09-04)
DESCRIPTION (98, 2023-09-04)
LICENSE (1064, 2023-09-04)
R (0, 2023-09-04)
R\fetch.R (2150, 2023-09-04)
R\list.txt (7465, 2023-09-04)
config.toml (1037, 2023-09-04)
content (0, 2023-09-04)
content\_index.md (23, 2023-09-04)
content\about.md (2440, 2023-09-04)
content\archives.md (50, 2023-09-04)
content\contributor.md (81, 2023-09-04)
content\post (0, 2023-09-04)
content\post\-2018-02-11-getting-started.md (1121, 2023-09-04)
content\post\-2019-02-11-gartner-style-charts-in-r-with-ggplot2.md (1039, 2023-09-04)
content\post\-2019-02-14-aggregating-lines-part-ii.md (1181, 2023-09-04)
content\post\-2019-02-15-my-interview-on-the-datacast-podcast.md (1173, 2023-09-04)
content\post\-2019-02-25-sustainable-transport-planning-with-r-stplanr-paper-published.md (1207, 2023-09-04)
content\post\-2019-03-17-sellorm-is-wfh-notes-on-the-last-6-months-of-working-from-home.md (1076, 2023-09-04)
content\post\-2019-03-21-get-antequated-with-somap.md (1277, 2023-09-04)
content\post\-2019-03-29-lifting-the-lid-on-cran.md (1245, 2023-09-04)
content\post\-2019-03-30-build-your-own-cran-like-repo.md (1031, 2023-09-04)
content\post\-2019-04-10-the-evolution-of-my-academic-career-as-seen-through-posters-and-talks-thanks-to-hugo-academic-4-1.md (1556, 2023-09-04)
content\post\-2019-04-26-download-build-and-install-r-source.md (1003, 2023-09-04)
content\post\-2019-05-29-mesh3d-recent-changes-in-rgl-workhorse-format.md (1142, 2023-09-04)
content\post\-2019-06-28-how-to-document-a-conference-talk-in-citation-manager-software.md (1093, 2023-09-04)
content\post\-2019-07-03-collapse-rows-to-eliminate-nas.md (1300, 2023-09-04)
content\post\-2019-07-03-generalized-rowwise-operations-using-purrr-pmap.md (1325, 2023-09-04)
content\post\-2019-07-03-testing-for-equality-rowwise.md (1194, 2023-09-04)
content\post\-2019-07-03-testing-multiple-vectors-for-equality.md (1268, 2023-09-04)
content\post\-2019-07-13-user2019.md (960, 2023-09-04)
content\post\-2019-07-17-slides-in-german-for-my-talk-on-datenkompetenz-f-c3-bcr-alle-at-the-r-user-group-n-c3-bcrnberg-july-2019.md (579, 2023-09-04)
content\post\-2019-07-24-hydra-reformulate.md (525, 2023-09-04)
content\post\-2019-07-29-geoplotting-update-to-my-modar-book.md (1400, 2023-09-04)
... ...

# Daily RSS Daily News/Blog aggregator website and you could use this website as a template to create you own public rss daily reader by adding you own rss addresses collection in `R/list.txt` . **Daily R** is a light news/blog aggregator website for R. # Features - Real daily update and you could use RSS reader or click archive to find entries of the old posts - No AD - Remove the author to make more contents focused - Update everyday via a automated process - Use Github PR API to control posts - Re-direct to the orginal pages by click title in the homepage and wait 10s to re-direct in the post page - We reserve the right to delete any inappropriate posts # Contribute - Add your rss address and dates to the `R/list.txt` - Use `getrss` from [scifetch](https://github.com/yufree/scifetch) to convert rss xml file into dataframe and use the following code to generate `md` files and PR to this repo. ```r if (!dir.exists("content")) dir.create("content") if (!dir.exists("content/post")) dir.create("content/post") x <- scifetch::getrss('path-to-your-own-rss-xml-files') for (i in 1:NROW(x)) { name = gsub("^http[s]?://|/$", "", tolower(x[i, 'linkTitle'])) name = gsub("%", "", name) name = gsub("[^a-z0-9]+", "-", name) name = gsub("--+", "-", name) # file name too long issue name = substr(name, 1, 200) p = sprintf('content/post/%s.md', paste0(name)) sink(p) cat('---\n') cat(yaml::as.yaml(x[i,],)) cat('disable_comments: true\n') cat('---\n') cat(as.character(x[i, 5])) sink() } ``` - Add comma and your name to the `YAML` front matter block in contributor.md # Recipe - [Blogdown](https://github.com/rstudio/blogdown) to build the site from @yihui - [xmag](https://github.com/yihui/hugo-xmag) layout also from @yihui and I made some modifications [here](https://github.com/yufree/hugo-xmag) - [scifetch](https://github.com/yufree/scifetch) to analysis RSS(support xml, atom and json) from @yufree, modified from [tidyRSS](https://cran.r-project.org/web/packages/tidyRSS/index.html) from @RobertMyles - [twitter-blogdown](https://t.yihui.name) by @yihui was the template to be hacked - [Github Action](https://github.com/features/actions) - [Cron Job](https://docs.github.com/en/actions/reference/events-that-trigger-workflows) - [Your PR to RSS list](https://github.com/yufree/daily/edit/master/R/list.txt)

近期下载者

相关文件


收藏者