diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-05-06 16:12:27 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-05-06 16:12:27 +0900 |
| commit | 21136ab8db7572c527726f93009b4b72bf00f9a9 (patch) | |
| tree | 34805d49d55af7ac58e5b87d224de43fb7819c73 | |
| parent | 83c58924bfd9f22ef4ff84fd3439535e4753ec53 (diff) | |
| download | nsfisis.dev-21136ab8db7572c527726f93009b4b72bf00f9a9.tar.gz nsfisis.dev-21136ab8db7572c527726f93009b4b72bf00f9a9.tar.zst nsfisis.dev-21136ab8db7572c527726f93009b4b72bf00f9a9.zip | |
feat(blog/nuldoc): implement codeblock filename
132 files changed, 232 insertions, 131 deletions
diff --git a/vhosts/blog/content/posts/2021-10-02/ruby-detect-running-implementation.dj b/vhosts/blog/content/posts/2021-10-02/ruby-detect-running-implementation.dj index 4c73580..653b7dc 100644 --- a/vhosts/blog/content/posts/2021-10-02/ruby-detect-running-implementation.dj +++ b/vhosts/blog/content/posts/2021-10-02/ruby-detect-running-implementation.dj @@ -65,6 +65,7 @@ CRuby) については執筆時現在 (2020/12/8) も `'ruby'` [mruby 該当部分のソース](https://github.com/mruby/mruby/blob/ed29d74bfd95362eaeb946fcf7e865d80346b62b/include/mruby/version.h#L32-L35) より引用: +{filename="version.h"} ```c /* * Ruby engine. diff --git a/vhosts/blog/content/posts/2021-10-02/ruby-then-keyword-and-case-in.dj b/vhosts/blog/content/posts/2021-10-02/ruby-then-keyword-and-case-in.dj index 7d8616f..82d6d9c 100644 --- a/vhosts/blog/content/posts/2021-10-02/ruby-then-keyword-and-case-in.dj +++ b/vhosts/blog/content/posts/2021-10-02/ruby-then-keyword-and-case-in.dj @@ -143,6 +143,7 @@ Ruby の場合、プログラマーが書きやすいよう改行でもって `t https://github.com/ruby/ruby/blob/221ca0f8281d39f0dfdfe13b2448875384bbf735/parse.y#L3961-L3986 +{filename="parse.y"} ```yacc p_case_body : keyword_in { diff --git a/vhosts/blog/content/posts/2021-10-02/rust-where-are-primitive-types-from.dj b/vhosts/blog/content/posts/2021-10-02/rust-where-are-primitive-types-from.dj index 212cd3d..9fa61d5 100644 --- a/vhosts/blog/content/posts/2021-10-02/rust-where-are-primitive-types-from.dj +++ b/vhosts/blog/content/posts/2021-10-02/rust-where-are-primitive-types-from.dj @@ -96,6 +96,7 @@ rustc_resolve/src/lib.rs: table.insert(sym::i128, Int(IntTy::I128)); `rustc_resolve` というのはいかにも名前解決を担いそうなクレート名である。該当箇所を見てみる。 +{filename="rustc_resolve/src/lib.rs"} ```rust /// Interns the names of the primitive types. /// diff --git a/vhosts/blog/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.dj b/vhosts/blog/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.dj index 37af679..a97337d 100644 --- a/vhosts/blog/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.dj +++ b/vhosts/blog/content/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre.dj @@ -53,6 +53,7 @@ vim と neovim のソースコードを調査した。 https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/autocmd.c#L85-L86 +{filename="src/autocmd.c"} ```c {"BufAdd", EVENT_BUFADD}, {"BufCreate", EVENT_BUFADD}, @@ -60,6 +61,7 @@ https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/aut https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/autocmd.c#L95-L97 +{filename="src/autocmd.c"} ```c {"BufRead", EVENT_BUFREADPOST}, {"BufReadCmd", EVENT_BUFREADCMD}, @@ -68,6 +70,7 @@ https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/aut https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/autocmd.c#L103-L105 +{filename="src/autocmd.c"} ```c {"BufWrite", EVENT_BUFWRITEPRE}, {"BufWritePost", EVENT_BUFWRITEPOST}, @@ -82,6 +85,7 @@ neovim の場合でも同様のマッピングが定義されているが、こ https://github.com/neovim/neovim/blob/71d4f5851f068eeb432af34850dddda8cc1c71e3/src/nvim/auevents.lua#L119-L124 +{filename="src/nvim/auevents.lua"} ```lua aliases = { BufCreate = 'BufAdd', @@ -94,6 +98,7 @@ aliases = { ところで、上では取り上げなかった `FileEncoding` だが、これは `:help FileEncoding` にしっかりと書いてある。 +{filename=":help FileEncoding"} ``` *FileEncoding* FileEncoding Obsolete. It still works and is equivalent diff --git a/vhosts/blog/content/posts/2022-04-09/phperkaigi-2022-tokens.dj b/vhosts/blog/content/posts/2022-04-09/phperkaigi-2022-tokens.dj index e0fe027..3956583 100644 --- a/vhosts/blog/content/posts/2022-04-09/phperkaigi-2022-tokens.dj +++ b/vhosts/blog/content/posts/2022-04-09/phperkaigi-2022-tokens.dj @@ -32,6 +32,7 @@ remark = "2問目、3問目の解説を追加、1問目に加筆" ソースコードはこちら。実行には PHP 8.1 以上が必要なので注意。 +{filename="brainf_ck.php"} ```php <?php @@ -246,6 +247,7 @@ Z コンビネータとして知られるものを使った (`$z`)。 ソースコードはこちら。実行には PHP 8.0 以上が必要なので注意。 +{filename="riddle.php"} ```php <?php @@ -402,6 +404,7 @@ echo "N = $n\n"; ソースコードはこちら。 +{filename="toquine.php"} ```php <?php diff --git a/vhosts/blog/content/posts/2023-10-02/compile-php-runtime-to-wasm.dj b/vhosts/blog/content/posts/2023-10-02/compile-php-runtime-to-wasm.dj index 0f74de7..f6cd2ec 100644 --- a/vhosts/blog/content/posts/2023-10-02/compile-php-runtime-to-wasm.dj +++ b/vhosts/blog/content/posts/2023-10-02/compile-php-runtime-to-wasm.dj @@ -42,6 +42,7 @@ remark = "fflush() の前に改行の出力が必要だった理由と正しい 先にこの記事のゴールを示しておく。これから示す手順のとおりに進めると、次のようなコードが動くようになる。 このコードはこのあと使うので、`index.mjs` の名前で保存しておくこと。 +{filename="index.mjs"} ```javascript import { readFile } from 'node:fs/promises'; import PHPWasm from './php-wasm.mjs' @@ -291,7 +292,7 @@ ENTRYPOINT ["node", "index.mjs"] `Dockerfile`、`php-wasm.c`、`index.mjs` を用意したら、Docker コンテナをビルドして実行する。 -```dockerfile +``` $ docker build -t php-wasm . $ echo 'echo "Hello, World!", PHP_EOL;' | docker run --rm -i php-wasm Hello, World! diff --git a/vhosts/blog/nuldoc-src/djot/djot2ndoc.ts b/vhosts/blog/nuldoc-src/djot/djot2ndoc.ts index 0707144..55b63a0 100644 --- a/vhosts/blog/nuldoc-src/djot/djot2ndoc.ts +++ b/vhosts/blog/nuldoc-src/djot/djot2ndoc.ts @@ -130,6 +130,9 @@ function processCodeBlock(node: DjotCodeBlock): Element { if (node.lang) { attributes.set("language", node.lang); } + if (node.attributes?.filename) { + attributes.set("filename", node.attributes.filename); + } return { kind: "element", name: "codeblock", diff --git a/vhosts/blog/nuldoc-src/djot/to_html.ts b/vhosts/blog/nuldoc-src/djot/to_html.ts index cc74e53..b64c3d9 100644 --- a/vhosts/blog/nuldoc-src/djot/to_html.ts +++ b/vhosts/blog/nuldoc-src/djot/to_html.ts @@ -366,6 +366,7 @@ async function transformAndHighlightCodeBlockElement(doc: Document) { } const language = n.attributes.get("language") || "text"; + const filename = n.attributes.get("filename"); const sourceCodeNode = n.children[0] as Text | RawHTML; const sourceCode = sourceCodeNode.content.trimEnd(); @@ -377,10 +378,33 @@ async function transformAndHighlightCodeBlockElement(doc: Document) { }, }); - sourceCodeNode.content = highlighted; - sourceCodeNode.raw = true; n.name = "div"; n.attributes.set("class", "codeblock"); n.attributes.delete("language"); + + if (filename) { + n.attributes.delete("filename"); + + n.children = [ + { + kind: "element", + name: "div", + attributes: new Map([["class", "filename"]]), + children: [{ + kind: "text", + content: filename, + raw: false, + }], + }, + { + kind: "text", + content: highlighted, + raw: true, + }, + ]; + } else { + sourceCodeNode.content = highlighted; + sourceCodeNode.raw = true; + } }); } diff --git a/vhosts/blog/public/404.html b/vhosts/blog/public/404.html index f6235ee..d7e8312 100644 --- a/vhosts/blog/public/404.html +++ b/vhosts/blog/public/404.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>Page Not Found|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/about/index.html b/vhosts/blog/public/about/index.html index ce001a9..4b6a45e 100644 --- a/vhosts/blog/public/about/index.html +++ b/vhosts/blog/public/about/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>About|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/index.html b/vhosts/blog/public/index.html index 55846da..4242013 100644 --- a/vhosts/blog/public/index.html +++ b/vhosts/blog/public/index.html @@ -14,7 +14,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2021-03-05/my-first-post/index.html b/vhosts/blog/public/posts/2021-03-05/my-first-post/index.html index 8be056a..d1e9396 100644 --- a/vhosts/blog/public/posts/2021-03-05/my-first-post/index.html +++ b/vhosts/blog/public/posts/2021-03-05/my-first-post/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>My First Post|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2021-03-30/phperkaigi-2021/index.html b/vhosts/blog/public/posts/2021-03-30/phperkaigi-2021/index.html index cfda82c..a82c833 100644 --- a/vhosts/blog/public/posts/2021-03-30/phperkaigi-2021/index.html +++ b/vhosts/blog/public/posts/2021-03-30/phperkaigi-2021/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2021|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html b/vhosts/blog/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html index 14727a2..77117fa 100644 --- a/vhosts/blog/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html +++ b/vhosts/blog/public/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【C++】 属性構文の属性名にはキーワードが使える|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2021-10-02/python-unbound-local-error/index.html b/vhosts/blog/public/posts/2021-10-02/python-unbound-local-error/index.html index f72898d..bf7d159 100644 --- a/vhosts/blog/public/posts/2021-10-02/python-unbound-local-error/index.html +++ b/vhosts/blog/public/posts/2021-10-02/python-unbound-local-error/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Python】 クロージャとUnboundLocalError: local variable 'x' referenced before assignment|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2021-10-02/ruby-detect-running-implementation/index.html b/vhosts/blog/public/posts/2021-10-02/ruby-detect-running-implementation/index.html index 92207b6..e954768 100644 --- a/vhosts/blog/public/posts/2021-10-02/ruby-detect-running-implementation/index.html +++ b/vhosts/blog/public/posts/2021-10-02/ruby-detect-running-implementation/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Ruby】 自身を実行している処理系の種類を判定する|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> @@ -117,6 +117,9 @@ <a href="https://github.com/mruby/mruby/blob/ed29d74bfd95362eaeb946fcf7e865d80346b62b/include/mruby/version.h#L32-L35" rel="noreferrer" target="_blank">mruby 該当部分のソース</a> より引用: </p> <div class="codeblock"> + <div class="filename"> + version.h + </div> <pre class="shiki github-light" style="background-color:#f5f5f5;color:#24292e" tabindex="0"><code><span class="line"><span style="color:#6A737D">/*</span></span> <span class="line"><span style="color:#6A737D"> * Ruby engine.</span></span> <span class="line"><span style="color:#6A737D"> */</span></span> diff --git a/vhosts/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html b/vhosts/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html index 864bc09..b8dfaad 100644 --- a/vhosts/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html +++ b/vhosts/blog/public/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Ruby】 then キーワードと case in|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> @@ -185,6 +185,9 @@ <a href="https://github.com/ruby/ruby/blob/221ca0f8281d39f0dfdfe13b2448875384bbf735/parse.y#L3961-L3986" rel="noreferrer" target="_blank">https://github.com/ruby/ruby/blob/221ca0f8281d39f0dfdfe13b2448875384bbf735/parse.y#L3961-L3986</a> </p> <div class="codeblock"> + <div class="filename"> + parse.y + </div> <pre class="shiki github-light" style="background-color:#f5f5f5;color:#24292e" tabindex="0"><code><span class="line"><span>p_case_body : keyword_in</span></span> <span class="line"><span>{</span></span> <span class="line"><span> SET_LEX_STATE(EXPR_BEG|EXPR_LABEL);</span></span> diff --git a/vhosts/blog/public/posts/2021-10-02/rust-where-are-primitive-types-from/index.html b/vhosts/blog/public/posts/2021-10-02/rust-where-are-primitive-types-from/index.html index 522aa15..dd2d495 100644 --- a/vhosts/blog/public/posts/2021-10-02/rust-where-are-primitive-types-from/index.html +++ b/vhosts/blog/public/posts/2021-10-02/rust-where-are-primitive-types-from/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>Rust のプリミティブ型はどこからやって来るか|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> @@ -141,6 +141,9 @@ <code>rustc_resolve</code> というのはいかにも名前解決を担いそうなクレート名である。該当箇所を見てみる。 </p> <div class="codeblock"> + <div class="filename"> + rustc_resolve/src/lib.rs + </div> <pre class="shiki github-light" style="background-color:#f5f5f5;color:#24292e" tabindex="0"><code><span class="line"><span style="color:#6A737D">/// Interns the names of the primitive types.</span></span> <span class="line"><span style="color:#6A737D">///</span></span> <span class="line"><span style="color:#6A737D">/// All other types are defined somewhere and possibly imported, but the primitive ones need</span></span> diff --git a/vhosts/blog/public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html b/vhosts/blog/public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html index 79e162e..684c935 100644 --- a/vhosts/blog/public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html +++ b/vhosts/blog/public/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Vim】 autocmd events の BufWrite/BufWritePre の違い|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> @@ -120,6 +120,9 @@ <a href="https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/autocmd.c#L85-L86" rel="noreferrer" target="_blank">https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/autocmd.c#L85-L86</a> </p> <div class="codeblock"> + <div class="filename"> + src/autocmd.c + </div> <pre class="shiki github-light" style="background-color:#f5f5f5;color:#24292e" tabindex="0"><code><span class="line"><span style="color:#24292E">{</span><span style="color:#032F62">"BufAdd"</span><span style="color:#24292E">, EVENT_BUFADD},</span></span> <span class="line"><span style="color:#24292E">{</span><span style="color:#032F62">"BufCreate"</span><span style="color:#24292E">, EVENT_BUFADD},</span></span></code></pre> </div> @@ -127,6 +130,9 @@ <a href="https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/autocmd.c#L95-L97" rel="noreferrer" target="_blank">https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/autocmd.c#L95-L97</a> </p> <div class="codeblock"> + <div class="filename"> + src/autocmd.c + </div> <pre class="shiki github-light" style="background-color:#f5f5f5;color:#24292e" tabindex="0"><code><span class="line"><span style="color:#24292E">{</span><span style="color:#032F62">"BufRead"</span><span style="color:#24292E">, EVENT_BUFREADPOST},</span></span> <span class="line"><span style="color:#24292E">{</span><span style="color:#032F62">"BufReadCmd"</span><span style="color:#24292E">, EVENT_BUFREADCMD},</span></span> <span class="line"><span style="color:#24292E">{</span><span style="color:#032F62">"BufReadPost"</span><span style="color:#24292E">, EVENT_BUFREADPOST},</span></span></code></pre> @@ -135,6 +141,9 @@ <a href="https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/autocmd.c#L103-L105" rel="noreferrer" target="_blank">https://github.com/vim/vim/blob/8e6be34338f13a6a625f19bcef82019c9adc65f2/src/autocmd.c#L103-L105</a> </p> <div class="codeblock"> + <div class="filename"> + src/autocmd.c + </div> <pre class="shiki github-light" style="background-color:#f5f5f5;color:#24292e" tabindex="0"><code><span class="line"><span style="color:#24292E">{</span><span style="color:#032F62">"BufWrite"</span><span style="color:#24292E">, EVENT_BUFWRITEPRE},</span></span> <span class="line"><span style="color:#24292E">{</span><span style="color:#032F62">"BufWritePost"</span><span style="color:#24292E">, EVENT_BUFWRITEPOST},</span></span> <span class="line"><span style="color:#24292E">{</span><span style="color:#032F62">"BufWritePre"</span><span style="color:#24292E">, EVENT_BUFWRITEPRE},</span></span></code></pre> @@ -149,6 +158,9 @@ <a href="https://github.com/neovim/neovim/blob/71d4f5851f068eeb432af34850dddda8cc1c71e3/src/nvim/auevents.lua#L119-L124" rel="noreferrer" target="_blank">https://github.com/neovim/neovim/blob/71d4f5851f068eeb432af34850dddda8cc1c71e3/src/nvim/auevents.lua#L119-L124</a> </p> <div class="codeblock"> + <div class="filename"> + src/nvim/auevents.lua + </div> <pre class="shiki github-light" style="background-color:#f5f5f5;color:#24292e" tabindex="0"><code><span class="line"><span style="color:#24292E">aliases </span><span style="color:#D73A49">=</span><span style="color:#24292E"> {</span></span> <span class="line"><span style="color:#24292E"> BufCreate </span><span style="color:#D73A49">=</span><span style="color:#032F62"> 'BufAdd'</span><span style="color:#24292E">,</span></span> <span class="line"><span style="color:#24292E"> BufRead </span><span style="color:#D73A49">=</span><span style="color:#032F62"> 'BufReadPost'</span><span style="color:#24292E">,</span></span> @@ -160,6 +172,9 @@ ところで、上では取り上げなかった <code>FileEncoding</code> だが、これは <code>:help FileEncoding</code> にしっかりと書いてある。 </p> <div class="codeblock"> + <div class="filename"> + :help FileEncoding + </div> <pre class="shiki github-light" style="background-color:#f5f5f5;color:#24292e" tabindex="0"><code><span class="line"><span> *FileEncoding*</span></span> <span class="line"><span>FileEncoding Obsolete. It still works and is equivalent</span></span> <span class="line"><span> to |EncodingChanged|.</span></span></code></pre> diff --git a/vhosts/blog/public/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html b/vhosts/blog/public/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html index 155526b..26c0793 100644 --- a/vhosts/blog/public/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html +++ b/vhosts/blog/public/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>Vimで選択した行の順番を入れ替える|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2022-04-09/phperkaigi-2022-tokens/index.html b/vhosts/blog/public/posts/2022-04-09/phperkaigi-2022-tokens/index.html index 0f2f8a4..519b697 100644 --- a/vhosts/blog/public/posts/2022-04-09/phperkaigi-2022-tokens/index.html +++ b/vhosts/blog/public/posts/2022-04-09/phperkaigi-2022-tokens/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2022 トークン問題の解説|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> @@ -81,6 +81,9 @@ ソースコードはこちら。実行には PHP 8.1 以上が必要なので注意。 </p> <div class="codeblock"> + <div class="filename"> + brainf_ck.php + </div> <pre class="shiki github-light" style="background-color:#f5f5f5;color:#24292e" tabindex="0"><code><span class="line"><span style="color:#D73A49"><?</span><span style="color:#005CC5">php</span></span> <span class="line"></span> <span class="line"><span style="color:#D73A49">declare</span><span style="color:#24292E">(</span><span style="color:#005CC5">strict_types</span><span style="color:#D73A49">=</span><span style="color:#005CC5">0O1</span><span style="color:#24292E">);</span></span> @@ -302,6 +305,9 @@ ソースコードはこちら。実行には PHP 8.0 以上が必要なので注意。 </p> <div class="codeblock"> + <div class="filename"> + riddle.php + </div> <pre class="shiki github-light" style="background-color:#f5f5f5;color:#24292e" tabindex="0"><code><span class="line"><span style="color:#D73A49"><?</span><span style="color:#005CC5">php</span></span> <span class="line"></span> <span class="line"><span style="color:#6A737D">/*********************************************************</span></span> @@ -468,6 +474,9 @@ ソースコードはこちら。 </p> <div class="codeblock"> + <div class="filename"> + toquine.php + </div> <pre class="shiki github-light" style="background-color:#f5f5f5;color:#24292e" tabindex="0"><code><span class="line"><span style="color:#D73A49"><?</span><span style="color:#005CC5">php</span></span> <span class="line"></span> <span class="line"><span style="color:#6A737D">// License: https://creativecommons.org/publicdomain/zero/1.0/</span></span> diff --git a/vhosts/blog/public/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html b/vhosts/blog/public/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html index 8b5f5e8..80568ee 100644 --- a/vhosts/blog/public/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html +++ b/vhosts/blog/public/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>term-banner: ターミナルにバナーを表示するツールを書いた|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2022-05-01/phperkaigi-2022/index.html b/vhosts/blog/public/posts/2022-05-01/phperkaigi-2022/index.html index 406c805..27990de 100644 --- a/vhosts/blog/public/posts/2022-05-01/phperkaigi-2022/index.html +++ b/vhosts/blog/public/posts/2022-05-01/phperkaigi-2022/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2022|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2022-08-27/php-conference-okinawa-code-golf/index.html b/vhosts/blog/public/posts/2022-08-27/php-conference-okinawa-code-golf/index.html index 8da0d4a..ed596fc 100644 --- a/vhosts/blog/public/posts/2022-08-27/php-conference-okinawa-code-golf/index.html +++ b/vhosts/blog/public/posts/2022-08-27/php-conference-okinawa-code-golf/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス沖縄で出題されたコードゴルフの問題を解いてみた|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2022-08-31/support-for-communty-is-employee-benefits/index.html b/vhosts/blog/public/posts/2022-08-31/support-for-communty-is-employee-benefits/index.html index f742353..193e48e 100644 --- a/vhosts/blog/public/posts/2022-08-31/support-for-communty-is-employee-benefits/index.html +++ b/vhosts/blog/public/posts/2022-08-31/support-for-communty-is-employee-benefits/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>弊社の PHP Foundation への寄付に寄せて|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html b/vhosts/blog/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html index a52e324..201d9ca 100644 --- a/vhosts/blog/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html +++ b/vhosts/blog/public/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【PHP】 fizzbuzz を書く。1行あたり2文字で。|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2022-10-23/phperkaigi-2023-unused-token-quiz-1/index.html b/vhosts/blog/public/posts/2022-10-23/phperkaigi-2023-unused-token-quiz-1/index.html index 632e965..b1987dd 100644 --- a/vhosts/blog/public/posts/2022-10-23/phperkaigi-2023-unused-token-quiz-1/index.html +++ b/vhosts/blog/public/posts/2022-10-23/phperkaigi-2023-unused-token-quiz-1/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023: ボツになったトークン問題 その 1|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2022-10-28/setup-server-for-this-site/index.html b/vhosts/blog/public/posts/2022-10-28/setup-server-for-this-site/index.html index 2922b0e..4b4fbde 100644 --- a/vhosts/blog/public/posts/2022-10-28/setup-server-for-this-site/index.html +++ b/vhosts/blog/public/posts/2022-10-28/setup-server-for-this-site/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【備忘録】 このサイト用の VPS をセットアップしたときのメモ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2022-11-19/phperkaigi-2023-unused-token-quiz-2/index.html b/vhosts/blog/public/posts/2022-11-19/phperkaigi-2023-unused-token-quiz-2/index.html index 52e4a8c..8642daf 100644 --- a/vhosts/blog/public/posts/2022-11-19/phperkaigi-2023-unused-token-quiz-2/index.html +++ b/vhosts/blog/public/posts/2022-11-19/phperkaigi-2023-unused-token-quiz-2/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023: ボツになったトークン問題 その 2|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2023-01-10/phperkaigi-2023-unused-token-quiz-3/index.html b/vhosts/blog/public/posts/2023-01-10/phperkaigi-2023-unused-token-quiz-3/index.html index f2c8233..5053c29 100644 --- a/vhosts/blog/public/posts/2023-01-10/phperkaigi-2023-unused-token-quiz-3/index.html +++ b/vhosts/blog/public/posts/2023-01-10/phperkaigi-2023-unused-token-quiz-3/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023: ボツになったトークン問題 その 3|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2023-03-10/rewrite-this-blog-generator/index.html b/vhosts/blog/public/posts/2023-03-10/rewrite-this-blog-generator/index.html index adc48e1..a10e654 100644 --- a/vhosts/blog/public/posts/2023-03-10/rewrite-this-blog-generator/index.html +++ b/vhosts/blog/public/posts/2023-03-10/rewrite-this-blog-generator/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>このブログのジェネレータを書き直した|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2023-04-01/implementation-of-minimal-png-image-encoder/index.html b/vhosts/blog/public/posts/2023-04-01/implementation-of-minimal-png-image-encoder/index.html index 877406e..32d586c 100644 --- a/vhosts/blog/public/posts/2023-04-01/implementation-of-minimal-png-image-encoder/index.html +++ b/vhosts/blog/public/posts/2023-04-01/implementation-of-minimal-png-image-encoder/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PNG 画像の最小構成エンコーダを実装する|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2023-04-04/phperkaigi-2023-report/index.html b/vhosts/blog/public/posts/2023-04-04/phperkaigi-2023-report/index.html index 28d29a4..21ae1e7 100644 --- a/vhosts/blog/public/posts/2023-04-04/phperkaigi-2023-report/index.html +++ b/vhosts/blog/public/posts/2023-04-04/phperkaigi-2023-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2023-06-25/phpconfuk-2023-report/index.html b/vhosts/blog/public/posts/2023-06-25/phpconfuk-2023-report/index.html index 30ef85e..3ddaf19 100644 --- a/vhosts/blog/public/posts/2023-06-25/phpconfuk-2023-report/index.html +++ b/vhosts/blog/public/posts/2023-06-25/phpconfuk-2023-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス福岡 2023 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2023-10-02/compile-php-runtime-to-wasm/index.html b/vhosts/blog/public/posts/2023-10-02/compile-php-runtime-to-wasm/index.html index 38ecf3f..6b59676 100644 --- a/vhosts/blog/public/posts/2023-10-02/compile-php-runtime-to-wasm/index.html +++ b/vhosts/blog/public/posts/2023-10-02/compile-php-runtime-to-wasm/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP の処理系を Emscripten で WebAssembly にコンパイルする|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> @@ -104,6 +104,9 @@ 先にこの記事のゴールを示しておく。これから示す手順のとおりに進めると、次のようなコードが動くようになる。 このコードはこのあと使うので、<code>index.mjs</code> の名前で保存しておくこと。 </p> <div class="codeblock"> + <div class="filename"> + index.mjs + </div> <pre class="shiki github-light" style="background-color:#f5f5f5;color:#24292e" tabindex="0"><code><span class="line"><span style="color:#D73A49">import</span><span style="color:#24292E"> { readFile } </span><span style="color:#D73A49">from</span><span style="color:#032F62"> 'node:fs/promises'</span><span style="color:#24292E">;</span></span> <span class="line"><span style="color:#D73A49">import</span><span style="color:#24292E"> PHPWasm </span><span style="color:#D73A49">from</span><span style="color:#032F62"> './php-wasm.mjs'</span></span> <span class="line"></span> @@ -357,12 +360,12 @@ <code>Dockerfile</code>、<code>php-wasm.c</code>、<code>index.mjs</code> を用意したら、Docker コンテナをビルドして実行する。 </p> <div class="codeblock"> - <pre class="shiki github-light" style="background-color:#f5f5f5;color:#24292e" tabindex="0"><code><span class="line"><span style="color:#24292E">$ docker build -t php-wasm .</span></span> -<span class="line"><span style="color:#24292E">$ echo </span><span style="color:#032F62">'echo "Hello, World!", PHP_EOL;'</span><span style="color:#24292E"> | docker run --rm -i php-wasm</span></span> -<span class="line"><span style="color:#24292E">Hello, World!</span></span> -<span class="line"></span> -<span class="line"></span> -<span class="line"><span style="color:#24292E">exit code: 0</span></span></code></pre> + <pre class="shiki github-light" style="background-color:#f5f5f5;color:#24292e" tabindex="0"><code><span class="line"><span>$ docker build -t php-wasm .</span></span> +<span class="line"><span>$ echo 'echo "Hello, World!", PHP_EOL;' | docker run --rm -i php-wasm</span></span> +<span class="line"><span>Hello, World!</span></span> +<span class="line"><span></span></span> +<span class="line"><span></span></span> +<span class="line"><span>exit code: 0</span></span></code></pre> </div> </section> <section id="section--outro"> diff --git a/vhosts/blog/public/posts/2023-10-13/i-entered-the-open-university-of-japan/index.html b/vhosts/blog/public/posts/2023-10-13/i-entered-the-open-university-of-japan/index.html index 09415c4..21749c0 100644 --- a/vhosts/blog/public/posts/2023-10-13/i-entered-the-open-university-of-japan/index.html +++ b/vhosts/blog/public/posts/2023-10-13/i-entered-the-open-university-of-japan/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>放送大学に入学しました|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2023-12-03/isucon-13/index.html b/vhosts/blog/public/posts/2023-12-03/isucon-13/index.html index 6a5b728..bcb3488 100644 --- a/vhosts/blog/public/posts/2023-12-03/isucon-13/index.html +++ b/vhosts/blog/public/posts/2023-12-03/isucon-13/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>ISUCON 13 に参加した|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2023-12-31/2023-reflections/index.html b/vhosts/blog/public/posts/2023-12-31/2023-reflections/index.html index 512aaa5..07e26b3 100644 --- a/vhosts/blog/public/posts/2023-12-31/2023-reflections/index.html +++ b/vhosts/blog/public/posts/2023-12-31/2023-reflections/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>2023年の振り返り|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-01-10/neovim-insert-namespace-declaration-to-empty-php-file/index.html b/vhosts/blog/public/posts/2024-01-10/neovim-insert-namespace-declaration-to-empty-php-file/index.html index 3ea4275..be71347 100644 --- a/vhosts/blog/public/posts/2024-01-10/neovim-insert-namespace-declaration-to-empty-php-file/index.html +++ b/vhosts/blog/public/posts/2024-01-10/neovim-insert-namespace-declaration-to-empty-php-file/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Neovim】 空の PHP ファイルに namespace 宣言を挿入する|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-02-03/install-wireguard-on-personal-server/index.html b/vhosts/blog/public/posts/2024-02-03/install-wireguard-on-personal-server/index.html index 876a1cd..0e4fb9a 100644 --- a/vhosts/blog/public/posts/2024-02-03/install-wireguard-on-personal-server/index.html +++ b/vhosts/blog/public/posts/2024-02-03/install-wireguard-on-personal-server/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【備忘録】 個人用サーバに WireGuard を導入する|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-02-10/yapcjapan-2024-report/index.html b/vhosts/blog/public/posts/2024-02-10/yapcjapan-2024-report/index.html index 8064807..cc4e71c 100644 --- a/vhosts/blog/public/posts/2024-02-10/yapcjapan-2024-report/index.html +++ b/vhosts/blog/public/posts/2024-02-10/yapcjapan-2024-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>YAPC::Hiroshima 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-02-22/phpkansai-2024-report/index.html b/vhosts/blog/public/posts/2024-02-22/phpkansai-2024-report/index.html index 379039b..7fa5b5f 100644 --- a/vhosts/blog/public/posts/2024-02-22/phpkansai-2024-report/index.html +++ b/vhosts/blog/public/posts/2024-02-22/phpkansai-2024-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPカンファレンス関西 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-03-17/phperkaigi-2024-report/index.html b/vhosts/blog/public/posts/2024-03-17/phperkaigi-2024-report/index.html index 58f1ed6..55e9c79 100644 --- a/vhosts/blog/public/posts/2024-03-17/phperkaigi-2024-report/index.html +++ b/vhosts/blog/public/posts/2024-03-17/phperkaigi-2024-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-03-20/my-bucket-list/index.html b/vhosts/blog/public/posts/2024-03-20/my-bucket-list/index.html index 99625f9..2ba72d8 100644 --- a/vhosts/blog/public/posts/2024-03-20/my-bucket-list/index.html +++ b/vhosts/blog/public/posts/2024-03-20/my-bucket-list/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>死ぬまでに作る自作○○一覧あるいは人生の TODO リスト|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-04-14/phpcon-odawara-2024-report/index.html b/vhosts/blog/public/posts/2024-04-14/phpcon-odawara-2024-report/index.html index a6171f7..cbd5f3d 100644 --- a/vhosts/blog/public/posts/2024-04-14/phpcon-odawara-2024-report/index.html +++ b/vhosts/blog/public/posts/2024-04-14/phpcon-odawara-2024-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス小田原 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-04-21/pipefail-option-in-gitlab-ci-cd/index.html b/vhosts/blog/public/posts/2024-04-21/pipefail-option-in-gitlab-ci-cd/index.html index a5c16d2..7a31a15 100644 --- a/vhosts/blog/public/posts/2024-04-21/pipefail-option-in-gitlab-ci-cd/index.html +++ b/vhosts/blog/public/posts/2024-04-21/pipefail-option-in-gitlab-ci-cd/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【GitLab】 GitLab CI/CD 上での bash/sh は pipefail が有効になっている|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-04-29/zsh-file-completion-for-composer-custom-commands/index.html b/vhosts/blog/public/posts/2024-04-29/zsh-file-completion-for-composer-custom-commands/index.html index 0a718de..69ca8e5 100644 --- a/vhosts/blog/public/posts/2024-04-29/zsh-file-completion-for-composer-custom-commands/index.html +++ b/vhosts/blog/public/posts/2024-04-29/zsh-file-completion-for-composer-custom-commands/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Zsh】 Composer のカスタムコマンドに対する Zsh 補完で引数にファイルを補完させる|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-05-11/phpconkagawa-2024-report/index.html b/vhosts/blog/public/posts/2024-05-11/phpconkagawa-2024-report/index.html index a5ad40d..8fb1c5a 100644 --- a/vhosts/blog/public/posts/2024-05-11/phpconkagawa-2024-report/index.html +++ b/vhosts/blog/public/posts/2024-05-11/phpconkagawa-2024-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス香川 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-06-19/scalamatsuri-2024-report/index.html b/vhosts/blog/public/posts/2024-06-19/scalamatsuri-2024-report/index.html index 110057c..3256296 100644 --- a/vhosts/blog/public/posts/2024-06-19/scalamatsuri-2024-report/index.html +++ b/vhosts/blog/public/posts/2024-06-19/scalamatsuri-2024-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>ScalaMatsuri 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-07-19/reparojson-fix-only-json-formatter/index.html b/vhosts/blog/public/posts/2024-07-19/reparojson-fix-only-json-formatter/index.html index 38a52e9..66613ee 100644 --- a/vhosts/blog/public/posts/2024-07-19/reparojson-fix-only-json-formatter/index.html +++ b/vhosts/blog/public/posts/2024-07-19/reparojson-fix-only-json-formatter/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>reparojson: 文法エラーを直すだけの JSON フォーマッタを作った|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-08-19/go-template-access-outer-scope-pipeline-within-with-or-range/index.html b/vhosts/blog/public/posts/2024-08-19/go-template-access-outer-scope-pipeline-within-with-or-range/index.html index 4cff735..39517f9 100644 --- a/vhosts/blog/public/posts/2024-08-19/go-template-access-outer-scope-pipeline-within-with-or-range/index.html +++ b/vhosts/blog/public/posts/2024-08-19/go-template-access-outer-scope-pipeline-within-with-or-range/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Go】 text/template の with や range の内側から外側の "." にアクセスする|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-09-28/mncore-challenge-1/index.html b/vhosts/blog/public/posts/2024-09-28/mncore-challenge-1/index.html index b1df511..1c53c21 100644 --- a/vhosts/blog/public/posts/2024-09-28/mncore-challenge-1/index.html +++ b/vhosts/blog/public/posts/2024-09-28/mncore-challenge-1/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>MN-Core Challenge #1 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-12-04/cohackpp-report/index.html b/vhosts/blog/public/posts/2024-12-04/cohackpp-report/index.html index 8cf895f..ded1a18 100644 --- a/vhosts/blog/public/posts/2024-12-04/cohackpp-report/index.html +++ b/vhosts/blog/public/posts/2024-12-04/cohackpp-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>紅白ぺぱ合戦に参加&LTしました|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2024-12-33/2024-reflections/index.html b/vhosts/blog/public/posts/2024-12-33/2024-reflections/index.html index 2591d77..e8a6151 100644 --- a/vhosts/blog/public/posts/2024-12-33/2024-reflections/index.html +++ b/vhosts/blog/public/posts/2024-12-33/2024-reflections/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>2024年の振り返り|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2025-01-08/phperkaigi-2023-tokens-q1/index.html b/vhosts/blog/public/posts/2025-01-08/phperkaigi-2023-tokens-q1/index.html index 84ba072..a9fc412 100644 --- a/vhosts/blog/public/posts/2025-01-08/phperkaigi-2023-tokens-q1/index.html +++ b/vhosts/blog/public/posts/2025-01-08/phperkaigi-2023-tokens-q1/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023 トークン問題解説 (1/5)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html b/vhosts/blog/public/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html index d24153e..ee279bc 100644 --- a/vhosts/blog/public/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html +++ b/vhosts/blog/public/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【YAML】YAML 1.1 と YAML 1.2 の主な破壊的変更|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2025-02-24/phpcon-nagoya-2025-report/index.html b/vhosts/blog/public/posts/2025-02-24/phpcon-nagoya-2025-report/index.html index 32e6256..702d7e6 100644 --- a/vhosts/blog/public/posts/2025-02-24/phpcon-nagoya-2025-report/index.html +++ b/vhosts/blog/public/posts/2025-02-24/phpcon-nagoya-2025-report/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス名古屋 2025 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2025-03-27/zip-function-like-command-paste-command/index.html b/vhosts/blog/public/posts/2025-03-27/zip-function-like-command-paste-command/index.html index eddb2e7..43fe30d 100644 --- a/vhosts/blog/public/posts/2025-03-27/zip-function-like-command-paste-command/index.html +++ b/vhosts/blog/public/posts/2025-03-27/zip-function-like-command-paste-command/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>zip 関数のようなコマンド paste|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2025-03-28/http-1-1-send-multiple-same-headers/index.html b/vhosts/blog/public/posts/2025-03-28/http-1-1-send-multiple-same-headers/index.html index 138d169..e284508 100644 --- a/vhosts/blog/public/posts/2025-03-28/http-1-1-send-multiple-same-headers/index.html +++ b/vhosts/blog/public/posts/2025-03-28/http-1-1-send-multiple-same-headers/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【HTTP】HTTP/1.1 で同じヘッダを2回送るとどうなるか|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2025-04-20/trick-2025-most-ruby-on-ruby-award/index.html b/vhosts/blog/public/posts/2025-04-20/trick-2025-most-ruby-on-ruby-award/index.html index 868546f..11a80bd 100644 --- a/vhosts/blog/public/posts/2025-04-20/trick-2025-most-ruby-on-ruby-award/index.html +++ b/vhosts/blog/public/posts/2025-04-20/trick-2025-most-ruby-on-ruby-award/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>RubyKaigi 2025 の TRICK で入賞した|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2025-04-24/composer-patches-v2-does-not-require-gnu-patch-even-on-macos/index.html b/vhosts/blog/public/posts/2025-04-24/composer-patches-v2-does-not-require-gnu-patch-even-on-macos/index.html index 7221f10..d29bebb 100644 --- a/vhosts/blog/public/posts/2025-04-24/composer-patches-v2-does-not-require-gnu-patch-even-on-macos/index.html +++ b/vhosts/blog/public/posts/2025-04-24/composer-patches-v2-does-not-require-gnu-patch-even-on-macos/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Composer】 composer-patches v2 では macOS でも GNU patch のインストールが不要になる (予定)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/2025-05-05/make-tiny-self-hosted-c-compiler/index.html b/vhosts/blog/public/posts/2025-05-05/make-tiny-self-hosted-c-compiler/index.html index 308c821..c5178d5 100644 --- a/vhosts/blog/public/posts/2025-05-05/make-tiny-self-hosted-c-compiler/index.html +++ b/vhosts/blog/public/posts/2025-05-05/make-tiny-self-hosted-c-compiler/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>セルフホスト可能な C コンパイラを作った|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/posts/index.html b/vhosts/blog/public/posts/index.html index f56839e..c4f3f0d 100644 --- a/vhosts/blog/public/posts/index.html +++ b/vhosts/blog/public/posts/index.html @@ -14,7 +14,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/posts/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>投稿一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/slides/2023-01-18/phpstudy-tokyo-148/index.html b/vhosts/blog/public/slides/2023-01-18/phpstudy-tokyo-148/index.html index fdc70f0..b876246 100644 --- a/vhosts/blog/public/slides/2023-01-18/phpstudy-tokyo-148/index.html +++ b/vhosts/blog/public/slides/2023-01-18/phpstudy-tokyo-148/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第148 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2023-02-15/phpstudy-tokyo-149/index.html b/vhosts/blog/public/slides/2023-02-15/phpstudy-tokyo-149/index.html index ee9eeb4..a14bc7c 100644 --- a/vhosts/blog/public/slides/2023-02-15/phpstudy-tokyo-149/index.html +++ b/vhosts/blog/public/slides/2023-02-15/phpstudy-tokyo-149/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第149 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2023-03-15/phpstudy-tokyo-150/index.html b/vhosts/blog/public/slides/2023-03-15/phpstudy-tokyo-150/index.html index 956cf61..5b417fd 100644 --- a/vhosts/blog/public/slides/2023-03-15/phpstudy-tokyo-150/index.html +++ b/vhosts/blog/public/slides/2023-03-15/phpstudy-tokyo-150/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第150 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2023-03-24/phperkaigi-2023/index.html b/vhosts/blog/public/slides/2023-03-24/phperkaigi-2023/index.html index bf047e5..9bb1a5e 100644 --- a/vhosts/blog/public/slides/2023-03-24/phperkaigi-2023/index.html +++ b/vhosts/blog/public/slides/2023-03-24/phperkaigi-2023/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023 (レギュラートーク)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2023-03-25/phperkaigi-2023-tokens/index.html b/vhosts/blog/public/slides/2023-03-25/phperkaigi-2023-tokens/index.html index 0285583..9e7561b 100644 --- a/vhosts/blog/public/slides/2023-03-25/phperkaigi-2023-tokens/index.html +++ b/vhosts/blog/public/slides/2023-03-25/phperkaigi-2023-tokens/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023 (トークン解説セッション)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2023-04-12/phpstudy-tokyo-151/index.html b/vhosts/blog/public/slides/2023-04-12/phpstudy-tokyo-151/index.html index cdaa3a9..bd539a8 100644 --- a/vhosts/blog/public/slides/2023-04-12/phpstudy-tokyo-151/index.html +++ b/vhosts/blog/public/slides/2023-04-12/phpstudy-tokyo-151/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第151 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2023-06-21/phpstudy-tokyo-153/index.html b/vhosts/blog/public/slides/2023-06-21/phpstudy-tokyo-153/index.html index e315761..d1fea3e 100644 --- a/vhosts/blog/public/slides/2023-06-21/phpstudy-tokyo-153/index.html +++ b/vhosts/blog/public/slides/2023-06-21/phpstudy-tokyo-153/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第153 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2023-06-23/phpconfuk-2023-eve/index.html b/vhosts/blog/public/slides/2023-06-23/phpconfuk-2023-eve/index.html index 668c331..09503af 100644 --- a/vhosts/blog/public/slides/2023-06-23/phpconfuk-2023-eve/index.html +++ b/vhosts/blog/public/slides/2023-06-23/phpconfuk-2023-eve/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス福岡 2023 前夜祭 (非公式) (レギュラートーク)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2023-07-26/phpstudy-tokyo-154/index.html b/vhosts/blog/public/slides/2023-07-26/phpstudy-tokyo-154/index.html index 8b9004c..e886e66 100644 --- a/vhosts/blog/public/slides/2023-07-26/phpstudy-tokyo-154/index.html +++ b/vhosts/blog/public/slides/2023-07-26/phpstudy-tokyo-154/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第154 回 (レギュラートーク)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2023-08-24/phpstudy-tokyo-155/index.html b/vhosts/blog/public/slides/2023-08-24/phpstudy-tokyo-155/index.html index a6b7bcc..88da163 100644 --- a/vhosts/blog/public/slides/2023-08-24/phpstudy-tokyo-155/index.html +++ b/vhosts/blog/public/slides/2023-08-24/phpstudy-tokyo-155/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第155 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2023-10-25/phpstudy-tokyo-157/index.html b/vhosts/blog/public/slides/2023-10-25/phpstudy-tokyo-157/index.html index 9fadb91..c597722 100644 --- a/vhosts/blog/public/slides/2023-10-25/phpstudy-tokyo-157/index.html +++ b/vhosts/blog/public/slides/2023-10-25/phpstudy-tokyo-157/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第157 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2024-01-24/phpstudy-tokyo-160/index.html b/vhosts/blog/public/slides/2024-01-24/phpstudy-tokyo-160/index.html index 781eea0..94bbb8d 100644 --- a/vhosts/blog/public/slides/2024-01-24/phpstudy-tokyo-160/index.html +++ b/vhosts/blog/public/slides/2024-01-24/phpstudy-tokyo-160/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第160 回 (レギュラートーク)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2024-03-08/phperkaigi-2024/index.html b/vhosts/blog/public/slides/2024-03-08/phperkaigi-2024/index.html index a1aac52..b3db6a8 100644 --- a/vhosts/blog/public/slides/2024-03-08/phperkaigi-2024/index.html +++ b/vhosts/blog/public/slides/2024-03-08/phperkaigi-2024/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2024 (レギュラートーク (40分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2024-03-15/ya8-2024/index.html b/vhosts/blog/public/slides/2024-03-15/ya8-2024/index.html index 22fb801..d8d573f 100644 --- a/vhosts/blog/public/slides/2024-03-15/ya8-2024/index.html +++ b/vhosts/blog/public/slides/2024-03-15/ya8-2024/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>Ya8 2024 (レギュラートーク (60分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2024-04-13/phpcon-odawara-2024/index.html b/vhosts/blog/public/slides/2024-04-13/phpcon-odawara-2024/index.html index 991f35b..d6c6658 100644 --- a/vhosts/blog/public/slides/2024-04-13/phpcon-odawara-2024/index.html +++ b/vhosts/blog/public/slides/2024-04-13/phpcon-odawara-2024/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス小田原 2024 (レギュラートーク (15分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2024-04-25/phpstudy-tokyo-163/index.html b/vhosts/blog/public/slides/2024-04-25/phpstudy-tokyo-163/index.html index 9ad4679..077ed5e 100644 --- a/vhosts/blog/public/slides/2024-04-25/phpstudy-tokyo-163/index.html +++ b/vhosts/blog/public/slides/2024-04-25/phpstudy-tokyo-163/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第163回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2024-07-18/phpstudy-tokyo-166/index.html b/vhosts/blog/public/slides/2024-07-18/phpstudy-tokyo-166/index.html index e053d04..1e3a589 100644 --- a/vhosts/blog/public/slides/2024-07-18/phpstudy-tokyo-166/index.html +++ b/vhosts/blog/public/slides/2024-07-18/phpstudy-tokyo-166/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第166回 (レギュラートーク (20分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2024-10-30/phpstudy-tokyo-169/index.html b/vhosts/blog/public/slides/2024-10-30/phpstudy-tokyo-169/index.html index c021d65..bc98adc 100644 --- a/vhosts/blog/public/slides/2024-10-30/phpstudy-tokyo-169/index.html +++ b/vhosts/blog/public/slides/2024-10-30/phpstudy-tokyo-169/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP 勉強会@東京 第169回 (レギュラートーク (20分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2024-11-30/cohackpp/index.html b/vhosts/blog/public/slides/2024-11-30/cohackpp/index.html index 5b54ab4..4ad322e 100644 --- a/vhosts/blog/public/slides/2024-11-30/cohackpp/index.html +++ b/vhosts/blog/public/slides/2024-11-30/cohackpp/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>紅白ぺぱ合戦 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2025-02-22/phpcon-nagoya-2025/index.html b/vhosts/blog/public/slides/2025-02-22/phpcon-nagoya-2025/index.html index ba9ebcb..6ce7eaa 100644 --- a/vhosts/blog/public/slides/2025-02-22/phpcon-nagoya-2025/index.html +++ b/vhosts/blog/public/slides/2025-02-22/phpcon-nagoya-2025/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス名古屋 2025 (レギュラートーク (30分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2025-03-23/phperkaigi-2025/index.html b/vhosts/blog/public/slides/2025-03-23/phperkaigi-2025/index.html index 7dd9878..6f68dff 100644 --- a/vhosts/blog/public/slides/2025-03-23/phperkaigi-2025/index.html +++ b/vhosts/blog/public/slides/2025-03-23/phperkaigi-2025/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2025 (レギュラートーク (40分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/2025-04-12/phpcon-odawara-2025/index.html b/vhosts/blog/public/slides/2025-04-12/phpcon-odawara-2025/index.html index b81fba4..2541385 100644 --- a/vhosts/blog/public/slides/2025-04-12/phpcon-odawara-2025/index.html +++ b/vhosts/blog/public/slides/2025-04-12/phpcon-odawara-2025/index.html @@ -14,7 +14,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス小田原 2025 (レギュラートーク (20分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="single"> <header class="header"> diff --git a/vhosts/blog/public/slides/index.html b/vhosts/blog/public/slides/index.html index 03c46bf..616669f 100644 --- a/vhosts/blog/public/slides/index.html +++ b/vhosts/blog/public/slides/index.html @@ -14,7 +14,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/slides/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>スライド一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/style.css b/vhosts/blog/public/style.css index dd1e6c1..71c69f9 100644 --- a/vhosts/blog/public/style.css +++ b/vhosts/blog/public/style.css @@ -100,6 +100,19 @@ a:hover { .codeblock { background-color: #f5f5f5; + position: relative; + margin: 1rem 0; + border-radius: 3px; + overflow: hidden; +} + +.codeblock .filename { + background-color: #e0e0e0; + color: #333; + font-family: Monaco, Consolas, 'Courier New', Courier, monospace; + font-size: 0.9rem; + padding: 0.5rem 1rem; + border-bottom: 1px solid #ccc; } pre { diff --git a/vhosts/blog/public/tags/c/index.html b/vhosts/blog/public/tags/c/index.html index 613856c..9b6e955 100644 --- a/vhosts/blog/public/tags/c/index.html +++ b/vhosts/blog/public/tags/c/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/c/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「C」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/ci-cd/index.html b/vhosts/blog/public/tags/ci-cd/index.html index fd27151..c19d8b9 100644 --- a/vhosts/blog/public/tags/ci-cd/index.html +++ b/vhosts/blog/public/tags/ci-cd/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/ci-cd/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「CI/CD」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/cohackpp/index.html b/vhosts/blog/public/tags/cohackpp/index.html index cf6d407..68237ac 100644 --- a/vhosts/blog/public/tags/cohackpp/index.html +++ b/vhosts/blog/public/tags/cohackpp/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/cohackpp/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「紅白ぺぱ合戦」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/composer/index.html b/vhosts/blog/public/tags/composer/index.html index 558bb80..b348891 100644 --- a/vhosts/blog/public/tags/composer/index.html +++ b/vhosts/blog/public/tags/composer/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/composer/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Composer」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/conference/index.html b/vhosts/blog/public/tags/conference/index.html index d6278d7..c60b2d5 100644 --- a/vhosts/blog/public/tags/conference/index.html +++ b/vhosts/blog/public/tags/conference/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/conference/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「カンファレンス」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/cpp/index.html b/vhosts/blog/public/tags/cpp/index.html index fb2b46f..d4eb074 100644 --- a/vhosts/blog/public/tags/cpp/index.html +++ b/vhosts/blog/public/tags/cpp/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/cpp/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「C++」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/cpp17/index.html b/vhosts/blog/public/tags/cpp17/index.html index cca1b64..d823766 100644 --- a/vhosts/blog/public/tags/cpp17/index.html +++ b/vhosts/blog/public/tags/cpp17/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/cpp17/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「C++ 17」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/gitlab/index.html b/vhosts/blog/public/tags/gitlab/index.html index bfed9d3..edb598a 100644 --- a/vhosts/blog/public/tags/gitlab/index.html +++ b/vhosts/blog/public/tags/gitlab/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/gitlab/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「GitLab」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/go/index.html b/vhosts/blog/public/tags/go/index.html index ffaa867..d4fda9d 100644 --- a/vhosts/blog/public/tags/go/index.html +++ b/vhosts/blog/public/tags/go/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/go/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Go」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/http/index.html b/vhosts/blog/public/tags/http/index.html index 86ae91c..e189a3e 100644 --- a/vhosts/blog/public/tags/http/index.html +++ b/vhosts/blog/public/tags/http/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/http/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「HTTP」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/index.html b/vhosts/blog/public/tags/index.html index c42b15a..56c7f4f 100644 --- a/vhosts/blog/public/tags/index.html +++ b/vhosts/blog/public/tags/index.html @@ -13,7 +13,7 @@ <meta property="og:locale" content="ja_JP"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/isucon/index.html b/vhosts/blog/public/tags/isucon/index.html index 89df15b..5de22c5 100644 --- a/vhosts/blog/public/tags/isucon/index.html +++ b/vhosts/blog/public/tags/isucon/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/isucon/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「ISUCON」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/macos/index.html b/vhosts/blog/public/tags/macos/index.html index 3fe1405..e5142c4 100644 --- a/vhosts/blog/public/tags/macos/index.html +++ b/vhosts/blog/public/tags/macos/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/macos/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「macOS」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/mncore-challenge/index.html b/vhosts/blog/public/tags/mncore-challenge/index.html index 67cf508..1ec5750 100644 --- a/vhosts/blog/public/tags/mncore-challenge/index.html +++ b/vhosts/blog/public/tags/mncore-challenge/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/mncore-challenge/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「MN-Core Challenge」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/neovim/index.html b/vhosts/blog/public/tags/neovim/index.html index 3738b92..c1eb3d1 100644 --- a/vhosts/blog/public/tags/neovim/index.html +++ b/vhosts/blog/public/tags/neovim/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/neovim/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Neovim」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/note-to-self/index.html b/vhosts/blog/public/tags/note-to-self/index.html index 9141313..e2becd4 100644 --- a/vhosts/blog/public/tags/note-to-self/index.html +++ b/vhosts/blog/public/tags/note-to-self/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/note-to-self/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「備忘録」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/ouj/index.html b/vhosts/blog/public/tags/ouj/index.html index 3a73994..d9c2cb0 100644 --- a/vhosts/blog/public/tags/ouj/index.html +++ b/vhosts/blog/public/tags/ouj/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/ouj/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「放送大学」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/perl/index.html b/vhosts/blog/public/tags/perl/index.html index 588b621..37cb824 100644 --- a/vhosts/blog/public/tags/perl/index.html +++ b/vhosts/blog/public/tags/perl/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/perl/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Perl」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/php/index.html b/vhosts/blog/public/tags/php/index.html index 678b682..354f383 100644 --- a/vhosts/blog/public/tags/php/index.html +++ b/vhosts/blog/public/tags/php/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/php/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/phpcon-nagoya/index.html b/vhosts/blog/public/tags/phpcon-nagoya/index.html index ed5104d..4ee4edb 100644 --- a/vhosts/blog/public/tags/phpcon-nagoya/index.html +++ b/vhosts/blog/public/tags/phpcon-nagoya/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpcon-nagoya/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス名古屋」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/phpcon-odawara/index.html b/vhosts/blog/public/tags/phpcon-odawara/index.html index 774d8f7..ad80bf4 100644 --- a/vhosts/blog/public/tags/phpcon-odawara/index.html +++ b/vhosts/blog/public/tags/phpcon-odawara/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpcon-odawara/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス小田原」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/phpconfuk/index.html b/vhosts/blog/public/tags/phpconfuk/index.html index 6c8f663..d4f3853 100644 --- a/vhosts/blog/public/tags/phpconfuk/index.html +++ b/vhosts/blog/public/tags/phpconfuk/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpconfuk/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス福岡」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/phpconkagawa/index.html b/vhosts/blog/public/tags/phpconkagawa/index.html index 6021e10..de74c48 100644 --- a/vhosts/blog/public/tags/phpconkagawa/index.html +++ b/vhosts/blog/public/tags/phpconkagawa/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpconkagawa/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス香川」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/phpconokinawa/index.html b/vhosts/blog/public/tags/phpconokinawa/index.html index d37f80e..253edbc 100644 --- a/vhosts/blog/public/tags/phpconokinawa/index.html +++ b/vhosts/blog/public/tags/phpconokinawa/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpconokinawa/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス沖縄」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/phperkaigi/index.html b/vhosts/blog/public/tags/phperkaigi/index.html index 228c1ba..41cd34a 100644 --- a/vhosts/blog/public/tags/phperkaigi/index.html +++ b/vhosts/blog/public/tags/phperkaigi/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phperkaigi/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHPerKaigi」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/phpkansai/index.html b/vhosts/blog/public/tags/phpkansai/index.html index a63f6b5..3ab71ce 100644 --- a/vhosts/blog/public/tags/phpkansai/index.html +++ b/vhosts/blog/public/tags/phpkansai/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpkansai/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス関西」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/phpstudy-tokyo/index.html b/vhosts/blog/public/tags/phpstudy-tokyo/index.html index 99fbff6..d9f159a 100644 --- a/vhosts/blog/public/tags/phpstudy-tokyo/index.html +++ b/vhosts/blog/public/tags/phpstudy-tokyo/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpstudy-tokyo/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP 勉強会@東京」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/piet/index.html b/vhosts/blog/public/tags/piet/index.html index b2c5644..62f1684 100644 --- a/vhosts/blog/public/tags/piet/index.html +++ b/vhosts/blog/public/tags/piet/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/piet/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Piet」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/python/index.html b/vhosts/blog/public/tags/python/index.html index 84d4cb8..565b993 100644 --- a/vhosts/blog/public/tags/python/index.html +++ b/vhosts/blog/public/tags/python/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/python/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Python」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/python3/index.html b/vhosts/blog/public/tags/python3/index.html index 5569079..b340a4a 100644 --- a/vhosts/blog/public/tags/python3/index.html +++ b/vhosts/blog/public/tags/python3/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/python3/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Python 3」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/ruby/index.html b/vhosts/blog/public/tags/ruby/index.html index 6d193a5..fe07901 100644 --- a/vhosts/blog/public/tags/ruby/index.html +++ b/vhosts/blog/public/tags/ruby/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/ruby/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Ruby」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/ruby3/index.html b/vhosts/blog/public/tags/ruby3/index.html index 0d5ff83..5b0024a 100644 --- a/vhosts/blog/public/tags/ruby3/index.html +++ b/vhosts/blog/public/tags/ruby3/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/ruby3/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Ruby 3」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/rubykaigi/index.html b/vhosts/blog/public/tags/rubykaigi/index.html index 7f88f21..59605dc 100644 --- a/vhosts/blog/public/tags/rubykaigi/index.html +++ b/vhosts/blog/public/tags/rubykaigi/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/rubykaigi/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「RubyKaigi」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/rust/index.html b/vhosts/blog/public/tags/rust/index.html index 0d06fbe..8c7b175 100644 --- a/vhosts/blog/public/tags/rust/index.html +++ b/vhosts/blog/public/tags/rust/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/rust/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Rust」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/scala/index.html b/vhosts/blog/public/tags/scala/index.html index 04df330..95f609d 100644 --- a/vhosts/blog/public/tags/scala/index.html +++ b/vhosts/blog/public/tags/scala/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/scala/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Scala」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/scalamatsuri/index.html b/vhosts/blog/public/tags/scalamatsuri/index.html index ffe779c..4967780 100644 --- a/vhosts/blog/public/tags/scalamatsuri/index.html +++ b/vhosts/blog/public/tags/scalamatsuri/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/scalamatsuri/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「ScalaMatsuri」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/trick/index.html b/vhosts/blog/public/tags/trick/index.html index 00cbeb5..cf2cfb7 100644 --- a/vhosts/blog/public/tags/trick/index.html +++ b/vhosts/blog/public/tags/trick/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/trick/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「TRICK」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/vim/index.html b/vhosts/blog/public/tags/vim/index.html index 3d59e9c..a6bca3e 100644 --- a/vhosts/blog/public/tags/vim/index.html +++ b/vhosts/blog/public/tags/vim/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/vim/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Vim」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/wasm/index.html b/vhosts/blog/public/tags/wasm/index.html index 815c538..2a8ca04 100644 --- a/vhosts/blog/public/tags/wasm/index.html +++ b/vhosts/blog/public/tags/wasm/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/wasm/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「WebAssembly」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/wireguard/index.html b/vhosts/blog/public/tags/wireguard/index.html index c6f8903..016c8f7 100644 --- a/vhosts/blog/public/tags/wireguard/index.html +++ b/vhosts/blog/public/tags/wireguard/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/wireguard/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「WireGuard」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/ya8/index.html b/vhosts/blog/public/tags/ya8/index.html index 54e0304..2f9cdec 100644 --- a/vhosts/blog/public/tags/ya8/index.html +++ b/vhosts/blog/public/tags/ya8/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/ya8/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Ya8」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/yaml/index.html b/vhosts/blog/public/tags/yaml/index.html index 0bdebcf..f50cf7c 100644 --- a/vhosts/blog/public/tags/yaml/index.html +++ b/vhosts/blog/public/tags/yaml/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/yaml/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「YAML」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/yapc/index.html b/vhosts/blog/public/tags/yapc/index.html index 2e54241..1a10f7f 100644 --- a/vhosts/blog/public/tags/yapc/index.html +++ b/vhosts/blog/public/tags/yapc/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/yapc/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「YAPC」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/public/tags/zsh/index.html b/vhosts/blog/public/tags/zsh/index.html index 885bca6..2e4ed4e 100644 --- a/vhosts/blog/public/tags/zsh/index.html +++ b/vhosts/blog/public/tags/zsh/index.html @@ -15,7 +15,7 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/zsh/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Zsh」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=8415c13be008f55a351b69c568b3e8ed"> + <link rel="stylesheet" href="/style.css?h=ad87bb00eb411fe20ba3a8366c69e490"> </head> <body class="list"> <header class="header"> diff --git a/vhosts/blog/static/style.css b/vhosts/blog/static/style.css index dd1e6c1..71c69f9 100644 --- a/vhosts/blog/static/style.css +++ b/vhosts/blog/static/style.css @@ -100,6 +100,19 @@ a:hover { .codeblock { background-color: #f5f5f5; + position: relative; + margin: 1rem 0; + border-radius: 3px; + overflow: hidden; +} + +.codeblock .filename { + background-color: #e0e0e0; + color: #333; + font-family: Monaco, Consolas, 'Courier New', Courier, monospace; + font-size: 0.9rem; + padding: 0.5rem 1rem; + border-bottom: 1px solid #ccc; } pre { |
