Posts Tagged ‘twitter’

Who Should You Unfollow on Twitter?

Thursday, August 26th, 2010

There are dozens of sites that tell you who to follow, but the most useful Twitter tool I’ve found in months tells you who to unfollow. Manage Flitter analyzes the people you follow on Twitter and allows you to select and batch unfollow based on criteria you set. You can analyze who doesn’t follow you back, who doesn’t have a profile image, people who haven’t tweeted in a month, people who tweet more than five times a day and people who tweet less than once a day. After creating your list you can filter out verified and popular users so you don’t accidentally delete Shaq or Fake Steve Jobs.

Click here to check out Manage Flitter.

3OH!3 Twitter Promo

Tuesday, May 25th, 2010

Today we launched a social media campaign using Twitter to promote the preorder for the new 3OH!3 album Streets of Gold. Fans who tweet a link to the preorder page get their Twitter avatar displayed on the 3OH!3 homepage. Fans can Tweet as many times as they want, and only get pushed off the homepage as other people Tweet the link. Fans visiting the preorder page can also watch a preview of the 3OH!3 Mockumentary DVD included in the bundle.

Watch the video

Get your picture on the homepage

3oh!3 Homepage

Check out the preorder

3oh!3 preorder page

Twitter launches @anywhere

Thursday, April 15th, 2010

Yesterday Twitter launched it’s @anywhere service which makes integrating most Twitter functions as simple as adding a few lines of Javascript code. You can easily:

Auto-link @usernames
Create Hovercards for @usernames
Create follow buttons that don’t require users to leave your site
Add a “Tweet Box” which allows users to tweet without leaving your site
Integrate Twitter login & signup into your site

Check out the new Twitter dev site.
Check out the @anywhere documentation.

@anywhere homepage

How to use Twitter’s RSS Feeds in Flash without the Twitter API

Friday, May 8th, 2009

Due to security changes by Twitter, Flash files not residing on the Twitter.com servers cannot directly access the RSS feeds of Twitter users. I’ve seen dozens of posts around the net regarding these changes and found a simple way to get around the restrictions using php. The issue – Flash cannot pull data from a server unless the server specifically allows it in its crossdomain.xml file. Whenever I am having trouble pulling data into Flash this is always the first place I look. There is a pretty simple workaround in php using a script as an intermediary so the Flash player’s security settings don’t kick in. Create a php file called “twitter.php” and point your Flash file to it exactly as you would the Twitter rss feed. Within the file, include the following code:

< ?php
$twitterFeed = 'http://twitter.com/statuses/user_timeline/22540123.rss';
$outputFeed = @file_get_contents($twitterFeed);
print $outputFeed;
?>

You will need to change in the variable twitterFeed to point to the Twitter RSS you want to parse. That’s it! This should work any time you are looking to pull RSS feeds from a server that doesn’t allow you to access it directly through Flash.

Diddy explains Twitter to Ellen DeGeneres

Friday, March 13th, 2009

Not EVERYTHING he says is exactly correct, but it’s a pretty entertaining explaination of Twitter that anyone can understand. It’s a little old (almost a week) and it’s amazing to see how Ellen’s numbers skyrocketed after this program aired.