aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/posts/2022-04-24
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2023-03-18 19:51:06 +0900
committernsfisis <nsfisis@gmail.com>2023-03-18 19:51:06 +0900
commit7f15e0b8277ac8b101b4f71ce57c1c5442927141 (patch)
tree31d54a18ede023adeb23a984c907860d667288bd /public/posts/2022-04-24
parent032dc3c5e6d0ef84a9f4ea6be10e19b7f43c53b8 (diff)
downloadblog.nsfisis.dev-7f15e0b8277ac8b101b4f71ce57c1c5442927141.tar.gz
blog.nsfisis.dev-7f15e0b8277ac8b101b4f71ce57c1c5442927141.tar.zst
blog.nsfisis.dev-7f15e0b8277ac8b101b4f71ce57c1c5442927141.zip
fix(nuldoc): fix whitespaces being trimmed
Diffstat (limited to 'public/posts/2022-04-24')
-rw-r--r--public/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html66
1 files changed, 33 insertions, 33 deletions
diff --git a/public/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html b/public/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html
index f20db85..db21a3d 100644
--- a/public/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html
+++ b/public/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html
@@ -51,107 +51,107 @@
</ol>
</section>
<section id="section--_はじめに">
- <h2><a href="#section--_はじめに">はじめに</a></h2>
+ <h2><a href="#section--_はじめに">はじめに</a></h2>
<p>
こんなものを作った。
</p>
-
+
<pre class="highlight monospaced"><code>$ term-banner &apos;Hello, World!&apos; &apos;こんにちは、&apos; &apos;世界!&apos;</code></pre>
-
+
<p>
image::https://raw.githubusercontent.com/nsfisis/term-banner/main/screenshot.png[term-banner のスクリーンショット]
</p>
-
+
<p>
コマンドライン引数として渡した文字列をターミナルに大きく表示する。
</p>
-
+
<p>
- リポジトリはこちら:<a href="https://github.com/nsfisis/term-banner">https://github.com/nsfisis/term-banner</a>
+ リポジトリはこちら: <a href="https://github.com/nsfisis/term-banner">https://github.com/nsfisis/term-banner</a>
</p>
</section>
-
+
<section id="section--_motivation">
- <h2><a href="#section--_motivation">Motivation</a></h2>
+ <h2><a href="#section--_motivation">Motivation</a></h2>
<p>
- 以前、https://github.com/nsfisis/big-clock-mode[big-clock-mode] という似たようなプログラムを書いた。 これは tmux の<code>:clock-mode</code>コマンドに着想を得たもので、<code>:clock-mode</code>よりも大きく現在時刻を表示する。
+ 以前、https://github.com/nsfisis/big-clock-mode[big-clock-mode] という似たようなプログラムを書いた。 これは tmux の <code>:clock-mode</code> コマンドに着想を得たもので、<code>:clock-mode</code> よりも大きく現在時刻を表示する。
</p>
-
+
<p>
- <code>big-clock-mode</code>を開発したのは、次のようなシチュエーションで使うためである。 弊社では現在リモートワークが基本だが、web 会議などで画面共有しているときに、休憩を挟んで特定の時刻から再開する、ということがある。 こういったケースで、画面上に現在の時刻を大きめに表示しておくと、モニタから離れても遠くから時刻がわかるので便利である。
+ <code>big-clock-mode</code> を開発したのは、次のようなシチュエーションで使うためである。 弊社では現在リモートワークが基本だが、web 会議などで画面共有しているときに、休憩を挟んで特定の時刻から再開する、ということがある。 こういったケースで、画面上に現在の時刻を大きめに表示しておくと、モニタから離れても遠くから時刻がわかるので便利である。
</p>
-
+
<p>
それこそタイマアプリか何かを使えばいいのだが、ターミナルに棲むいきものとしては、住処から離れたくないわけだ。
</p>
-
+
<p>
しばらく便利に使っていたのだが、ひとつ不満点が出てきた。それは、再開する時刻がいつだったかを覚えておかなければならないということだ。 どこかにメモしておいてもいいが、せっかくなら現在時刻とともに表示させておきたい。
</p>
-
+
<p>
そんなわけで、「任意の文字列をターミナルに表示する」プログラムを書く運びとなった。 まあ、作らなくても探せばあると思うが、作りたいものは作りたいので知ったことではない。
</p>
</section>
-
+
<section id="section--_プログラム">
- <h2><a href="#section--_プログラム">プログラム</a></h2>
+ <h2><a href="#section--_プログラム">プログラム</a></h2>
<p>
全体の流れは次のようになっている。
</p>
-
+
<ol numeration="arabic">
<li>
フォントファイルを読み込む
</li>
-
+
<li>
コマンドライン引数を Shift-JIS に変換する (フォントが Shift-JIS 基準で並んでいるため)
</li>
-
+
<li>
1文字ずつレンダリングしていく
</li>
</ol>
-
+
<p>
- <code>big-clock-mode</code>が Go 製なので、今回も Go で書いた。 PNG が標準ライブラリにあったり、Shift-JIS のエンコーディングが準標準ライブラリにあったりしたのは助かった。
+ <code>big-clock-mode</code> が Go 製なので、今回も Go で書いた。 PNG が標準ライブラリにあったり、Shift-JIS のエンコーディングが準標準ライブラリにあったりしたのは助かった。
</p>
-
+
<p>
- フォントファイルは<code>go:embed</code>で実行ファイルに埋め込んでいるので、ビルド後はワンバイナリで動く。 仕事ではスクリプト言語ばかり書いているが、やはりコンパイル言語はいい。
+ フォントファイルは <code>go:embed</code> で実行ファイルに埋め込んでいるので、ビルド後はワンバイナリで動く。 仕事ではスクリプト言語ばかり書いているが、やはりコンパイル言語はいい。
</p>
</section>
-
+
<section id="section--_フォント">
- <h2><a href="#section--_フォント">フォント</a></h2>
+ <h2><a href="#section--_フォント">フォント</a></h2>
<p>
フリーの 8x8 ビットマップフォントである、https://littlelimit.net/misaki.htm[美咲フォント 2021-05-05a 版] を使わせていただいた。
</p>
-
+
<p>
はじめは自分でポチポチ打っていたのだが、「き」くらいまでやって挫折した。 同じく 8x8 で作っていたのだが、平仮名でさえも、この小さなキャンバスにはとても収められない。
</p>
-
+
<p>
美咲フォントは、平仮名・片仮名に留まらず、JIS 第一・第二水準の漢字までサポートしている。 第二水準ともなると一生お目にかかることのない字の方が多いくらいだが、これをこの大きさで書くというのは、もはや芸術の域である。
</p>
-
+
<p>
さらに言うと、実のところ美咲フォントは実サイズ 7x7 で作られており、余白が設けられている。 これは、単純にそのまま並べても字間・行間を確保できるようにという配慮である。 おかげでコーディングまで楽になった。
</p>
-
+
<p>
ゴシック体と明朝体があったが、私の好みで明朝体の方にした。 ただ、ゴシック体の方が見やすい気がするので、フォントを選べるように後ほど拡張するかもしれない。
</p>
-
+
<p>
- 2022-04-27 追記:<code>-f</code>オプションで選べるようにした。
+ 2022-04-27 追記: <code>-f</code> オプションで選べるようにした。
</p>
</section>
-
+
<section id="section--_おわりに">
- <h2><a href="#section--_おわりに">おわりに</a></h2>
+ <h2><a href="#section--_おわりに">おわりに</a></h2>
<p>
あなたもターミナルに住んでみませんか?
</p>