summaryrefslogtreecommitdiffhomepage
path: root/vhosts/blog/content/posts/2021-10-02
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-02-24 13:16:15 +0900
committernsfisis <nsfisis@gmail.com>2024-02-24 14:24:32 +0900
commit261f1ceecb11eae24f5b257eb4ce70ac1ddfdaf2 (patch)
tree98967fc49f6b8c4372e83fe897010c4cc461cc52 /vhosts/blog/content/posts/2021-10-02
parent7c81d7bf5bcb6fb9578ae4ae54684742bf9ae35d (diff)
downloadnsfisis.dev-261f1ceecb11eae24f5b257eb4ce70ac1ddfdaf2.tar.gz
nsfisis.dev-261f1ceecb11eae24f5b257eb4ce70ac1ddfdaf2.tar.zst
nsfisis.dev-261f1ceecb11eae24f5b257eb4ce70ac1ddfdaf2.zip
feat(blog/content): add "uuid" properties to all contents
Diffstat (limited to 'vhosts/blog/content/posts/2021-10-02')
-rw-r--r--vhosts/blog/content/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes.ndoc1
-rw-r--r--vhosts/blog/content/posts/2021-10-02/python-unbound-local-error.ndoc1
-rw-r--r--vhosts/blog/content/posts/2021-10-02/ruby-detect-running-implementation.ndoc1
-rw-r--r--vhosts/blog/content/posts/2021-10-02/ruby-then-keyword-and-case-in.ndoc1
-rw-r--r--vhosts/blog/content/posts/2021-10-02/rust-where-are-primitive-types-from.ndoc1
-rw-r--r--vhosts/blog/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.ndoc1
-rw-r--r--vhosts/blog/content/posts/2021-10-02/vim-swap-order-of-selected-lines.ndoc1
7 files changed, 7 insertions, 0 deletions
diff --git a/vhosts/blog/content/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes.ndoc b/vhosts/blog/content/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes.ndoc
index bc6103c0..029b290e 100644
--- a/vhosts/blog/content/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes.ndoc
+++ b/vhosts/blog/content/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes.ndoc
@@ -1,5 +1,6 @@
---
[article]
+uuid = "69863d75-ef21-42db-b743-5958f7c86827"
title = "【C++】 属性構文の属性名にはキーワードが使える"
description = "C++ の属性構文の属性名には、キーワードが使える。ネタ記事。"
tags = [
diff --git a/vhosts/blog/content/posts/2021-10-02/python-unbound-local-error.ndoc b/vhosts/blog/content/posts/2021-10-02/python-unbound-local-error.ndoc
index b361c114..66a98cc2 100644
--- a/vhosts/blog/content/posts/2021-10-02/python-unbound-local-error.ndoc
+++ b/vhosts/blog/content/posts/2021-10-02/python-unbound-local-error.ndoc
@@ -1,5 +1,6 @@
---
[article]
+uuid = "e1aff84c-d6d4-4dea-bc45-9c41e6445006"
title = "【Python】 クロージャとUnboundLocalError: local variable 'x' referenced before assignment"
description = "Python における UnboundLocalError の理由と対処法。"
tags = [
diff --git a/vhosts/blog/content/posts/2021-10-02/ruby-detect-running-implementation.ndoc b/vhosts/blog/content/posts/2021-10-02/ruby-detect-running-implementation.ndoc
index cd999882..0bdf2833 100644
--- a/vhosts/blog/content/posts/2021-10-02/ruby-detect-running-implementation.ndoc
+++ b/vhosts/blog/content/posts/2021-10-02/ruby-detect-running-implementation.ndoc
@@ -1,5 +1,6 @@
---
[article]
+uuid = "e1456a50-4fc6-42ef-89f3-8be78e01da13"
title = "【Ruby】 自身を実行している処理系の種類を判定する"
description = "Ruby には複数の実装があるが、自身を実行している処理系の種類をスクリプト上からどのように判定すればよいだろうか。"
tags = [
diff --git a/vhosts/blog/content/posts/2021-10-02/ruby-then-keyword-and-case-in.ndoc b/vhosts/blog/content/posts/2021-10-02/ruby-then-keyword-and-case-in.ndoc
index 994b1d7d..7d7007c2 100644
--- a/vhosts/blog/content/posts/2021-10-02/ruby-then-keyword-and-case-in.ndoc
+++ b/vhosts/blog/content/posts/2021-10-02/ruby-then-keyword-and-case-in.ndoc
@@ -1,5 +1,6 @@
---
[article]
+uuid = "87455008-fe5b-49bf-af5a-b875264f8326"
title = "【Ruby】 then キーワードと case in"
description = "Ruby 3.0 で追加される case in 構文と、then キーワードについて。"
tags = [
diff --git a/vhosts/blog/content/posts/2021-10-02/rust-where-are-primitive-types-from.ndoc b/vhosts/blog/content/posts/2021-10-02/rust-where-are-primitive-types-from.ndoc
index c6b81431..073df5fd 100644
--- a/vhosts/blog/content/posts/2021-10-02/rust-where-are-primitive-types-from.ndoc
+++ b/vhosts/blog/content/posts/2021-10-02/rust-where-are-primitive-types-from.ndoc
@@ -1,5 +1,6 @@
---
[article]
+uuid = "91c61980-c262-4e8d-89b0-4304e7f6d644"
title = "Rust のプリミティブ型はどこからやって来るか"
description = "Rust のプリミティブ型は予約語ではなく普通の識別子である。どのようにこれが名前解決されるのかを調べた。"
tags = [
diff --git a/vhosts/blog/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.ndoc b/vhosts/blog/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.ndoc
index c303f24b..5e7e182b 100644
--- a/vhosts/blog/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.ndoc
+++ b/vhosts/blog/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.ndoc
@@ -1,5 +1,6 @@
---
[article]
+uuid = "44171f75-c312-4c92-9927-3d260e162175"
title = "【Vim】 autocmd events の BufWrite/BufWritePre の違い"
description = "Vim の autocmd events における BufWrite/BufWritePre がどう違うのかを調べた結果、違いはないことがわかった。"
tags = [
diff --git a/vhosts/blog/content/posts/2021-10-02/vim-swap-order-of-selected-lines.ndoc b/vhosts/blog/content/posts/2021-10-02/vim-swap-order-of-selected-lines.ndoc
index 8fa612e2..882755f6 100644
--- a/vhosts/blog/content/posts/2021-10-02/vim-swap-order-of-selected-lines.ndoc
+++ b/vhosts/blog/content/posts/2021-10-02/vim-swap-order-of-selected-lines.ndoc
@@ -1,5 +1,6 @@
---
[article]
+uuid = "665de47e-0ed6-405e-ad30-81c3c4592d45"
title = "Vimで選択した行の順番を入れ替える"
description = "Vim で選択した行の順番を入れ替える方法。"
tags = [