<?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>Chris&#039; notes &#187; Twitter</title>
	<atom:link href="http://www.chrismaddern.com/category/twitter/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chrismaddern.com</link>
	<description>Chris Maddern&#039;s personal blog on the the web, development, entrepreneurship and life in general</description>
	<lastBuildDate>Thu, 03 May 2012 17:51:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Animate your follower count going up on Twitter</title>
		<link>http://www.chrismaddern.com/animate-your-follower-count-going-up-on-twitter/</link>
		<comments>http://www.chrismaddern.com/animate-your-follower-count-going-up-on-twitter/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 16:01:58 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Buy Twitter Followers]]></category>
		<category><![CDATA[Free Code]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.blogitech.co.uk/?p=879</guid>
		<description><![CDATA[I was creating a promo video for BuyFollowers and I wanted to animate Twitter followers going up. So.. I figured the easiest way is to use Javascript to manipulate the page and increment the follower count. The result: &#160; So how does it work? We get the element that contains the XXX Followers text and modify it to [...]]]></description>
			<content:encoded><![CDATA[<div class="woo-sc-box download  rounded full">Scroll down if you just want code&#8230; paste it in to the address bar on a Twitter profile and watch the followers go up!</div>
<p>I was creating a promo video for <a title="Buy Twitter Followers" href="http://www.buyfollowers.us">BuyFollowers</a> and I wanted to animate Twitter followers going up.</p>
<p>So.. I figured the easiest way is to use Javascript to manipulate the page and increment the follower count.</p>
<p><strong>The result:</strong></p>
<p><object style="border-radius: 15px;" width="560" height="349" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/sOn0dS3Cfb0?fs=1&amp;hl=en_US&amp;rel=0&amp;autoplay=1&amp;controls=0&amp;autohide=1&amp;showinfo=0&amp;version=3" /><param name="wmode" value="opaque" /><param name="controls" value="controls" /><param name="autohide" value="1" /><param name="allowfullscreen" value="true" /><embed style="border-radius: 15px;" width="560" height="349" type="application/x-shockwave-flash" src="http://www.youtube.com/v/sOn0dS3Cfb0?fs=1&amp;hl=en_US&amp;rel=0&amp;autoplay=1&amp;controls=0&amp;autohide=1&amp;showinfo=0&amp;version=3" allowFullScreen="true" allowscriptaccess="always" wmode="opaque" controls="controls" autohide="1" allowfullscreen="true" /></object></p>
<p>&nbsp;</p>
<p><strong>So how does it work?</strong></p>
<ul>
<li>We get the element that contains the XXX Followers text and modify it to contain a span with an ID around the number &#8211; this makes it easier to modify just the follower count</li>
<li>Capture this number and the end count (by adding 1000)</li>
<li>Increment through to the new follower count, updating the value</li>
<li>Use setTimeout to begin the next iteration after the UI has updated</li>
</ul>
<div>Code (<strong>for inline address bar code -scroll down</strong>):</div>
<div>
<pre class="brush: javascript; gutter: false">var followercount = 1000;
var endCount;
var currentCount;
function incrementFollowers() {
  document.getElementById('followerinc').innerHTML = followercount;
  followercount += 1;
  if (followercount &lt; endCount) {
    setTimeout(incrementFollowers, 20);
  }
};
var comma = ",";
currentCount = parseInt(document.getElementsByClassName('user-stats-count user-stats-followers')[0].innerHTML.split("&lt;span")[0].replace(comma,''));
endCount = currentCount + 1000;
followercount = currentCount;
document.getElementsByClassName('user-stats-count user-stats-followers')[0].innerHTML = '&lt;span id="followerinc"&gt;' + currentCount + '&lt;/span&gt;&lt;span class="user-stats-stat"&gt;Followers&lt;/span&gt;';
setTimeout(incrementFollowers, 1);</pre>
</div>
<div><strong>And inline (use this) :</strong></div>
<div>
<pre class="brush: javascript; gutter: false">javascript:var followercount = 1000; var endCount;var currentCount; function incrementFollowers() { document.getElementById('followerinc').innerHTML = followercount; followercount += 1; if (followercount &lt; endCount) { setTimeout(incrementFollowers, 20); } };var comma = ",";currentCount = parseInt(document.getElementsByClassName('user-stats-count user-stats-followers')[0].innerHTML.split("&lt;span")[0].replace(comma,'')); endCount = currentCount + 1000; followercount = currentCount; document.getElementsByClassName('user-stats-count user-stats-followers')[0].innerHTML = '&lt;span id="followerinc"&gt;' + currentCount + '&lt;/span&gt;&lt;span class="user-stats-stat"&gt;Followers&lt;/span&gt;'; setTimeout(incrementFollowers, 1);</pre>
</div>
<div>Just paste it in to the address bar and away you go!</div>
<p></p>
<div><strong>Enjoy</strong></div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrismaddern.com/animate-your-follower-count-going-up-on-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;ve been tweeting this week</title>
		<link>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-82/</link>
		<comments>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-82/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 15:00:00 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Tweet]]></category>

		<guid isPermaLink="false">http://www.blogitech.co.uk/what-ive-been-tweeting-this-week-82/</guid>
		<description><![CDATA[Just got the new Gmail Look &#8211; has Google developed an allergy to color?! # @nofb yay iOS 5.0.1 beta &#8211; perhaps my iPhone will last all day tomorrow&#8230;?! Probably not though. # Mmmmmm&#8230;. Cheesecake! # @kevinrose &#8211; @oinkapp is a great implementation! Look forward to getting an invite&#8230;! Congrats. # Just realized that reading [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Just got the new Gmail Look &#8211; has Google developed an allergy to color?! <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/131821393900879872">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/nofb">nofb</a> yay iOS 5.0.1 beta &#8211; perhaps my iPhone will last all day tomorrow&#8230;?! Probably not though. <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/131884733071237120">#</a></li>
<li>Mmmmmm&#8230;. Cheesecake! <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/132140931473358849">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kevinrose">kevinrose</a> &#8211; @<a class="aktt_username" href="http://twitter.com/oinkapp">oinkapp</a> is a great implementation! Look forward to getting an invite&#8230;! Congrats. <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/132205908360044544">#</a></li>
<li>Just realized that reading anything by Scoble which is about something you don&#8217;t thoroughly understand is very confusing. :s <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/132210095659560962">#</a></li>
<li>Competition just validates your space, but how much validation is too much validation&#8230;? :p <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/132238591773511680">#</a></li>
<li>Just liked Netflix <a href="http://t.co/VomyY9Ep" rel="nofollow">http://t.co/VomyY9Ep</a> (via @<a class="aktt_username" href="http://twitter.com/oinkapp">oinkapp</a>) <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/132251651506577409">#</a></li>
<li>Just loved Oink IOS App <a href="http://t.co/GJQZ0tPF" rel="nofollow">http://t.co/GJQZ0tPF</a> (via @<a class="aktt_username" href="http://twitter.com/oinkapp">oinkapp</a>) <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/132251795878723584">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/TheaterPlusPlus">TheaterPlusPlus</a> Somebody probably should :p Can see those tumbleweeds these days! cc @<a class="aktt_username" href="http://twitter.com/dramabookshop">dramabookshop</a> <a class="aktt_tweet_reply" href="http://twitter.com/TheaterPlusPlus/statuses/132295529349660672">in reply to TheaterPlusPlus</a> <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/132443407934164993">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/TheaterPlusPlus">TheaterPlusPlus</a> Remember the days when #<a class="aktt_hashtag" href="http://search.twitter.com/search?q=%23FF">FF</a> would be the #<a class="aktt_hashtag" href="http://search.twitter.com/search?q=%231">1</a> trending topic every Friday&#8230;!? Now it&#8217;s not even on the list! <a class="aktt_tweet_reply" href="http://twitter.com/TheaterPlusPlus/statuses/132522118373052416">in reply to TheaterPlusPlus</a> <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/132522338435604480">#</a></li>
<li>TechCrunch Giveaway: Apple iPad 2 #TechCrunch via @<a class="aktt_username" href="http://twitter.com/techcrunch">techcrunch</a> <a href="http://t.co/6tzdWfai" rel="nofollow">http://t.co/6tzdWfai</a> <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/132554271706193920">#</a></li>
<li>The new Apple Store cube looks great&#8230; <a href="http://t.co/ki0JaDW6" rel="nofollow">http://t.co/ki0JaDW6</a> <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/132878286119383040">#</a></li>
<li>Just loved Xcode <a href="http://t.co/76146oh7" rel="nofollow">http://t.co/76146oh7</a> (via @<a class="aktt_username" href="http://twitter.com/oinkapp">oinkapp</a>) <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/132890206289403906">#</a></li>
<li>Just found out that my stopwatch on my 4S has been running since before I even got it&#8230;?! Battery drain help? <a href="http://t.co/c0eBrV5R" rel="nofollow">http://t.co/c0eBrV5R</a> <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/132921744251035648">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/neilwarner">neilwarner</a> massive&#8230; Google it&#8230; There&#8217;s loads of pics. Even some of Steve Jobs opening it :) <a class="aktt_tweet_reply" href="http://twitter.com/neilwarner/statuses/133101403647377408">in reply to neilwarner</a> <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/133275903194173440">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/thorn_waite">thorn_waite</a> haha! True! <a class="aktt_tweet_reply" href="http://twitter.com/thorn_waite/statuses/132926861134139392">in reply to thorn_waite</a> <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/133275980088356865">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/paulaanton">paulaanton</a> hope not! <a class="aktt_tweet_reply" href="http://twitter.com/paulaanton/statuses/133275921451974656">in reply to paulaanton</a> <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/133276287912517633">#</a></li>
<li>Just played on Pan Am’s “My Flight Crew” on Facebook! Great fun!! Check it out! <a href="http://t.co/iBCr68z6" rel="nofollow">http://t.co/iBCr68z6</a> &#8211; spon <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/133292476583784450">#</a></li>
<li>Get Firefox 8, two days early! <a href="ftp://ftp.mozilla.org/pub/firefox/releases/8.0/mac/en-US/Firefox%208.0.dmg" rel="nofollow">ftp://ftp.mozilla.org/pub/firefox/releases/8.0/mac/en-US/Firefox%208.0.dmg</a> <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/133342994773450752">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/nofb">nofb</a> How on earth did we get to Google Chrome v15?! <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/133343889661763584">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/l_robson">l_robson</a> Are you state side at the moment..?! Miss ya :( <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/133627357507502080">#</a></li>
<li>When did Spotify change to using the non-swearing Radio version of songs?! Cee Lo does NOT want to &#8216;Forget&#8217; you…! <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/133628979524550656">#</a></li>
<li>RT @<a class="aktt_username" href="http://twitter.com/0xcharlie">0xcharlie</a> &#8220;OMG, Apple just kicked me out of the iOS Developer program. That&#8217;s so rude!&#8221; Did anyone *not* see that coming&#8230;?! <a class="aktt_tweet_reply" href="http://twitter.com/0xcharlie/statuses/133680514950369280">in reply to 0xcharlie</a> <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/133882060086591488">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/chpwn">chpwn</a> Thanks &#8211; I think that answers why it wasn&#8217;t in iOS5 &#8211; the stitching is pretty bad! <a class="aktt_tweet_reply" href="http://twitter.com/chpwn/statuses/133723404372156417">in reply to chpwn</a> <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/133908789685526531">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/Podio">Podio</a> Kicking Ass! Any chance of custom domains soon&#8230;? And some Google Docs integration&#8230;? <a class="aktt_tweet_time" href="http://twitter.com/chrismaddern/statuses/134023653393317888">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-82/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;ve been tweeting this week</title>
		<link>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-81/</link>
		<comments>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-81/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 15:00:00 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Tweet]]></category>

		<guid isPermaLink="false">http://www.blogitech.co.uk/what-ive-been-tweeting-this-week-81/</guid>
		<description><![CDATA[A great mirror of Steve&#039;s advice when he returned to Apple! RT @jack Nokia: you make too many products. Focus on 3. in reply to jack # @sparrowmailapp What&#039;s going on!? Sparrow used to be perfect, but in the past couple weeks I&#039;ve been experiencing UI &#38; ordering issues.. # Groggy day in NY &#8211; [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>A great mirror of Steve&#039;s advice when he returned to Apple! RT @<a href="http://twitter.com/jack" class="aktt_username">jack</a> Nokia: you make too many products. Focus on 3. <a href="http://twitter.com/jack/statuses/129206646630129664" class="aktt_tweet_reply">in reply to jack</a> <a href="http://twitter.com/chrismaddern/statuses/129226164081397760" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/sparrowmailapp" class="aktt_username">sparrowmailapp</a> What&#039;s going on!? Sparrow used to be perfect, but in the past couple weeks I&#039;ve been experiencing UI &amp; ordering issues.. <a href="http://twitter.com/chrismaddern/statuses/129251302919258112" class="aktt_tweet_time">#</a></li>
<li>Groggy day in NY &#8211; want to go somewhere sunny!! <a href="http://twitter.com/chrismaddern/statuses/129594212999106560" class="aktt_tweet_time">#</a></li>
<li>It&#039;s taken 2 and a half years, but I finally(!) have all of my google services on the Google Apps account! Thanks @<a href="http://twitter.com/google" class="aktt_username">google</a>! <a href="http://twitter.com/chrismaddern/statuses/129778210421489664" class="aktt_tweet_time">#</a></li>
<li>Dear @<a href="http://twitter.com/dunkindonuts" class="aktt_username">dunkindonuts</a> &#8211; a coffee with milk and no sugar is exactly that and is to be served accompanied by milk and not sugar. 3rd day running! <a href="http://twitter.com/chrismaddern/statuses/129902094353305600" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> @<a href="http://twitter.com/corkbin" class="aktt_username">corkbin</a> @ronandelacroix @<a href="http://twitter.com/ecoBela" class="aktt_username">ecoBela</a> @furby @<a href="http://twitter.com/avipatch" class="aktt_username">avipatch</a> @theaterplusplus @<a href="http://twitter.com/tamareluned" class="aktt_username">tamareluned</a> @alexloiz @<a href="http://twitter.com/mrufo" class="aktt_username">mrufo</a> @ckorhonen @<a href="http://twitter.com/coolnik07" class="aktt_username">coolnik07</a> <a href="http://twitter.com/chrismaddern/statuses/129933064724955136" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/avipatch" class="aktt_username">avipatch</a> Private preview..? :) Actually, I would love to get in touch with the @<a href="http://twitter.com/Vungle" class="aktt_username">Vungle</a> guys to talk vids&#8230; <a href="http://twitter.com/avipatch/statuses/129910082145234944" class="aktt_tweet_reply">in reply to avipatch</a> <a href="http://twitter.com/chrismaddern/statuses/129933839207374849" class="aktt_tweet_time">#</a></li>
<li>Snowing in NY today&#8230;!? <a href="http://t.co/JSzLqkkJ" rel="nofollow">http://t.co/JSzLqkkJ</a> <a href="http://twitter.com/chrismaddern/statuses/130345071445946368" class="aktt_tweet_time">#</a></li>
<li>A touching eulogy by Steve Jobs&#039; sister&#8230; <a href="http://t.co/3NlOOYQq" rel="nofollow">http://t.co/3NlOOYQq</a> <a href="http://twitter.com/chrismaddern/statuses/130811013242175488" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/BeckyBrooksNYC" class="aktt_username">BeckyBrooksNYC</a> eep&#8230;. I didn&#039;t get a costume together! Whoops #<a href="http://search.twitter.com/search?q=%23epicfail" class="aktt_hashtag">epicfail</a> <a href="http://twitter.com/BeckyBrooksNYC/statuses/130848579840507904" class="aktt_tweet_reply">in reply to BeckyBrooksNYC</a> <a href="http://twitter.com/chrismaddern/statuses/130851319178199040" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/sparrowmailapp" class="aktt_username">sparrowmailapp</a> &#8211; the latest update fixed a lot of stuff, but my Sparrow is still doing this&#8230;. <a href="http://t.co/EgrV6oDH" rel="nofollow">http://t.co/EgrV6oDH</a> thoughts? <a href="http://twitter.com/chrismaddern/statuses/131021928487071744" class="aktt_tweet_time">#</a></li>
<li>In London? Check out the new Networking tool &#8211; LinkOut &#8211; exclusive to London at Launch! <a href="http://t.co/yS79wiuU" rel="nofollow">http://t.co/yS79wiuU</a> <a href="http://twitter.com/chrismaddern/statuses/131348113259630592" class="aktt_tweet_time">#</a></li>
<li>In London? Check out the new Networking tool &#8211; LinkOut &#8211; exclusive to London at Launch! <a href="http://t.co/2XEzYS6s" rel="nofollow">http://t.co/2XEzYS6s</a> <a href="http://twitter.com/chrismaddern/statuses/131349642251223041" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/linkoutapp" class="aktt_username">linkoutapp</a> How were the first day stats&#8230;? :) <a href="http://t.co/2XEzYS6s" rel="nofollow">http://t.co/2XEzYS6s</a> <a href="http://twitter.com/chrismaddern/statuses/131373216936628224" class="aktt_tweet_time">#</a></li>
<li>LinkOut iPhone App Review <a href="http://t.co/iKVuyzpM" rel="nofollow">http://t.co/iKVuyzpM</a> <a href="http://twitter.com/chrismaddern/statuses/131379045064650754" class="aktt_tweet_time">#</a></li>
<li>Native GMail iPhone App! <a href="http://t.co/tDzJ7eme" rel="nofollow">http://t.co/tDzJ7eme</a> <a href="http://twitter.com/chrismaddern/statuses/131381828111179776" class="aktt_tweet_time">#</a></li>
<li>How is it that in 24 &#8211; everyone instantly knows how to spell a vaguely dropped name, nomatter how incomprehensible it may be..?! <a href="http://twitter.com/chrismaddern/statuses/131395833382973440" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ecoBela" class="aktt_username">ecoBela</a> and that would be very sad!! ;) <a href="http://twitter.com/ecoBela/statuses/131401279242121216" class="aktt_tweet_reply">in reply to ecoBela</a> <a href="http://twitter.com/chrismaddern/statuses/131401451468623872" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-81/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;ve been tweeting this week</title>
		<link>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-79/</link>
		<comments>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-79/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 14:00:00 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Tweet]]></category>

		<guid isPermaLink="false">http://www.blogitech.co.uk/what-ive-been-tweeting-this-week-79/</guid>
		<description><![CDATA[Is it just me or is GMail&#039;s Spam Filter getting more agressive&#8230; actually have to go and pull things out of it these days&#8230; # @RyeUK82 Welcome! :D Not sure I agree with your followees&#8230;? :s haha &#8211; should follow @TwopTwips &#8211; thanks to @jamesmelv for that one. # @photogirluk lol &#8211; can you credit [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Is it just me or is GMail&#039;s Spam Filter getting more agressive&#8230; actually have to go and pull things out of it these days&#8230; <a href="http://twitter.com/chrismaddern/statuses/127044890545758208" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RyeUK82" class="aktt_username">RyeUK82</a> Welcome! :D Not sure I agree with your followees&#8230;? :s haha &#8211; should follow @<a href="http://twitter.com/TwopTwips" class="aktt_username">TwopTwips</a> &#8211; thanks to @<a href="http://twitter.com/jamesmelv" class="aktt_username">jamesmelv</a> for that one. <a href="http://twitter.com/chrismaddern/statuses/127045474946531328" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/photogirluk" class="aktt_username">photogirluk</a> lol &#8211; can you credit to a verb&#8230;?! Or improper noun depending on how you look at it! <a href="http://twitter.com/photogirluk/statuses/127056390341672962" class="aktt_tweet_reply">in reply to photogirluk</a> <a href="http://twitter.com/chrismaddern/statuses/127059398542639104" class="aktt_tweet_time">#</a></li>
<li>I love that it&#039;s major news that a company with $1.2 BILLION in revenue breaks even <a href="http://t.co/DGOXJbKn" rel="nofollow">http://t.co/DGOXJbKn</a> (even though they actually didn&#039;t!) <a href="http://twitter.com/chrismaddern/statuses/127366350141267968" class="aktt_tweet_time">#</a></li>
<li>Is @<a href="http://twitter.com/zukoskiswnlkf1" class="aktt_username">zukoskiswnlkf1</a> actually a twitter bot that replies to people who mention spam, WITH SPAM?! That&#039;s almost hilarious. Almost. <a href="http://twitter.com/zukoskiswnlkf1/statuses/127185049345986560" class="aktt_tweet_reply">in reply to zukoskiswnlkf1</a> <a href="http://twitter.com/chrismaddern/statuses/127366657453723648" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/PhotoCreativity" class="aktt_username">PhotoCreativity</a> Hey! Collaborate on&#8230;? ;) <a href="http://twitter.com/PhotoCreativity/statuses/126644137666682880" class="aktt_tweet_reply">in reply to PhotoCreativity</a> <a href="http://twitter.com/chrismaddern/statuses/127366782955700224" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FF" class="aktt_hashtag">FF</a> @<a href="http://twitter.com/RyeUK82" class="aktt_username">RyeUK82</a> @corkbin @<a href="http://twitter.com/theaterplusplus" class="aktt_username">theaterplusplus</a> @catliao @<a href="http://twitter.com/avipatch" class="aktt_username">avipatch</a> @bluefields @<a href="http://twitter.com/andrewneilcrump" class="aktt_username">andrewneilcrump</a> @ronandelacroix @<a href="http://twitter.com/LdnStartupMafia" class="aktt_username">LdnStartupMafia</a> @animoto @<a href="http://twitter.com/npantucci" class="aktt_username">npantucci</a> <a href="http://twitter.com/chrismaddern/statuses/127368196947836928" class="aktt_tweet_time">#</a></li>
<li>Eeep&#8230; Access a Locked iPad 2 using a Smart Cover!! <a href="http://t.co/FGgKnFC8" rel="nofollow">http://t.co/FGgKnFC8</a> <a href="http://twitter.com/chrismaddern/statuses/127381973881724928" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Nero" class="aktt_username">Nero</a> Somebody had to do it..! :) <a href="http://twitter.com/Nero/statuses/127388385273843712" class="aktt_tweet_reply">in reply to Nero</a> <a href="http://twitter.com/chrismaddern/statuses/127388670503288832" class="aktt_tweet_time">#</a></li>
<li>So.. integrated Apple TV to come&#8230;?! <a href="http://t.co/72qCMpow" rel="nofollow">http://t.co/72qCMpow</a> <a href="http://twitter.com/chrismaddern/statuses/127624637638131712" class="aktt_tweet_time">#</a></li>
<li>Really interesting post on Yuri Milner by @<a href="http://twitter.com/wired" class="aktt_username">wired</a> <a href="http://t.co/Yh2CjpX0" rel="nofollow">http://t.co/Yh2CjpX0</a> <a href="http://twitter.com/chrismaddern/statuses/128138070519332864" class="aktt_tweet_time">#</a></li>
<li>&#039;Dear chrismaddern null&#039; &#8211; What a reassuring beginning of an email from your wireless company! :s <a href="http://twitter.com/chrismaddern/statuses/128299803317764097" class="aktt_tweet_time">#</a></li>
<li>Get 20 free Twitter followers with <a href="http://t.co/W6hjgpcL" rel="nofollow">http://t.co/W6hjgpcL</a> &#8211; get your free followers now! <a href="http://t.co/fpt0oVhd" rel="nofollow">http://t.co/fpt0oVhd</a> via @<a href="http://twitter.com/buyfollowers_us" class="aktt_username">buyfollowers_us</a> <a href="http://twitter.com/chrismaddern/statuses/128299895118508032" class="aktt_tweet_time">#</a></li>
<li>Pretty sure that Apple just killed my pre-release iOS5 install on my iPad! :( Sad times! <a href="http://twitter.com/chrismaddern/statuses/128468407002734592" class="aktt_tweet_time">#</a></li>
<li>Get 20 free Twitter followers with <a href="http://t.co/W6hjgpcL" rel="nofollow">http://t.co/W6hjgpcL</a> <a href="http://t.co/fpt0oVhd" rel="nofollow">http://t.co/fpt0oVhd</a> via @<a href="http://twitter.com/buyfollowers_us" class="aktt_username">buyfollowers_us</a> <a href="http://twitter.com/chrismaddern/statuses/128627806405017601" class="aktt_tweet_time">#</a></li>
<li>Just got my @<a href="http://twitter.com/square" class="aktt_username">square</a> card reader &#8211; it rocks! Hmm.. if I refund my $2 to myself, what happens to the fee&#8230;? <a href="http://twitter.com/chrismaddern/statuses/128635579435991040" class="aktt_tweet_time">#</a></li>
<li>Groupon Groupons Itself for IPO :p <a href="http://t.co/fsedmpaW" rel="nofollow">http://t.co/fsedmpaW</a> <a href="http://twitter.com/chrismaddern/statuses/128854339333787648" class="aktt_tweet_time">#</a></li>
<li>I&#039;m at Murray&#039;s Cheese Shop w/ @<a href="http://twitter.com/ckorhonen" class="aktt_username">ckorhonen</a> <a href="http://t.co/HyeCwSWB" rel="nofollow">http://t.co/HyeCwSWB</a> <a href="http://twitter.com/chrismaddern/statuses/128866992668151809" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-79/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;ve been tweeting this week</title>
		<link>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-80/</link>
		<comments>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-80/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 14:00:00 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Tweet]]></category>

		<guid isPermaLink="false">http://www.blogitech.co.uk/what-ive-been-tweeting-this-week-80/</guid>
		<description><![CDATA[Is it just me or is GMail&#039;s Spam Filter getting more agressive&#8230; actually have to go and pull things out of it these days&#8230; # @RyeUK82 Welcome! :D Not sure I agree with your followees&#8230;? :s haha &#8211; should follow @TwopTwips &#8211; thanks to @jamesmelv for that one. # @photogirluk lol &#8211; can you credit [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Is it just me or is GMail&#039;s Spam Filter getting more agressive&#8230; actually have to go and pull things out of it these days&#8230; <a href="http://twitter.com/chrismaddern/statuses/127044890545758208" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RyeUK82" class="aktt_username">RyeUK82</a> Welcome! :D Not sure I agree with your followees&#8230;? :s haha &#8211; should follow @<a href="http://twitter.com/TwopTwips" class="aktt_username">TwopTwips</a> &#8211; thanks to @<a href="http://twitter.com/jamesmelv" class="aktt_username">jamesmelv</a> for that one. <a href="http://twitter.com/chrismaddern/statuses/127045474946531328" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/photogirluk" class="aktt_username">photogirluk</a> lol &#8211; can you credit to a verb&#8230;?! Or improper noun depending on how you look at it! <a href="http://twitter.com/photogirluk/statuses/127056390341672962" class="aktt_tweet_reply">in reply to photogirluk</a> <a href="http://twitter.com/chrismaddern/statuses/127059398542639104" class="aktt_tweet_time">#</a></li>
<li>I love that it&#039;s major news that a company with $1.2 BILLION in revenue breaks even <a href="http://t.co/DGOXJbKn" rel="nofollow">http://t.co/DGOXJbKn</a> (even though they actually didn&#039;t!) <a href="http://twitter.com/chrismaddern/statuses/127366350141267968" class="aktt_tweet_time">#</a></li>
<li>Is @<a href="http://twitter.com/zukoskiswnlkf1" class="aktt_username">zukoskiswnlkf1</a> actually a twitter bot that replies to people who mention spam, WITH SPAM?! That&#039;s almost hilarious. Almost. <a href="http://twitter.com/zukoskiswnlkf1/statuses/127185049345986560" class="aktt_tweet_reply">in reply to zukoskiswnlkf1</a> <a href="http://twitter.com/chrismaddern/statuses/127366657453723648" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/PhotoCreativity" class="aktt_username">PhotoCreativity</a> Hey! Collaborate on&#8230;? ;) <a href="http://twitter.com/PhotoCreativity/statuses/126644137666682880" class="aktt_tweet_reply">in reply to PhotoCreativity</a> <a href="http://twitter.com/chrismaddern/statuses/127366782955700224" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FF" class="aktt_hashtag">FF</a> @<a href="http://twitter.com/RyeUK82" class="aktt_username">RyeUK82</a> @corkbin @<a href="http://twitter.com/theaterplusplus" class="aktt_username">theaterplusplus</a> @catliao @<a href="http://twitter.com/avipatch" class="aktt_username">avipatch</a> @bluefields @<a href="http://twitter.com/andrewneilcrump" class="aktt_username">andrewneilcrump</a> @ronandelacroix @<a href="http://twitter.com/LdnStartupMafia" class="aktt_username">LdnStartupMafia</a> @animoto @<a href="http://twitter.com/npantucci" class="aktt_username">npantucci</a> <a href="http://twitter.com/chrismaddern/statuses/127368196947836928" class="aktt_tweet_time">#</a></li>
<li>Eeep&#8230; Access a Locked iPad 2 using a Smart Cover!! <a href="http://t.co/FGgKnFC8" rel="nofollow">http://t.co/FGgKnFC8</a> <a href="http://twitter.com/chrismaddern/statuses/127381973881724928" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Nero" class="aktt_username">Nero</a> Somebody had to do it..! :) <a href="http://twitter.com/Nero/statuses/127388385273843712" class="aktt_tweet_reply">in reply to Nero</a> <a href="http://twitter.com/chrismaddern/statuses/127388670503288832" class="aktt_tweet_time">#</a></li>
<li>So.. integrated Apple TV to come&#8230;?! <a href="http://t.co/72qCMpow" rel="nofollow">http://t.co/72qCMpow</a> <a href="http://twitter.com/chrismaddern/statuses/127624637638131712" class="aktt_tweet_time">#</a></li>
<li>Really interesting post on Yuri Milner by @<a href="http://twitter.com/wired" class="aktt_username">wired</a> <a href="http://t.co/Yh2CjpX0" rel="nofollow">http://t.co/Yh2CjpX0</a> <a href="http://twitter.com/chrismaddern/statuses/128138070519332864" class="aktt_tweet_time">#</a></li>
<li>&#039;Dear chrismaddern null&#039; &#8211; What a reassuring beginning of an email from your wireless company! :s <a href="http://twitter.com/chrismaddern/statuses/128299803317764097" class="aktt_tweet_time">#</a></li>
<li>Get 20 free Twitter followers with <a href="http://t.co/W6hjgpcL" rel="nofollow">http://t.co/W6hjgpcL</a> &#8211; get your free followers now! <a href="http://t.co/fpt0oVhd" rel="nofollow">http://t.co/fpt0oVhd</a> via @<a href="http://twitter.com/buyfollowers_us" class="aktt_username">buyfollowers_us</a> <a href="http://twitter.com/chrismaddern/statuses/128299895118508032" class="aktt_tweet_time">#</a></li>
<li>Pretty sure that Apple just killed my pre-release iOS5 install on my iPad! :( Sad times! <a href="http://twitter.com/chrismaddern/statuses/128468407002734592" class="aktt_tweet_time">#</a></li>
<li>Get 20 free Twitter followers with <a href="http://t.co/W6hjgpcL" rel="nofollow">http://t.co/W6hjgpcL</a> <a href="http://t.co/fpt0oVhd" rel="nofollow">http://t.co/fpt0oVhd</a> via @<a href="http://twitter.com/buyfollowers_us" class="aktt_username">buyfollowers_us</a> <a href="http://twitter.com/chrismaddern/statuses/128627806405017601" class="aktt_tweet_time">#</a></li>
<li>Just got my @<a href="http://twitter.com/square" class="aktt_username">square</a> card reader &#8211; it rocks! Hmm.. if I refund my $2 to myself, what happens to the fee&#8230;? <a href="http://twitter.com/chrismaddern/statuses/128635579435991040" class="aktt_tweet_time">#</a></li>
<li>Groupon Groupons Itself for IPO :p <a href="http://t.co/fsedmpaW" rel="nofollow">http://t.co/fsedmpaW</a> <a href="http://twitter.com/chrismaddern/statuses/128854339333787648" class="aktt_tweet_time">#</a></li>
<li>I&#039;m at Murray&#039;s Cheese Shop w/ @<a href="http://twitter.com/ckorhonen" class="aktt_username">ckorhonen</a> <a href="http://t.co/HyeCwSWB" rel="nofollow">http://t.co/HyeCwSWB</a> <a href="http://twitter.com/chrismaddern/statuses/128866992668151809" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-80/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;ve been tweeting this week</title>
		<link>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-78/</link>
		<comments>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-78/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 14:00:00 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Tweet]]></category>

		<guid isPermaLink="false">http://www.blogitech.co.uk/what-ive-been-tweeting-this-week-78/</guid>
		<description><![CDATA[Is it possible to be enjoying your work too much to have time to tweet&#8230;?! # Mmm&#8230; Misto! Surprisingly cold today! (@ Starbucks) http://t.co/zSlLuJli # Eep&#8230; @netflix app is not too happy! :( http://t.co/LFKjz6D5 # Yes!! All seasons of 24 are on Netflix streaming!! Yay!! Best deal ever! # @ckorhonen nope! That and 24 are [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Is it possible to be enjoying your work too much to have time to tweet&#8230;?! <a href="http://twitter.com/chrismaddern/statuses/124273139243958272" class="aktt_tweet_time">#</a></li>
<li>Mmm&#8230; Misto! Surprisingly cold today! (@ Starbucks) <a href="http://t.co/zSlLuJli" rel="nofollow">http://t.co/zSlLuJli</a> <a href="http://twitter.com/chrismaddern/statuses/125324999820193792" class="aktt_tweet_time">#</a></li>
<li>Eep&#8230; @<a href="http://twitter.com/netflix" class="aktt_username">netflix</a> app is not too happy! :( <a href="http://t.co/LFKjz6D5" rel="nofollow">http://t.co/LFKjz6D5</a> <a href="http://twitter.com/chrismaddern/statuses/125340110798589952" class="aktt_tweet_time">#</a></li>
<li>Yes!! All seasons of 24 are on Netflix streaming!! Yay!! Best deal ever! <a href="http://twitter.com/chrismaddern/statuses/125374182178570240" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ckorhonen" class="aktt_username">ckorhonen</a> nope! That and 24 are in my instant queue. Literally so happy! <a href="http://twitter.com/ckorhonen/statuses/125374513276928000" class="aktt_tweet_reply">in reply to ckorhonen</a> <a href="http://twitter.com/chrismaddern/statuses/125374813274513408" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ckorhonen" class="aktt_username">ckorhonen</a> haha &#8211; I can live with that. I&#039;ll get right on it! Hmm&#8230; Dinner in the city or Netflix&#8230;?! <a href="http://twitter.com/ckorhonen/statuses/125375096029315072" class="aktt_tweet_reply">in reply to ckorhonen</a> <a href="http://twitter.com/chrismaddern/statuses/125375474678509568" class="aktt_tweet_time">#</a></li>
<li>I&#039;m using @<a href="http://twitter.com/Postagram" class="aktt_username">Postagram</a> to send REAL postcards from my phone. Get the app for free: <a href="http://t.co/ltPCQBz2" rel="nofollow">http://t.co/ltPCQBz2</a>. @<a href="http://twitter.com/stickygram" class="aktt_username">stickygram</a> cool no? <a href="http://twitter.com/chrismaddern/statuses/125417509053673472" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/citibank" class="aktt_username">citibank</a> thanks &#8211; just opened an account at your Union Square Flagship &#8211; most helpful and knowledgable personal banker ever! <a href="http://twitter.com/chrismaddern/statuses/125608712978169856" class="aktt_tweet_time">#</a></li>
<li>I&#039;m at Bryant Park &#8211; The Southwest Porch (1067 Ave. of the Americas, at W 40th St., New York) <a href="http://t.co/NtS6caxs" rel="nofollow">http://t.co/NtS6caxs</a> <a href="http://twitter.com/chrismaddern/statuses/125640766868566016" class="aktt_tweet_time">#</a></li>
<li>I love how everyone in America has an opinion on everything&#8230;! <a href="http://twitter.com/chrismaddern/statuses/125643567115931649" class="aktt_tweet_time">#</a></li>
<li>Thank god for XCode&#039;s auto-project fixes! :) <a href="http://twitter.com/chrismaddern/statuses/125711450240069632" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/foursquare" class="aktt_username">foursquare</a> woot with o&#039;s?! Everyone knows its 0s!! :p <a href="http://t.co/nxJVdy3Q" rel="nofollow">http://t.co/nxJVdy3Q</a> <a href="http://twitter.com/chrismaddern/statuses/125982964940152832" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/asonnenb" class="aktt_username">asonnenb</a> got ya! <a href="http://t.co/TemzrnOE" rel="nofollow">http://t.co/TemzrnOE</a> <a href="http://twitter.com/chrismaddern/statuses/126089507748585472" class="aktt_tweet_time">#</a></li>
<li>Noise Cancelling headphones half on and half off is TRIPPY! :s <a href="http://twitter.com/chrismaddern/statuses/126365546009731072" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/avipatch" class="aktt_username">avipatch</a> can&#039;t believe you&#039;re not following @<a href="http://twitter.com/LdnStartupMafia" class="aktt_username">LdnStartupMafia</a> &#8211; Sucks that someone has and is not using @<a href="http://twitter.com/StartupMafia" class="aktt_username">StartupMafia</a>!! <a href="http://twitter.com/chrismaddern/statuses/126365919848046592" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/avipatch" class="aktt_username">avipatch</a> Also me! (In an email) :) <a href="http://twitter.com/avipatch/statuses/126394373943463937" class="aktt_tweet_reply">in reply to avipatch</a> <a href="http://twitter.com/chrismaddern/statuses/126401550670241793" class="aktt_tweet_time">#</a></li>
<li>Is it just me or was the original @<a href="http://twitter.com/dropbox" class="aktt_username">dropbox</a> presentation better than the current one?! <a href="http://t.co/seQ1zBDi" rel="nofollow">http://t.co/seQ1zBDi</a> vs. <a href="http://t.co/ysiHeqXf" rel="nofollow">http://t.co/ysiHeqXf</a> <a href="http://twitter.com/chrismaddern/statuses/126402540404359168" class="aktt_tweet_time">#</a></li>
<li>Falling in love with the @<a href="http://twitter.com/boseservice" class="aktt_username">boseservice</a> QuietComfort 15 headphones! Great work guys! :D <a href="http://twitter.com/chrismaddern/statuses/126421742796283904" class="aktt_tweet_time">#</a></li>
<li>Jeez&#8230; Facebook redirected traffic from our Timelines Facebook page to the &quot;Introducing Timeline&quot; page! <a href="http://t.co/NhiiF4QB" rel="nofollow">http://t.co/NhiiF4QB</a> <a href="http://twitter.com/chrismaddern/statuses/126481994854047745" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/nofb" class="aktt_username">nofb</a> Apple &#8211; thank you for giving us StoreKit support in the iOS5 Simulator. Thank you. Thank you. <a href="http://twitter.com/chrismaddern/statuses/126669050104389632" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/tayoakinfenwa" class="aktt_username">tayoakinfenwa</a> welcome to twiter :) <a href="http://twitter.com/chrismaddern/statuses/126669221819199488" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-78/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;ve been tweeting this week</title>
		<link>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-74/</link>
		<comments>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-74/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 14:00:00 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Tweet]]></category>

		<guid isPermaLink="false">http://www.blogitech.co.uk/what-ive-been-tweeting-this-week-74/</guid>
		<description><![CDATA[@mstafford Haha &#8211; not at your expense.. I volunteered you to be the judge of the shout-vote as you were sort of out of the crowd at the back in reply to mstafford # Watching @housebites pitch at #HNLondon with @ronandelacroix # @stickygram &#8211; awesome presentation by Kejia &#8211; good pick @dmitrigrabov # Turn your [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>@<a href="http://twitter.com/mstafford" class="aktt_username">mstafford</a> Haha &#8211; not at your expense.. I volunteered you to be the judge of the shout-vote as you were sort of out of the crowd at the back <a href="http://twitter.com/mstafford/statuses/119346525229953024" class="aktt_tweet_reply">in reply to mstafford</a> <a href="http://twitter.com/chrismaddern/statuses/119348686303133696" class="aktt_tweet_time">#</a></li>
<li>Watching @<a href="http://twitter.com/housebites" class="aktt_username">housebites</a> pitch at #<a href="http://search.twitter.com/search?q=%23HNLondon" class="aktt_hashtag">HNLondon</a> with @<a href="http://twitter.com/ronandelacroix" class="aktt_username">ronandelacroix</a> <a href="http://twitter.com/chrismaddern/statuses/119479049595797504" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/stickygram" class="aktt_username">stickygram</a> &#8211; awesome presentation by Kejia &#8211; good pick @<a href="http://twitter.com/dmitrigrabov" class="aktt_username">dmitrigrabov</a> <a href="http://twitter.com/chrismaddern/statuses/119482150843203584" class="aktt_tweet_time">#</a></li>
<li>Turn your Instagrams into fridge magnets with StickyGram: <a href="http://t.co/dO144cLq" rel="nofollow">http://t.co/dO144cLq</a> via @<a href="http://twitter.com/stickygram" class="aktt_username">stickygram</a> <a href="http://twitter.com/chrismaddern/statuses/119806492399517696" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/rvm" class="aktt_username">rvm</a> Ruby Version Manager is awesome :D <a href="http://twitter.com/chrismaddern/statuses/120175448914280449" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/farhan" class="aktt_username">farhan</a> Awesome work on @<a href="http://twitter.com/inCliques" class="aktt_username">inCliques</a> &#8211; sad I couldn&#039;t make it to the @<a href="http://twitter.com/Viadeo" class="aktt_username">Viadeo</a> day! <a href="http://twitter.com/farhan/statuses/120175405289316352" class="aktt_tweet_reply">in reply to farhan</a> <a href="http://twitter.com/chrismaddern/statuses/120175578715406337" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/farhan" class="aktt_username">farhan</a> awesome &#8211; I&#039;m on the list.! You guys would be great for @<a href="http://twitter.com/flagonsden" class="aktt_username">flagonsden</a> some time! <a href="http://twitter.com/farhan/statuses/120179276506071040" class="aktt_tweet_reply">in reply to farhan</a> <a href="http://twitter.com/chrismaddern/statuses/120181399830528001" class="aktt_tweet_time">#</a></li>
<li>How to make a simple Tweet to Download system <a href="http://t.co/n3tQ7atA" rel="nofollow">http://t.co/n3tQ7atA</a> via @<a href="http://twitter.com/tutorialzine" class="aktt_username">tutorialzine</a> <a href="http://twitter.com/chrismaddern/statuses/120202259035455488" class="aktt_tweet_time">#</a></li>
<li>Thanks to @<a href="http://twitter.com/gear4" class="aktt_username">gear4</a> for the free Angry Birds iPhone case at CU Expo in London! :) <a href="http://twitter.com/chrismaddern/statuses/120214361804505088" class="aktt_tweet_time">#</a></li>
<li>Whoopsie&#8230; iPhone 4S deetz leaked in an iTunes Beta!! <a href="http://t.co/zpUzny6V" rel="nofollow">http://t.co/zpUzny6V</a> <a href="http://twitter.com/chrismaddern/statuses/120236377152552960" class="aktt_tweet_time">#</a></li>
<li>trgt.us | The platform aware URL shortener for web, iPhone, Android, iPad&#8230;: <a href="http://t.co/4N60NJPE" rel="nofollow">http://t.co/4N60NJPE</a> via @<a href="http://twitter.com/AddThis" class="aktt_username">AddThis</a> <a href="http://twitter.com/chrismaddern/statuses/120451913811623936" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/siguy" class="aktt_username">siguy</a> &#8230;? :) RT @<a href="http://twitter.com/trgtus" class="aktt_username">trgtus</a> trgt.us &#8211; the Platform Aware URL Shortener Startup is for sale on eBay! <a href="http://t.co/zsRjDv7H" rel="nofollow">http://t.co/zsRjDv7H</a> <a href="http://twitter.com/chrismaddern/statuses/120507374099378176" class="aktt_tweet_time">#</a></li>
<li>Haha &#8211; David Mitchell &#8211; &#039;a bank note is basically an everything voucher..&#039; :) <a href="http://twitter.com/chrismaddern/statuses/120580244389371906" class="aktt_tweet_time">#</a></li>
<li>Odd &#8211; the @<a href="http://twitter.com/vimeo" class="aktt_username">vimeo</a> player does everything really nicely on iOS except actually play video..? Intentional? <a href="http://twitter.com/chrismaddern/statuses/120672575608197120" class="aktt_tweet_time">#</a></li>
<li>On my way home from #<a href="http://search.twitter.com/search?q=%23startupMAFIA" class="aktt_hashtag">startupMAFIA</a> at 9:40! w00t &#8211; still time in the day! <a href="http://twitter.com/chrismaddern/statuses/120961391690653696" class="aktt_tweet_time">#</a></li>
<li>Check out the cool tweet to unlock page&#8230; <a href="http://t.co/amDlR40s" rel="nofollow">http://t.co/amDlR40s</a> via @<a href="http://twitter.com/chrismaddern" class="aktt_username">chrismaddern</a> <a href="http://twitter.com/chrismaddern/statuses/121000199001882625" class="aktt_tweet_time">#</a></li>
<li>iPhone 5 day!! :) <a href="http://twitter.com/chrismaddern/statuses/121141332331859968" class="aktt_tweet_time">#</a></li>
<li>The New Animoto Makes Creating And Editing Video Slideshows A Breeze via @<a href="http://twitter.com/techcrunch" class="aktt_username">techcrunch</a> <a href="http://t.co/bCQuwzZ8" rel="nofollow">http://t.co/bCQuwzZ8</a> <a href="http://twitter.com/chrismaddern/statuses/121209441872916480" class="aktt_tweet_time">#</a></li>
<li>I&#039;m one of the first in line to make my todo lists social on @<a href="http://twitter.com/toodo" class="aktt_username">toodo</a>. Join me!  <a href="http://t.co/wsmqZzKy" rel="nofollow">http://t.co/wsmqZzKy</a> <a href="http://twitter.com/chrismaddern/statuses/121212616629698561" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/AndrewNeilCrump" class="aktt_username">AndrewNeilCrump</a> me too probably :( <a href="http://twitter.com/AndrewNeilCrump/statuses/121258575543795712" class="aktt_tweet_reply">in reply to AndrewNeilCrump</a> <a href="http://twitter.com/chrismaddern/statuses/121261007308996610" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-74/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;ve been tweeting this week</title>
		<link>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-70/</link>
		<comments>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-70/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 14:00:00 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Tweet]]></category>

		<guid isPermaLink="false">http://www.blogitech.co.uk/what-ive-been-tweeting-this-week-70/</guid>
		<description><![CDATA[Facebook introduces subscribe button! Facebook -&#62; Twitbook! http://t.co/waxtN904 # Corkbin iPhone App Review http://t.co/QI2gSzne # @AndrewNeilCrump today is @flagonsden poker :) you about? in reply to AndrewNeilCrump # @milkmansrevenge what&#039;s your startup? Drop me a line at chris@flagonsden.com in reply to milkmansrevenge # @likeourselves where do you guys work? You&#039;re London based right? in reply [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Facebook introduces subscribe button! Facebook -&gt; Twitbook! <a href="http://t.co/waxtN904" rel="nofollow">http://t.co/waxtN904</a> <a href="http://twitter.com/chrismaddern/statuses/114259343318319105" class="aktt_tweet_time">#</a></li>
<li>Corkbin iPhone App Review <a href="http://t.co/QI2gSzne" rel="nofollow">http://t.co/QI2gSzne</a> <a href="http://twitter.com/chrismaddern/statuses/114265332612468736" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/AndrewNeilCrump" class="aktt_username">AndrewNeilCrump</a> today is @<a href="http://twitter.com/flagonsden" class="aktt_username">flagonsden</a> poker :) you about? <a href="http://twitter.com/AndrewNeilCrump/statuses/114431710900387840" class="aktt_tweet_reply">in reply to AndrewNeilCrump</a> <a href="http://twitter.com/chrismaddern/statuses/114439298970955776" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/milkmansrevenge" class="aktt_username">milkmansrevenge</a> what&#039;s your startup? Drop me a line at <a href="mailto:chris@flagonsden.com">chris@flagonsden.com</a> <a href="http://twitter.com/milkmansrevenge/statuses/114290380765265920" class="aktt_tweet_reply">in reply to milkmansrevenge</a> <a href="http://twitter.com/chrismaddern/statuses/114439612134465536" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/likeourselves" class="aktt_username">likeourselves</a> where do you guys work? You&#039;re London based right? <a href="http://twitter.com/likeourselves/statuses/114268451559841792" class="aktt_tweet_reply">in reply to likeourselves</a> <a href="http://twitter.com/chrismaddern/statuses/114439724835405824" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/moni_gi" class="aktt_username">moni_gi</a> how&#039;s the times square appeal going? Great seeing you &#8211; as ever! <a href="http://twitter.com/moni_gi/statuses/112904374229016576" class="aktt_tweet_reply">in reply to moni_gi</a> <a href="http://twitter.com/chrismaddern/statuses/114472118888038402" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/AndrewNeilCrump" class="aktt_username">AndrewNeilCrump</a> not sure that&#039;s how it works..?! :p you free some time soon..!.? Cc @<a href="http://twitter.com/flagonsden" class="aktt_username">flagonsden</a> <a href="http://twitter.com/AndrewNeilCrump/statuses/114452363921731585" class="aktt_tweet_reply">in reply to AndrewNeilCrump</a> <a href="http://twitter.com/chrismaddern/statuses/114472314111930368" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/AndrewNeilCrump" class="aktt_username">AndrewNeilCrump</a> yeah &#8211; plan to be there! :) <a href="http://twitter.com/AndrewNeilCrump/statuses/114619519028305921" class="aktt_tweet_reply">in reply to AndrewNeilCrump</a> <a href="http://twitter.com/chrismaddern/statuses/114626433418145792" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/elegantthemes" class="aktt_username">elegantthemes</a> FYI &#8211; the Anticipate Plugin seems to get every site that uses it added to the Google Blacklist for content duplication. <a href="http://twitter.com/chrismaddern/statuses/114680615076511745" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/AndrewNeilCrump" class="aktt_username">AndrewNeilCrump</a> On like Donkey Kong! <a href="http://twitter.com/chrismaddern/statuses/114723064557731840" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mstafford" class="aktt_username">mstafford</a> hey &#8211; any thoughts on companies that may want to sponsor a @<a href="http://twitter.com/FlagonsDen" class="aktt_username">FlagonsDen</a> event? :) <a href="http://twitter.com/chrismaddern/statuses/115069149545373696" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/corkbin" class="aktt_username">corkbin</a> Corkbin is featured as App Store&#039;s Pocket Sommelier app. Check it out! <a href="http://t.co/T2KEJjvS" rel="nofollow">http://t.co/T2KEJjvS</a> <a href="http://twitter.com/chrismaddern/statuses/115069420224774144" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mstafford" class="aktt_username">mstafford</a> us :) IW has sponsored one. The small ones aren&#039;t such a big deal &#8211; £200 bar tab @ castle, the bigger ones (100+ peeps) are ~£600 <a href="http://twitter.com/mstafford/statuses/115143439485648896" class="aktt_tweet_reply">in reply to mstafford</a> <a href="http://twitter.com/chrismaddern/statuses/115145912447287296" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mstafford" class="aktt_username">mstafford</a> just thought you might be someone who&#039;d new of people looking to raise their profile in our little startup scene :p <a href="http://twitter.com/mstafford/statuses/115143439485648896" class="aktt_tweet_reply">in reply to mstafford</a> <a href="http://twitter.com/chrismaddern/statuses/115146162406825984" class="aktt_tweet_time">#</a></li>
<li>At a #<a href="http://search.twitter.com/search?q=%23londonfashionweek" class="aktt_hashtag">londonfashionweek</a> after party at smiths of smithfield <a href="http://twitter.com/chrismaddern/statuses/115146698078171136" class="aktt_tweet_time">#</a></li>
<li>I&#039;m attending Flagons Den Demo Night, 28th September 2011 in London <a href="http://t.co/eV3bBzRW" rel="nofollow">http://t.co/eV3bBzRW</a> via @<a href="http://twitter.com/lanyrd" class="aktt_username">lanyrd</a> <a href="http://twitter.com/chrismaddern/statuses/115207386200944640" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SJBy" class="aktt_username">SJBy</a> I am :) I didn&#039;t know you were singing.. what time tomorrow? <a href="http://twitter.com/SJBy/statuses/115209102875033600" class="aktt_tweet_reply">in reply to SJBy</a> <a href="http://twitter.com/chrismaddern/statuses/115242313420259330" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/maryjessmusic" class="aktt_username">maryjessmusic</a> what the..?! Congrats Jess &#8211; just watched the video on your site and it&#039;s great! <a href="http://twitter.com/chrismaddern/statuses/115244463722471424" class="aktt_tweet_time">#</a></li>
<li>11:30 on a Sunday morning and I can&#039;t find anywhere to buy a paper on Oxford street!! <a href="http://twitter.com/chrismaddern/statuses/115371013327421441" class="aktt_tweet_time">#</a></li>
<li>Yay &#8211; biggest @<a href="http://twitter.com/corkbin" class="aktt_username">corkbin</a> day ever :) <a href="http://twitter.com/chrismaddern/statuses/115371104750669824" class="aktt_tweet_time">#</a></li>
<li>To celebrate @<a href="http://twitter.com/corkbin" class="aktt_username">corkbin</a> being featured in Apple&#039;s App Store Pocket Sommelier choices &#8211; Corkbin is free this weekend! <a href="http://t.co/7owBdvgt" rel="nofollow">http://t.co/7owBdvgt</a> <a href="http://twitter.com/chrismaddern/statuses/115511966767910912" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mstafford" class="aktt_username">mstafford</a> cheers @<a href="http://twitter.com/IWuk" class="aktt_username">IWuk</a> and t/castle kindly donate space, I&#039;d love to think we now offer enough value for a drinks sponsor&#8230; :) we&#039;ll see! <a href="http://twitter.com/mstafford/statuses/115738337997897728" class="aktt_tweet_reply">in reply to mstafford</a> <a href="http://twitter.com/chrismaddern/statuses/115742335626784768" class="aktt_tweet_time">#</a></li>
<li>Come see @<a href="http://twitter.com/LinkOutApp" class="aktt_username">LinkOutApp</a> @tickettailor @<a href="http://twitter.com/clipdo" class="aktt_username">clipdo</a> @expensemagic Boss Level Games &amp; more demo at @<a href="http://twitter.com/flagonsden" class="aktt_username">flagonsden</a> demo night @<a href="http://twitter.com/IWuk" class="aktt_username">IWuk</a> <a href="http://t.co/dy6m4V9t" rel="nofollow">http://t.co/dy6m4V9t</a> <a href="http://twitter.com/chrismaddern/statuses/115936460997263360" class="aktt_tweet_time">#</a></li>
<li>Hmm&#8230; thinking about staying up to watch the #<a href="http://search.twitter.com/search?q=%23SheenRoast" class="aktt_hashtag">SheenRoast</a> :p <a href="http://twitter.com/chrismaddern/statuses/115948110093619200" class="aktt_tweet_time">#</a></li>
<li>Eeep&#8230; not using the Skype iPhone App until they fix this!! <a href="http://t.co/aNWPVTrt" rel="nofollow">http://t.co/aNWPVTrt</a> <a href="http://twitter.com/chrismaddern/statuses/116087305105702912" class="aktt_tweet_time">#</a></li>
<li>Watching @<a href="http://twitter.com/GoGoSlava" class="aktt_username">GoGoSlava</a> #<a href="http://search.twitter.com/search?q=%23own" class="aktt_hashtag">own</a> the stage at #<a href="http://search.twitter.com/search?q=%23ClubWorkspace" class="aktt_hashtag">ClubWorkspace</a>  Excited to use IndieGoGo for @<a href="http://twitter.com/TheaterPlusPlus" class="aktt_username">TheaterPlusPlus</a> <a href="http://twitter.com/chrismaddern/statuses/116216537299435520" class="aktt_tweet_time">#</a></li>
<li>Half of the audience at Entrepreneurs night out seem not to understand that this isn&#039;t a conversation between them and @<a href="http://twitter.com/gogoslava" class="aktt_username">gogoslava</a> :s <a href="http://twitter.com/chrismaddern/statuses/116232926752018434" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/GoGoSlava" class="aktt_username">GoGoSlava</a> 3am&#8230;Jet lag much? Absolutely did &#8211; thank you so much for sharing! Did you get to finish the &#039;secrets&#039; w/ all the profit talk? <a href="http://twitter.com/GoGoSlava/statuses/116332225540272128" class="aktt_tweet_reply">in reply to GoGoSlava</a> <a href="http://twitter.com/chrismaddern/statuses/116429790445182976" class="aktt_tweet_time">#</a></li>
<li>iPhone 5 to be announced on October 4th! :) <a href="http://t.co/3RFdC2Jy" rel="nofollow">http://t.co/3RFdC2Jy</a> <a href="http://twitter.com/chrismaddern/statuses/116467875824410625" class="aktt_tweet_time">#</a></li>
<li>Who&#039;s going to queue up for an iPhone 5? <a href="http://t.co/3RFdC2Jy" rel="nofollow">http://t.co/3RFdC2Jy</a> #<a href="http://search.twitter.com/search?q=%23iphone5" class="aktt_hashtag">iphone5</a> <a href="http://twitter.com/chrismaddern/statuses/116478057853894657" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/craighcollins" class="aktt_username">craighcollins</a> because they&#039;re not fans? :p <a href="http://twitter.com/craighcollins/statuses/116498507531165696" class="aktt_tweet_reply">in reply to craighcollins</a> <a href="http://twitter.com/chrismaddern/statuses/116498731376967680" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-70/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;ve been tweeting this week</title>
		<link>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-69/</link>
		<comments>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-69/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 14:00:00 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Tweet]]></category>

		<guid isPermaLink="false">http://www.blogitech.co.uk/what-ive-been-tweeting-this-week-69/</guid>
		<description><![CDATA[Why should I care if my pizza has been hand-stretched or (assumedly) machine-stretched..? Hopefully the others aren&#039;t foot-stretched!! # @Meetup Great email &#8211; thanks for sharing the 9/11 beginnings of meetup. trgt.us/040 # @meetup great email! Thanks for sharing the meetup 9/11 story! http://t.co/KZN4Vwn # In memory of #9 11 the Freedom tower is lit [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Why should I care if my pizza has been hand-stretched or (assumedly) machine-stretched..? Hopefully the others aren&#039;t foot-stretched!! <a href="http://twitter.com/chrismaddern/statuses/111871460431241216" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Meetup" class="aktt_username">Meetup</a> Great email &#8211; thanks for sharing the 9/11 beginnings of meetup. trgt.us/040 <a href="http://twitter.com/chrismaddern/statuses/112632697016430592" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/meetup" class="aktt_username">meetup</a> great email! Thanks for sharing the meetup 9/11 story! <a href="http://t.co/KZN4Vwn" rel="nofollow">http://t.co/KZN4Vwn</a> <a href="http://twitter.com/chrismaddern/statuses/112635070879240193" class="aktt_tweet_time">#</a></li>
<li>In memory of #<a href="http://search.twitter.com/search?q=%239" class="aktt_hashtag">9</a> 11 the Freedom tower is lit up in Red, White and Blue. <a href="http://t.co/n804kVU" rel="nofollow">http://t.co/n804kVU</a> <a href="http://twitter.com/chrismaddern/statuses/112844748628312064" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ycldn" class="aktt_username">ycldn</a> YC in London&#8230;Y Not? #<a href="http://search.twitter.com/search?q=%23ycldn" class="aktt_hashtag">ycldn</a> cc @<a href="http://twitter.com/paulg" class="aktt_username">paulg</a> @harjeet @<a href="http://twitter.com/tlbtlbtlb" class="aktt_username">tlbtlbtlb</a> @paultoo @<a href="http://twitter.com/foundersatwork" class="aktt_username">foundersatwork</a> <a href="http://t.co/1kCQ5nK" rel="nofollow">http://t.co/1kCQ5nK</a> <a href="http://twitter.com/chrismaddern/statuses/112847990791749632" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ycldn" class="aktt_username">ycldn</a> @mstafford &#8211; @<a href="http://twitter.com/npantucci" class="aktt_username">npantucci</a> @GroupayMatt @<a href="http://twitter.com/arihelgason" class="aktt_username">arihelgason</a> are some great UK-loving YC alums! :) <a href="http://twitter.com/ycldn/statuses/112854754413121536" class="aktt_tweet_reply">in reply to ycldn</a> <a href="http://twitter.com/chrismaddern/statuses/112856759927980032" class="aktt_tweet_time">#</a></li>
<li>Thanks for replacing my premium earbuds, Apple! :) although apparently the phrase &#039;defective by design&#039; has leverage in the apple store! :p <a href="http://twitter.com/chrismaddern/statuses/112891363275718657" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ycldn" class="aktt_username">ycldn</a> @mstafford ps I assume one of those venues is @<a href="http://twitter.com/IWuk" class="aktt_username">IWuk</a> ? <a href="http://twitter.com/ycldn/statuses/112854754413121536" class="aktt_tweet_reply">in reply to ycldn</a> <a href="http://twitter.com/chrismaddern/statuses/112891426009915392" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mstafford" class="aktt_username">mstafford</a> @ycldn @<a href="http://twitter.com/iwuk" class="aktt_username">iwuk</a> @luisabutterfly YC + Matt = great friends to have!! <a href="http://twitter.com/mstafford/statuses/112891671225704448" class="aktt_tweet_reply">in reply to mstafford</a> <a href="http://twitter.com/chrismaddern/statuses/112897941257203713" class="aktt_tweet_time">#</a></li>
<li>Anonymous protest at Piccadilly Circus turns friendly&#8230;  <a href="http://t.co/gHRapJL" rel="nofollow">http://t.co/gHRapJL</a> <a href="http://twitter.com/chrismaddern/statuses/112898420217364480" class="aktt_tweet_time">#</a></li>
<li>Just got given a business card by a member(?) of anonymous in a mask&#8230;!?! Nice chap.  <a href="http://t.co/GzoU5ie" rel="nofollow">http://t.co/GzoU5ie</a> <a href="http://twitter.com/chrismaddern/statuses/112900060966174720" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/moni_gi" class="aktt_username">moni_gi</a> I&#039;m not certain there&#039;s a centralised member list :p &#8230;more of a self-cert sort of thing! (decentralised affinity group via wiki) <a href="http://twitter.com/moni_gi/statuses/112904374229016576" class="aktt_tweet_reply">in reply to moni_gi</a> <a href="http://twitter.com/chrismaddern/statuses/112909149175693312" class="aktt_tweet_time">#</a></li>
<li>Anybody else having problems logging in to their Apple TV tonight…? <a href="http://twitter.com/chrismaddern/statuses/112991600900182016" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/AmberAtherton" class="aktt_username">AmberAtherton</a> But then what will wake me up in the morning..!? <a href="http://twitter.com/AmberAtherton/statuses/112991411242143744" class="aktt_tweet_reply">in reply to AmberAtherton</a> <a href="http://twitter.com/chrismaddern/statuses/112991670668242944" class="aktt_tweet_time">#</a></li>
<li>Just sent the @<a href="http://twitter.com/TheaterPlusPlus" class="aktt_username">TheaterPlusPlus</a> waiting list and not-selected list. Nowhere near as fun as the other one :( <a href="http://twitter.com/chrismaddern/statuses/112995178503077888" class="aktt_tweet_time">#</a></li>
<li>I bet this guy has had better days&#8230;!  <a href="http://t.co/s3iuths" rel="nofollow">http://t.co/s3iuths</a> <a href="http://twitter.com/chrismaddern/statuses/113216213882114048" class="aktt_tweet_time">#</a></li>
<li>There&#039;s definitely an unspoken rule of if there&#039;s two guys on a subway 3-seat and you are also a large chap, you do not sit in the middle! <a href="http://twitter.com/chrismaddern/statuses/113309253250465793" class="aktt_tweet_time">#</a></li>
<li>Yay, just got Press Credentials for London Fashion Week via <a href="http://t.co/PfkE0lN" rel="nofollow">http://t.co/PfkE0lN</a> <a href="http://twitter.com/chrismaddern/statuses/113356664668815361" class="aktt_tweet_time">#</a></li>
<li>Nice offer :) @<a href="http://twitter.com/moni_gi" class="aktt_username">moni_gi</a>: All attendees of #<a href="http://search.twitter.com/search?q=%23swLondon" class="aktt_hashtag">swLondon</a> &amp; #<a href="http://search.twitter.com/search?q=%23swBattle" class="aktt_hashtag">swBattle</a> get 2 weeks free at @<a href="http://twitter.com/clubworkspace" class="aktt_username">clubworkspace</a> <a href="http://twitter.com/chrismaddern/statuses/113666678772072448" class="aktt_tweet_time">#</a></li>
<li>What a beautiful morning&#8230;! I feel Christmassy for some reason!?! :p <a href="http://twitter.com/chrismaddern/statuses/113880686057893888" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-69/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;ve been tweeting this week</title>
		<link>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-85/</link>
		<comments>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-85/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 14:00:00 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Tweet]]></category>

		<guid isPermaLink="false">http://www.blogitech.co.uk/what-ive-been-tweeting-this-week-85/</guid>
		<description><![CDATA[Good on you Google &#8211; supporting the troops! http://t.co/ogS43oq # trgt.us adds statistics, previews, generally plays catch-up with bit.ly http://t.co/R7ukQ5e # Bloody cold up north!! # @uniquejosh lol Peterborough! :( passport office to get same day service. Flying to NY tonight!! :D @minutebox demo at http://t.co/5i3p9H2 ? in reply to uniquejosh # lol! “@TwopTwips: SAVE [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Good on you Google &#8211; supporting the troops! <a href="http://t.co/ogS43oq" rel="nofollow">http://t.co/ogS43oq</a> <a href="http://twitter.com/chrismaddern/statuses/109137754574684160" class="aktt_tweet_time">#</a></li>
<li>trgt.us adds statistics, previews, generally plays catch-up with bit.ly <a href="http://t.co/R7ukQ5e" rel="nofollow">http://t.co/R7ukQ5e</a> <a href="http://twitter.com/chrismaddern/statuses/109142821054849024" class="aktt_tweet_time">#</a></li>
<li>Bloody cold up north!! <a href="http://twitter.com/chrismaddern/statuses/109155019676327936" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/uniquejosh" class="aktt_username">uniquejosh</a> lol Peterborough! :( passport office to get same day service. Flying to NY tonight!! :D @<a href="http://twitter.com/minutebox" class="aktt_username">minutebox</a> demo at <a href="http://t.co/5i3p9H2" rel="nofollow">http://t.co/5i3p9H2</a> ? <a href="http://twitter.com/uniquejosh/statuses/109155191529541632" class="aktt_tweet_reply">in reply to uniquejosh</a> <a href="http://twitter.com/chrismaddern/statuses/109156556590948352" class="aktt_tweet_time">#</a></li>
<li>lol! “@TwopTwips: SAVE money on Peter Kay tickets by just thinking about the old days. /via @<a href="http://twitter.com/vinharris" class="aktt_username">vinharris</a>” <a href="http://twitter.com/chrismaddern/statuses/109171805775872000" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jamesmelv" class="aktt_username">jamesmelv</a> thanks for showing me @<a href="http://twitter.com/TwopTwips" class="aktt_username">TwopTwips</a> &#8211; it&#039;s hilarious! <a href="http://twitter.com/chrismaddern/statuses/109171914966183936" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mattwallswine" class="aktt_username">mattwallswine</a> @corkbin @<a href="http://twitter.com/simonjwoolf" class="aktt_username">simonjwoolf</a> @catliao Would love to but unfortunately will be on the way to NY then. Another time! <a href="http://twitter.com/mattwallswine/statuses/109181497256316928" class="aktt_tweet_reply">in reply to mattwallswine</a> <a href="http://twitter.com/chrismaddern/statuses/109182907305820160" class="aktt_tweet_time">#</a></li>
<li>Check out my dasPing iPhone App Review <a href="http://t.co/6pRSmjP" rel="nofollow">http://t.co/6pRSmjP</a> <a href="http://twitter.com/chrismaddern/statuses/109184336561049600" class="aktt_tweet_time">#</a></li>
<li>trgt.us adds statistics, previews, generally plays catch-up with bit.ly | trgt.us | blog: <a href="http://t.co/4etMyMD" rel="nofollow">http://t.co/4etMyMD</a> via @<a href="http://twitter.com/AddThis" class="aktt_username">AddThis</a> <a href="http://twitter.com/chrismaddern/statuses/109189183389700096" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/DandDLondon" class="aktt_username">DandDLondon</a> mobile site is fantastic&#8230; @<a href="http://twitter.com/pocketdiner" class="aktt_username">pocketdiner</a> are #<a href="http://search.twitter.com/search?q=%23crushingit" class="aktt_hashtag">crushingit</a> I want to open a restaurant just to use it!! <a href="http://twitter.com/chrismaddern/statuses/109235535616286721" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jansenderek" class="aktt_username">jansenderek</a> I didn&#039;t know that @<a href="http://twitter.com/eeve" class="aktt_username">eeve</a> s were web-visible! Is that on by default? (congrats on the new team member!) <a href="http://twitter.com/jansenderek/statuses/109235241163558912" class="aktt_tweet_reply">in reply to jansenderek</a> <a href="http://twitter.com/chrismaddern/statuses/109236025037045760" class="aktt_tweet_time">#</a></li>
<li>Looking back through your search history literally tells a story! Most common search term &#039;1 GBP in USD&#039; lol <a href="http://twitter.com/chrismaddern/statuses/109238737250168832" class="aktt_tweet_time">#</a></li>
<li>Heathrow &gt; JFK for shopping! <a href="http://twitter.com/chrismaddern/statuses/110333038533165057" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/moni_gi" class="aktt_username">moni_gi</a> lol &#8211; surely you do!? What did everyone call Maximilian Faktorowicz??! How&#039;s @<a href="http://twitter.com/ClubWorkspace" class="aktt_username">ClubWorkspace</a> going? Great b/g collage! :p I need one <a href="http://twitter.com/moni_gi/statuses/109733452160577536" class="aktt_tweet_reply">in reply to moni_gi</a> <a href="http://twitter.com/chrismaddern/statuses/110703152252207105" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/rockyoo" class="aktt_username">rockyoo</a> Interesting to see that Entrepreneurship is the most entrepreneurial degree. Sounds obvious, but I&#039;m actually surprised! <a href="http://twitter.com/rockyoo/statuses/110692559671656448" class="aktt_tweet_reply">in reply to rockyoo</a> <a href="http://twitter.com/chrismaddern/statuses/110703550581051393" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ronandelacroix" class="aktt_username">ronandelacroix</a> is the perfect example of why the chrome book was a great idea!! <a href="http://t.co/bpDoR1v" rel="nofollow">http://t.co/bpDoR1v</a> <a href="http://twitter.com/chrismaddern/statuses/110781834123673601" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ErinBlaskie" class="aktt_username">ErinBlaskie</a> Hey fellow @<a href="http://twitter.com/iPhoneAppCafe" class="aktt_username">iPhoneAppCafe</a> writer :) loved your review of Bouncing Birds! :p ( <a href="http://t.co/XaDgqit" rel="nofollow">http://t.co/XaDgqit</a> ) Are you in London? <a href="http://twitter.com/chrismaddern/statuses/111417405812637696" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.chrismaddern.com/what-ive-been-tweeting-this-week-85/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: www.chrismaddern.com @ 2012-05-20 14:38:11 by W3 Total Cache -->
