Brajeshwar

3-min read

Twitter - short, sweet and sleek - Let’s get started

Twitter has suddenly attained the status of a notoriously popular Application. After being fueled by SXSW, everybody else is talking about Twitter including those who don’t even have a blog. Talks in the Blogosphere have spit out stats that Twitter got 1 million messages sent recently. Finally after about a year of its launch, Twitter has won.

Of course, it is not everybody that loves Twitter, some seriously hate it.

Wait, I just got a Twitter from BBC News - Train services resume along a stretch of the West Coast Main Line in Cumbria after a fatal train crash. http://tinyurl.com/2jkv4c

Twitter

Ross Mayfield, CEO of SocialText have an in-depth article on Twitter, its statistics, etc. He describes Twitter as, “a mobile social software that lets you broadcast and receive short messages with your social network. You can use it with SMS, on the web or IM.” “A darn easy API has enabled other clients such as Twitterific for the Mac. Twitter is Continuous Partial Presence, mostly made up of mundane messages in answer to the question - What are you doing?. A never-ending steam of presence messages prompts you to update your own. Messages are more ephemeral than IM presence – and posting is of a lower threshold, both because of ease and accessibility, and the informality of the medium.”

Ah! I got another Twitter from Digg - The Pirate Bay gives diploma to the King of Sweden - http://tinyurl.com/ypwgb3 - The Pirate Bay guys congratulates the King of Sweden for go.

At the time of writing this article, here are the Twitters that I follow (and perhaps you might be interested)

Paul Stamatiou have a good idea on how to Twitter on Steroid. Well, not really to that extend of irritation but that’s what I come up with - Twitter on Steroid. Here’s how. follow all the steps from Paul to get an RSS to Twitter using PHP. Now, get an array of all your RSS Feeds - your Blog(s), your Flickr Feed, your YouTube Videos - combine them into one (there are lots of services that does that). Finally, twitter this Mother RSS Feed. Paul have a cron job to do the RSS push, I’m sure we can work out a way to ping the app to Twitter whenever there is a publication from the Feed. That’s it and you might even have a non-stop twitter-ing; to the point that your followers might get irritated. Use it wisely.

Twitter Powered

TinyURL

TinyURL shortens your long url to a short redirect URL. TinyURL makes it extremely easy to use their service - on their website, browser toolbar - and an even easier API which makes Twitter so easy to have tiny URLs replacing long URLs that people twits. Twitter have made the best use of TinyURL and is perhaps its best companion.

For instance, in PHP, it can be simple as

// the url to be shortened
$theurl = "http://".$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
// the final result
$tiny_url =  file_get_contents("http://tinyurl.com/api-create.php?url=" . $theurl);
← Prev Next →