1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Posts on REPL: Rest-Eat-Program Loop</title>
<link>https://blog.nsfisis.dev/posts/</link>
<description>Recent content in Posts on REPL: Rest-Eat-Program Loop</description>
<generator>Hugo -- gohugo.io</generator>
<language>ja-JP</language>
<lastBuildDate>Sun, 01 May 2022 09:41:39 +0900</lastBuildDate><atom:link href="https://blog.nsfisis.dev/posts/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>PHPerKaigi 2022</title>
<link>https://blog.nsfisis.dev/posts/2022-05-01/phperkaigi-2022/</link>
<pubDate>Sun, 01 May 2022 09:41:39 +0900</pubDate>
<guid>https://blog.nsfisis.dev/posts/2022-05-01/phperkaigi-2022/</guid>
<description>2022-04-09 から 2022-04-11 にかけて開催された、PHPerKaigi 2022 に参加した。</description>
</item>
<item>
<title>term-banner: ターミナルにバナーを表示するツールを書いた</title>
<link>https://blog.nsfisis.dev/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/</link>
<pubDate>Sun, 24 Apr 2022 13:22:52 +0900</pubDate>
<guid>https://blog.nsfisis.dev/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/</guid>
<description>ターミナルに任意の文字のバナーを表示するためのツールを Go で書いた。</description>
</item>
<item>
<title>PHPerKaigi 2022 トークン問題の解説</title>
<link>https://blog.nsfisis.dev/posts/2022-04-09/phperkaigi-2022-tokens/</link>
<pubDate>Sat, 09 Apr 2022 21:50:19 +0900</pubDate>
<guid>https://blog.nsfisis.dev/posts/2022-04-09/phperkaigi-2022-tokens/</guid>
<description>PHPerKaigi 2022 で私が作成した PHPer チャレンジ問題を解説する。</description>
</item>
<item>
<title>Rust のプリミティブ型はどこからやって来るか</title>
<link>https://blog.nsfisis.dev/posts/2021-10-02/rust-where-are-primitive-types-from/</link>
<pubDate>Sat, 02 Oct 2021 09:39:27 +0900</pubDate>
<guid>https://blog.nsfisis.dev/posts/2021-10-02/rust-where-are-primitive-types-from/</guid>
<description>Rust のプリミティブ型は予約語ではなく普通の識別子である。どのようにこれが名前解決されるのかを調べた。</description>
</item>
<item>
<title>[Ruby] then キーワードと case in</title>
<link>https://blog.nsfisis.dev/posts/2021-10-02/ruby-then-keyword-and-case-in/</link>
<pubDate>Sat, 02 Oct 2021 09:38:50 +0900</pubDate>
<guid>https://blog.nsfisis.dev/posts/2021-10-02/ruby-then-keyword-and-case-in/</guid>
<description>Ruby 3.0 で追加される case in 構文と、then キーワードについて。</description>
</item>
<item>
<title>[C++] 属性構文の属性名にはキーワードが使える [[void]] [[for]]</title>
<link>https://blog.nsfisis.dev/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/</link>
<pubDate>Sat, 02 Oct 2021 09:38:30 +0900</pubDate>
<guid>https://blog.nsfisis.dev/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/</guid>
<description>C++ の属性構文の属性名には、キーワードが使える。ネタ記事。</description>
</item>
<item>
<title>[Ruby] 自身を実行している処理系の種類を判定する</title>
<link>https://blog.nsfisis.dev/posts/2021-10-02/ruby-detect-running-implementation/</link>
<pubDate>Sat, 02 Oct 2021 09:37:50 +0900</pubDate>
<guid>https://blog.nsfisis.dev/posts/2021-10-02/ruby-detect-running-implementation/</guid>
<description>Ruby には複数の実装があるが、自身を実行している処理系の種類をスクリプト上からどのように判定すればよいだろうか。</description>
</item>
<item>
<title>Vimで選択した行の順番を入れ替える</title>
<link>https://blog.nsfisis.dev/posts/2021-10-02/vim-swap-order-of-selected-lines/</link>
<pubDate>Sat, 02 Oct 2021 09:37:25 +0900</pubDate>
<guid>https://blog.nsfisis.dev/posts/2021-10-02/vim-swap-order-of-selected-lines/</guid>
<description>Vim で選択した行の順番を入れ替える方法。</description>
</item>
<item>
<title>[Vim] autocmd events の BufWrite/BufWritePre の違い</title>
<link>https://blog.nsfisis.dev/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/</link>
<pubDate>Sat, 02 Oct 2021 09:37:12 +0900</pubDate>
<guid>https://blog.nsfisis.dev/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/</guid>
<description>Vim の autocmd events における BufWrite/BufWritePre がどう違うのかを調べた結果、違いはないことがわかった。</description>
</item>
<item>
<title>[Python] クロージャとUnboundLocalError: local variable 'x' referenced before assignment</title>
<link>https://blog.nsfisis.dev/posts/2021-10-02/python-unbound-local-error/</link>
<pubDate>Sat, 02 Oct 2021 09:32:37 +0900</pubDate>
<guid>https://blog.nsfisis.dev/posts/2021-10-02/python-unbound-local-error/</guid>
<description>Python における UnboundLocalError の理由と対処法。</description>
</item>
<item>
<title>PHPerKaigi 2021</title>
<link>https://blog.nsfisis.dev/posts/2021-03-30/phperkaigi-2021/</link>
<pubDate>Tue, 30 Mar 2021 23:22:40 +0900</pubDate>
<guid>https://blog.nsfisis.dev/posts/2021-03-30/phperkaigi-2021/</guid>
<description>2021-03-26 から 2021-03-28 にかけて開催された、PHPerKaigi 2021 に参加した。</description>
</item>
<item>
<title>My First Post</title>
<link>https://blog.nsfisis.dev/posts/2021-03-05/my-first-post/</link>
<pubDate>Fri, 05 Mar 2021 23:38:21 +0900</pubDate>
<guid>https://blog.nsfisis.dev/posts/2021-03-05/my-first-post/</guid>
<description>これはテスト投稿です。これはテスト投稿です。これはテスト投稿です。</description>
</item>
</channel>
</rss>
|