Perl

  1. Bot作成しようとしたら,文字化する.
    • http://floralcompany.jp/archives/2009/08/workaround-for.html
    • これ,本当に文字化けしない.
      	use utf8;
      	use Net::Twitter;
      	my $twitter = Net::Twitter->new(
      	          username=>""   #ユーザー名
      	        , password=>""  #パスワード
      	      );
      	my $status = '日本語';
      	{ no utf8;
      	$twitter->update({status => $status}); # 文字化けない
      	}