aboutsummaryrefslogtreecommitdiffhomepage
path: root/content/posts/2021-10-02
diff options
context:
space:
mode:
Diffstat (limited to 'content/posts/2021-10-02')
-rw-r--r--content/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes.xml11
-rw-r--r--content/posts/2021-10-02/python-unbound-local-error.xml45
-rw-r--r--content/posts/2021-10-02/ruby-detect-running-implementation.xml11
-rw-r--r--content/posts/2021-10-02/ruby-then-keyword-and-case-in.xml11
-rw-r--r--content/posts/2021-10-02/rust-where-are-primitive-types-from.xml11
-rw-r--r--content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.xml11
-rw-r--r--content/posts/2021-10-02/vim-swap-order-of-selected-lines.xml11
7 files changed, 45 insertions, 66 deletions
diff --git a/content/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes.xml b/content/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes.xml
index 3dbb8ff..f87d3a6 100644
--- a/content/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes.xml
+++ b/content/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes.xml
@@ -16,13 +16,10 @@
</revision>
</revhistory>
</info>
- <para>
- この記事は Qiita から移植してきたものです。 元 URL:
- <link xl:href="https://qiita.com/nsfisis/items/94090937bcf860cfa93b">https://qiita.com/nsfisis/items/94090937bcf860cfa93b</link>
- </para>
- <para>
- <hr/>
- </para>
+ <note>
+ この記事は Qiita から移植してきたものです。
+ 元 URL: <link xl:href="https://qiita.com/nsfisis/items/94090937bcf860cfa93b">https://qiita.com/nsfisis/items/94090937bcf860cfa93b</link>
+ </note>
<para>
タイトル落ち。まずはこのコードを見て欲しい。
</para>
diff --git a/content/posts/2021-10-02/python-unbound-local-error.xml b/content/posts/2021-10-02/python-unbound-local-error.xml
index bb44a47..eb8aa45 100644
--- a/content/posts/2021-10-02/python-unbound-local-error.xml
+++ b/content/posts/2021-10-02/python-unbound-local-error.xml
@@ -16,13 +16,10 @@
</revision>
</revhistory>
</info>
- <para>
- この記事は Qiita から移植してきたものです。 元 URL:
- <link xl:href="https://qiita.com/nsfisis/items/5d733703afcb35bbf399">https://qiita.com/nsfisis/items/5d733703afcb35bbf399</link>
- </para>
- <para>
- <hr/>
- </para>
+ <note>
+ この記事は Qiita から移植してきたものです。
+ 元 URL: <link xl:href="https://qiita.com/nsfisis/items/5d733703afcb35bbf399">https://qiita.com/nsfisis/items/5d733703afcb35bbf399</link>
+ </note>
<para>
本記事は Python 3.7.6 の動作結果を元にして書かれている。
</para>
@@ -32,10 +29,10 @@
<programlisting language="python" linenumbering="unnumbered">
<![CDATA[
def f():
- x = 0
- def g():
- x += 1
- g()
+ x = 0
+ def g():
+ x += 1
+ g()
f()
]]>
@@ -60,14 +57,14 @@
<![CDATA[
# 注: var は正しい Python の文法ではない。上記参照のこと
def f():
- var x # f の local変数 'x' を宣言
- x = 0 # x に 0 を代入
- def g(): # f の内部関数 g を定義
- var x # g の local変数 'x' を宣言
- # たまたま f にも同じ名前の変数があるが、それとは別の変数
- x += 1 # x に 1 を加算 (x = x + 1 の糖衣構文)
- # 加算する前の値を参照しようとするが、まだ代入されていないためエラー
- g()
+ var x # f の local変数 'x' を宣言
+ x = 0 # x に 0 を代入
+ def g(): # f の内部関数 g を定義
+ var x # g の local変数 'x' を宣言
+ # たまたま f にも同じ名前の変数があるが、それとは別の変数
+ x += 1 # x に 1 を加算 (x = x + 1 の糖衣構文)
+ # 加算する前の値を参照しようとするが、まだ代入されていないためエラー
+ g()
]]>
</programlisting>
<para>
@@ -76,11 +73,11 @@
<programlisting language="python" linenumbering="unnumbered">
<![CDATA[
def f():
- x = 0
- def g():
- nonlocal x ## (*)
- x += 1
- g()
+ x = 0
+ def g():
+ nonlocal x ## (*)
+ x += 1
+ g()
]]>
</programlisting>
<para>
diff --git a/content/posts/2021-10-02/ruby-detect-running-implementation.xml b/content/posts/2021-10-02/ruby-detect-running-implementation.xml
index 9b59202..7c0c960 100644
--- a/content/posts/2021-10-02/ruby-detect-running-implementation.xml
+++ b/content/posts/2021-10-02/ruby-detect-running-implementation.xml
@@ -15,13 +15,10 @@
</revision>
</revhistory>
</info>
- <para>
- この記事は Qiita から移植してきたものです。 元 URL:
- <link xl:href="https://qiita.com/nsfisis/items/74d7ffeeebc51b20d791">https://qiita.com/nsfisis/items/74d7ffeeebc51b20d791</link>
- </para>
- <para>
- <hr/>
- </para>
+ <note>
+ この記事は Qiita から移植してきたものです。
+ 元 URL: <link xl:href="https://qiita.com/nsfisis/items/74d7ffeeebc51b20d791">https://qiita.com/nsfisis/items/74d7ffeeebc51b20d791</link>
+ </note>
<para>
Ruby
という言語には複数の実装があるが、それらをスクリプト上からどのようにして
diff --git a/content/posts/2021-10-02/ruby-then-keyword-and-case-in.xml b/content/posts/2021-10-02/ruby-then-keyword-and-case-in.xml
index 64851fc..0a799a3 100644
--- a/content/posts/2021-10-02/ruby-then-keyword-and-case-in.xml
+++ b/content/posts/2021-10-02/ruby-then-keyword-and-case-in.xml
@@ -16,13 +16,10 @@
</revision>
</revhistory>
</info>
- <para>
- この記事は Qiita から移植してきたものです。 元 URL:
- <link xl:href="https://qiita.com/nsfisis/items/787a8cf888a304497223">https://qiita.com/nsfisis/items/787a8cf888a304497223</link>
- </para>
- <para>
- <hr/>
- </para>
+ <note>
+ この記事は Qiita から移植してきたものです。
+ 元 URL: <link xl:href="https://qiita.com/nsfisis/items/787a8cf888a304497223">https://qiita.com/nsfisis/items/787a8cf888a304497223</link>
+ </note>
<section xml:id="tl-dr">
<title>TL; DR</title>
<para>
diff --git a/content/posts/2021-10-02/rust-where-are-primitive-types-from.xml b/content/posts/2021-10-02/rust-where-are-primitive-types-from.xml
index 5902450..3aaca63 100644
--- a/content/posts/2021-10-02/rust-where-are-primitive-types-from.xml
+++ b/content/posts/2021-10-02/rust-where-are-primitive-types-from.xml
@@ -15,13 +15,10 @@
</revision>
</revhistory>
</info>
- <para>
- この記事は Qiita から移植してきたものです。 元 URL:
- <link xl:href="https://qiita.com/nsfisis/items/9a429432258bbcd6c565">https://qiita.com/nsfisis/items/9a429432258bbcd6c565</link>
- </para>
- <para>
- <hr/>
- </para>
+ <note>
+ この記事は Qiita から移植してきたものです。
+ 元 URL: <link xl:href="https://qiita.com/nsfisis/items/9a429432258bbcd6c565">https://qiita.com/nsfisis/items/9a429432258bbcd6c565</link>
+ </note>
<section xml:id="intro">
<title>前置き</title>
<para>
diff --git a/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.xml b/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.xml
index 7e0dd2e..ef17ae3 100644
--- a/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.xml
+++ b/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.xml
@@ -15,13 +15,10 @@
</revision>
</revhistory>
</info>
- <para>
- この記事は Qiita から移植してきたものです。 元 URL:
- <link xl:href="https://qiita.com/nsfisis/items/79ab4db8564032de0b25">https://qiita.com/nsfisis/items/79ab4db8564032de0b25</link>
- </para>
- <para>
- <hr/>
- </para>
+ <note>
+ この記事は Qiita から移植してきたものです。
+ 元 URL: <link xl:href="https://qiita.com/nsfisis/items/79ab4db8564032de0b25">https://qiita.com/nsfisis/items/79ab4db8564032de0b25</link>
+ </note>
<section xml:id="tl-dr">
<title>TL; DR</title>
<para>
diff --git a/content/posts/2021-10-02/vim-swap-order-of-selected-lines.xml b/content/posts/2021-10-02/vim-swap-order-of-selected-lines.xml
index cf1013a..c4c26ca 100644
--- a/content/posts/2021-10-02/vim-swap-order-of-selected-lines.xml
+++ b/content/posts/2021-10-02/vim-swap-order-of-selected-lines.xml
@@ -15,13 +15,10 @@
</revision>
</revhistory>
</info>
- <para>
- この記事は Qiita から移植してきたものです。 元 URL:
- <link xl:href="https://qiita.com/nsfisis/items/4fefb361d9a693803520">https://qiita.com/nsfisis/items/4fefb361d9a693803520</link>
- </para>
- <para>
- <hr/>
- </para>
+ <note>
+ この記事は Qiita から移植してきたものです。
+ 元 URL: <link xl:href="https://qiita.com/nsfisis/items/4fefb361d9a693803520">https://qiita.com/nsfisis/items/4fefb361d9a693803520</link>
+ </note>
<section xml:id="tl-dr">
<title>TL; DR</title>
<programlisting language="vim" linenumbering="unnumbered">