ふりかえり

3 年前の自分がいいこと言ってた。

どこかでこのこと、忘れちゃってたなあ。

これからの 3 年間はこれに努めよう。

chpwd_functions

tl;dr Zsh で一時的に chpwd の hook を無効にしたいときは chpwd_function= を前置する。 $ chpwd_functions= cd 私の Zsh 環境で tab.bash を使ってみたところ、iTerm のタブを作成したあとの cd に失敗してし [Read More]
zsh 

Quote

Change is the essential process of all existence.

By Spock, “Let That Be Your Last Battlefield”, stardate 5730.2

GitHub の Wiki に表示する画像を git で上げる

tl;dr

$ git clone git@github.com:<username>/<repository>.wiki.git
$ cd <repository>.wiki
$ mkdir images
$ cp path/to/image_file images
$ git -a -m 'Attach images'
$ open https://github.com/<username>/<repository>/wiki/<pagename>

And put [[/images/image_file]] to your wiki page.

That’s it.


情報元: Editing Wiki Locally

この方法を使えば、好きな画像を wiki に貼り付けることができます :)