#21: ブログ CSS 変更、N 予備校 入門 Web アプリコースの続き

やったこと(Done)

  • このブログの CSS を少し変更した。
    • pre 要素の margin が上下で非対称だったので対称に。
    • a リンクのテキストの色変更とアンダーラインを追加
.entry .entry-inner pre {
    margin : 24px 0px 24px;
}

.entry-content a {
    color: darkblue;
    text-decoration: underline;
}

find の Rust 実装版 fd をインストール。

$ brew install fd
$ brew info fd
fd: stable 8.1.1 (bottled), HEAD
Simple, fast and user-friendly alternative to find
https://github.com/sharkdp/fd

ls の Rust 実装版 exa をインストール。

$ brew install exa
$ brew info exa
exa: stable 0.9.0 (bottled), HEAD
Modern replacement for 'ls'
https://the.exa.website
  • N 予備校 プログラミング入門 Web アプリコース
    • 04. ファイル操作
    • 05. 標準出力
    • 06. vi
    • 07. シェルプログラミング
    • 08. 通信とネットワーク

京大、スタンフォード大、オックスフォード大へ ping した結果、以下のようになった。

vagrant@ubuntu-bionic:~/workspace/my-first-shell$ ping www.kyoto-u.ac.jp
PING web-front.pr.kyoto-u.ac.jp (133.3.250.141) 56(84) bytes of data.
64 bytes from web-front.pr.kyoto-u.ac.jp (133.3.250.141): icmp_seq=1 ttl=63 time=14.9 ms
64 bytes from web-front.pr.kyoto-u.ac.jp (133.3.250.141): icmp_seq=2 ttl=63 time=15.0 ms
64 bytes from web-front.pr.kyoto-u.ac.jp (133.3.250.141): icmp_seq=3 ttl=63 time=14.5 ms
64 bytes from web-front.pr.kyoto-u.ac.jp (133.3.250.141): icmp_seq=4 ttl=63 time=15.4 ms
64 bytes from web-front.pr.kyoto-u.ac.jp (133.3.250.141): icmp_seq=5 ttl=63 time=15.3 ms
^C
vagrant@ubuntu-bionic:~/workspace/my-first-shell$ ping stanford.edu
PING stanford.edu (171.67.215.200) 56(84) bytes of data.
64 bytes from web.stanford.edu (171.67.215.200): icmp_seq=1 ttl=63 time=109 ms
64 bytes from web.stanford.edu (171.67.215.200): icmp_seq=2 ttl=63 time=159 ms
64 bytes from web.stanford.edu (171.67.215.200): icmp_seq=3 ttl=63 time=109 ms
64 bytes from web.stanford.edu (171.67.215.200): icmp_seq=4 ttl=63 time=223 ms
64 bytes from web.stanford.edu (171.67.215.200): icmp_seq=5 ttl=63 time=133 ms
^C
vagrant@ubuntu-bionic:~/workspace/my-first-shell$ ping www.ox.ac.uk
PING www.ox.ac.uk (151.101.194.133) 56(84) bytes of data.
64 bytes from 151.101.194.133 (151.101.194.133): icmp_seq=1 ttl=63 time=7.51 ms
64 bytes from 151.101.194.133 (151.101.194.133): icmp_seq=2 ttl=63 time=7.94 ms
64 bytes from 151.101.194.133 (151.101.194.133): icmp_seq=3 ttl=63 time=8.00 ms
64 bytes from 151.101.194.133 (151.101.194.133): icmp_seq=4 ttl=63 time=8.10 ms
64 bytes from 151.101.194.133 (151.101.194.133): icmp_seq=5 ttl=63 time=8.19 ms
^C

なぜオックスフォード大はこんなに速いのだろうか?CDN を使っていて国内のサーバーがレスポンスを返しているということかしらん?

わかったこと(Fact)

参考文献(References)

その他

そのうちやること(Someday)

  • [ ] RubyMine インストールしてみる?
  • [ ] Ruby を書くためのエディタの設定(Emacs
  • [ ] bash の設定ファイルに必要なエイリアスを追加する。