by shigemk2

当面は技術的なことしか書かない

2015-11-19から1日間の記事一覧

oh-my-zsh PR#4627

github.com コマンドの実行時間を表示させるプラグインっぽい。 使い方はこんな感じ。右に実行時間が表示される。 me@here:~$ sleep 1 /1.0s me@here:~$ sleep 73 /1m13.0s

FutureとかExecutionContextとか memo

A Future is a placeholder object for a value that may not yet exist. Generally, the value of the Future is supplied concurrently and can subsequently be used. つまり、あくまでFutureはプレースホルダとして使われるものであって、Futureそれ自体…