ほぼ日手帳買いました
手帳で手書き好きです。
5年間用A6サイズほぼ日を買っちゃた。
値段はちょっと高い感じですが、ネットでレビューが良さそうで、手の触り心地もいいです。
5年分けると1000円程度なので、色々考えて買いました
実際使ってみると、不足点、ちょっと残念なところ2点ありました。
- 分厚いで、かつサイズが小さいですので、右側に書くと手に当たって書きにくいです。
- 万年筆で書くと、画像のように後ろ映ります

ほぼ日手帳後ろ映り
それ以外は満足です。
From Great Expectations
感動された箇所①
At the scene when pip left the village where he was grown up.
Heaven knows we need never be ashamed of our tears, for they are rain upon the blinding dust of earth, overlaying our hard hearts.
At the scene that before pip leave the village, he took a walk with Biddy
read these sentences make me thought my mom. she always give priority to every family members .
We talked a good deal as we walked, and all that Biddy said seemed right.Biddy was never insulting, or capricious, or Biddy today adn somebody else tomorrow; she would have derived only pain, and no pleasure, from giving me pain, she would far rather have wounded her own breast than mine.
Rails.configuration.xは何
config配下に設定したコードは下記の方法より呼び出しできます
config/setting.yml ap_name : "Test app" ap_info: [ description : "owner_info", creator : "ABC" ]
- ネストの場合(ap_info)
「Rails.configuration.x.setting」によりアクセスできます。
Rails.configuration.x.setting.ap_info.description #=>owner_info
Rails.configuration.x.setting.ap_info.creator #=>ABC
- 単一の場合
「Rails.configuration.setting」によりアクセスできます。
Rails.configuration.setting.ap_name # =>Test app
crontabコマンド
定期的にジョブ実行のスケジュールを設定するcronを設定できる
crontab -l
設定しているcronを表示する
crontab -e
cronを設定する、cron設定する時、実行時間は分、時、日、月、曜日の順指定する
crontab -r
cronを削除する