<?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>nukeitdotorg &#187; tool</title>
	<atom:link href="http://nukeit.org/tag/tool/feed/" rel="self" type="application/rss+xml" />
	<link>http://nukeit.org</link>
	<description>Digital Medication</description>
	<lastBuildDate>Wed, 08 Sep 2010 02:41:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1-alpha</generator>
		<item>
		<title>Stupid Bash Scripts &#8211; Twitter Autofollower</title>
		<link>http://nukeit.org/stupid-bash-scripts-twitter-autofollower/</link>
		<comments>http://nukeit.org/stupid-bash-scripts-twitter-autofollower/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 18:39:00 +0000</pubDate>
		<dc:creator>fuzion</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[autofollow]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://nukeit.org/?p=4170</guid>
		<description><![CDATA[<a href="http://nukeit.org/stupid-bash-scripts-twitter-autofollower/" alt="Stupid Bash Scripts - Twitter Autofollower"><img src="http://cdn.nukeit.org/wp-content/uploads/2009/06/stupidtwitter.gif" align="left" alt="Stupid Bash Scripts - Twitter Autofollower" hspace="5" vspace="5" border="0" /></a><a href="http://cdn.nukeit.org/wp-content/uploads/2009/06/stupidtwitter.gif"></a>And here's my stupid autofollow script. My <a href="http://nukeit.org/stupid-bash-scripts-twitter-follower-grabber/">Follower Grabber script</a> generates lists of 1k users which you can plug into this one to follow 1k new people per day. It has a timer so you won't hit the hourly limits.

#!/bin/bash
FILE="newfollows"
exec < $FILE
while read LINE
do... <a href="http://nukeit.org/stupid-bash-scripts-twitter-autofollower/">Read more..</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://cdn.nukeit.org/wp-content/uploads/2009/06/stupidtwitter.gif"><img alt="" src="http://cdn.nukeit.org/wp-content/uploads/2009/06/stupidtwitter.gif" title="stupidtwitter" class="alignleft" width="300" height="300" /></a>And here&#8217;s my stupid autofollow script. My <a href="http://nukeit.org/stupid-bash-scripts-twitter-follower-grabber/">Follower Grabber script</a> generates lists of 1k users which you can plug into this one to follow 1k new people per day. It has a timer so you won&#8217;t hit the hourly limits.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #007800;">FILE</span>=<span style="color: #ff0000;">&quot;newfollows&quot;</span>
<span style="color: #7a0874; font-weight: bold;">exec</span> <span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #007800;">$FILE</span>
<span style="color: #000000; font-weight: bold;">while</span> <span style="color: #c20cb9; font-weight: bold;">read</span> LINE
<span style="color: #000000; font-weight: bold;">do</span>
<span style="color: #666666; font-style: italic;">#twitter follow $LINE -e email -p password</span>
twitter follow <span style="color: #007800;">$LINE</span> <span style="color: #660033;">-e</span> email <span style="color: #660033;">-p</span> password
<span style="color: #c20cb9; font-weight: bold;">sleep</span> <span style="color: #000000;">37</span>
<span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<p>I use Python Twitter Tools because it has nice features and does a lot of hard work that I could have spent hours writing in bash. http://mike.verdone.ca/twitter/</p>
<p>To auto tweet something, use something like this. I dunno&#8230; I use hootsuite <img src='http://cdn.nukeit.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #007800;">FILE</span>=<span style="color: #ff0000;">&quot;tweets&quot;</span>
<span style="color: #7a0874; font-weight: bold;">exec</span> <span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #007800;">$FILE</span>
<span style="color: #000000; font-weight: bold;">while</span> <span style="color: #c20cb9; font-weight: bold;">read</span> LINE
<span style="color: #000000; font-weight: bold;">do</span>
twitter <span style="color: #000000; font-weight: bold;">set</span> <span style="color: #007800;">$LINE</span> <span style="color: #660033;">-e</span> email <span style="color: #660033;">-p</span> password
<span style="color: #c20cb9; font-weight: bold;">sleep</span> <span style="color: #000000;">3600</span> <span style="color: #666666; font-style: italic;">## seconds</span>
<span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<p>Other tips:<br />
Create multiple directories and copy the script into each one. Add you different account info to each script and start them. I&#8217;ve only tested it with two accounts at the same time, but any more and you might get .</p>
<p>Add your 1k per day and wait 48h. Use something like refollow to remove those who don&#8217;t follow you back. Repeat as long as you want</p>
<p>The follow grabber tries to keep track of your followers and uses that list to keep your lists clean. This functionality might break or take forever if you already have a shit ton of followers.</p>
<p>I got block banned a while back, some asshat blocked me and I think I tried to follow him too many times and the bot got me. I had it reversed immediately, but its something you might watch out for.</p>
<p>I don&#8217;t know of any way off hand to find out who is blocking you, but if you have a way or a list, you need to make sure your new collections don&#8217;t contain those who are blocking you.</p>
]]></content:encoded>
			<wfw:commentRss>http://nukeit.org/stupid-bash-scripts-twitter-autofollower/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stupid Bash Scripts &#8211; Twitter Follower Grabber</title>
		<link>http://nukeit.org/stupid-bash-scripts-twitter-follower-grabber/</link>
		<comments>http://nukeit.org/stupid-bash-scripts-twitter-follower-grabber/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 00:12:29 +0000</pubDate>
		<dc:creator>nukeit</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[add]]></category>
		<category><![CDATA[auto]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[bot]]></category>
		<category><![CDATA[follow]]></category>
		<category><![CDATA[follower]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://nukeit.org./?p=4051</guid>
		<description><![CDATA[<a href="http://nukeit.org/stupid-bash-scripts-twitter-follower-grabber/" alt="Stupid Bash Scripts - Twitter Follower Grabber"><img src="http://cdn.nukeit.org/wp-content/uploads/2009/06/stupidtwitter.gif" align="left" alt="Stupid Bash Scripts - Twitter Follower Grabber" hspace="5" vspace="5" border="0" /></a><a href="http://cdn.nukeit.org/wp-content/uploads/2009/06/stupidtwitter.gif"></a>

Here's a little bash script that you can use to grab your followers' followers. It dumps them in to split lists of 1000 users each. Windows user? Just use msys with curl, it will work.

Why bash? Why learn a new language when you already have the stuff to do it without a bunch of extra deps? Not to mention the extremely low chance som... <a href="http://nukeit.org/stupid-bash-scripts-twitter-follower-grabber/">Read more..</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://cdn.nukeit.org/wp-content/uploads/2009/06/stupidtwitter.gif"><img src="http://cdn.nukeit.org/wp-content/uploads/2009/06/stupidtwitter.gif" alt="stupidtwitter" title="stupidtwitter" width="300" height="300" class="alignleft size-full wp-image-4057" /></a></p>
<p>Here&#8217;s a little bash script that you can use to grab your followers&#8217; followers. It dumps them in to split lists of 1000 users each. Windows user? Just use msys with curl, it will work.</p>
<p>Why bash? Why learn a new language when you already have the stuff to do it without a bunch of extra deps? Not to mention the extremely low chance some assclown will steal it, compile it, then sell it on BHW or ebay for a crapload of money&#8230;</p>
<p>I may post my autofollower if there&#8217;s any interest. Leave me some comments and I&#8217;ll think about it <img src='http://cdn.nukeit.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;">#                      |         _)  |        |        |</span>
<span style="color: #666666; font-style: italic;">#            \   |  |  | /   -_)  |   _|   _` |   _ \   _|   _ \   _| _` |</span>
<span style="color: #666666; font-style: italic;">#         _| _| \_,_| _\_\ \___| _| \__| \__,_| \___/ \__| \___/ _| \__, |</span>
<span style="color: #666666; font-style: italic;">#                                                                   ____/</span>
<span style="color: #666666; font-style: italic;">#                              http://nukeit.org</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;">#Grab your followers' followers and send them to 1k line lists for use with my autofollow script.</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;">#Set your username and password here.</span>
<span style="color: #007800;">USER</span>=<span style="color: #ff0000;">&quot;&quot;</span>
<span style="color: #007800;">PASS</span>=<span style="color: #ff0000;">&quot;&quot;</span>
<span style="color: #666666; font-style: italic;">#Grab first 50 pages of your follower list to avoid the limits</span>
<span style="color: #000000; font-weight: bold;">for</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span> <span style="color: #007800;">a</span>=<span style="color: #000000;">1</span>; a<span style="color: #000000; font-weight: bold;">&lt;</span>=<span style="color: #000000;">49</span>; a++ <span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>; <span style="color: #000000; font-weight: bold;">do</span> curl http:<span style="color: #000000; font-weight: bold;">//</span>twitter.com<span style="color: #000000; font-weight: bold;">/</span>statuses<span style="color: #000000; font-weight: bold;">/</span>followers.xml?<span style="color: #007800;">page</span>=<span style="color: #007800;">$a</span> -u<span style="color: #007800;">$USER</span>:<span style="color: #007800;">$PASS</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> myfollowers.xml; <span style="color: #000000; font-weight: bold;">done</span>
<span style="color: #666666; font-style: italic;">#Jack all the screen names</span>
<span style="color: #c20cb9; font-weight: bold;">cat</span> myfollowers.xml <span style="color: #000000; font-weight: bold;">|</span><span style="color: #c20cb9; font-weight: bold;">grep</span> screen_name <span style="color: #000000; font-weight: bold;">&gt;</span> followers2
<span style="color: #666666; font-style: italic;">#Clean up the output</span>
<span style="color: #c20cb9; font-weight: bold;">cat</span> followers2 <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s/\&lt;screen_name&gt;//g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s/\&lt;in_reply_to_screen_name&gt;//g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s/&lt;//g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s/\///g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #ff0000;">'s/ //g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #ff0000;">'/^$/d'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sort</span> <span style="color: #660033;">-ui</span> <span style="color: #000000; font-weight: bold;">&gt;</span> allfollowers
<span style="color: #666666; font-style: italic;">#Do it again but only keep the first 50 lines to avoid the limits</span>
<span style="color: #c20cb9; font-weight: bold;">cat</span> followers2 <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s/\&lt;screen_name&gt;//g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s/\&lt;in_reply_to_screen_name&gt;//g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s/&lt;//g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s/\///g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #ff0000;">'s/ //g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #ff0000;">'/^$/d'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sort</span> <span style="color: #660033;">-ui</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">head</span> <span style="color: #660033;">-n</span> <span style="color: #000000;">50</span> <span style="color: #000000; font-weight: bold;">&gt;</span> followers3
<span style="color: #666666; font-style: italic;">#Grab your followers followers</span>
<span style="color: #000000; font-weight: bold;">for</span> tweeps <span style="color: #000000; font-weight: bold;">in</span> $<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">cat</span> followers3<span style="color: #7a0874; font-weight: bold;">&#41;</span>; <span style="color: #000000; font-weight: bold;">do</span> curl http:<span style="color: #000000; font-weight: bold;">//</span>twitter.com<span style="color: #000000; font-weight: bold;">/</span>statuses<span style="color: #000000; font-weight: bold;">/</span>friends<span style="color: #000000; font-weight: bold;">/</span><span style="color: #800000;">${tweeps}</span>.xml -u<span style="color: #007800;">$USER</span>:<span style="color: #007800;">$PASS</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> followfollow; <span style="color: #000000; font-weight: bold;">done</span>
<span style="color: #666666; font-style: italic;">#Jack all the screen names</span>
<span style="color: #c20cb9; font-weight: bold;">cat</span> followfollow <span style="color: #000000; font-weight: bold;">|</span><span style="color: #c20cb9; font-weight: bold;">grep</span> screen_name <span style="color: #000000; font-weight: bold;">&gt;</span> followfollow2
<span style="color: #666666; font-style: italic;">#Clean up the output</span>
<span style="color: #c20cb9; font-weight: bold;">cat</span> followfollow2 <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s/\&lt;screen_name&gt;//g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s/\&lt;in_reply_to_screen_name&gt;//g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s/&lt;//g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s/\///g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #ff0000;">'s/ //g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sort</span> <span style="color: #660033;">-ui</span> <span style="color: #000000; font-weight: bold;">&gt;</span> followfollow3
<span style="color: #666666; font-style: italic;">#Dupecheck</span>
<span style="color: #c20cb9; font-weight: bold;">comm</span> <span style="color: #660033;">-1</span> <span style="color: #660033;">-2</span> allfollowers followfollow3 <span style="color: #000000; font-weight: bold;">&gt;</span> dupe
<span style="color: #c20cb9; font-weight: bold;">cat</span> followfollow3 <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #660033;">-v</span> <span style="color: #660033;">-f</span> dupe <span style="color: #000000; font-weight: bold;">&gt;</span> followfollow4
<span style="color: #666666; font-style: italic;">#Split into files with 1k each</span>
<span style="color: #c20cb9; font-weight: bold;">split</span> <span style="color: #660033;">-l</span> <span style="color: #000000;">1000</span> followfollow4 finallistpart
<span style="color: #666666; font-style: italic;">#cleanup</span>
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> follow<span style="color: #000000; font-weight: bold;">*</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://nukeit.org/stupid-bash-scripts-twitter-follower-grabber/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
