aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/posts/2021-10-02
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2022-04-19 20:28:06 +0900
committernsfisis <nsfisis@gmail.com>2022-04-19 20:33:38 +0900
commit0dfaa9b0e79e45bfc40d10418443d1d868fbb930 (patch)
tree7e80f7fe58fcfeae6757f2f405696378b1435243 /docs/posts/2021-10-02
parent6e2a31185145d4690dbf897b56a682113ce62d8f (diff)
downloadnsfisis.github.io-0dfaa9b0e79e45bfc40d10418443d1d868fbb930.tar.gz
nsfisis.github.io-0dfaa9b0e79e45bfc40d10418443d1d868fbb930.tar.zst
nsfisis.github.io-0dfaa9b0e79e45bfc40d10418443d1d868fbb930.zip
update theme
Diffstat (limited to 'docs/posts/2021-10-02')
-rw-r--r--docs/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html10
-rw-r--r--docs/posts/2021-10-02/python-unbound-local-error/index.html10
-rw-r--r--docs/posts/2021-10-02/ruby-detect-running-implementation/index.html10
-rw-r--r--docs/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html10
-rw-r--r--docs/posts/2021-10-02/rust-where-are-primitive-types-from/index.html10
-rw-r--r--docs/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html10
-rw-r--r--docs/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html10
7 files changed, 21 insertions, 49 deletions
diff --git a/docs/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html b/docs/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html
index 16a98d7..d3a9114 100644
--- a/docs/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html
+++ b/docs/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html
@@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <title>[C&#43;&#43;] 属性構文の属性名にはキーワードが使える [[void]] [[for]] - REPL: Rest-Eat-Program Loop</title>
+ <title>[C&#43;&#43;] 属性構文の属性名にはキーワードが使える [[void]] [[for]] | REPL: Rest-Eat-Program Loop</title>
<meta name="description" content="この記事は Qiita から移植してきたものです。 元 URL: https://qiita.com/nsfisis/items/94090937bcf860cfa93b タイトル落ち。まずはこのコードを見て欲しい。 #include &lt;iostream&gt; [[alignas]] [[alignof]] [[and]] [[and_eq]] [[asm]] [[auto]] [[bitand]] [[bitor]] [[bool]] [[break]] [[case]] [[catch]] [[char]] [[char16_t]] [[char32_t]] [[class]] [[compl]] [[const]] [[const_cast]] [[constexpr]] [[continue]] [[decltype]] [[default]] [[delete]]">
<meta name="author" content="">
@@ -14,8 +14,7 @@
<link href="https://blog.nsfisis.dev/style.css" rel="stylesheet">
<link href="https://blog.nsfisis.dev/custom.css" rel="stylesheet">
- <link rel="apple-touch-icon" href="https://blog.nsfisis.dev/apple-touch-icon.png">
- <link rel="icon" href="https://blog.nsfisis.dev/favicon.ico">
+ <link rel="icon" href="https://blog.nsfisis.dev/favicon.svg">
<meta name="generator" content="Hugo 0.88.1" />
@@ -32,7 +31,7 @@
<article class="post-single">
<header class="post-header">
<h1 class="post-title">[C&#43;&#43;] 属性構文の属性名にはキーワードが使える [[void]] [[for]]</h1>
- <div class="post-meta">October 2, 2021</div>
+ <div class="post-meta">2021-10-02</div>
</header>
<div class="post-content"><p>この記事は Qiita から移植してきたものです。
元 URL: <a href="https://qiita.com/nsfisis/items/94090937bcf860cfa93b">https://qiita.com/nsfisis/items/94090937bcf860cfa93b</a></p>
@@ -110,14 +109,11 @@ $ clang++ &ndash;std=c++17 hoge.cpp</p>
<li><a href="https://blog.nsfisis.dev/tags/cpp17">cpp17</a></li>
</ul>
</footer>
-
</article></main>
<footer class="footer">
<span>&copy; 2022 <a href="https://blog.nsfisis.dev">REPL: Rest-Eat-Program Loop</a></span>
<span>&middot;</span>
<span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
- <span>&middot;</span>
- <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
</footer>
<script src="https://blog.nsfisis.dev/highlight.min.js"></script>
<script>
diff --git a/docs/posts/2021-10-02/python-unbound-local-error/index.html b/docs/posts/2021-10-02/python-unbound-local-error/index.html
index ac4b665..171005b 100644
--- a/docs/posts/2021-10-02/python-unbound-local-error/index.html
+++ b/docs/posts/2021-10-02/python-unbound-local-error/index.html
@@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <title>[Python] クロージャとUnboundLocalError: local variable &#39;x&#39; referenced before assignment - REPL: Rest-Eat-Program Loop</title>
+ <title>[Python] クロージャとUnboundLocalError: local variable &#39;x&#39; referenced before assignment | REPL: Rest-Eat-Program Loop</title>
<meta name="description" content="この記事は Qiita から移植してきたものです。 元 URL: https://qiita.com/nsfisis/items/5d733703afcb35bbf399 本記事は Python 3.7.6 の動作結果を元にして書かれている。 Python でクロージャを作ろうと、次のようなコードを書いた">
<meta name="author" content="">
@@ -14,8 +14,7 @@
<link href="https://blog.nsfisis.dev/style.css" rel="stylesheet">
<link href="https://blog.nsfisis.dev/custom.css" rel="stylesheet">
- <link rel="apple-touch-icon" href="https://blog.nsfisis.dev/apple-touch-icon.png">
- <link rel="icon" href="https://blog.nsfisis.dev/favicon.ico">
+ <link rel="icon" href="https://blog.nsfisis.dev/favicon.svg">
<meta name="generator" content="Hugo 0.88.1" />
@@ -32,7 +31,7 @@
<article class="post-single">
<header class="post-header">
<h1 class="post-title">[Python] クロージャとUnboundLocalError: local variable &#39;x&#39; referenced before assignment</h1>
- <div class="post-meta">October 2, 2021</div>
+ <div class="post-meta">2021-10-02</div>
</header>
<div class="post-content"><p>この記事は Qiita から移植してきたものです。
元 URL: <a href="https://qiita.com/nsfisis/items/5d733703afcb35bbf399">https://qiita.com/nsfisis/items/5d733703afcb35bbf399</a></p>
@@ -78,14 +77,11 @@ f()
<li><a href="https://blog.nsfisis.dev/tags/python3">python3</a></li>
</ul>
</footer>
-
</article></main>
<footer class="footer">
<span>&copy; 2022 <a href="https://blog.nsfisis.dev">REPL: Rest-Eat-Program Loop</a></span>
<span>&middot;</span>
<span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
- <span>&middot;</span>
- <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
</footer>
<script src="https://blog.nsfisis.dev/highlight.min.js"></script>
<script>
diff --git a/docs/posts/2021-10-02/ruby-detect-running-implementation/index.html b/docs/posts/2021-10-02/ruby-detect-running-implementation/index.html
index da00e65..723cc6a 100644
--- a/docs/posts/2021-10-02/ruby-detect-running-implementation/index.html
+++ b/docs/posts/2021-10-02/ruby-detect-running-implementation/index.html
@@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <title>[Ruby] 自身を実行している処理系の種類を判定する - REPL: Rest-Eat-Program Loop</title>
+ <title>[Ruby] 自身を実行している処理系の種類を判定する | REPL: Rest-Eat-Program Loop</title>
<meta name="description" content="この記事は Qiita から移植してきたものです。 元 URL: https://qiita.com/nsfisis/items/74d7ffeeebc51b20d791 Ruby という言語には複数の実装があるが、それらをスクリプト上からどのようにして programmatically に見分ければよいだろ">
<meta name="author" content="">
@@ -14,8 +14,7 @@
<link href="https://blog.nsfisis.dev/style.css" rel="stylesheet">
<link href="https://blog.nsfisis.dev/custom.css" rel="stylesheet">
- <link rel="apple-touch-icon" href="https://blog.nsfisis.dev/apple-touch-icon.png">
- <link rel="icon" href="https://blog.nsfisis.dev/favicon.ico">
+ <link rel="icon" href="https://blog.nsfisis.dev/favicon.svg">
<meta name="generator" content="Hugo 0.88.1" />
@@ -32,7 +31,7 @@
<article class="post-single">
<header class="post-header">
<h1 class="post-title">[Ruby] 自身を実行している処理系の種類を判定する</h1>
- <div class="post-meta">October 2, 2021</div>
+ <div class="post-meta">2021-10-02</div>
</header>
<div class="post-content"><p>この記事は Qiita から移植してきたものです。
元 URL: <a href="https://qiita.com/nsfisis/items/74d7ffeeebc51b20d791">https://qiita.com/nsfisis/items/74d7ffeeebc51b20d791</a></p>
@@ -106,14 +105,11 @@ jruby 1.2.0 (ruby 1.8.6 patchlevel 287) (2009-03-16 rev 9419) [i386-java]
<li><a href="https://blog.nsfisis.dev/tags/ruby">ruby</a></li>
</ul>
</footer>
-
</article></main>
<footer class="footer">
<span>&copy; 2022 <a href="https://blog.nsfisis.dev">REPL: Rest-Eat-Program Loop</a></span>
<span>&middot;</span>
<span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
- <span>&middot;</span>
- <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
</footer>
<script src="https://blog.nsfisis.dev/highlight.min.js"></script>
<script>
diff --git a/docs/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html b/docs/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html
index 9aef489..26564a8 100644
--- a/docs/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html
+++ b/docs/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html
@@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <title>[Ruby] then キーワードと case in - REPL: Rest-Eat-Program Loop</title>
+ <title>[Ruby] then キーワードと case in | REPL: Rest-Eat-Program Loop</title>
<meta name="description" content="この記事は Qiita から移植してきたものです。 元 URL: https://qiita.com/nsfisis/items/787a8cf888a304497223 TL; DR case - in によるパターンマッチング構文でも、case - when と同じように then が使える (場合によっては使">
<meta name="author" content="">
@@ -14,8 +14,7 @@
<link href="https://blog.nsfisis.dev/style.css" rel="stylesheet">
<link href="https://blog.nsfisis.dev/custom.css" rel="stylesheet">
- <link rel="apple-touch-icon" href="https://blog.nsfisis.dev/apple-touch-icon.png">
- <link rel="icon" href="https://blog.nsfisis.dev/favicon.ico">
+ <link rel="icon" href="https://blog.nsfisis.dev/favicon.svg">
<meta name="generator" content="Hugo 0.88.1" />
@@ -32,7 +31,7 @@
<article class="post-single">
<header class="post-header">
<h1 class="post-title">[Ruby] then キーワードと case in</h1>
- <div class="post-meta">October 2, 2021</div>
+ <div class="post-meta">2021-10-02</div>
</header>
<div class="post-content"><p>この記事は Qiita から移植してきたものです。
元 URL: <a href="https://qiita.com/nsfisis/items/787a8cf888a304497223">https://qiita.com/nsfisis/items/787a8cf888a304497223</a></p>
@@ -176,14 +175,11 @@ C系の <code>if</code> 後に来る <code>(</code>/<code>)</code> や、Python
<li><a href="https://blog.nsfisis.dev/tags/ruby3">ruby3</a></li>
</ul>
</footer>
-
</article></main>
<footer class="footer">
<span>&copy; 2022 <a href="https://blog.nsfisis.dev">REPL: Rest-Eat-Program Loop</a></span>
<span>&middot;</span>
<span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
- <span>&middot;</span>
- <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
</footer>
<script src="https://blog.nsfisis.dev/highlight.min.js"></script>
<script>
diff --git a/docs/posts/2021-10-02/rust-where-are-primitive-types-from/index.html b/docs/posts/2021-10-02/rust-where-are-primitive-types-from/index.html
index 7353b95..1946755 100644
--- a/docs/posts/2021-10-02/rust-where-are-primitive-types-from/index.html
+++ b/docs/posts/2021-10-02/rust-where-are-primitive-types-from/index.html
@@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <title>Rust のプリミティブ型はどこからやって来るか - REPL: Rest-Eat-Program Loop</title>
+ <title>Rust のプリミティブ型はどこからやって来るか | REPL: Rest-Eat-Program Loop</title>
<meta name="description" content="この記事は Qiita から移植してきたものです。 元 URL: https://qiita.com/nsfisis/items/9a429432258bbcd6c565 前置き Rust において、プリミティブ型の名前は予約語でない。したがって、次のコードは合法である。 #![allow(non_camel_case_types)] #![allow(dead_code)] struct">
<meta name="author" content="">
@@ -14,8 +14,7 @@
<link href="https://blog.nsfisis.dev/style.css" rel="stylesheet">
<link href="https://blog.nsfisis.dev/custom.css" rel="stylesheet">
- <link rel="apple-touch-icon" href="https://blog.nsfisis.dev/apple-touch-icon.png">
- <link rel="icon" href="https://blog.nsfisis.dev/favicon.ico">
+ <link rel="icon" href="https://blog.nsfisis.dev/favicon.svg">
<meta name="generator" content="Hugo 0.88.1" />
@@ -32,7 +31,7 @@
<article class="post-single">
<header class="post-header">
<h1 class="post-title">Rust のプリミティブ型はどこからやって来るか</h1>
- <div class="post-meta">October 2, 2021</div>
+ <div class="post-meta">2021-10-02</div>
</header>
<div class="post-content"><p>この記事は Qiita から移植してきたものです。
元 URL: <a href="https://qiita.com/nsfisis/items/9a429432258bbcd6c565">https://qiita.com/nsfisis/items/9a429432258bbcd6c565</a></p>
@@ -163,14 +162,11 @@ rustc_resolve/src/lib.rs: table.insert(sym::i128, Int(IntTy::I128));
<li><a href="https://blog.nsfisis.dev/tags/rust">rust</a></li>
</ul>
</footer>
-
</article></main>
<footer class="footer">
<span>&copy; 2022 <a href="https://blog.nsfisis.dev">REPL: Rest-Eat-Program Loop</a></span>
<span>&middot;</span>
<span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
- <span>&middot;</span>
- <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
</footer>
<script src="https://blog.nsfisis.dev/highlight.min.js"></script>
<script>
diff --git a/docs/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html b/docs/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html
index e9ce285..d2ff9e0 100644
--- a/docs/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html
+++ b/docs/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html
@@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <title>[Vim] autocmd events の BufWrite/BufWritePre の違い - REPL: Rest-Eat-Program Loop</title>
+ <title>[Vim] autocmd events の BufWrite/BufWritePre の違い | REPL: Rest-Eat-Program Loop</title>
<meta name="description" content="この記事は Qiita から移植してきたものです。 元 URL: https://qiita.com/nsfisis/items/79ab4db8564032de0b25 TL; DR 違いはない。ただのエイリアス。 調査記録 Vim の autocmd events には似通った名前のものがいくつかある。大抵は :help">
<meta name="author" content="">
@@ -14,8 +14,7 @@
<link href="https://blog.nsfisis.dev/style.css" rel="stylesheet">
<link href="https://blog.nsfisis.dev/custom.css" rel="stylesheet">
- <link rel="apple-touch-icon" href="https://blog.nsfisis.dev/apple-touch-icon.png">
- <link rel="icon" href="https://blog.nsfisis.dev/favicon.ico">
+ <link rel="icon" href="https://blog.nsfisis.dev/favicon.svg">
<meta name="generator" content="Hugo 0.88.1" />
@@ -32,7 +31,7 @@
<article class="post-single">
<header class="post-header">
<h1 class="post-title">[Vim] autocmd events の BufWrite/BufWritePre の違い</h1>
- <div class="post-meta">October 2, 2021</div>
+ <div class="post-meta">2021-10-02</div>
</header>
<div class="post-content"><p>この記事は Qiita から移植してきたものです。
元 URL: <a href="https://qiita.com/nsfisis/items/79ab4db8564032de0b25">https://qiita.com/nsfisis/items/79ab4db8564032de0b25</a></p>
@@ -113,14 +112,11 @@ FileEncoding Obsolete. It still works and is equivalent
<li><a href="https://blog.nsfisis.dev/tags/vim">vim</a></li>
</ul>
</footer>
-
</article></main>
<footer class="footer">
<span>&copy; 2022 <a href="https://blog.nsfisis.dev">REPL: Rest-Eat-Program Loop</a></span>
<span>&middot;</span>
<span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
- <span>&middot;</span>
- <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
</footer>
<script src="https://blog.nsfisis.dev/highlight.min.js"></script>
<script>
diff --git a/docs/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html b/docs/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html
index 06869fa..0ffdfda 100644
--- a/docs/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html
+++ b/docs/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html
@@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <title>Vimで選択した行の順番を入れ替える - REPL: Rest-Eat-Program Loop</title>
+ <title>Vimで選択した行の順番を入れ替える | REPL: Rest-Eat-Program Loop</title>
<meta name="description" content="この記事は Qiita から移植してきたものです。 元 URL: https://qiita.com/nsfisis/items/4fefb361d9a693803520 バージョン情報 :version の一部 VIM - Vi IMproved 8.2 (2019 Dec 12, compiled Jan 26 2020 11:30:30) macOS version Included patches: 1-148 Huge version without GUI. よく紹介されている手法 tac / tail tac">
<meta name="author" content="">
@@ -14,8 +14,7 @@
<link href="https://blog.nsfisis.dev/style.css" rel="stylesheet">
<link href="https://blog.nsfisis.dev/custom.css" rel="stylesheet">
- <link rel="apple-touch-icon" href="https://blog.nsfisis.dev/apple-touch-icon.png">
- <link rel="icon" href="https://blog.nsfisis.dev/favicon.ico">
+ <link rel="icon" href="https://blog.nsfisis.dev/favicon.svg">
<meta name="generator" content="Hugo 0.88.1" />
@@ -32,7 +31,7 @@
<article class="post-single">
<header class="post-header">
<h1 class="post-title">Vimで選択した行の順番を入れ替える</h1>
- <div class="post-meta">October 2, 2021</div>
+ <div class="post-meta">2021-10-02</div>
</header>
<div class="post-content"><p>この記事は Qiita から移植してきたものです。
元 URL: <a href="https://qiita.com/nsfisis/items/4fefb361d9a693803520">https://qiita.com/nsfisis/items/4fefb361d9a693803520</a></p>
@@ -129,14 +128,11 @@ executing autocommands |autocmd-searchpat|.
<li><a href="https://blog.nsfisis.dev/tags/vim">vim</a></li>
</ul>
</footer>
-
</article></main>
<footer class="footer">
<span>&copy; 2022 <a href="https://blog.nsfisis.dev">REPL: Rest-Eat-Program Loop</a></span>
<span>&middot;</span>
<span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
- <span>&middot;</span>
- <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
</footer>
<script src="https://blog.nsfisis.dev/highlight.min.js"></script>
<script>