List/Grid

Tag Archives: twitter

Display recent Twitter tweets using PHP

Display recent Twitter tweets using PHP

Here is a code to display recent twitter tweets using PHP: $doc = new DOMDocument(); # load the RSS document, edit this line to include your username or user id… Read more »

Bigg Boss 5 inmates active on Twitter

Inside the Bigg Boss house, the inmates may be cut off from the outside world, but they’re still connected with their fans by keeping their Twitter accounts active. If you’re… Read more »

Twitter points Apple as “Corporate Mentor”

Twitter points Apple as “Corporate Mentor”

Twitter CEO Dick Costolo in an interview mentioned Apple as a “corporate mentor” because of the two companies’ common focus on simplicity. He also mentioned that iOS signups for the… Read more »

Flip your Facebook, Twitter status Upside down

Flip your Facebook, Twitter status Upside down

Social networking websites thrives on your status messages, and thus if you don’t want to be monotonous, then try to flip your status message using fliptext.org Go to fliptext and… Read more »

Internet As Addictive As Smoking

Internet As Addictive As Smoking

Several studies have found that Facebook, Twitter and Google are as addictive as drugs. People react like twitchy addicts denied their drugs when forced to give up access to the… Read more »

Social Media gets serious – India Clamps down on Facebook ,Twitter

Social Media gets serious – India Clamps down on Facebook ,Twitter

The Indian government has been imposing more control over social media as it has faced increasing terrorist threats and it is now making plans to monitor communications on Facebook and… Read more »

Twitter Updates in GTalk Or Gmail Automatically

Twitter Updates in GTalk Or Gmail Automatically

Chitter.im is a Gtalk bot that allows you to communicate with Twitter very easily ,You can receive tweets, retweet them, quote, follow or unfollow users and also sent direct messages… Read more »

How to make people follow you on Twitter

How to make people follow you on Twitter

Twitter has become one of the most important tools for blog promotion and for that you need to have quality followers. It’s not just about the number of followers you… Read more »

90% of Managers Want Social Networking Sites to Be Banned or Restricted at work

90% of Managers Want Social Networking Sites to Be Banned or Restricted at work

A broad cross section of IT professionals in public and private-sector organizations believe social-networking sites open up organizations to reduced staff productivity, network security risks and reputational damage. Some lucky… Read more »

Create a TinyURL with PHP

//gets the data from a URL function get_tiny_url($url) { $ch = curl_init(); $timeout = 5; //Depend on you curl_setopt($ch,CURLOPT_URL,’http://tinyurl.com/api-create.php?url=’.$url); curl_setopt($ch,CURLOPT_RETURNTRANSFER,1); curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout); $newUr = curl_exec($ch); curl_close($ch); return $newUr; } //test it… Read more »