トップ «前の日記(2015-07-05) 最新 次の日記(2015-07-07)» 編集

ヨタの日々

2001|08|09|10|11|12|
2002|01|02|03|04|05|06|07|08|09|10|11|12|
2003|01|02|03|04|05|06|07|08|09|10|11|12|
2004|01|02|03|04|05|06|07|08|09|10|11|12|
2005|01|02|03|04|05|06|07|08|09|10|11|12|
2006|01|02|03|04|05|06|07|08|09|10|11|12|
2007|01|02|03|04|05|06|07|08|09|10|11|12|
2008|01|02|03|04|05|06|07|08|09|10|11|12|
2009|01|02|03|04|05|06|07|08|09|10|11|12|
2010|01|02|03|04|05|06|07|08|09|10|11|12|
2011|01|02|03|04|05|06|07|08|09|10|11|12|
2012|01|02|03|04|05|06|07|08|09|10|11|12|
2013|01|02|03|04|05|06|07|08|09|10|11|12|
2014|01|02|03|04|05|06|07|08|09|10|11|12|
2015|01|02|03|04|05|06|07|08|09|10|11|12|
2016|01|02|03|04|05|06|07|08|09|10|11|12|
2017|01|02|03|04|05|06|07|08|09|10|11|12|
2018|01|02|03|04|05|06|07|08|09|10|11|12|
2019|01|02|03|04|05|06|07|08|09|10|11|12|
2020|01|02|03|04|05|06|07|08|09|10|11|12|
2021|01|02|03|04|05|06|07|08|09|10|11|12|
2022|01|02|03|04|05|06|07|08|09|10|11|12|
2023|01|02|03|04|05|06|07|08|12|
2024|01|02|03|

2015-07-06 :-(

_ 午前

0530 起床

0710 食堂

0800 労働 || サマータイム・ブルースはじめました

_ 午後

1615 退勤

_

1730 筋トレ

1900 ImageMagick

2000 飯。青椒牛肉絲

_ ,

Re: Moving pkgsrc-wip away from SourceForge

NetBSD community is (or was?) known to make decisions based on Engineering merits / demerits of an approach and not by what is the talk of the town. It is sad to hear "Let's use X because that's popular" kind of voice on NetBSD lists.

新井俊一のソフトウェアビジネスブログ: 流行のIT技術を追うのをやめたらプログラマとして成長した話

これからあなたが流行の新ツール "SuperduperX"を学んだとしても、たぶんその知識は数年後には役立たずです。しかし、こうした基礎を学んでいれば、たぶん10年後もいくらか役に立つことでしょう。

hmmmm....

_ [Ruby][Gmail]Ruby で Gmail アカウントへメール送信する

日本語おかしいような。

環境

Google アカウントの設定

結局 Gmail の「アプリパスワード」が必要だった RubyでGmailを使う - grotta blog

Google アカウント - ログインとセキュリティ - アプリ パスワード

この「アプリ パスワード」を以 :password に設定すればよい。:domain はいまだによく分かってない。

# coding: utf-8

require 'mail'

options = {
  :address              => "smtp.gmail.com",
  :port                 => 587,
  :domain               => 'area51.gr.jp',
  :user_name            => 'miwarin',
  :password             => 'パスワード',
  :authentication       => 'plain',
  :enable_starttls_auto => true
}

Mail.defaults do
  delivery_method :smtp, options
end

mail = Mail.new
mail.from = 'riinn5511@yahoo.co.jp'
mail.to = 'miwarin@gmail.com'
mail.subject = '日本語タイトル' 
mail.charset ='iso-2022-jp'
mail.add_content_transfer_encoding
mail.body  = '日本語本文'
mail.deliver