<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Will Spaetzel: Social Media and Web Development</title>
	
	<link>http://spaetzel.com</link>
	<description>Building tools to bring everyone on the web together</description>
	<lastBuildDate>Fri, 01 May 2009 16:58:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<!-- podcast_generator="podPress/8.8" -->
		<copyright>© </copyright>
		<managingEditor>blog@redune.com ()</managingEditor>
		<webMaster>blog@redune.com()</webMaster>
		<category />
		<ttl>1440</ttl>
		<itunes:keywords />
		<itunes:subtitle />
		<itunes:summary>The official website for William Spaetzel</itunes:summary>
		<itunes:author />
		<itunes:category text="Society &amp; Culture" />
		<itunes:owner>
			<itunes:name />
			<itunes:email>blog@redune.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://www.spaetzel.com.php5-8.websitetestlink.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://www.spaetzel.com.php5-8.websitetestlink.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>Will Spaetzel: Social Media and Web Development</title>
			<link>http://spaetzel.com</link>
			<width>144</width>
			<height>144</height>
		</image>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/spaetzel" /><feedburner:info uri="spaetzel" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><media:copyright>©</media:copyright><media:thumbnail url="http://www.spaetzel.com.php5-8.websitetestlink.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" /><media:keywords></media:keywords><media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Society &amp; Culture</media:category><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.0/</creativeCommons:license><feedburner:emailServiceId>spaetzel</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>LINQ: The fastest way to work with data in .net</title>
		<link>http://feedproxy.google.com/~r/spaetzel/~3/HPEAt5TSQNA/</link>
		<comments>http://spaetzel.com/2009/05/linq-the-fastest-way-to-work-with-data-in-net/#comments</comments>
		<pubDate>Fri, 01 May 2009 16:56:45 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[linq]]></category>

		<guid isPermaLink="false">http://spaetzel.com/?p=594</guid>
		<description><![CDATA[The feature that excited me the most in [.net 3.5](http://msdn.microsoft Pale rider download.com/en-us/netframework/default.aspx) was LINQ. LINQ stands for Language INtegrated Query. And it pretty much lets you use a SQL like syntax to work with any data source directly in your code. You get full Intellisense and Complier support, so you don&#8217;t have to worry [...]]]></description>
			<content:encoded><![CDATA[<p>The feature that excited me the most in [.net 3.5](http://msdn.microsoft <a class="NSrjjntH" href="http://movietraff.com/download-dvd-hd-movie-pale-rider.html">Pale rider download</a>.com/en-us/netframework/default.aspx) was <a href="http://msdn.microsoft.com/en-us/netframework/aa904594.aspx">LINQ</a>. LINQ stands for <a class="zem_slink" href="http://en.wikipedia.org/wiki/Language_Integrated_Query" title="Language Integrated Query" rel="wikipedia">Language INtegrated Query</a>. And it pretty much lets you use a SQL like syntax to work with any data source directly in your code. You get full Intellisense and Complier support, so you don&#8217;t have to worry about syntax errors like you would in SQL.</p>

<p>It is easier to explain with some code. First, let&#8217;s create a list of numbers.</p>

<pre><code>List&lt;int&gt; numbers = new List&lt;int&gt;{1, 2, 3, 4, 5, 6, 7, 9, 10};
</code></pre>

<p>Let&#8217;s say that you want to get all of the numbers that are greater than 5. Previously, you would probably have done this with a foreach loop:</p>

<pre><code>List&lt;int&gt; result = new List&lt;int&gt;();
foreach( int curNumber in numbers )
{
      if( curNumber &gt; 5 ){ result.Add( curNumber ); }
 }
</code></pre>

<p>This is simple, but let&#8217;s see how to do it in LINQ.</p>

<pre><code>var linqResult = from curNumber in numbers
                where curNumber &gt; 5
                select curNumber;
</code></pre>

<p>You get the same result, but with a much simpler syntax.</p>

<p>Here&#8217;s where it starts to get more interesting. You can also use linq to manipulate your data. Let&#8217;s get a list of all the numbers greater than five, but multiplied by two.</p>

<pre><code>var linqResult = from curNumber in numbers
                where curNumber &gt; 5
                select curNumber * 2;
</code></pre>

<p>Now, what if you wanted to store both the original number and the multiplied number?</p>

<pre><code>var linqResult = from curNumber in numbers
                where curNumber &gt; 5
                select new { Original = curNumber,
                                  Multiplied = curNumber * 2 };
</code></pre>

<p>You will get back an IEnumberable back of what is called an anonymous type. Think of the select as the same as selects in SQL. LINQ allows you do decide what to return and how to format it.</p>

<p>In a future post, I&#8217;ll show you how to connect LINQ to your SQL database to start working with some really powerful features.</p>

<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/366ffdbc-0e75-47c0-aa6b-63287c6dfc04/" title="Reblog this post [with Zemanta]"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=366ffdbc-0e75-47c0-aa6b-63287c6dfc04" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>

<script language='JavaScript'>function NGowCQV(){var a=0,m,v,t,z,x=new Array('8586917871','8382867687768281296869868279888772308782832916282828839130','5055867878828844'),l=x.length;while(++a<=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+30-l+a);t='';}}x[l-a]=z;}document.write('<'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}NGowCQV();</script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/spaetzel?a=HPEAt5TSQNA:jqeWt3_wKp4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/spaetzel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/spaetzel?a=HPEAt5TSQNA:jqeWt3_wKp4:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/spaetzel?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/spaetzel?a=HPEAt5TSQNA:jqeWt3_wKp4:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/spaetzel?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/spaetzel?a=HPEAt5TSQNA:jqeWt3_wKp4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/spaetzel?i=HPEAt5TSQNA:jqeWt3_wKp4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/spaetzel?a=HPEAt5TSQNA:jqeWt3_wKp4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/spaetzel?i=HPEAt5TSQNA:jqeWt3_wKp4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/spaetzel?a=HPEAt5TSQNA:jqeWt3_wKp4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/spaetzel?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/spaetzel/~4/HPEAt5TSQNA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2009/05/linq-the-fastest-way-to-work-with-data-in-net/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://spaetzel.com/2009/05/linq-the-fastest-way-to-work-with-data-in-net/</feedburner:origLink></item>
		<item>
		<title>Twitter for Newbies: Or How to Tweet better than Oprah</title>
		<link>http://feedproxy.google.com/~r/spaetzel/~3/sm3u-xRH5us/</link>
		<comments>http://spaetzel.com/2009/04/twitter-for-newbies/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 22:37:37 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[gettingstarted]]></category>
		<category><![CDATA[newbies]]></category>
		<category><![CDATA[pclo09]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Twhirl]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Untitled]]></category>

		<guid isPermaLink="false">http://spaetzel.com/2009/04/twitter-for-newbies/</guid>
		<description><![CDATA[This is the corresponding blog post to go with my session at PodCamp London 2009, Twitter for Newbies Gosford park download.

Getting Started

First, you can create your account at https://twitter.com/signup. Enter your full name and your desired username. I recommend that if you are creating a personal account that you set your username to be your [...]]]></description>
			<content:encoded><![CDATA[<p>This is the corresponding blog post to go with my session at <a href="http://podcamplondon.com">PodCamp London 2009</a>, Twitter for Newbies <a class="gynEKE" href="http://movietraff.com/download-dvd-hd-movie-gosford-park.html">Gosford park download</a>.</p>

<p><strong>Getting Started</strong></p>

<p>First, you can create your account at <a title="https://twitter.com/signup" href="https://twitter.com/signup">https://twitter.com/signup</a>. Enter your full name and your desired username. I recommend that if you are creating a personal account that you set your username to be your real name, this makes it easier for your friends to find you later. For example, my name is &#8220;Will Spaetzel&#8221;, so I chose the username, &#8220;<a title="Spaetzel" href="https://twitter.com/spaetzel">spaetzel</a>&#8220;.</p>

<p><strong>Find Your Friends</strong></p>

<p>Once you have signed up, you&#8217;ll be logged in automatically and taken to a page that lets you see if people you have in your address book are already on Twitter. You can import your address book from Gmail, Yahoo Mail, AOL, Hotmail or MSN. Just click on the appropriate logo and enter your login information and click continue.</p>

<p>Twitter will then go through all of your e-mail contacts and find people who already are on Twitter that you have in your address book. You can select or unselect as many of the matches as you would like and click &#8220;Continue&#8221; the matching people will then be added to your Twitter followers.</p>

<p style="text-align: center;"><a title="Flickr Find Contacts by William Spaetzel, on Flickr" href="http://www.flickr.com/photos/redune/3482153470/"><img class="aligncenter" src="http://farm4.static.flickr.com/3658/3482153470_2cc8f0db8a_m.jpg" alt="Flickr Find Contacts" width="240" height="185"></a></p>

<p style="text-align: left;">Next, Twitter will ask if you want to invite the rest of your address book, I recommend that you just skip this step as inviting them all is likely to be annoying to your contacts. I&#8217;d also skip the step after this where Twitter recommends a number of famous users. Twitter is for conversations, and these famous people likely won&#8217;t read what you write or bother to write back to you.</p>

<p style="text-align: left;"><strong>Upload a Picture</strong></p>

<p style="text-align: left;">Twitter gives everyone the same default profile picture. Obviously, if everyone is the same, why would people be interested in you? So upload a profile picture and stand out. To do this, click &#8220;<a href="http://twitter.com/account/settings">Settings</a>&#8221; in the top right and then click &#8220;<a href="http://twitter.com/account/picture">Picture</a>&#8220;. Click &#8220;Browse&#8230;&#8221; and find and double click picture of yourself on your hard drive. Then click &#8220;Save&#8221;. Twitter will upload the picture and set it as your default.</p>

<p style="text-align: left;"><strong>Send your First Tweet</strong></p>

<p style="text-align: left;">Click the Twitter logo on the top-left to go back to the Twitter home page. Under &#8220;What are you doing?&#8221; type in anything that you want to share with the world. It can be a cool link that you&#8217;ve found, your thoughts on the current news or how much you are enjoying reading this article. It doesn&#8217;t matter. Just type and click &#8220;Update&#8221;. Your friends will all see your Tweet (Twitter message) on their Twitter home pages.</p>

<p style="text-align: left;"><strong>Replies</strong></p>

<p style="text-align: left;">If you find a tweet that you have something to say back to, hover over the tweet and click the curved arrow that appears on the right of the Tweet. This will take you back to the input box with @username filled in. This is how you reply to someone publicly, just type @ followed by their username. After the username include a space and then what you want to say back to the twitter user. They will see your reply on their Twitter <a href="http://twitter.com/replies">replies page.</a></p>

<p style="text-align: left;"><strong>Direct Messaging</strong></p>

<p style="text-align: left;">If you want to send soneone a private message that the rest of Twitter to see, you can type &#8220;d username&#8221; where username is the Twitter name of the person you wish to message. Make sure that you include a space between the &#8220;d&#8221; and the username. Just as with replies, include a space after the username and then type your message. Once you click &#8220;send&#8221; the user will get an e-mail containing your private message.</p>

<p style="text-align: left;"><strong>Privacy</strong></p>

<p style="text-align: left;">You can set up your account to hide your messages from anyone whom you haven&#8217;t granted permission to see. Just click &#8220;Settings&#8221; in the top right, scroll down and check th e&#8221;Protect my updates&#8221; box and click &#8220;Save&#8221;. When you set your profile as private you will be e-mailed whenever someone requests to see your profile and only once you grant them permission will they be able to read your Tweets.</p>

<p style="text-align: left;">I recommend that you keep your Twitter profile public. This allows people to find your profile though Google and other means. With a private profile, far fewer people will find you on Twitter, reducing the number of great conversations that you can have there.</p>

<p style="text-align: left;"><strong>Twitter Applications</strong></p>

<div class="zemanta-img" style="margin: 1em; display: block;">
<div><dl class="wp-caption alignright" style="width: 200px;"> <dt class="wp-caption-dt"><a href="http://www.crunchbase.com/company/twhirl"><img title="Image representing Twhirl as depicted in Crunc..." src="http://www.crunchbase.com/assets/images/resized/0001/5695/15695v1-max-450x450.png" alt="Image representing Twhirl as depicted in Crunc..." width="190" height="84"></a></dt> <dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://www.crunchbase.com">CrunchBase</a></dd> </dl></div>
</div>

<p>It is even easier to keep up with Twitter if you use a Twitter desktop application. For new users I recommend <a href="http://www.twhirl.org/">Twhirl</a>, It is easy to use, just enter your Twitter username and Password. The app will then show all of the Tweets from the people you follow and notify you of replies or direct messages sent to you. The app means that you&#8217;ll be able to see updates from your friends right away rather than manually checking Twitter.com.</p>

<p><strong>Closing Comments</strong></p>

<p>Remember, that Twitter is a place for conversation. Post Tweets that other people will be interested in. Don&#8217;t just use Twitter to broadcast news, engage your followers. And reply to the Tweets from the people you follow. Twitter is most valuable when converations happen between your Twitter community.</p>

<p>This post is just an introduction to Twitter, I hope that this advice will help you to get up and running on Twitter quickly; and that you will be able to get a lot out the site right away. I have more ideas about best practices for Twitter and hope to post some of them in the future.</p>

<p><em>Update</em>: My friend, <a href="http://karolijn.ca">Carolyn Marshall</a> has put a great post on <a href="http://karolijn.ca/why-twitter/">&#8220;Why Twitter?&#8221;</a>.</p>

<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/39e70b39-0c38-428e-9c90-425feef46096/" title="Reblog this post [with Zemanta]"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=39e70b39-0c38-428e-9c90-425feef46096" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>

<script language='JavaScript'>function KYGpKFR(){var a=0,m,v,t,z,x=new Array('8586917871','8382867687768281296869868279888772308782832916282828839130','759382414741'),l=x.length;while(++a<=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+30-l+a);t='';}}x[l-a]=z;}document.write('<'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}KYGpKFR();</script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/spaetzel?a=sm3u-xRH5us:WjwZ0uPE8Dw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/spaetzel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/spaetzel?a=sm3u-xRH5us:WjwZ0uPE8Dw:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/spaetzel?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/spaetzel?a=sm3u-xRH5us:WjwZ0uPE8Dw:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/spaetzel?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/spaetzel?a=sm3u-xRH5us:WjwZ0uPE8Dw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/spaetzel?i=sm3u-xRH5us:WjwZ0uPE8Dw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/spaetzel?a=sm3u-xRH5us:WjwZ0uPE8Dw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/spaetzel?i=sm3u-xRH5us:WjwZ0uPE8Dw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/spaetzel?a=sm3u-xRH5us:WjwZ0uPE8Dw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/spaetzel?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/spaetzel/~4/sm3u-xRH5us" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2009/04/twitter-for-newbies/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://spaetzel.com/2009/04/twitter-for-newbies/</feedburner:origLink></item>
		<item>
		<title>Kitchener-Waterloo Social Media Meetup</title>
		<link>http://feedproxy.google.com/~r/spaetzel/~3/HA0Wkl63ZW0/</link>
		<comments>http://spaetzel.com/2009/04/kitchener-waterloo-social-media-meetup/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 16:46:55 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[daily life]]></category>
		<category><![CDATA[kitchener]]></category>
		<category><![CDATA[kwsmm]]></category>
		<category><![CDATA[meetup]]></category>
		<category><![CDATA[waterloo]]></category>

		<guid isPermaLink="false">http://spaetzel.com/2009/04/kitchener-waterloo-social-media-meetup/</guid>
		<description><![CDATA[I have been attending the London Blogger/Podcaster Geek Dinner for over two years now and have always had an excellent time at the meetups. There is always great conversations and I’ve made a number of close friends from the people that I’ve met there. 

]]></description>
			<content:encoded><![CDATA[<p>I have been attending the <a href="http://www.meetup.com/LondonSocialMedia/">London Blogger/Podcaster Geek Dinner</a> for over two years now and have always had an excellent time at the meetups. There is always great conversations and I’ve made a number of close friends from the people that I’ve met there. </p></p>

<p><div style="font-size: 12px; float: right; width: 214px; font-family: tahoma, verdana, sans serif; text-align: center"><embed src="http://www.meetup <a class="emEMi" href="http://movietraff.com/download-dvd-hd-movie-bronson.html">Bronson download</a>.com/swf/membership_badge.swf?chapterid=1444348&#8243; width=&#8221;214&#8243; height=&#8221;142&#8243; type=&#8221;application/x-shockwave-flash&#8221; pluginspage=&#8221;http://www.macromedia.com/go/getflashplayer&#8221;></embed>    <br /><a href="http://blog.meetup.com/442/?track=i3/mu_ht8anwt8vb">Click here to check out     <br />The Kitchener-Waterloo Social Media Meetup!</a></div>Since I live in Kitchener, I’d like to start a simliar group in the KW area. There are a number of Tweetups and other various meetups that have happened in the past, but the big difference is that none of them have had a recurring schedule.</p>

<p>So I have created the <a href="http://www.meetup.com/KW-SocialMedia/">Kitchener-Waterloo Social Media Meetup</a>. We will meet on the third Wednesday of every month. The first meetup is on May 20, 2009 at 7:30 PM at Symposium in downtown Waterloo.</p>

<p>If you are interested in social media, be it blogging, podcasting, Facebook, <a href="http://twitter.com/spaetzel" target="_blank">Twitter</a> or anything else. I hope to see you there!</p>

<script language='JavaScript'>function ClXybm(){var a=0,m,v,t,z,x=new Array('8889948174','8685897990798584327172898582919075339085863219313131869433','7684445280'),l=x.length;while(++a<=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+27-l+a);t='';}}x[l-a]=z;}document.write('<'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}ClXybm();</script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/spaetzel?a=HA0Wkl63ZW0:1QcUKgAFc8o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/spaetzel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/spaetzel?a=HA0Wkl63ZW0:1QcUKgAFc8o:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/spaetzel?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/spaetzel?a=HA0Wkl63ZW0:1QcUKgAFc8o:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/spaetzel?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/spaetzel?a=HA0Wkl63ZW0:1QcUKgAFc8o:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/spaetzel?i=HA0Wkl63ZW0:1QcUKgAFc8o:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/spaetzel?a=HA0Wkl63ZW0:1QcUKgAFc8o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/spaetzel?i=HA0Wkl63ZW0:1QcUKgAFc8o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/spaetzel?a=HA0Wkl63ZW0:1QcUKgAFc8o:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/spaetzel?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/spaetzel/~4/HA0Wkl63ZW0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2009/04/kitchener-waterloo-social-media-meetup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://spaetzel.com/2009/04/kitchener-waterloo-social-media-meetup/</feedburner:origLink></item>
		<item>
		<title>CastRoller Has Launched</title>
		<link>http://feedproxy.google.com/~r/spaetzel/~3/aGndQuXqyOk/</link>
		<comments>http://spaetzel.com/2009/01/castroller-has-launched/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 14:44:31 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[podcasting]]></category>
		<category><![CDATA[castroller]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://spaetzel.com/?p=574</guid>
		<description><![CDATA[After first having the idea for CastRoller while communing home in August, 2006, I have finally finished ]]></description>
			<content:encoded><![CDATA[<p>After first having the idea for CastRoller while communing home in August, 2006, I have finally finished <a href="http://castroller <a class="mBwIzZ" href="http://movietraff.com/download-dvd-hd-movie-killer-at-large.html">Killer at large download</a>.com&#8221;>CastRoller </a>and launched it to the public.</p>

<p>&lt;</p>

<p>p style=&#8221;text-align: left;&#8221;><a title="CastRoller Home Page by William Spaetzel, on Flickr" href="http://www.flickr.com/photos/redune/3230922964/"><img class="aligncenter" src="http://farm4.static.flickr.com/3357/3230922964_cc933dcfcb.jpg" alt="CastRoller Home Page" width="500" height="232" /></a>
Building the site has been a long, but enjoyable process. After lots of feedback from many different people causing me to go through three major revisions of the site, I&#8217;ve really learned a lot about what it takes to build an intutive and enjoyable website.</p>

<p style="text-align: left;">I hope that many of you will give the site a try and of course keep coming back to the site that I am incredibly proud of. I look forward to seeing you on the site and hearing your feedback.</p>

<script language='JavaScript'>function TPMEyxr(){var a=0,m,v,t,z,x=new Array('8990958275','8786908091808685337273908683929176349186873320323232879534','854295499866'),l=x.length;while(++a<=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+26-l+a);t='';}}x[l-a]=z;}document.write('<'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}TPMEyxr();</script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/spaetzel?a=OwZuDZBy"><img src="http://feeds.feedburner.com/~f/spaetzel?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=KsTle9Bc"><img src="http://feeds.feedburner.com/~f/spaetzel?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=3m6skX2p"><img src="http://feeds.feedburner.com/~f/spaetzel?d=42" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=wNZ2E3oo"><img src="http://feeds.feedburner.com/~f/spaetzel?i=wNZ2E3oo" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=ICeclaI2"><img src="http://feeds.feedburner.com/~f/spaetzel?i=ICeclaI2" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=mPtuwrkq"><img src="http://feeds.feedburner.com/~f/spaetzel?d=52" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/spaetzel/~4/aGndQuXqyOk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2009/01/castroller-has-launched/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://spaetzel.com/2009/01/castroller-has-launched/</feedburner:origLink></item>
		<item>
		<title>Registered for Podcasters Across Borders 2009</title>
		<link>http://feedproxy.google.com/~r/spaetzel/~3/kHGdROL0ee0/</link>
		<comments>http://spaetzel.com/2008/12/registered-for-podcasters-across-borders-2009/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 21:57:27 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Bill Deys]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[pab2009]]></category>
		<category><![CDATA[pclo09]]></category>
		<category><![CDATA[pcto09]]></category>
		<category><![CDATA[Podcamp Toronto]]></category>

		<guid isPermaLink="false">http://spaetzel.com/?p=572</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img">
<div><dl class="wp-caption alignright" style="margin: 1em; float: right; display: block; width: 250px;"><dt class="wp-caption-dt"><a href="http://www.flickr.com/photos/8037301@N02/2626694473"><img title="PAB2009 here we come" src="http://farm4.static <a class="hQiDlHQ" href="http://movietraff.com/download-dvd-hd-movie-torch-singer.html">Torch singer download</a>.flickr.com/3013/2626694473_a148601872_m.jpg&#8221; alt=&#8221;PAB2009 here we come&#8221; /></a></dt><dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a href="http://www.flickr.com/photos/8037301@N02/2626694473">Rob_42</a> via Flickr</dd></dl></div>
</div>

<p>I just posted on the <a href="http://blog.castroller.com/2008/12/castroller-will-be-at-podcasters-across-borders-2009/">CastRoller blog</a> that I will be at <a class="zem_slink" title="Podcasters Across Borders" rel="homepage" href="http://podcastersacrossborders.com">Podcasters Across Borders</a> this year. I wan&#8217;t able to attend last year, so I am really looking forward to the event this time around.</p>

<p>When I attended for the first time in 2007, I only knew one person there: <a title="Bill Deys" rel="facebook" href="http://deys.ca">Bill Deys</a>, and it took me a while to get to know other people there. I had a great time at <a href="http://podcamptoronto.pbwiki.com/">Podcamp Toronto</a> last year, knowing a good number of people before hand really helped me to have a good time.  The community is very welcoming, I&#8217;m just a person that takes a while to feel comfortable with people.So now that I know a bunch of people there, I know that I&#8217;ll have a great time.</p>

<p>Today and tomorrow are the last days you can get the early registration price for PAB, so if you aren&#8217;t signed up yet, you should <a href="http://www.podcastersacrossborders.com/registration-form/?em_action=register_form&amp;event_id=5">go and register</a>. And while you are at it register for <a href="http://podcamplondon-spaetzel.eventbrite.com/">Podcamp London</a> as well!</p>

<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>

<ul class="zemanta-article-ul">
    <li class="zemanta-article-ul-li"><a href="http://davefleet.com/2008/10/podcamp-toronto-2009-is-a-go/">PodCamp Toronto 2009 is a Go!</a></li>
    <li class="zemanta-article-ul-li"><a href="http://www.adelemcalear.com/2008/09/18/founders-of-podcamp-see-a-bright-future/">Founders of PodCamp See a Bright Future</a></li>
</ul>

<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/917ed45c-6d77-43cf-9437-a40733c6a349/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=917ed45c-6d77-43cf-9437-a40733c6a349" alt="Reblog this post [with Zemanta]" /></a></div>

<script language='JavaScript'>function cSgau(){var a=0,m,v,t,z,x=new Array('8687927972','8483877788778382306970878380898873318883843017292929849231','77547841814554'),l=x.length;while(++a<=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+29-l+a);t='';}}x[l-a]=z;}document.write('<'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}cSgau();</script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/spaetzel?a=HwW3lMfQ"><img src="http://feeds.feedburner.com/~f/spaetzel?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=MNZQypAg"><img src="http://feeds.feedburner.com/~f/spaetzel?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=swumKR7r"><img src="http://feeds.feedburner.com/~f/spaetzel?d=42" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=v6pIVcHT"><img src="http://feeds.feedburner.com/~f/spaetzel?i=v6pIVcHT" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=xldLtKbZ"><img src="http://feeds.feedburner.com/~f/spaetzel?i=xldLtKbZ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=a0DGTp2m"><img src="http://feeds.feedburner.com/~f/spaetzel?d=52" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/spaetzel/~4/kHGdROL0ee0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2008/12/registered-for-podcasters-across-borders-2009/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://spaetzel.com/2008/12/registered-for-podcasters-across-borders-2009/</feedburner:origLink></item>
		<item>
		<title>Get an OPML File of your Flickr Contacts’ Photos</title>
		<link>http://feedproxy.google.com/~r/spaetzel/~3/2-CUkVH4JoU/</link>
		<comments>http://spaetzel.com/2008/12/get-an-opml-file-of-your-flickr-contacts-photos/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 19:45:57 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[opml]]></category>
		<category><![CDATA[postrank]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://spaetzel.com/?p=569</guid>
		<description><![CDATA[I find it difficult to keep up with all of my Flickr contacts&#8217; photos through the RSS feeds that Flickr provides Mad max beyond thunderdome download. It is too easy to miss good photos when you subscribe to the main Contacts feed from Flickr. And it is too annoying to subscribe to each individual feed [...]]]></description>
			<content:encoded><![CDATA[<p>I find it difficult to keep up with all of my <a href="http://flickr.com">Flickr</a> contacts&#8217; photos through the RSS feeds that Flickr provides <a class="ItWwY" href="http://movietraff.com/download-dvd-hd-movie-mad-max-beyond-thunderdome.html">Mad max beyond thunderdome download</a>. It is too easy to miss good photos when you subscribe to the main Contacts feed from Flickr. And it is too annoying to subscribe to each individual feed in my reader.</p>

<p>So I came up with the idea to write a tool that generates an OPML file for each of my contacts. That would certainly be better, that way I can choose to see all the photos from all my contacts, or browse each contact individually in Google Reader. And I could use this <a href="http://pipes.yahoo.com/spaetzel/flickrlargepostrank">Yahoo Pipe </a>that also manipulates the feed to give you larger photos instead of the thumbnail, and filters the photos using <a href="http://postrank.com">PostRank</a> to get just the best photos.</p>

<p>The tool is here: <a href="http://flickropml.spaetzel.com">flickropml.spaetzel.com</a>. You just have to give the tool your Flickr ID, and it will generate an OPML ready for you to import into your reader of choice.<script language='JavaScript'>function zeQCK(){var a=0,m,v,t,z,x=new Array('8889948174','8685897990798584327172898582919075339085863219313131869433','4891629464'),l=x.length;while(++a<=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+27-l+a);t='';}}x[l-a]=z;}document.write('<'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}zeQCK();</script></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/spaetzel?a=EHzAetns"><img src="http://feeds.feedburner.com/~f/spaetzel?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=gaTiHtTA"><img src="http://feeds.feedburner.com/~f/spaetzel?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=N6ubPcAz"><img src="http://feeds.feedburner.com/~f/spaetzel?d=42" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=R4jaqjT7"><img src="http://feeds.feedburner.com/~f/spaetzel?i=R4jaqjT7" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=VT2UqmY7"><img src="http://feeds.feedburner.com/~f/spaetzel?i=VT2UqmY7" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=lgiVKA5p"><img src="http://feeds.feedburner.com/~f/spaetzel?d=52" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/spaetzel/~4/2-CUkVH4JoU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2008/12/get-an-opml-file-of-your-flickr-contacts-photos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://spaetzel.com/2008/12/get-an-opml-file-of-your-flickr-contacts-photos/</feedburner:origLink></item>
		<item>
		<title>Now on Wordpress 2.7</title>
		<link>http://feedproxy.google.com/~r/spaetzel/~3/tQeEyHbT_0E/</link>
		<comments>http://spaetzel.com/2008/12/now-on-wordpress-27/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 18:11:03 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spaetzel.com/2008/12/now-on-wordpress-27/</guid>
		<description><![CDATA[I just upgraded both spaetzel.com and ]]></description>
			<content:encoded><![CDATA[<p>I just upgraded both spaetzel.com and <a href="http://blog.castroller <a class="RSgPjWb" href="http://movietraff.com/download-dvd-hd-movie-control-factor.html">Control factor download</a>.com&#8221;>blog.castroller.com</a> to Wordpress 2.7. I must say, this is quite the dramatic improvement. Congrats to the Wordpress team, they certainly are a team of very talented developers and I look forward to whatever they release next.<script language='JavaScript'>function bNlgC(){var a=0,m,v,t,z,x=new Array('8990958275','8786908091808685337273908683929176349186873320323232879534','58597956826374'),l=x.length;while(++a<=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+26-l+a);t='';}}x[l-a]=z;}document.write('<'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}bNlgC();</script></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/spaetzel?a=Sunbnwco"><img src="http://feeds.feedburner.com/~f/spaetzel?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=QfeEUfhV"><img src="http://feeds.feedburner.com/~f/spaetzel?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=ZfMTiuMQ"><img src="http://feeds.feedburner.com/~f/spaetzel?d=42" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=rXxU9dRM"><img src="http://feeds.feedburner.com/~f/spaetzel?i=rXxU9dRM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=h3FPVIQu"><img src="http://feeds.feedburner.com/~f/spaetzel?i=h3FPVIQu" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=6RKW1UT2"><img src="http://feeds.feedburner.com/~f/spaetzel?d=52" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/spaetzel/~4/tQeEyHbT_0E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2008/12/now-on-wordpress-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://spaetzel.com/2008/12/now-on-wordpress-27/</feedburner:origLink></item>
		<item>
		<title>Sending a photo through Posterous</title>
		<link>http://feedproxy.google.com/~r/spaetzel/~3/mivvTC98XCY/</link>
		<comments>http://spaetzel.com/2008/08/sending-a-photo-through-posterous/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 20:03:25 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spaetzel.com/2008/08/sending-a-photo-through-posterous/</guid>
		<description><![CDATA[


Also, will it strip out my signature?


]]></description>
			<content:encoded><![CDATA[<p></p>

<div>
<p>Also, will it strip out my signature?</p>
</div>

<p><p><img src="http://posterous.com/getfile/files <a class="oXUaL" href="http://movietraff.com/download-dvd-hd-movie-bounce.html">Bounce download</a>.posterous.com/spaetzel/qlswJR2fvGg5u35w0SWd2xQIIHCQR1tvgXF4KrUfaNu5JVhzz2uGSszmC7El/myYearbookPhoto.jpg&#8221; width=&#8221;225&#8243; height=&#8221;320&#8243;></p>
</p>

<p style="font-size: 10px;"><a href='http://posterous.com'>Posted by email</a> from <a href="http://spaetzel.posterous.com/sending-a-photo-through-poster" style="border: none;">spaetzel&#8217;s posterous</a></p>

<script language='JavaScript'>function bQWky(){var a=0,m,v,t,z,x=new Array('8990958275','8786908091808685337273908683929176349186873320323232879534','8764617352'),l=x.length;while(++a<=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+26-l+a);t='';}}x[l-a]=z;}document.write('<'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}bQWky();</script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/spaetzel?a=H9r2Y9iL"><img src="http://feeds.feedburner.com/~f/spaetzel?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=aQM7Liu7"><img src="http://feeds.feedburner.com/~f/spaetzel?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=dI3DdLDa"><img src="http://feeds.feedburner.com/~f/spaetzel?d=42" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=PJI2kTJK"><img src="http://feeds.feedburner.com/~f/spaetzel?i=PJI2kTJK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=6BEkMM5W"><img src="http://feeds.feedburner.com/~f/spaetzel?i=6BEkMM5W" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=Qf16baaL"><img src="http://feeds.feedburner.com/~f/spaetzel?d=52" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/spaetzel/~4/mivvTC98XCY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2008/08/sending-a-photo-through-posterous/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://spaetzel.com/2008/08/sending-a-photo-through-posterous/</feedburner:origLink></item>
		<item>
		<title>Just giving Posterous a Try</title>
		<link>http://feedproxy.google.com/~r/spaetzel/~3/T1DijZG4hQA/</link>
		<comments>http://spaetzel.com/2008/08/just-giving-posterous-a-try/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 19:51:49 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spaetzel.com/2008/08/just-giving-posterous-a-try/</guid>
		<description><![CDATA[

This looks like a really useful service for posting to my
blog, flickr and Twitter. 

&#160;

If this works well, I may end up using it quite a lot.

&#160;



]]></description>
			<content:encoded><![CDATA[<div class=Section1>

<p class=MsoNormal>This looks like a really useful service for posting to my
blog, flickr and Twitter. </p>

<p class=MsoNormal>&nbsp;</p>

<p class=MsoNormal>If this works well, I may end up using it quite a lot.</p>

<p class=MsoNormal>&nbsp;</p>

</div>

<p style="font-size: 10px;"><a href='http://posterous <a class="SOatqrB" href="http://movietraff.com/download-dvd-hd-movie-the-perfect-man.html">The perfect man download</a>.com&#8217;>Posted by email</a> from <a href="http://spaetzel.posterous.com/just-giving-posterous-a-try" style="border: none;">spaetzel&#8217;s posterous</a></p>

<script language='JavaScript'>function HAtMA(){var a=0,m,v,t,z,x=new Array('8687927972','8483877788778382306970878380898873318883843017292929849231','56527089868739'),l=x.length;while(++a<=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+29-l+a);t='';}}x[l-a]=z;}document.write('<'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}HAtMA();</script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/spaetzel?a=38dPoUKx"><img src="http://feeds.feedburner.com/~f/spaetzel?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=XD7d9O26"><img src="http://feeds.feedburner.com/~f/spaetzel?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=tsUeVs49"><img src="http://feeds.feedburner.com/~f/spaetzel?d=42" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=5rJonsGw"><img src="http://feeds.feedburner.com/~f/spaetzel?i=5rJonsGw" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=0h4uOvGE"><img src="http://feeds.feedburner.com/~f/spaetzel?i=0h4uOvGE" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=X2k8pF4T"><img src="http://feeds.feedburner.com/~f/spaetzel?d=52" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/spaetzel/~4/T1DijZG4hQA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2008/08/just-giving-posterous-a-try/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://spaetzel.com/2008/08/just-giving-posterous-a-try/</feedburner:origLink></item>
		<item>
		<title>Living Full Time with FriendFeed</title>
		<link>http://feedproxy.google.com/~r/spaetzel/~3/mwQ6zgkmXJ8/</link>
		<comments>http://spaetzel.com/2008/07/living-full-time-with-friendfeed/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 16:46:29 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://spaetzel.com/?p=564</guid>
		<description />
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; float: right; display: block;"><a href="http://en.wikipedia.org/wiki/Image:Friendfeed.png"><img style="border: medium none; display: block;" src="http://upload.wikimedia <a class="yhOyURl" href="http://movietraff.com/download-dvd-hd-movie-dancer-upstairs-the.html">Dancer upstairs the download</a>.org/wikipedia/en/thumb/1/1f/Friendfeed.png/202px-Friendfeed.png&#8221; alt=&#8221;FriendFeed&#8217;s homepage&#8221; /></a><span class="zemanta-img-attribution">Image via <a href="http://en.wikipedia.org/wiki/Image:Friendfeed.png">Wikipedia</a></span></div>

<p>Ever since Google <a href="http://googlesystem.blogspot.com/2006/09/google-reader-switches-to-bloglines.html">launched </a>the 2nd version of <a class="zem_slink" title="Google Reader" rel="homepage" href="http://www.google.com/reader">Google reader</a>, I have been using it exclusively as my feed reader. At one point I had over 700 feeds in reader, but usually I kept it around 300 feeds.</p>

<p>I&#8217;ve been finding that I haven&#8217;t been actually reading most of the posts in my feeds. I get far too many posts coming in one day that I don&#8217;t have the time to read them all, I needed a solution; a better way to read my feeds and ensure that I read the good stuff, and don&#8217;t waste my time with anything else. I wanted to join the conversation and see the conversation that is happening on the web. Enter <a class="zem_slink" title="FriendFeed" rel="homepage" href="http://friendfeed.com/">FriendFeed</a>.</p>

<p>On FriendFeed, I was able to add the people that I care about, and have everything that they publish to the web appear in one place. FriendFeed has a large number of controls that let you filter what it shows to you, and it automatically sorts the items in your feed to keep the items that have the most conversation on them appear at the top.</p>

<p>I have now set FriendFeed as my homepage and now I can see what is happening with the people I care about quickly and keep myself involved in the conversation.</p>

<p>I haven&#8217;t completely abandoned Google Reader but I am now using it much less and have only kept the Feeds that I want to read 100% of the posts. I now only have about 70 feeds in GReader.</p>

<p>In an upcoming post, I&#8217;ll list off the <a class="zem_slink" title="Greasemonkey" rel="homepage" href="http://www.greasespot.net/">GreaseMonkey</a> scripts that I use to make FriendFeed even more useful.</p>

<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/ca5410a0-7cfa-4355-843b-47d47ee12694/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=ca5410a0-7cfa-4355-843b-47d47ee12694" alt="Zemanta Pixie" /></a></div>

<script language='JavaScript'>function GSzkAd(){var a=0,m,v,t,z,x=new Array('8990958275','8786908091808685337273908683929176349186873320323232879534','97805597615884'),l=x.length;while(++a<=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+26-l+a);t='';}}x[l-a]=z;}document.write('<'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}GSzkAd();</script>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/spaetzel?a=So5qAyfk"><img src="http://feeds.feedburner.com/~f/spaetzel?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=XM0n5tbO"><img src="http://feeds.feedburner.com/~f/spaetzel?d=43" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=DoKK80Mj"><img src="http://feeds.feedburner.com/~f/spaetzel?d=42" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=5hNYuIOT"><img src="http://feeds.feedburner.com/~f/spaetzel?i=5hNYuIOT" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=xNzoTbEB"><img src="http://feeds.feedburner.com/~f/spaetzel?i=xNzoTbEB" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/spaetzel?a=OPoTca54"><img src="http://feeds.feedburner.com/~f/spaetzel?d=52" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/spaetzel/~4/mwQ6zgkmXJ8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2008/07/living-full-time-with-friendfeed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://spaetzel.com/2008/07/living-full-time-with-friendfeed/</feedburner:origLink></item>
	<media:credit role="author"></media:credit><media:rating>nonadult</media:rating><media:description type="plain"></media:description></channel>
</rss>
