Contents
- UNIX
- Windows
- サーバ
- プログラミング言語
- データベース
- プロトコル
- サービス
- オープンソース
- 規格・技術
- アプリケーション
- PC
- DEVICE
- その他(未分類)
お問合せ: メールフォーム
require 'date' # today today = DateTime.now.strftime('%Y-%m-%d') # yesterday yesterday = (DateTime.now - 1).strftime('%Y-%m-%d') # 1 month ago monthago = (DateTime.now << 1).strftime('%Y-%m-%d') # 3 month ago threemonthago = (DateTime.now << 3).strftime('%Y-%m-%d')