<?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>ABCoder &#187; twitter</title>
	<atom:link href="http://abcoder.com/topics/twitter/feed/" rel="self" type="application/rss+xml" />
	<link>http://abcoder.com</link>
	<description>ABCoder - Coding is Simple as A b c</description>
	<lastBuildDate>Sat, 17 Jul 2010 11:45:42 +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>Adulterating twitter</title>
		<link>http://abcoder.com/twitter/adulterating-twitter/</link>
		<comments>http://abcoder.com/twitter/adulterating-twitter/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 06:48:07 +0000</pubDate>
		<dc:creator>adnan</dc:creator>
				<category><![CDATA[twitter]]></category>
		<category><![CDATA[adulterate]]></category>
		<category><![CDATA[auto]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[fake]]></category>
		<category><![CDATA[faking]]></category>
		<category><![CDATA[follow]]></category>
		<category><![CDATA[follower]]></category>
		<category><![CDATA[illegal]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[mass follow]]></category>
		<category><![CDATA[massively]]></category>
		<category><![CDATA[trigger]]></category>
		<category><![CDATA[twitter.com]]></category>

		<guid isPermaLink="false">http://abcoder.com/?p=159</guid>
		<description><![CDATA[Fully automate the process of following massively on twitter.com using jQuery trigger event!


Related posts:<ol><li><a href='http://abcoder.com/news/social-networks-like-facebook-twitter-may-face-more-sophisticated-attacks-in-2010/' rel='bookmark' title='Permanent Link: Social networks like Facebook, Twitter may face more sophisticated attacks in 2010'>Social networks like Facebook, Twitter may face more sophisticated attacks in 2010</a> <small>McAfee warned that Social networks will face increasingly sophisticated hacker attacks in 2010. McAfee said, "The explosion of applications on Facebook and other services will be an ideal vector for cybercriminals, who will take advantage of friends trusting friends to click links they might otherwise treat cautiously,"...</small></li>
<li><a href='http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/' rel='bookmark' title='Permanent Link: jQuery cycle plugin as carousel'>jQuery cycle plugin as carousel</a> <small>You can use the jQuery cycle plugin as carousel. No need of special plugin for carousel. Just use the fx: 'scrollHorz' and that's all! This option is kinda hidden on the malsup site. Don't know why they never emphasize on this option!!...</small></li>
<li><a href='http://abcoder.com/javascript/jquery/ajax-and-seo-is-it-possible-to-get-them-together/' rel='bookmark' title='Permanent Link: AJAX and SEO &#8211; Is it possible to get them together?'>AJAX and SEO &#8211; Is it possible to get them together?</a> <small>About 7 months ago I threw a question on LinkedIn, AJAX &amp; SEO. It was about is ajax seo friendly! (The website can be found here http://demo.zpbappi.com). Most of the people answered &#8220;NO&#8221;. All of them suggested me not to use 100% Ajax(ed) website as search endings do not render the javascript. The site has [...]...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Twitter is a simple yet very powerful platform for sharing status updates among the followers. At first its intention was for personal uses, but now it&#8217;s beyond personal, it&#8217;s being used for spreading business updates. Already the total number of twitter followers of a website is considered for the valuation of its traffic. The more followers you have the more value your website gains. To get more followers you need to follow more people.</p>
<p>To follow the followers of a popular person/website go to the &#8220;followers&#8221; page (for example the followers page of php_projects is <a rel="nofollow" href="http://twitter.com/php_projects/followers">http://twitter.com/php_projects/followers</a>). On each page you&#8217;ll see 20 people. There you&#8217;ll see the follow button (a human head with + symbol) beside each follower. Click on that button and you&#8217;ll become a follower of that person. Twitter uses ajax for this action. So you can simultaneously click on all the follow buttons on that page. When you target to follow a large number of people your wrist will get stuck clicking on the follow buttons.</p>
<p>But you can make this process fully automated! As twitter uses jquery, a simple one line of jQuery code can trigger click event on all the buttons at once. I&#8217;m not sure if twitter is aware of that or not. If you use FireBug you can run the code from console tab.</p>
<pre class="brush: jscript;">jQuery(&quot;li.follow-action button&quot;).trigger(&quot;click&quot;);</pre>
<p>Also you can do it directly from address bar. Just paste this code in your address bar, press enter and see the magic!</p>
<pre class="brush: jscript;">javascript:jQuery(&quot;li.follow-action button&quot;).trigger(&quot;click&quot;); void(0);</pre>
<p>Screen shot of the code in action:<br />
<img src="http://abcoder.com/images/adulterating_twitter.jpg" alt="adulterating twitter in action" /></p>
<p>Hope you&#8217;ll find it useful for your business.</p>


<p>Related posts:</p><ol><li><a href='http://abcoder.com/news/social-networks-like-facebook-twitter-may-face-more-sophisticated-attacks-in-2010/' rel='bookmark' title='Permanent Link: Social networks like Facebook, Twitter may face more sophisticated attacks in 2010'>Social networks like Facebook, Twitter may face more sophisticated attacks in 2010</a> <small>McAfee warned that Social networks will face increasingly sophisticated hacker attacks in 2010. McAfee said, "The explosion of applications on Facebook and other services will be an ideal vector for cybercriminals, who will take advantage of friends trusting friends to click links they might otherwise treat cautiously,"...</small></li>
<li><a href='http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/' rel='bookmark' title='Permanent Link: jQuery cycle plugin as carousel'>jQuery cycle plugin as carousel</a> <small>You can use the jQuery cycle plugin as carousel. No need of special plugin for carousel. Just use the fx: 'scrollHorz' and that's all! This option is kinda hidden on the malsup site. Don't know why they never emphasize on this option!!...</small></li>
<li><a href='http://abcoder.com/javascript/jquery/ajax-and-seo-is-it-possible-to-get-them-together/' rel='bookmark' title='Permanent Link: AJAX and SEO &#8211; Is it possible to get them together?'>AJAX and SEO &#8211; Is it possible to get them together?</a> <small>About 7 months ago I threw a question on LinkedIn, AJAX &amp; SEO. It was about is ajax seo friendly! (The website can be found here http://demo.zpbappi.com). Most of the people answered &#8220;NO&#8221;. All of them suggested me not to use 100% Ajax(ed) website as search endings do not render the javascript. The site has [...]...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://abcoder.com/twitter/adulterating-twitter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
