diff options
author | Huy-Ngo <duchuy29092000@gmail.com> | 2021-01-12 22:42:57 +0700 |
---|---|---|
committer | Huy-Ngo <duchuy29092000@gmail.com> | 2021-01-12 22:42:57 +0700 |
commit | e4cfa3bfb10430cdb083af31e1a4f4d4e6f065f4 (patch) | |
tree | f9514d9e3d7836dc8fe537da79a4e31ede0d2dc2 /_posts | |
parent | 8dfee7bae74b8c016795d2deea7b4c67f61639bd (diff) | |
download | blog-e4cfa3bfb10430cdb083af31e1a4f4d4e6f065f4.tar.gz |
Update blog
Diffstat (limited to '_posts')
-rw-r--r-- | _posts/2021-01-11-using-openring-to-add-blogs-you-follow.md | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/_posts/2021-01-11-using-openring-to-add-blogs-you-follow.md b/_posts/2021-01-11-using-openring-to-add-blogs-you-follow.md index b3b0710..a5b2f91 100644 --- a/_posts/2021-01-11-using-openring-to-add-blogs-you-follow.md +++ b/_posts/2021-01-11-using-openring-to-add-blogs-you-follow.md @@ -9,7 +9,8 @@ categories: blog --- You may notice that now my blog now has a new section near the footer: a list of articles -from blogs I follow. This is generated by [openring], a tool for generating this list. +from blogs I follow. This is generated by [openring], +a tool that read a list of RSS feeds and generate these. I found out about this when reading [Drew DeVault's blog][ddvault] (who created openring). I think it is a nice way @@ -24,7 +25,7 @@ I am not aware of any prebuilt packages for openring, so let's build it from sou ## Install dependencies Openring depends on golang. This works on go1.14, the latest version on Tumbleweed -repository, but I recommend installing the latest version. +repository, but I recommend installing the latest version from [golang]. You can refer to [golang]'s installation instruction for details. @@ -36,7 +37,7 @@ Firstly, clone the repository: git clone https://git.sr.ht/~sircmpwn/openring ``` -Next, simply build the packages and link it to `usr/local/bin` so that it can be run: +Next, simply build the packages and link it to `/usr/local/bin` so that it can be run: ```bash go build -o openring @@ -94,9 +95,9 @@ with a little modification: # Future works? Currently, I generate the feed manually when I update my blog. -This probably is not a really good idea: -What if I want the webring to be updated even when I'm not active? -A cronjob would probably solve this problem, +This probably is not good enough if I want the webring to be updated +even when I'm not active? +A cronjob could solve this problem, but I'll left it as an exercise to the reader ;). [openring]: https://git.sr.ht/~sircmpwn/openring |