Twitter via Google Talk
Ever thought of using GTalk as your Twitter app? Here you can welcome one more client app based on IM bot, which can let you post/get tweets from your twitter account from your GTalk contact.
maximumcall.com service can let you use your twitter functions from your Google Talk software. All you need to do is adding a contact in your Google Talk which is actually a bot, and authorizing you twitter account.
This bot can let you use some of the twitter functions, like posting tweet, reading tweets from your friends, reading mentions etc.
You can add “maximumcall@bot.im” in Google Talk and start using this service. You need to be registered with maximumcall.com to use this service.
For more information visit maximumcall.com
New Coverage on DIDx.net
Muneeb Iqbal from Super Technologies Inc. has written a blog post on Dominican Republic DID numbers.
have a look:
http://muneebiqbal.blogspot.com/2010/05/dominican-republic-did-numbers.html
Online Contacts .. Zyb.com is closing
Few days back I received a notification email from that the service is being closed on 31st July and all the users need to take backup and can move to 360.com, the company from vodafone which acquired zyb.com.
Since the users from Pakistan cannot register the 360.com service, so here’s another solution.
www.mobical.net is another web site the offers online contacts for number of phone models. Try it, it gud..!!
How to install Asterisk Fax
http://downloads.digium.com/pub/telephony/fax/README
On this link, you can find a simple, step by step complete information on how to install Asterisk Free Fax.
This is very useful page to install this service.
R.I.P. Rita Mulcahy
When I was studying my Diploma in Project Management, I happened to read book of Rita, that was quite in helping my preparing examination for diploma, PMP candidates use this book at a large for the success in PMP certification.
Just came to know from this link
http://rlavigne42.wordpress.com/2010/05/21/project-management-that-works-death-of-a-pioneer-rip-rita-mulcahy/
that she dies in an early age because of cancer disease. May GOD bless her.
She will be remembered in her books forever. Thank you Rita.
Asterisk Training Toolkit
Interested link for asterisk training. Open Resource Center Pakistan has published the asterisk training toolkit on their web site.
Zyb.com contacts importer class published now in PHPClasses.org
The class i mentioned in my previous post, has now been published on http://PHPClasses.org.
Here is the URL for the class:
http://www.phpclasses.org/package/6147-PHP-Retrieve-contacts-of-Zyb-com-users.html
Hope that would help in any context in your applications.
A usefull PHP class to import Zyb.com contacts
I have written a class to simplify the import of contacts from http://zyb.com service. Zyb.com offers its users to upload their mobile phone contacts via mobile sync.
To use this class, you need to have your zyb.com user id and a private key. It can be obtained by logging into zyb.com and going to “settings” menu.
Below is the coding of class “ZYBImport.inc.php”
<?php
/*
This class can pull the contacts from Zyb.com account.
It needs a Zyb.com user name and private key. It can be obtained by loging into zyb.com account
and going to settings. Zyb.com returns lots of information, by little modification in this class you can pull all.
Written By: Arfeen
*/
class ZYBImport {
function __construct($ZybUser,$ZybKey){
$this->APIPath = "http://zyb.com/".$ZybUser."/contacts.json?key=".$ZybKey;
}
function GetZybContacts(){
$RawContacts = file_get_contents($this->APIPath);
$Contacts = json_decode($RawContacts, true); // It returns contacts in JSON format.
return $Contacts;
}
};
?>
To use this class, here’s an example. Below is the code of “example.php”
<?php
// example that pull the contacts details from zyb.com account
include "ZybImport.inc.php";
$Zyb = new ZYBImport("ZYB_UserName","ZYB_KEY") ; // Get your username and key from settings page in zyb.com
$Contacts = $Zyb->GetZybContacts();
for($nIndex=0;$nIndex
print "
Full Name : " . $Contacts[$nIndex]['Name'];
print "
Phone Number: " . $Contacts[$nIndex]['Phone'];
}
exit;
?>
An interesting thing on Facebook Tour de Pakistan
One of the facebook friends “SohailAbid” has been writing, or I must say, has been picturing his tour to Pakistan. He has taken lots of pictures on his tour. You can find his facebook page here …
My new class at phpclasses.org
I have published a new class on http://phpclasses.org. Its my 4th class that I published. Earlier one of my classes won the innovation award already. You can see that Here
My new class is about hyperlink and shorten URLs. You can see the class http://www.phpclasses.org/browse/package/6114.html.
This class can be used to convert URLs in text to links using Bit.ly .
It can parse a text to find HTTP, HTTPS, FTP and FTPS links.
The class sends requests Bit.ly Web services API to convert the URLs that it finds into HTML links using the Bit.ly URLs.




