<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MyGeekPal &#187; Twitter</title>
	<atom:link href="http://www.mygeekpal.com/category/twitter/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mygeekpal.com</link>
	<description>Techy tips and recipes  from your geek pal</description>
	<lastBuildDate>Tue, 06 Jul 2010 12:09:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to display your twitter follower count using PHP</title>
		<link>http://www.mygeekpal.com/326/how-to-display-your-twitter-follower-count-using-php/</link>
		<comments>http://www.mygeekpal.com/326/how-to-display-your-twitter-follower-count-using-php/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 14:05:57 +0000</pubDate>
		<dc:creator>Atif</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[followers]]></category>

		<guid isPermaLink="false">http://www.mygeekpal.com/?p=326</guid>
		<description><![CDATA[Got over 1000 followers on twitter? And you want to flaunt your twitter follower count proudly on your blog. The following PHP code is aÂ  PHP cURL code implementation to pull out the twitter followers using REST API. It will get you the number of followers on twitter using the cURL library. Just change the [...]]]></description>
			<content:encoded><![CDATA[<p>Got over 1000 followers on twitter? And you want to flaunt your twitter follower count proudly on your blog. The following PHP code is aÂ  PHP cURL code implementation to pull out the twitter followers using REST API. It will get you the number of followers on twitter using the cURL library. Just change the $screen_name and the script is pretty self explanatory. The code is tested working, You are free to do anything with this code, I take no responsibility further however you can ask me for support. I will try to help you out if I can.</p>
<p><span style="color: #ff0000;"><code><strong>NOTE: The code won't work for an hour if you 100 API calls per hours are completed.</strong></code></span></p>
<pre class="php" name="code">&lt;?
// get the number of followers

$screen_name = "atif089";Â Â Â Â Â Â  // dont forget to chagne your username
$html = process("http://twitter.com/users/show.xml?screen_name=$screen_name");

// Parse the number of followers
$pattern = '&lt;followers_count&gt;(.*)&lt;\/followers_count&gt;';
ereg($pattern, $html, $matches);

// change this HTML as per your requirement
echo "&lt;a href=\"http://twitter.com/$screen_name\"&gt;Follow me on twitter: (".$matches[1]." followers)&lt;/a&gt;";

/**
 * process : This method open a URL via cURL library
 *
 * @param string $url (must) This is the URL that you would like to open
 * @param string $postargs (optional) Any arguments that you would like to send via POST method
 *
 */

 function process($url,$postargs=false){
 $ch = curl_init($url);
 if($postargs !== false){
 curl_setopt ($ch, CURLOPT_POST, true);
 curl_setopt ($ch, CURLOPT_POSTFIELDS, $postargs);
 }
 curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11");
 curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 $response = curl_exec($ch);
 curl_close($ch);
 return $response;
 }
?&gt;</pre>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-spaced shr-bookmarks-bg-caring">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.mygeekpal.com/326/how-to-display-your-twitter-follower-count-using-php/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.mygeekpal.com/326/how-to-display-your-twitter-follower-count-using-php/&amp;title=How+to+display+your+twitter+follower+count+using+PHP" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.mygeekpal.com/326/how-to-display-your-twitter-follower-count-using-php/&amp;title=How+to+display+your+twitter+follower+count+using+PHP" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.mygeekpal.com/326/how-to-display-your-twitter-follower-count-using-php/&amp;t=How+to+display+your+twitter+follower+count+using+PHP" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+to+display+your+twitter+follower+count+using+PHP&amp;link=http://www.mygeekpal.com/326/how-to-display-your-twitter-follower-count-using-php/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.mygeekpal.com/326/how-to-display-your-twitter-follower-count-using-php/&amp;title=How+to+display+your+twitter+follower+count+using+PHP&amp;summary=Got%20over%201000%20followers%20on%20twitter%3F%20And%20you%20want%20to%20flaunt%20your%20twitter%20follower%20count%20proudly%20on%20your%20blog.%20The%20following%20PHP%20code%20is%20a%C3%82%C2%A0%20PHP%20cURL%20code%20implementation%20to%20pull%20out%20the%20twitter%20followers%20using%20REST%20API.%20It%20will%20get%20you%20the%20number%20of%20followers%20on%20twitter%20using%20the%20cURL%20library.%20Just%20&amp;source=MyGeekPal" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.mygeekpal.com/326/how-to-display-your-twitter-follower-count-using-php/&amp;title=How+to+display+your+twitter+follower+count+using+PHP" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.mygeekpal.com/326/how-to-display-your-twitter-follower-count-using-php/&amp;h=How+to+display+your+twitter+follower+count+using+PHP" rel="nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+to+display+your+twitter+follower+count+using+PHP&amp;du=http://www.mygeekpal.com/326/how-to-display-your-twitter-follower-count-using-php/&amp;cn=Got%20over%201000%20followers%20on%20twitter%3F%20And%20you%20want%20to%20flaunt%20your%20twitter%20follower%20count%20proudly%20on%20your%20blog.%20The%20following%20PHP%20code%20is%20a%C3%82%C2%A0%20PHP%20cURL%20code%20implementation%20to%20pull%20out%20the%20twitter%20followers%20using%20REST%20API.%20It%20will%20get%20you%20the%20number%20of%20followers%20on%20twitter%20using%20the%20cURL%20library.%20Just%20" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.mygeekpal.com/326/how-to-display-your-twitter-follower-count-using-php/&amp;title=How+to+display+your+twitter+follower+count+using+PHP" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.mygeekpal.com/326/how-to-display-your-twitter-follower-count-using-php/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+display+your+twitter+follower+count+using+PHP+-+&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.mygeekpal.com/326/how-to-display-your-twitter-follower-count-using-php/&amp;submitHeadline=How+to+display+your+twitter+follower+count+using+PHP&amp;submitSummary=Got%20over%201000%20followers%20on%20twitter%3F%20And%20you%20want%20to%20flaunt%20your%20twitter%20follower%20count%20proudly%20on%20your%20blog.%20The%20following%20PHP%20code%20is%20a%C3%82%C2%A0%20PHP%20cURL%20code%20implementation%20to%20pull%20out%20the%20twitter%20followers%20using%20REST%20API.%20It%20will%20get%20you%20the%20number%20of%20followers%20on%20twitter%20using%20the%20cURL%20library.%20Just%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://www.mygeekpal.com/?ak_action=api_record_view&id=326&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.mygeekpal.com/326/how-to-display-your-twitter-follower-count-using-php/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>60+ Free Buttons for Twitter</title>
		<link>http://www.mygeekpal.com/272/60-free-buttons-for-twitter/</link>
		<comments>http://www.mygeekpal.com/272/60-free-buttons-for-twitter/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 08:28:09 +0000</pubDate>
		<dc:creator>Atif</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.mygeekpal.com/?p=272</guid>
		<description><![CDATA[Followers is what we wish on twitter. Though we get much amount of followers from twitter directly but still you see the follow me button on most of the blogs. Especially when I land on a blog from Stumbleupon or Digg and I like it, then I look for a twitter follow me button. There [...]]]></description>
			<content:encoded><![CDATA[<style><!--
.entry img {
border:1px solid #999999;
margin:5px;
padding:5px 8px;
}
--></style>
<p>Followers is what we wish on twitter. Though we get much amount of followers from twitter directly but still you see the follow me button on most of the blogs. Especially when I land on a blog from Stumbleupon or Digg and I like it, then I look for a twitter follow me button. There are many twitter related free icons available. So I started collecting them all at once place. These are the icons that I was able to find out. I know there are lot more available but I&#8217;m just tired to find add more.</p>
<p>All these icons are free to use. <strong>Click on each icon to see it in its original size.</strong></p>
<p><a class="alignleft" rel="lightbox" href="http://i40.tinypic.com/2mnq7pu.jpg"><img style="display: block;" src="http://i40.tinypic.com/2mnq7pu.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i39.tinypic.com/2iuzsyf.jpg"><img style="display: block;" src="http://i39.tinypic.com/2iuzsyf.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i39.tinypic.com/52xoib.jpg"><img style="display: block;" src="http://i39.tinypic.com/52xoib.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i44.tinypic.com/2wmonwy.jpg"><img style="display: block;" src="http://i44.tinypic.com/2wmonwy.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i40.tinypic.com/5x6c2d.jpg"><img style="display: block;" src="http://i40.tinypic.com/5x6c2d.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i40.tinypic.com/34pnkw4.jpg"><img style="display: block;" src="http://i40.tinypic.com/34pnkw4.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i43.tinypic.com/2cxtbgj.jpg"><img style="display: block;" src="http://i43.tinypic.com/2cxtbgj.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i40.tinypic.com/2rm9rb8.jpg"><img style="display: block;" src="http://i40.tinypic.com/2rm9rb8.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i42.tinypic.com/2r59nw3.jpg"><img style="display: block;" src="http://i42.tinypic.com/2r59nw3.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i43.tinypic.com/2zdrkfd.jpg"><img style="display: block;" src="http://i43.tinypic.com/2zdrkfd.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i39.tinypic.com/2wbuvsh.jpg"><img style="display: block;" src="http://i39.tinypic.com/2wbuvsh.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i43.tinypic.com/315mm9c.jpg"><img style="display: block;" src="http://i43.tinypic.com/315mm9c.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i39.tinypic.com/ipyvr5.jpg"><img style="display: block;" src="http://i39.tinypic.com/ipyvr5.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i41.tinypic.com/i3tduu.jpg"><img style="display: block;" src="http://i41.tinypic.com/i3tduu.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i39.tinypic.com/2s0laio.jpg"><img style="display: block;" src="http://i39.tinypic.com/2s0laio.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i44.tinypic.com/uptzb.jpg"><img style="display: block;" src="http://i44.tinypic.com/uptzb.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i35.tinypic.com/10puge9.jpg"><img style="display: block;" src="http://i35.tinypic.com/10puge9.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i42.tinypic.com/27wwvls.jpg"><img style="display: block;" src="http://i42.tinypic.com/27wwvls.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i41.tinypic.com/11cds7d.jpg"><img style="display: block;" src="http://i41.tinypic.com/11cds7d.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i34.tinypic.com/mmg4kz.jpg"><img style="display: block;" src="http://i34.tinypic.com/mmg4kz.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i44.tinypic.com/2e1f95j.jpg"><img style="display: block;" src="http://i44.tinypic.com/2e1f95j.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i42.tinypic.com/mcswn9.jpg"><img style="display: block;" src="http://i42.tinypic.com/mcswn9.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i40.tinypic.com/11l3dk5.jpg"><img style="display: block;" src="http://i40.tinypic.com/11l3dk5.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i39.tinypic.com/2qd1h12.jpg"><img style="display: block;" src="http://i39.tinypic.com/2qd1h12.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i44.tinypic.com/15fonxu.jpg"><img style="display: block;" src="http://i44.tinypic.com/15fonxu.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i42.tinypic.com/72qalu.jpg"><img style="display: block;" src="http://i42.tinypic.com/72qalu.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://s5.tinypic.com/2m43tsn_th.jpg"><img style="display: block;" src="http://s5.tinypic.com/2m43tsn_th.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://s4.tinypic.com/11c8s2t_th.jpg"><img style="display: block;" src="http://s4.tinypic.com/11c8s2t_th.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://s5.tinypic.com/4g3crb_th.jpg"><img style="display: block;" src="http://s5.tinypic.com/4g3crb_th.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://s5.tinypic.com/14j4wpe_th.jpg"><img style="display: block;" src="http://s5.tinypic.com/14j4wpe_th.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i41.tinypic.com/24fwlm1.jpg"><img style="display: block;" src="http://i41.tinypic.com/24fwlm1.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i41.tinypic.com/wcbd50.jpg"><img style="display: block;" src="http://i41.tinypic.com/wcbd50.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i39.tinypic.com/2h801fr.jpg"><img style="display: block;" src="http://i39.tinypic.com/2h801fr.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i41.tinypic.com/2dhzei0.jpg"><img style="display: block;" src="http://i41.tinypic.com/2dhzei0.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://i44.tinypic.com/2hgedmc.jpg"><img style="display: block;" src="http://i44.tinypic.com/2hgedmc.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://s4.tinypic.com/2ylocxk_th.jpg"><img style="display: block;" src="http://s4.tinypic.com/2ylocxk_th.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://s5.tinypic.com/2pqw0f6_th.jpg"><img style="display: block;" src="http://s5.tinypic.com/2pqw0f6_th.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://s5.tinypic.com/2uibtom_th.jpg"><img style="display: block;" src="http://s5.tinypic.com/2uibtom_th.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://farm4.static.flickr.com/3455/3376077015_a795fe5fa3.jpg?v=0"><img style="display: block;" src="http://farm4.static.flickr.com/3455/3376077015_a795fe5fa3.jpg?v=0" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://farm4.static.flickr.com/3374/3439761629_de082de52d.jpg?v=0"><img style="display: block;" src="http://farm4.static.flickr.com/3374/3439761629_de082de52d.jpg?v=0" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://farm4.static.flickr.com/3436/3398226971_36988f8cca.jpg?v=0"><img style="display: block;" src="http://farm4.static.flickr.com/3436/3398226971_36988f8cca.jpg?v=0" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://farm3.static.flickr.com/2141/2384656420_f66ea56306.jpg?v=0"><img style="display: block;" src="http://farm3.static.flickr.com/2141/2384656420_f66ea56306.jpg?v=0" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://farm4.static.flickr.com/3014/3254133264_02bfef53d5.jpg?v=0"><img style="display: block;" src="http://farm4.static.flickr.com/3014/3254133264_02bfef53d5.jpg?v=0" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://farm4.static.flickr.com/3462/3389655485_c981a3e973.jpg?v=0"><img style="display: block;" src="http://farm4.static.flickr.com/3462/3389655485_c981a3e973.jpg?v=0" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://farm4.static.flickr.com/3466/3383916444_c17344b56e.jpg?v=0"><img style="display: block;" src="http://farm4.static.flickr.com/3466/3383916444_c17344b56e.jpg?v=0" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://th04.deviantart.com/fs39/300W/i/2008/331/3/f/Twitter_3_by_jasonh1234.jpg"><img style="display: block;" src="http://th04.deviantart.com/fs39/300W/i/2008/331/3/f/Twitter_3_by_jasonh1234.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://th02.deviantart.com/fs36/300W/i/2008/245/b/a/Follow_me_on_Twitter_by_kano89.jpg"><img style="display: block;" src="http://th02.deviantart.com/fs36/300W/i/2008/245/b/a/Follow_me_on_Twitter_by_kano89.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://fc01.deviantart.com/fs45/f/2009/148/9/0/Steampunk_Twitter_Logo_by_CatherinetteRings.jpg"><img style="display: block;" src="http://fc01.deviantart.com/fs45/f/2009/148/9/0/Steampunk_Twitter_Logo_by_CatherinetteRings.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://th01.deviantart.com/fs40/300W/f/2009/014/0/c/Twitter_Icons_by_JuliusX.jpg"><img style="display: block;" src="http://th01.deviantart.com/fs40/300W/f/2009/014/0/c/Twitter_Icons_by_JuliusX.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://th01.deviantart.com/fs38/300W/i/2008/314/f/c/Twitter_by_MiloMark.jpg"><img style="display: block;" src="http://th01.deviantart.com/fs38/300W/i/2008/314/f/c/Twitter_by_MiloMark.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://th03.deviantart.com/fs41/300W/f/2009/014/4/1/Twitter_Icon_2_by_JuliusX.jpg"><img style="display: block;" src="http://th03.deviantart.com/fs41/300W/f/2009/014/4/1/Twitter_Icon_2_by_JuliusX.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://th05.deviantart.com/fs31/300W/f/2008/206/9/4/Lisa__s_twitter_Bird_by_darkmotiondotcom.jpg"><img style="display: block;" src="http://th05.deviantart.com/fs31/300W/f/2008/206/9/4/Lisa__s_twitter_Bird_by_darkmotiondotcom.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://th04.deviantart.com/fs45/300W/f/2009/090/f/a/fa63f22bebf943ec63836f808a793439.png"><img style="display: block;" src="http://th04.deviantart.com/fs45/300W/f/2009/090/f/a/fa63f22bebf943ec63836f808a793439.png" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://th07.deviantart.com/fs42/300W/f/2009/090/2/0/twitter_icon_by_antonist.jpg"><img style="display: block;" src="http://th07.deviantart.com/fs42/300W/f/2009/090/2/0/twitter_icon_by_antonist.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://fc08.deviantart.com/fs45/f/2009/117/3/7/White_Mage_Twitter_by_tamtu.jpg"><img style="display: block;" src="http://fc08.deviantart.com/fs45/f/2009/117/3/7/White_Mage_Twitter_by_tamtu.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://fc07.deviantart.com/fs38/i/2008/318/8/d/Twitter_Icon_by_PhireDesign.jpg"><img style="display: block;" src="http://fc07.deviantart.com/fs38/i/2008/318/8/d/Twitter_Icon_by_PhireDesign.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://th02.deviantart.com/fs31/300W/f/2008/206/0/a/Function_Twitter_Treat_by_darkmotiondotcom.jpg"><img style="display: block;" src="http://th02.deviantart.com/fs31/300W/f/2008/206/0/a/Function_Twitter_Treat_by_darkmotiondotcom.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://th08.deviantart.com/fs44/300W/i/2009/089/0/9/Twitter_Logo_by_WinfrithGraphics.jpg"><img style="display: block;" src="http://th08.deviantart.com/fs44/300W/i/2009/089/0/9/Twitter_Logo_by_WinfrithGraphics.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://th04.deviantart.com/fs38/300W/f/2008/318/9/6/Twitter_Bird_by_GerryButton.jpg"><img style="display: block;" src="http://th04.deviantart.com/fs38/300W/f/2008/318/9/6/Twitter_Bird_by_GerryButton.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://fc07.deviantart.com/fs40/f/2009/014/a/0/Twitter_Icon_3_by_JuliusX.jpg"><img style="display: block;" src="http://fc07.deviantart.com/fs40/f/2009/014/a/0/Twitter_Icon_3_by_JuliusX.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://fc05.deviantart.com/fs40/i/2009/017/a/a/IconTexto_Twitter_Buttons_by_IconTexto.jpg"><img style="display: block;" src="http://fc05.deviantart.com/fs40/i/2009/017/a/a/IconTexto_Twitter_Buttons_by_IconTexto.jpg" alt="" width="100" height="100" /></a><a class="alignleft" rel="lightbox" href="http://th01.deviantart.com/fs43/300W/f/2009/100/2/7/Twitter_Icons_by_gojol23.jpg"><img style="display: block;" src="http://th01.deviantart.com/fs43/300W/f/2009/100/2/7/Twitter_Icons_by_gojol23.jpg" alt="" width="100" height="100" /></a></p>
<p><br class="clear" /></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-spaced shr-bookmarks-bg-caring">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.mygeekpal.com/272/60-free-buttons-for-twitter/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.mygeekpal.com/272/60-free-buttons-for-twitter/&amp;title=60%2B+Free+Buttons+for+Twitter" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.mygeekpal.com/272/60-free-buttons-for-twitter/&amp;title=60%2B+Free+Buttons+for+Twitter" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.mygeekpal.com/272/60-free-buttons-for-twitter/&amp;t=60%2B+Free+Buttons+for+Twitter" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=60%2B+Free+Buttons+for+Twitter&amp;link=http://www.mygeekpal.com/272/60-free-buttons-for-twitter/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.mygeekpal.com/272/60-free-buttons-for-twitter/&amp;title=60%2B+Free+Buttons+for+Twitter&amp;summary=%0D%0AFollowers%20is%20what%20we%20wish%20on%20twitter.%20Though%20we%20get%20much%20amount%20of%20followers%20from%20twitter%20directly%20but%20still%20you%20see%20the%20follow%20me%20button%20on%20most%20of%20the%20blogs.%20Especially%20when%20I%20land%20on%20a%20blog%20from%20Stumbleupon%20or%20Digg%20and%20I%20like%20it%2C%20then%20I%20look%20for%20a%20twitter%20follow%20me%20button.%20There%20are%20many%20twitte&amp;source=MyGeekPal" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.mygeekpal.com/272/60-free-buttons-for-twitter/&amp;title=60%2B+Free+Buttons+for+Twitter" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.mygeekpal.com/272/60-free-buttons-for-twitter/&amp;h=60%2B+Free+Buttons+for+Twitter" rel="nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=60%2B+Free+Buttons+for+Twitter&amp;du=http://www.mygeekpal.com/272/60-free-buttons-for-twitter/&amp;cn=%0D%0AFollowers%20is%20what%20we%20wish%20on%20twitter.%20Though%20we%20get%20much%20amount%20of%20followers%20from%20twitter%20directly%20but%20still%20you%20see%20the%20follow%20me%20button%20on%20most%20of%20the%20blogs.%20Especially%20when%20I%20land%20on%20a%20blog%20from%20Stumbleupon%20or%20Digg%20and%20I%20like%20it%2C%20then%20I%20look%20for%20a%20twitter%20follow%20me%20button.%20There%20are%20many%20twitte" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.mygeekpal.com/272/60-free-buttons-for-twitter/&amp;title=60%2B+Free+Buttons+for+Twitter" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.mygeekpal.com/272/60-free-buttons-for-twitter/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=60%2B+Free+Buttons+for+Twitter+-+&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.mygeekpal.com/272/60-free-buttons-for-twitter/&amp;submitHeadline=60%2B+Free+Buttons+for+Twitter&amp;submitSummary=%0D%0AFollowers%20is%20what%20we%20wish%20on%20twitter.%20Though%20we%20get%20much%20amount%20of%20followers%20from%20twitter%20directly%20but%20still%20you%20see%20the%20follow%20me%20button%20on%20most%20of%20the%20blogs.%20Especially%20when%20I%20land%20on%20a%20blog%20from%20Stumbleupon%20or%20Digg%20and%20I%20like%20it%2C%20then%20I%20look%20for%20a%20twitter%20follow%20me%20button.%20There%20are%20many%20twitte&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://www.mygeekpal.com/?ak_action=api_record_view&id=272&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.mygeekpal.com/272/60-free-buttons-for-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>9 things that piss off your twitter followers</title>
		<link>http://www.mygeekpal.com/247/9-things-that-piss-off-your-twitter-followers/</link>
		<comments>http://www.mygeekpal.com/247/9-things-that-piss-off-your-twitter-followers/#comments</comments>
		<pubDate>Sun, 31 May 2009 11:08:22 +0000</pubDate>
		<dc:creator>Atif</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.mygeekpal.com/?p=247</guid>
		<description><![CDATA[Twitter is a great place to make friends. But I must say that there may be many things that may irk your follower or friends. So this week I went more around twitter creating some friends and asking them what they hate. Also on the list I added things that I hate. Auto Direct Messages [...]]]></description>
			<content:encoded><![CDATA[<p><strong><img class="size-full wp-image-270 alignright" title="twitterbird_laptop" src="http://www.mygeekpal.com/wp-content/uploads/2009/05/twitterbird_laptop.jpg" alt="twitterbird_laptop" width="207" height="184" /></strong></p>
<p>Twitter is a great place to make friends. But I must say that there may be many things that may irk your follower or friends. So this week I went more around twitter creating some friends and asking them what they hate. Also on the list I added things that I hate.</p>
<p><strong>Auto Direct Messages</strong></p>
<p>Ah! This is the most annoying thing. I just hate Auto Direct Messages. These are the messages sent automatically when you follow someone. I have asked a couple of friends of mine, regarding the most annoying thing on twitter and most of them said the same thing. Auto DMs. So this goes on top of the list.</p>
<blockquote><p><span class="status-body"><strong><a class="screen-name" title="cheth" href="http://twitter.com/cheth">cheth</a></strong><span class="entry-content"> @<a href="http://twitter.com/atif089">atif089</a> Auto-Dm&#8217;s and a non-stop stream of Friendfeed/Twitter feed is annoying. #twitter #tweet #tweeple</span></span></p></blockquote>
<blockquote><p><span class="status-body"><strong><a class="screen-name" title="Syed Balkhi" href="http://twitter.com/syedbalkhi">syedbalkhi</a></strong><span class="entry-content"> @<a href="http://twitter.com/atif089">atif089</a> Auto-DM reply piss me off alot, but tons of twitterfeed sent out all at once is really annoying as well.</span></span></p></blockquote>
<blockquote><p><span class="status-body"><strong><a class="screen-name" title="misty" href="http://twitter.com/mistygirlph">mistygirlph</a></strong><span class="entry-content">@<a href="http://twitter.com/atif089">atif089</a> I guess it would be auto DMing asking if i want a million followers. I would appreciate it more just saying hello</span></span></p></blockquote>
<p><strong>Advertisements</strong></p>
<p>This is most frustrating thing on twitter. I have seen a lot of people use some sort of PPC advertising on twitter like be-a-magpie and twtad. Apart from that most people put up affiliate links to clickbank products which is even more frustrating. Well for myself, I simply unfollow anyone in my friendlist whollows the above practises.</p>
<blockquote><p><span class="status-body"><strong><a class="screen-name" title="Arnt Edvin Eriksen" href="http://twitter.com/arnteriksen">arnteriksen</a></strong><span class="entry-content"> @<a href="http://twitter.com/atif089">atif089</a> Hehe &#8211; I guess it would be the ones that talk about gaining 30000 of followers in a few weeks.LOL #follow #twitter #tweet #tweeple</span></span></p>
<p><span class="status-body"><strong><a class="screen-name" title="Jay August" href="http://twitter.com/jayaugust">jayaugust</a></strong><span class="entry-content">@<a href="http://twitter.com/atif089">atif089</a> affiliate links, &#8216;marketing guru&#8217;s&#8217; in general, spammers&#8230; All annoy the crap outta me.</span></span></p></blockquote>
<p><strong>Asking for ReTweets</strong></p>
<p>Personally asking for ReTweeets may be a bit hindering for some people. Even I ask some people for ReTweets. But I advice you before asking a ReTweet make sure your content is good enough and make friends first. Simply adding people and asking for RTs wont work.</p>
<p><strong>Direct Messages (DM)</strong></p>
<p>This is more of my personal reason than a collective reason. I don&#8217;t link direct messages unless it is very personal. Rather I want people to send me an @reply which I usually keep checking.</p>
<blockquote><p><span class="status-body"><strong><a class="screen-name" title="Ronald Bien" href="http://twitter.com/naldzgraphics">naldzgraphics</a></strong><span class="entry-content"> @<a href="http://twitter.com/atif089">atif089</a> those tweeple who DM me 3-4 times with the same tweets .</span></span></p></blockquote>
<p><strong>Self Promotion</strong></p>
<p>Previously I only used to self promote my self on all social media websites like SU, Digg and Twitter. Trust me self promotion on social media is a big FAIL. The best practice would be make friends and submit each others content and help each others. This way you would get some good name and trust as well as traffic which is the key. This also includes boasting.</p>
<blockquote><p><span class="status-body"><strong><a class="screen-name" title="Shawn Challner" href="http://twitter.com/schallner">schallner</a></strong><span class="entry-content"> @<a href="http://twitter.com/atif089">atif089</a> Brag about how many people they are unfollowing (every hour), and how many new followers they have to sort through.</span></span></p></blockquote>
<p><strong>0 Updates</strong></p>
<p>Lol I have seen many account like this. These accounts tend to have a couple of thousands of followers but no updates. I don&#8217;t know why people follow them on twitter. Stay away from those people because I probably think they are out for some serious SPAM!</p>
<p><strong>Spam</strong></p>
<p>Even though twitter is very efficient enough in controlling SPAM but sometimes I get to see some people spamming the system like the most popular follow and unfollow.</p>
<blockquote><p><span class="status-body"><strong><a class="screen-name" title="Sumeet Naik" href="http://twitter.com/Sumeet">Sumeet</a></strong><span class="entry-content"> @<a href="http://twitter.com/atif089">atif089</a> </span></span><span class="status-body"><span class="entry-content">Following and unfollowing after I follow back really gets on my nerves..</span></span></p></blockquote>
<p><strong>Asking for someone to click your ads</strong></p>
<p>Well I won&#8217;t like to point out but I have seen some people asking you on twitter to click their Google Ads. personally it didn&#8217;t happened to me yet.</p>
<p><strong>Bots / Feeds / FollowFridays etc.<br />
</strong></p>
<p>People don&#8217;t like to see only feeds coming through your twitter account. Its a social media website and not a mashup site. ImporperÂ  #followfridays and protecting your updates.</p>
<blockquote><p><span class="status-body"><strong><a class="screen-name" title="Din Othman" href="http://twitter.com/DinOthman">DinOthman</a></strong><span class="entry-content"> @<a href="http://twitter.com/atif089">atif089</a> too much twitterFeeds, nothing but quotes, #followfriday RTs and auto-DMs piss me off&#8230;</span></span></p>
<p><span class="status-body"><strong><a class="screen-name" title="Nick Christensen" href="http://twitter.com/Nicksc">Nicksc</a></strong><span class="entry-content"> @<a href="http://twitter.com/atif089">atif089</a> Excessive twitterfeed tweets annoy me the most. In fact, if I see more than two on the same page, I unfollow!</span></span></p>
<p><span class="status-body"><strong><a class="screen-name" title="thomas mercado â„¢" href="http://twitter.com/thomasmmm">thomasmmm</a></strong><span class="entry-content"> @<a href="http://twitter.com/atif089">atif089</a> impolite twitter snobbing</span></span></p>
<p><span class="status-body"><strong><a class="screen-name" title="Deep Sherchan" href="http://twitter.com/bexdeep">bexdeep</a></strong><span class="entry-content"> @<a href="http://twitter.com/atif089">atif089</a> When u reciprocate to those who follow u, u find that ur request is pending. Thats quite irritating!. #twitter #tweet #tweeple<br />
</span></span></p></blockquote>
<p><strong>Update: Oh I mistook DinOthman&#8217;s tweet actually. He means he doesnt like followfrisday RTs i.e people simple RT each other&#8217;s followfridays, how funny is that.</strong></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-spaced shr-bookmarks-bg-caring">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.mygeekpal.com/247/9-things-that-piss-off-your-twitter-followers/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.mygeekpal.com/247/9-things-that-piss-off-your-twitter-followers/&amp;title=9+things+that+piss+off+your+twitter+followers" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.mygeekpal.com/247/9-things-that-piss-off-your-twitter-followers/&amp;title=9+things+that+piss+off+your+twitter+followers" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.mygeekpal.com/247/9-things-that-piss-off-your-twitter-followers/&amp;t=9+things+that+piss+off+your+twitter+followers" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=9+things+that+piss+off+your+twitter+followers&amp;link=http://www.mygeekpal.com/247/9-things-that-piss-off-your-twitter-followers/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.mygeekpal.com/247/9-things-that-piss-off-your-twitter-followers/&amp;title=9+things+that+piss+off+your+twitter+followers&amp;summary=%0D%0A%0D%0ATwitter%20is%20a%20great%20place%20to%20make%20friends.%20But%20I%20must%20say%20that%20there%20may%20be%20many%20things%20that%20may%20irk%20your%20follower%20or%20friends.%20So%20this%20week%20I%20went%20more%20around%20twitter%20creating%20some%20friends%20and%20asking%20them%20what%20they%20hate.%20Also%20on%20the%20list%20I%20added%20things%20that%20I%20hate.%0D%0A%0D%0AAuto%20Direct%20Messages%0D%0A%0D%0AAh%21%20&amp;source=MyGeekPal" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.mygeekpal.com/247/9-things-that-piss-off-your-twitter-followers/&amp;title=9+things+that+piss+off+your+twitter+followers" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.mygeekpal.com/247/9-things-that-piss-off-your-twitter-followers/&amp;h=9+things+that+piss+off+your+twitter+followers" rel="nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=9+things+that+piss+off+your+twitter+followers&amp;du=http://www.mygeekpal.com/247/9-things-that-piss-off-your-twitter-followers/&amp;cn=%0D%0A%0D%0ATwitter%20is%20a%20great%20place%20to%20make%20friends.%20But%20I%20must%20say%20that%20there%20may%20be%20many%20things%20that%20may%20irk%20your%20follower%20or%20friends.%20So%20this%20week%20I%20went%20more%20around%20twitter%20creating%20some%20friends%20and%20asking%20them%20what%20they%20hate.%20Also%20on%20the%20list%20I%20added%20things%20that%20I%20hate.%0D%0A%0D%0AAuto%20Direct%20Messages%0D%0A%0D%0AAh%21%20" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.mygeekpal.com/247/9-things-that-piss-off-your-twitter-followers/&amp;title=9+things+that+piss+off+your+twitter+followers" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.mygeekpal.com/247/9-things-that-piss-off-your-twitter-followers/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=9+things+that+piss+off+your+twitter+followers+-+&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.mygeekpal.com/247/9-things-that-piss-off-your-twitter-followers/&amp;submitHeadline=9+things+that+piss+off+your+twitter+followers&amp;submitSummary=%0D%0A%0D%0ATwitter%20is%20a%20great%20place%20to%20make%20friends.%20But%20I%20must%20say%20that%20there%20may%20be%20many%20things%20that%20may%20irk%20your%20follower%20or%20friends.%20So%20this%20week%20I%20went%20more%20around%20twitter%20creating%20some%20friends%20and%20asking%20them%20what%20they%20hate.%20Also%20on%20the%20list%20I%20added%20things%20that%20I%20hate.%0D%0A%0D%0AAuto%20Direct%20Messages%0D%0A%0D%0AAh%21%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://www.mygeekpal.com/?ak_action=api_record_view&id=247&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.mygeekpal.com/247/9-things-that-piss-off-your-twitter-followers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To Embed a ReTweet Button on Each Blog Post in WordPress</title>
		<link>http://www.mygeekpal.com/204/how-to-embed-a-retweet-button-on-each-blog-post-in-wordpress/</link>
		<comments>http://www.mygeekpal.com/204/how-to-embed-a-retweet-button-on-each-blog-post-in-wordpress/#comments</comments>
		<pubDate>Wed, 06 May 2009 10:27:34 +0000</pubDate>
		<dc:creator>Atif</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.mygeekpal.com/?p=204</guid>
		<description><![CDATA[The idea behind this is simple. Everyone know how quick twitter is reaching the top of social media web. Twitter is a great source of traffic particularly if you have a good number of followers. Tweetmeme is a digg like website where user can submit stories through twitter. If you need some quick hits from [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-206" title="tweetmeme" src="http://www.mygeekpal.com/wp-content/uploads/2009/05/tweetmeme.gif" alt="tweetmeme" width="193" height="48" />The idea behind this is simple. Everyone know how quick twitter is reaching the top of social media web. Twitter is a great source of traffic particularly if you have a good number of followers. <a href="http://tweetmeme.com/">Tweetmeme</a> is a digg like website where user can submit stories through twitter. If you need some quick hits from twitter, I recommend you to add a tweetmeme button on each of your blog posts like I did here. (If you like this post, please don&#8217;t forget to retweet it)</p>
<p>Add this code at the end of the <strong>functions.php</strong> file in your theme to embed a retweet button. If you want to know how to automatically tweet your blog posts read our post on <a title="How to automatically tweet your blog post" href="../173/how-to-automatically-tweet-your-blog-post/">How to automatically tweet your blog post</a></p>
<pre class="javascript" name="code">function tweetmeme($content) {
$code =    '&lt;div class="alignleft"&gt;
&lt;script src="http://tweetmeme.com/i/scripts/button.js" type="text/javascript"&gt;&lt;/script&gt;&lt;/div&gt;
';
if (is_single()) {
return $code.$content;
} else {
return $content;
}
}

add_filter('the_content','tweetmeme');</pre>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-spaced shr-bookmarks-bg-caring">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.mygeekpal.com/204/how-to-embed-a-retweet-button-on-each-blog-post-in-wordpress/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.mygeekpal.com/204/how-to-embed-a-retweet-button-on-each-blog-post-in-wordpress/&amp;title=How+To+Embed+a+ReTweet+Button+on+Each+Blog+Post+in+Wordpress" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.mygeekpal.com/204/how-to-embed-a-retweet-button-on-each-blog-post-in-wordpress/&amp;title=How+To+Embed+a+ReTweet+Button+on+Each+Blog+Post+in+Wordpress" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.mygeekpal.com/204/how-to-embed-a-retweet-button-on-each-blog-post-in-wordpress/&amp;t=How+To+Embed+a+ReTweet+Button+on+Each+Blog+Post+in+Wordpress" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+To+Embed+a+ReTweet+Button+on+Each+Blog+Post+in+Wordpress&amp;link=http://www.mygeekpal.com/204/how-to-embed-a-retweet-button-on-each-blog-post-in-wordpress/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.mygeekpal.com/204/how-to-embed-a-retweet-button-on-each-blog-post-in-wordpress/&amp;title=How+To+Embed+a+ReTweet+Button+on+Each+Blog+Post+in+Wordpress&amp;summary=The%20idea%20behind%20this%20is%20simple.%20Everyone%20know%20how%20quick%20twitter%20is%20reaching%20the%20top%20of%20social%20media%20web.%20Twitter%20is%20a%20great%20source%20of%20traffic%20particularly%20if%20you%20have%20a%20good%20number%20of%20followers.%20Tweetmeme%20is%20a%20digg%20like%20website%20where%20user%20can%20submit%20stories%20through%20twitter.%20If%20you%20need%20some%20quick%20hi&amp;source=MyGeekPal" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.mygeekpal.com/204/how-to-embed-a-retweet-button-on-each-blog-post-in-wordpress/&amp;title=How+To+Embed+a+ReTweet+Button+on+Each+Blog+Post+in+Wordpress" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.mygeekpal.com/204/how-to-embed-a-retweet-button-on-each-blog-post-in-wordpress/&amp;h=How+To+Embed+a+ReTweet+Button+on+Each+Blog+Post+in+Wordpress" rel="nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+To+Embed+a+ReTweet+Button+on+Each+Blog+Post+in+Wordpress&amp;du=http://www.mygeekpal.com/204/how-to-embed-a-retweet-button-on-each-blog-post-in-wordpress/&amp;cn=The%20idea%20behind%20this%20is%20simple.%20Everyone%20know%20how%20quick%20twitter%20is%20reaching%20the%20top%20of%20social%20media%20web.%20Twitter%20is%20a%20great%20source%20of%20traffic%20particularly%20if%20you%20have%20a%20good%20number%20of%20followers.%20Tweetmeme%20is%20a%20digg%20like%20website%20where%20user%20can%20submit%20stories%20through%20twitter.%20If%20you%20need%20some%20quick%20hi" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.mygeekpal.com/204/how-to-embed-a-retweet-button-on-each-blog-post-in-wordpress/&amp;title=How+To+Embed+a+ReTweet+Button+on+Each+Blog+Post+in+Wordpress" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.mygeekpal.com/204/how-to-embed-a-retweet-button-on-each-blog-post-in-wordpress/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+To+Embed+a+ReTweet+Button+on+Each+Blog+Post+in+Wordpress+-+&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.mygeekpal.com/204/how-to-embed-a-retweet-button-on-each-blog-post-in-wordpress/&amp;submitHeadline=How+To+Embed+a+ReTweet+Button+on+Each+Blog+Post+in+Wordpress&amp;submitSummary=The%20idea%20behind%20this%20is%20simple.%20Everyone%20know%20how%20quick%20twitter%20is%20reaching%20the%20top%20of%20social%20media%20web.%20Twitter%20is%20a%20great%20source%20of%20traffic%20particularly%20if%20you%20have%20a%20good%20number%20of%20followers.%20Tweetmeme%20is%20a%20digg%20like%20website%20where%20user%20can%20submit%20stories%20through%20twitter.%20If%20you%20need%20some%20quick%20hi&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://www.mygeekpal.com/?ak_action=api_record_view&id=204&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.mygeekpal.com/204/how-to-embed-a-retweet-button-on-each-blog-post-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to automatically tweet your blog post</title>
		<link>http://www.mygeekpal.com/173/how-to-automatically-tweet-your-blog-post/</link>
		<comments>http://www.mygeekpal.com/173/how-to-automatically-tweet-your-blog-post/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 18:11:43 +0000</pubDate>
		<dc:creator>Atif</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.mygeekpal.com/?p=173</guid>
		<description><![CDATA[Hey guys, this code will let you automatically tweet your latest blog post to twitter. Lol didn&#8217;t understand? What I mean to say is each time you write a new post, the following PHP code will automatically update your twitter timeline with that post. Cool! keep reading.. Open up the functions.php file in your current [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-174" title="twitter-logo" src="http://www.mygeekpal.com/wp-content/uploads/2009/04/twitter-logo.png" alt="twitter-logo" width="128" height="128" />Hey guys, this code will let you automatically tweet your latest blog post to twitter. Lol didn&#8217;t understand? What I mean to say is each time you write a new post, the following PHP code will automatically update your twitter timeline with that post. Cool! keep reading..</p>
<blockquote><p>Open up the <strong>functions.php</strong> file in your current theme and simple add the following code. Dont forget to change the username and password in the code. Save the file. Thats it, you&#8217;re done.</p></blockquote>
<p>Plugin coming tomorrow for those who are scared to mess up with the theme, since its already 12AM here and I want to sleep. Oh yes, here is the code lol</p>
<p>for those who are</p>
<pre class="php" name="code">function twitterit($post_id) {
$username = "atif089";Â Â Â Â Â  // write your twitter username
$password = "abcdefg";Â Â Â Â Â  // write your twitter password here
$post = get_post($post_id);

$title = get_the_title($post-&gt;ID);
$post_permalink = get_permalink($post-&gt;ID);

$ch = curl_init();Â Â Â Â Â  // initialize cURL
// lets make a tinyurl of your post
curl_setopt($ch, CURLOPT_URL, "http://tinyurl.com/api-create.php?url=$post_permalink");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$tinyurl = curl_exec($ch);Â  // get tinyurl of permalink

// now publish it to twitter
curl_setopt($ch, CURLOPT_URL, "http://twitter.com/statuses/update.xml");
curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($ch, CURLOPT_POSTFIELDS, "status=$title $tinyurl");
$buf = curl_exec($ch);

//echo $buf;
curl_close($ch);
}

add_action('publish_post','twitterit',10,2);</pre>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-spaced shr-bookmarks-bg-caring">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.mygeekpal.com/173/how-to-automatically-tweet-your-blog-post/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.mygeekpal.com/173/how-to-automatically-tweet-your-blog-post/&amp;title=How+to+automatically+tweet+your+blog+post" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.mygeekpal.com/173/how-to-automatically-tweet-your-blog-post/&amp;title=How+to+automatically+tweet+your+blog+post" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.mygeekpal.com/173/how-to-automatically-tweet-your-blog-post/&amp;t=How+to+automatically+tweet+your+blog+post" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+to+automatically+tweet+your+blog+post&amp;link=http://www.mygeekpal.com/173/how-to-automatically-tweet-your-blog-post/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.mygeekpal.com/173/how-to-automatically-tweet-your-blog-post/&amp;title=How+to+automatically+tweet+your+blog+post&amp;summary=Hey%20guys%2C%20this%20code%20will%20let%20you%20automatically%20tweet%20your%20latest%20blog%20post%20to%20twitter.%20Lol%20didn%27t%20understand%3F%20What%20I%20mean%20to%20say%20is%20each%20time%20you%20write%20a%20new%20post%2C%20the%20following%20PHP%20code%20will%20automatically%20update%20your%20twitter%20timeline%20with%20that%20post.%20Cool%21%20keep%20reading..%0D%0AOpen%20up%20the%20functions.php%20f&amp;source=MyGeekPal" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.mygeekpal.com/173/how-to-automatically-tweet-your-blog-post/&amp;title=How+to+automatically+tweet+your+blog+post" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.mygeekpal.com/173/how-to-automatically-tweet-your-blog-post/&amp;h=How+to+automatically+tweet+your+blog+post" rel="nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+to+automatically+tweet+your+blog+post&amp;du=http://www.mygeekpal.com/173/how-to-automatically-tweet-your-blog-post/&amp;cn=Hey%20guys%2C%20this%20code%20will%20let%20you%20automatically%20tweet%20your%20latest%20blog%20post%20to%20twitter.%20Lol%20didn%27t%20understand%3F%20What%20I%20mean%20to%20say%20is%20each%20time%20you%20write%20a%20new%20post%2C%20the%20following%20PHP%20code%20will%20automatically%20update%20your%20twitter%20timeline%20with%20that%20post.%20Cool%21%20keep%20reading..%0D%0AOpen%20up%20the%20functions.php%20f" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.mygeekpal.com/173/how-to-automatically-tweet-your-blog-post/&amp;title=How+to+automatically+tweet+your+blog+post" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.mygeekpal.com/173/how-to-automatically-tweet-your-blog-post/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+automatically+tweet+your+blog+post+-+&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.mygeekpal.com/173/how-to-automatically-tweet-your-blog-post/&amp;submitHeadline=How+to+automatically+tweet+your+blog+post&amp;submitSummary=Hey%20guys%2C%20this%20code%20will%20let%20you%20automatically%20tweet%20your%20latest%20blog%20post%20to%20twitter.%20Lol%20didn%27t%20understand%3F%20What%20I%20mean%20to%20say%20is%20each%20time%20you%20write%20a%20new%20post%2C%20the%20following%20PHP%20code%20will%20automatically%20update%20your%20twitter%20timeline%20with%20that%20post.%20Cool%21%20keep%20reading..%0D%0AOpen%20up%20the%20functions.php%20f&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://www.mygeekpal.com/?ak_action=api_record_view&id=173&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.mygeekpal.com/173/how-to-automatically-tweet-your-blog-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
