-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME.Rmd
58 lines (41 loc) · 1.08 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
# robinlovelace
This is the source code of my website.
I plan to store notes on how to use it here.
New talk:
```{bash, eval=FALSE}
hugo new --kind event event/ogh23
cp -Rv content/event/sdsl2024 content/event/transportai-2025
code content/event/glasgow2024/index.md
```
```{r, eval=FALSE}
file.edit("content/event/modeshift-2022/index.md")
blogdown::install_hugo()
# new blog post:
blogdown::new_post(title = "2024-retrospective", ext = ".Rmd")
blogdown::new_content(path = "software/index.Rmd")
# serve site
blogdown::serve_site()
blogdown::stop_server()
# build site
blogdown::build_site()
```
To update publications run:
```bash
# pip3 install academic==0.5.1
# pip3 install academic==0.11.2
# Update:
pip install --upgrade academic
# overwrite existing:
# academic import --bibtex static/bibs/my-citations-for-web.bib --over
academic import --bibtex static/bibs/my-citations-for-web.bib
```