- エンジニアにもわかる「ユーザーインターフェース設計」 (Yahoo! JAPAN Tech Blog)
- 「Perl技術者の雇用を増やしたい」,普及推進団体Japan Perl Associationが活動開始:ITpro
- 「Perl技術者の雇用を増やす」、JPAが本格始動 − @IT
[
固定リンク|
Comments (View)
]
ftnk.jp -> ~fumi -> ChangeLog -> 2009-04 -> 2009-04-10
2009-04 / 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
- エンジニアにもわかる「ユーザーインターフェース設計」 (Yahoo! JAPAN Tech Blog)
- 「Perl技術者の雇用を増やしたい」,普及推進団体Japan Perl Associationが活動開始:ITpro
- 「Perl技術者の雇用を増やす」、JPAが本格始動 − @IT
bar-code,crow-bar の系列のゴルフシミュレータのおいてある
レストラン・バー.
シミュレータの利用は一時間 6000 円.
〒420-0852
静岡市葵区紺屋町 6-91 紺屋町中ビル 4F
TEL: 054-260-5500
来週の呑会に参加できないので,ちょっと顔をだしてきた.
Postfix のパフォーマンス確認のため,
以下のような script で大量に送信をしてみた.
#!/usr/bin/ruby
require 'net/smtp'
THREADS = 4
NUM = 5000 # 1 thread 当たりの送信件数
CONTENT = "a" * 4 * 1024
MAILSERVER = "postfix.example.com"
TO = "foo@example.com"
threads = []
(1..THREADS).each do |i|
threads << Thread.new do
puts "start thread: #{1}"
(1..NUM).each do |i|
Net::SMTP.start(MAILSERVER, 25) { |smtp|
smtp.send_mail("test mail #{i} to #{TO}.\n#{CONTENT}",
"wrkuser@postfix.example.com", TO)
}
end
end
end
threads.each do |i|
i.join
end