From e2d0028c1fbfb4cac59e20926e5aa0031e0ed607 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 14 May 2022 22:40:28 +0900 Subject: add changelog field to frontmatter --- archetypes/default.md | 2 ++ config.toml | 1 + content/posts/2021-03-05/my-first-post.md | 2 ++ content/posts/2021-03-30/phperkaigi-2021.md | 2 ++ .../cpp-you-can-use-keywords-in-attributes.md | 2 ++ .../posts/2021-10-02/python-unbound-local-error.md | 2 ++ .../ruby-detect-running-implementation.md | 2 ++ .../2021-10-02/ruby-then-keyword-and-case-in.md | 2 ++ .../rust-where-are-primitive-types-from.md | 2 ++ ...nce-between-autocmd-bufwrite-and-bufwritepre.md | 2 ++ .../2021-10-02/vim-swap-order-of-selected-lines.md | 2 ++ content/posts/2022-04-09/phperkaigi-2022-tokens.md | 10 ++++------ ...banner-write-tool-showing-banner-in-terminal.md | 4 ++++ content/posts/2022-05-01/phperkaigi-2022.md | 2 ++ docs/index.html | 20 ++++++++++---------- docs/page/2/index.html | 4 ++-- docs/posts/2021-03-05/my-first-post/index.html | 16 +++++++++++++--- docs/posts/2021-03-30/phperkaigi-2021/index.html | 16 +++++++++++++--- .../index.html | 16 +++++++++++++--- .../python-unbound-local-error/index.html | 16 +++++++++++++--- .../ruby-detect-running-implementation/index.html | 16 +++++++++++++--- .../ruby-then-keyword-and-case-in/index.html | 16 +++++++++++++--- .../rust-where-are-primitive-types-from/index.html | 16 +++++++++++++--- .../index.html | 16 +++++++++++++--- .../vim-swap-order-of-selected-lines/index.html | 16 +++++++++++++--- .../2022-04-09/phperkaigi-2022-tokens/index.html | 22 ++++++++++++++-------- .../index.html | 17 ++++++++++++++--- docs/posts/2022-05-01/phperkaigi-2022/index.html | 16 +++++++++++++--- docs/posts/index.html | 20 ++++++++++---------- docs/posts/page/2/index.html | 4 ++-- docs/sitemap.xml | 6 +++--- docs/tags/conference/index.html | 6 +++--- docs/tags/cpp/index.html | 2 +- docs/tags/cpp17/index.html | 2 +- docs/tags/my-programs/index.html | 2 +- docs/tags/php/index.html | 6 +++--- docs/tags/phperkaigi/index.html | 6 +++--- docs/tags/python/index.html | 2 +- docs/tags/python3/index.html | 2 +- docs/tags/ruby/index.html | 4 ++-- docs/tags/ruby3/index.html | 2 +- docs/tags/rust/index.html | 2 +- docs/tags/vim/index.html | 4 ++-- themes/mypaper/layouts/_default/list.html | 4 +++- themes/mypaper/layouts/_default/single.html | 20 ++++++++++++++++---- 45 files changed, 255 insertions(+), 99 deletions(-) diff --git a/archetypes/default.md b/archetypes/default.md index 7e1768c..0b33ea5 100644 --- a/archetypes/default.md +++ b/archetypes/default.md @@ -5,5 +5,7 @@ draft: true tags: ["TODO"] summary: | TODO +changelog: + - {{ .Date.Format "2006-01-02" }}: 公開 --- diff --git a/config.toml b/config.toml index 7e98142..50b1dc4 100644 --- a/config.toml +++ b/config.toml @@ -1,6 +1,7 @@ baseURL = "https://blog.nsfisis.dev" languageCode = "ja-JP" hasCJKLanguage = true +timeZone = "Asia/Tokyo" title = "REPL: Rest-Eat-Program Loop" theme = "mypaper" diff --git a/content/posts/2021-03-05/my-first-post.md b/content/posts/2021-03-05/my-first-post.md index c6ca853..2298d80 100644 --- a/content/posts/2021-03-05/my-first-post.md +++ b/content/posts/2021-03-05/my-first-post.md @@ -5,6 +5,8 @@ draft: false aliases: ['/posts/my-first-post/'] summary: | これはテスト投稿です。これはテスト投稿です。これはテスト投稿です。 +changelog: + 2021-03-05: 公開 --- # Test diff --git a/content/posts/2021-03-30/phperkaigi-2021.md b/content/posts/2021-03-30/phperkaigi-2021.md index 48a43e5..5d5d8cd 100644 --- a/content/posts/2021-03-30/phperkaigi-2021.md +++ b/content/posts/2021-03-30/phperkaigi-2021.md @@ -6,6 +6,8 @@ tags: ["conference", "php", "phperkaigi"] aliases: ['/posts/phperkaigi-2021/'] summary: | 2021-03-26 から 2021-03-28 にかけて開催された、PHPerKaigi 2021 に参加した。 +changelog: + 2021-03-30: 公開 --- # PHPerKaigi 2021 参加レポ diff --git a/content/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes.md b/content/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes.md index 5658f1e..9939351 100644 --- a/content/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes.md +++ b/content/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes.md @@ -6,6 +6,8 @@ tags: ["cpp", "cpp17"] aliases: ['/posts/cpp-you-can-use-keywords-in-attributes/'] summary: | C++ の属性構文の属性名には、キーワードが使える。ネタ記事。 +changelog: + 2021-10-02: Qiita から移植 --- diff --git a/content/posts/2021-10-02/python-unbound-local-error.md b/content/posts/2021-10-02/python-unbound-local-error.md index e29cd67..4a55010 100644 --- a/content/posts/2021-10-02/python-unbound-local-error.md +++ b/content/posts/2021-10-02/python-unbound-local-error.md @@ -6,6 +6,8 @@ tags: ["python", "python3"] aliases: ['/posts/python-unbound-local-error/'] summary: | Python における UnboundLocalError の理由と対処法。 +changelog: + 2021-10-02: Qiita から移植 --- この記事は Qiita から移植してきたものです。 diff --git a/content/posts/2021-10-02/ruby-detect-running-implementation.md b/content/posts/2021-10-02/ruby-detect-running-implementation.md index 3826903..33cae61 100644 --- a/content/posts/2021-10-02/ruby-detect-running-implementation.md +++ b/content/posts/2021-10-02/ruby-detect-running-implementation.md @@ -6,6 +6,8 @@ tags: ["ruby"] aliases: ['/posts/ruby-detect-running-implementation/'] summary: | Ruby には複数の実装があるが、自身を実行している処理系の種類をスクリプト上からどのように判定すればよいだろうか。 +changelog: + 2021-10-02: Qiita から移植 --- この記事は Qiita から移植してきたものです。 diff --git a/content/posts/2021-10-02/ruby-then-keyword-and-case-in.md b/content/posts/2021-10-02/ruby-then-keyword-and-case-in.md index 8e68ef4..6cd5592 100644 --- a/content/posts/2021-10-02/ruby-then-keyword-and-case-in.md +++ b/content/posts/2021-10-02/ruby-then-keyword-and-case-in.md @@ -6,6 +6,8 @@ tags: ["ruby", "ruby3"] aliases: ['/posts/ruby-then-keyword-and-case-in/'] summary: | Ruby 3.0 で追加される case in 構文と、then キーワードについて。 +changelog: + 2021-10-02: Qiita から移植 --- この記事は Qiita から移植してきたものです。 diff --git a/content/posts/2021-10-02/rust-where-are-primitive-types-from.md b/content/posts/2021-10-02/rust-where-are-primitive-types-from.md index b744b20..c471587 100644 --- a/content/posts/2021-10-02/rust-where-are-primitive-types-from.md +++ b/content/posts/2021-10-02/rust-where-are-primitive-types-from.md @@ -6,6 +6,8 @@ tags: ["rust"] aliases: ['/posts/rust-where-are-primitive-types-from/'] summary: | Rust のプリミティブ型は予約語ではなく普通の識別子である。どのようにこれが名前解決されるのかを調べた。 +changelog: + 2021-10-02: Qiita から移植 --- この記事は Qiita から移植してきたものです。 diff --git a/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.md b/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.md index db5ed3d..5bdcb67 100644 --- a/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.md +++ b/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.md @@ -6,6 +6,8 @@ tags: ["vim"] aliases: ['/posts/vim-difference-between-autocmd-bufwrite-and-bufwritepre/'] summary: | Vim の autocmd events における BufWrite/BufWritePre がどう違うのかを調べた結果、違いはないことがわかった。 +changelog: + 2021-10-02: Qiita から移植 --- この記事は Qiita から移植してきたものです。 diff --git a/content/posts/2021-10-02/vim-swap-order-of-selected-lines.md b/content/posts/2021-10-02/vim-swap-order-of-selected-lines.md index d336734..6056186 100644 --- a/content/posts/2021-10-02/vim-swap-order-of-selected-lines.md +++ b/content/posts/2021-10-02/vim-swap-order-of-selected-lines.md @@ -6,6 +6,8 @@ tags: ["vim"] aliases: ['/posts/vim-swap-order-of-selected-lines/'] summary: | Vim で選択した行の順番を入れ替える方法。 +changelog: + 2021-10-02: Qiita から移植 --- この記事は Qiita から移植してきたものです。 diff --git a/content/posts/2022-04-09/phperkaigi-2022-tokens.md b/content/posts/2022-04-09/phperkaigi-2022-tokens.md index 27bb189..23d0d3d 100644 --- a/content/posts/2022-04-09/phperkaigi-2022-tokens.md +++ b/content/posts/2022-04-09/phperkaigi-2022-tokens.md @@ -1,19 +1,17 @@ --- title: "PHPerKaigi 2022 トークン問題の解説" date: 2022-04-09T21:50:19+09:00 +lastmod: 2022-04-16 draft: false tags: ["conference", "php", "phperkaigi"] aliases: ['/posts/phperkaigi-2022-tokens/'] summary: | PHPerKaigi 2022 で私が作成した PHPer チャレンジ問題を解説する。 +changelog: + 2022-04-09: 公開 + 2022-04-16: 2問目、3問目の解説を追加、1問目に加筆 --- -# 更新履歴 - -* 2022-04-09: 公開 -* 2022-04-16: 2問目、3問目の解説を追加、1問目に加筆 - - # はじめに 本日開始された [PHPerKaigi 2022](https://phperkaigi.jp/2022/) の PHPer チャレンジにおいて、弊社 [デジタルサーカス株式会社](https://www.dgcircus.com/) の問題を 3問作成した。この記事では、これらの問題の解説をおこなう。 diff --git a/content/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal.md b/content/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal.md index ed71760..b2b8ee8 100644 --- a/content/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal.md +++ b/content/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal.md @@ -1,10 +1,14 @@ --- title: "term-banner: ターミナルにバナーを表示するツールを書いた" date: 2022-04-24T13:22:52+09:00 +lastmod: 2022-04-27 draft: false tags: ["my-programs"] summary: | ターミナルに任意の文字のバナーを表示するためのツールを Go で書いた。 +changelog: + 2022-04-24: 公開 + 2022-04-27: -f オプションについて追記 --- diff --git a/content/posts/2022-05-01/phperkaigi-2022.md b/content/posts/2022-05-01/phperkaigi-2022.md index d15efa6..8621a45 100644 --- a/content/posts/2022-05-01/phperkaigi-2022.md +++ b/content/posts/2022-05-01/phperkaigi-2022.md @@ -5,6 +5,8 @@ draft: false tags: ["conference", "php", "phperkaigi"] summary: | 2022-04-09 から 2022-04-11 にかけて開催された、PHPerKaigi 2022 に参加した。 +changelog: + 2022-05-01: 公開 --- # はじめに diff --git a/docs/index.html b/docs/index.html index dba1836..4ecbe65 100644 --- a/docs/index.html +++ b/docs/index.html @@ -36,7 +36,7 @@

