This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class AccountSearch{ | |
| public $account_list = array(); | |
| public function checkAccount($name = array(), $single = false){ | |
| $url = array(); | |
| $falg = array(); | |
| foreach ($name as $value) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # encoding: utf-8 | |
| # -*- coding: utf-8 -*- | |
| # vim:set fileencoding=utf-8: | |
| require 'rubygems' | |
| require 'twitter' | |
| require 'eventmachine' | |
| #これは、アプリの設定だから自分で取得して欲しい。 | |
| #TwitterAPIの設定 | |
| Twitter.configure do |config| | |
| config.consumer_key = 'a' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/perl -w | |
| use strict; | |
| use LWP::Simple; | |
| my $target = 'http://twitter.com/users/username_available?username='; | |
| my @range = ('a'..'x', '0'..'9', '_', ''); | |
| while (1) { | |
| my $str; |