Please Do Not Call Me
I tweeted about many telemarketing calls to my cell a few months ago. Then Tatsuhiko told me about National Do Not Call Registry. I quickly registered and filed some complaints. So I could have quieter life..... until they started to call me.
They are 8889003194. They call me everyday and 3 times a day. They are talking about 24 hours fitness club. They don't stop talking even if I say I don't understand. If I push the "Ignore" button, they leave the voice message. And I call the message center to delete the message. It costs 10 cents.
I hate the process to file a complaint, so I just wrote tiny script to do it.
You can get it from here.
Change this part to your information...
my $area_code = '415';
my $phone = '1112222';
my $first_name = 'Satoshi';
my $last_name = 'Tanimoto';
my $address = '123 FooBar Street, #456';
my $city = 'San Francisco';
my $state = 'CA';
my $zip = '94105';
and then, run the script like next
./dont_call_me.pl 8889003194
Feel free to edit this script.