ハブ君の寝言

日記のような何か

2010-10-01から1ヶ月間の記事一覧

簡単な決められた単語を発言するBOT

a.txtの内容を上から順に発言するBOT とりあえず簡単なBOTは作れるようになったこれで動いているBOT http://twitter.com/gokinyan_bot #!/usr/bin/env perl use strict; use warnings; use Net::Twitter; use utf8; # 文字列をutf8として扱う use open IO =>…

自分用OAuthメモ

OAuth認証がめんどくさい めっちゃめんどくさい やってみれば簡単だけどめんどくさい 一回で済むけどめんどくさい #!/usr/bin/env perl use strict; use warnings; use utf8; use Net::Twitter; use Win32::OLE; my $consumer_key = 'xxxxxxxxxxxxxxxxxx'; m…