3 posts tagged “cpan”
I released Net::Twitter::Diff at CPAN.
What you can do with this module are...
- Use this module when you want to know all your followers who you are not following.
- Use this module when you want to compare following with your twitter friend.
- Use xfollowing and xfollowers instead of Net::Twitter->following(), Net::Twitter->followers() when you have more thatn 100 twitter's. following and follower methods have 100 limitation because of Twitter API. xfolloing() and xfollowers() is support more than 100 but it is unofficial use , the way I implement is not on the Twitter API Document. You can find how if you ask to google :-)
use Net::Twitter::Diff;
use Data::Dumper;
my $diff = Net::Twitter::Diff->new( username => '******' , password => '******');
print Dumper $diff->diff();print Dumper $diff->comp_following( 'somebody_twitter_name' );
print Dumper $diff->xfollowing();
print Dumper $diff->xfollowers();
- You must know one thing : you have limitation for 70 times per hour for Twitter API request. so be aware.
Perl Hacks Book introduce Pod::Webserver but I recomend Pod::ProjectDocs .
That is why I update Pod::Html::HtmlTree and recommend Pod::ProjectDocs in the document , cause Pod::ProjectDocs is better module but hard to find.
Before this pluign come out , I was a Matrix Guy who looking at Green text on Black backgorund... Many girls who like Matrix ask me out when I am looking at sexy green and black display but no more! I want to live in real world! I need more color!!!
What this plugin does is simple. just add color for your log message with $c->log->color() method. When you use this color() method , the log should be wrotten as debug mode.
I also thought it's good idea to have option to set color for every log methods such as debug, info , error ,critical...
we did implement couple more modues at the Newbiethon party , I think masap@cpan soon release it. One is related Catalyst one is for Cache.