2022-04-09 から 2022-04-11 にかけて開催された、PHPerKaigi 2022 に参加した。

@@ -48,7 +48,7 @@

ターミナルに任意の文字のバナーを表示するためのツールを Go で書いた。

@@ -60,7 +60,7 @@

PHPerKaigi 2022 で私が作成した PHPer チャレンジ問題を解説する。

@@ -72,7 +72,7 @@

Rust のプリミティブ型は予約語ではなく普通の識別子である。どのようにこれが名前解決されるのかを調べた。

@@ -84,7 +84,7 @@

Ruby 3.0 で追加される case in 構文と、then キーワードについて。

@@ -96,7 +96,7 @@

C++ の属性構文の属性名には、キーワードが使える。ネタ記事。

@@ -108,7 +108,7 @@

Ruby には複数の実装があるが、自身を実行している処理系の種類をスクリプト上からどのように判定すればよいだろうか。

@@ -120,7 +120,7 @@

Vim で選択した行の順番を入れ替える方法。

@@ -132,7 +132,7 @@

Vim の autocmd events における BufWrite/BufWritePre がどう違うのかを調べた結果、違いはないことがわかった。

@@ -144,7 +144,7 @@

Python における UnboundLocalError の理由と対処法。

diff --git a/docs/page/2/index.html b/docs/page/2/index.html index 7b04498..6ebb1c6 100644 --- a/docs/page/2/index.html +++ b/docs/page/2/index.html @@ -36,7 +36,7 @@

2021-03-26 から 2021-03-28 にかけて開催された、PHPerKaigi 2021 に参加した。

@@ -48,7 +48,7 @@

これはテスト投稿です。これはテスト投稿です。これはテスト投稿です。

diff --git a/docs/posts/2021-03-05/my-first-post/index.html b/docs/posts/2021-03-05/my-first-post/index.html index 66a4b84..9bda63b 100644 --- a/docs/posts/2021-03-05/my-first-post/index.html +++ b/docs/posts/2021-03-05/my-first-post/index.html @@ -31,11 +31,21 @@

My First Post

- +
-

Test

+
+
+

更新履歴

+
    +
  • 2021-03-05: 公開
  • +
+
+

Test

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

-
+ +