-
Notifications
You must be signed in to change notification settings - Fork 8
/
README.Rmd
39 lines (25 loc) · 1.24 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
output: github_document
# rmarkdown::render("README.Rmd")
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
# Blog-en
<!-- badges: start -->
<!-- badges: end -->
In this repository you can find the code used to generate my blog (in English): <https://beamilz.com/>
The blog was created using [Quarto](https://quarto.org/). You can find more info on how to create a blog with Quarto in the [documentation](https://quarto.org/docs/websites/website-blog.html).
The deploy is made with [Netlify](https://www.netlify.com/), and the comments use [giscus](https://giscus.app/).
```{r echo=FALSE}
number_of_posts <- fs::dir_ls("posts/", type = "directory") |> length()
number_of_talks_pt <- fs::dir_ls("talks/pt/", type = "directory") |> length()
number_of_talks_en <- fs::dir_ls("talks/en/", type = "directory") |> length()
number_of_talks_es <- fs::dir_ls("talks/es/", type = "directory") |> length()
number_of_talks <- number_of_talks_es + number_of_talks_en + number_of_talks_pt
```
As by `r format(Sys.Date(), "%B %d, %Y")`, this blog has **`r number_of_posts` blog posts** and content from **`r number_of_talks` talks/presentations**.