<?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>Web Things Considered</title>
	<atom:link href="https://www.webthingsconsidered.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.webthingsconsidered.com</link>
	<description></description>
	<lastBuildDate>Fri, 17 Nov 2017 06:44:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.8</generator>
	<item>
		<title>Adventures in JSON parsing with C#</title>
		<link>https://www.webthingsconsidered.com/2013/08/09/adventures-in-json-parsing-with-c/</link>
		<comments>https://www.webthingsconsidered.com/2013/08/09/adventures-in-json-parsing-with-c/#comments</comments>
		<pubDate>Fri, 09 Aug 2013 08:29:02 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=399</guid>
		<description><![CDATA[Despite building applications with C# for years, I was frustrated today with some basic JSON parsing. This is something that I have done hundreds of times in Ruby and Python, where parsing JSON consists of deserializing into a Hash (Ruby) or Dictionary (Python) on the fly without defining a class, or mapping, beforehand. It&#8217;s easy &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2013/08/09/adventures-in-json-parsing-with-c/" class="more-link">Continue reading<span class="screen-reader-text"> "Adventures in JSON parsing with C#"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Despite building applications with C# for years, I was frustrated today with some basic JSON parsing.  This is something that I have done hundreds of times in Ruby and Python, where parsing JSON consists of deserializing into a <a href="http://www.ruby-doc.org/core-2.0/Hash.html">Hash (Ruby)</a> or <a href="http://docs.python.org/2/tutorial/datastructures.html#dictionaries">Dictionary (Python)</a> on the fly without defining a class, or mapping, beforehand.  It&#8217;s easy to build the objects on the fly in the dynamic languages.  But, with C# being a statically typed language, it&#8217;s taken a long time to get to that point. This becomes important as you consume many JSON endpoints from a service, it saves us time if we don&#8217;t have to model all of these responses in C# before making requests.  This proved to be an opportunity to catch up with the state of art in C# for dynamically parsing JSON.</p>
<h2>Problem</h2>
<p>Consume a JSON string (such as the following) in a C# program, hopefully creating some sort of dynamic object on the fly that we can work with like any other C# object, and then doing something with the object: saving it in database, sending it elsewhere or rendering to a screen.</p>
<p><code><br />
{"results":[<br />
  {"employeename":"name1","employeesupervisor":"supervisor1"},<br />
  {"employeename":"name2","employeesupervisor":"supervisor1"},<br />
  {"employeename":"name3","employeesupervisor":["supervisor1","supervisor2"]}<br />
]}<br />
</code></p>
<h3>Step 1 &#8211; Parse JSON, dynamically converting it into a C# object</h3>
<p>Again, trying to get up to speed and taking the most &#8220;modern&#8221; approach by dynamically parsing without pre-defining classes or mappings. Looking at some samples, I see mention of a <a href="http://blogs.msdn.com/b/henrikn/archive/2012/02/16/httpclient-is-here.aspx">JsonArray</a> type, and a <a href="http://www.jayway.com/2012/03/13/httpclient-makes-get-and-post-very-simple/">JsonObject</a> in conjunction with the newer .NET Http Client library.  But, I cannot seem to use these, and am not sure if they still exist.  So, I&#8217;m going to quickly switch gears and use <a href="http://james.newtonking.com/projects/json-net.aspx">Json.NET</a>, since it&#8217;s essentially been the de-facto JSON parsing library for .NET applications for years, and that <a href="http://james.newtonking.com/projects/json/help/?topic=html/JsonNetVsDotNetSerializers.htm">doesn&#8217;t seem to be any different now</a>.</p>
<p>I&#8217;ve said &#8220;dynamic&#8221; many times already, and as luck would have it, .NET 4 introduced dynamic types. dynamic types bypass compile time checking. Great, that seems promising. Rick Strahl has a post where he introduces us to <a href="http://www.west-wind.com/weblog/posts/2012/Aug/30/Using-JSONNET-for-dynamic-JSON-parsing">Json.NET&#8217;s dynamic support</a>, using JObject and JArray</p>
<h3>Step 2 &#8211; Do something with the C# object</h3>
<p>So, great, we have a nice dynamic c# object, but did you notice something in that sample?  The last record&#8217;s supervisor has disparate value types.  This is perfectly valid JSON, per the JSON spec:</p>
<blockquote><p>A value can be a string in double quotes, or a number, or true or false or null, or an object or an array. These structures can be nested.</p></blockquote>
<p>Nowhere does it say that the value type has to be same for the property across all instances in an array, which if they were all the same type, we&#8217;d be done already.  So, how do handle this case with our Json.NET JObject instance. As a demonstration, let&#8217;s say the requirement is to just take the first one if it&#8217;s an array.</p>
<h3>Solution</h3>
<p>Here&#8217;s a little program to demonstrate</p>
<p><script src="https://gist.github.com/ryanwi/6191055.js"></script></p>
<p>Overall, the Json.NET looks like the solution we were looking for, with a concise few lines of code to parse and process the result. It took entirely too long to get to this point though, both in terms of the language and in my work to understand it today. Hopefully we&#8217;ll see more acceptance of dynamic parsing in C# and start moving more examples and codebases in that direction.</p>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-8158729563514453";
/* json */
google_ad_slot = "9233859470";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="//pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2013/08/09/adventures-in-json-parsing-with-c/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>The Procrastinator&#8217;s guide to PIE</title>
		<link>https://www.webthingsconsidered.com/2011/07/29/procrastinators-guide-to-pie/</link>
		<comments>https://www.webthingsconsidered.com/2011/07/29/procrastinators-guide-to-pie/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 04:23:33 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=277</guid>
		<description><![CDATA[NOTE: when I started writing this, I thought the deadline was August 1st, turns it was extended today to August 8th. So, come back and read this next week I guess. Enjoying your summer? Soaking in that Friday night feeling? Have that nagging thought in the back of your mind that you haven&#8217;t finished your &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2011/07/29/procrastinators-guide-to-pie/" class="more-link">Continue reading<span class="screen-reader-text"> "The Procrastinator&#8217;s guide to PIE"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p><strong>NOTE</strong>: when I started writing this, I thought the deadline was August 1st, turns it was extended today to August 8th. So, come back and read this next week I guess.</p>
<p>Enjoying your summer?  Soaking in that Friday night feeling?  Have that nagging thought in the back of your mind that you haven&#8217;t finished your <a href="http://www.piepdx.com/">PIE</a> application for you great idea?  Ah ha, I knew it.  Since I&#8217;m one of the biggest procrastinators around, I feel your pain.  But, wait, you say &#8220;I still have <strike>3</strike> 10 more nights, there&#8217;s plenty of time to watch a couple shows on Hulu, get lost for a few hours reading blog posts, figuring what the heck PIE is, and maybe do a little coding, and then finish the application.&#8221;  I know your tricks, that&#8217;s why I&#8217;m here to help.</p>
<p>All kidding aside, and even though I just <a href="http://www.webthingsconsidered.com/2011/07/20/rocky-mountain-hi/">moved to Colorado</a>, I am here to help.  I&#8217;ve enlisted to be a mentor in the upcoming session of <a href="http://www.piepdx.com/">PIE</a>, joining forces with a who&#8217;s who of Portland and beyond talented technology, startup and marketing communities.  Even if you don&#8217;t need my help, or if my help is no help at all, then you&#8217;ll still want to be a part of it to tap into the roster they&#8217;ve got lined up.  Heck, I&#8217;m hoping I can learn a thing or two or a hundred in drafting off this group.</p>
<p>Let&#8217;s get to it, turn down your Spotify, Turntable, Mugasha or whatever the cool kids are listening to these days and focus.</p>
<p><strong>What is <a href="http://www.piepdx.com/">PIE</a>?</strong></p>
<p>First, stuff you can read on their website, but I wanted to use the blockquote tag:</p>
<blockquote><p>The Portland Incubator Experiment (PIE) is a partnership among leading brands, technology innovators, and Wieden+Kennedy-the largest privately held advertising and communications company in the world. It serves as a hub for community, entrepreneurship, and creative thinking.<br />
&#8230;</p></blockquote>
<p>So, it&#8217;s an incubator, it&#8217;s an experiment, it&#8217;s got help from Wieden+Kennedy and a bunch of their clients?  Yes, yes, and yes. But, I know you, you&#8217;re looking to do more research, so here you go:</p>
<ul>
<li><a href="http://www.rennygleeson.com/2011/06/30/portland_incubator_experiement_pie-2-0/">Portland Incubator Experiment, Reloaded: PIE 2.0</a></li>
<li><a href="http://siliconflorist.com/2011/07/06/pie-portland-incubator-experiment-side-project-startup">PIE: From side project to startup</a></li>
<li><a href="http://www.psfk.com/2011/07/wieden-kennedy-explains-pie-to-psfk.html">WIEDEN + KENNEDY EXPLAINS PIE TO PSFK</a></li>
<li><a href="http://siliconflorist.com/2011/07/28/filling-details-pie/">Filling in some more details on PIE</a></li>
<li><a href="http://www.oregonlive.com/silicon-forest/index.ssf/2011/07/google_extends_its_portlandphilia_to_pie.html">Google extends its Portlandphilia to PIE, joining Coke, Target &#038; Nike to launch business incubator</a></li>
</ul>
<p><strong>How do I apply?</strong></p>
<p><a href="http://www.piepdx.com">Go to the website and fill out the application</a></p>
<p><strong>When&#8217;s the application due?</strong></p>
<p><strike>August 1st</strike> August 8th (great, there goes my whole procrastinator&#8217;s angle)</p>
<p><strong>What&#8217;s in it for me?</strong></p>
<p>You&#8217;ll get $18,000, 3 months of office space, and access to a host of nice folks that may know a thing or two to help.  Like:</p>
<ul>
<li><a href="http://www.cloudfour.com/mentoring-at-pie-your-start-up-opportunity/">Mobile expert Jason Grigsby</a></li>
<li><a href="http://fastwonderblog.com/2011/07/13/why-im-excited-to-be-a-mentor-at-pie/">Community guru Dawn Foster</a></li>
<li><a href="http://blog.phpfog.com/2011/07/25/want-to-be-the-next-php-fog-pie-is-accepting-applications/">Cloud Wizards PHPFog</a></li>
<li><a href="http://techcrunch.com/2011/07/28/google-pie/">Google</a> (<a href="http://www.oregonlive.com/silicon-forest/index.ssf/2011/07/google_lends_its_geek_cred_to_wiedenkennedys_portl.html">more on this</a>)</li>
<li>Coke</li>
<li>Target</li>
<li>Nike</li>
<li>Voyager Capital</li>
<li>Intel Capital</li>
</ul>
<p><strong>What&#8217;s in it for PIE?</strong></p>
<p>You&#8217;ll give PIE a 6% equity stake in your company. (<a href="http://www.oregonlive.com/silicon-forest/index.ssf/2011/07/google_lends_its_geek_cred_to_wiedenkennedys_portl.html">source</a>).  You&#8217;ll probably need to devote yourself pretty fully to this endeavor too, time-wise, but if you&#8217;re worried about that, then, well, maybe you just keep on bootstrapping.  That&#8217;s reality, hey, it&#8217;s my reality.</p>
<p>Of course, if your team knocks it out of the park, then PIE can keep this experiment going into the next class or further.</p>
<p><strong>What if I don&#8217;t get in?</strong></p>
<p>You certainly don&#8217;t need PIE&#8217;s permission to build the next big thing.  Prove us all wrong and make us write a &#8220;The one that got away&#8221; post.</p>
<p><strong>There&#8217;s probably a ton of applicants, why bother?</strong><br />
What&#8217;s the first rule of business?  Show up.</p>
<p>You&#8217;ll never know until you try.  Plus, <a href="http://www.oregonlive.com/silicon-forest/index.ssf/2011/07/google_lends_its_geek_cred_to_wiedenkennedys_portl.html">according to Rick</a>, the number of applicants &#8220;hasn&#8217;t been blowing the doors off.&#8221; so there goes that excuse.</p>
<p><strong>When&#8217;s that application due again?</strong></p>
<p><strike>August 1st</strike> August 8th  (@ 11:59 pm, I checked for ya)</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2011/07/29/procrastinators-guide-to-pie/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Rocky Mountain Hi</title>
		<link>https://www.webthingsconsidered.com/2011/07/20/rocky-mountain-hi/</link>
		<comments>https://www.webthingsconsidered.com/2011/07/20/rocky-mountain-hi/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 05:27:43 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>
		<category><![CDATA[boulder]]></category>
		<category><![CDATA[pdx]]></category>
		<category><![CDATA[portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=264</guid>
		<description><![CDATA[I won&#8217;t dwell on the fact that it&#8217;s been 3 years since I last posted. As I work on posting regularly again, it will be fun to revisit the last few years. But, the occasion of moving half-way across the country is enough to stir the blog into action again. This past weekend, I made &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2011/07/20/rocky-mountain-hi/" class="more-link">Continue reading<span class="screen-reader-text"> "Rocky Mountain Hi"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>
I won&#8217;t dwell on the fact that it&#8217;s been 3 years since I last posted. As I work on posting regularly again, it will be fun to revisit the last few years.
</p>
<p>
But, the occasion of moving half-way across the country is enough to stir the blog into action again. This past weekend, I made the journey from Portland to Boulder, Colorado, marking the culmination of a frantic few months of tough decisions and planning.  After 12 years in the Portland area, we decided it was time for a change.  So, in a a quick 2-3 month time period we went from, &#8220;what if we moved?&#8221; to thinking about where we&#8217;d move to, on to packing up and hitting the road for Boulder.
</p>
<p>
The questions usually come up in the course of telling people this.  Why Boulder? Why leave?  The short version: sun, software, and adventure.</p>
<p>
The longer version&#8230; Earlier this year, we adopted our son from Ethiopia, our third child and second boy. Now, I grew up in a 3 kid/2 boy household in Oregon, I&#8217;m perfectly aware of the ups and downs.  But, we just couldn&#8217;t take it.  The kids need to be able to go outside and move and the constant grey was no longer tolerable.  Plus, we&#8217;d always lived in Oregon, save for a years of college in Washington, so the explorer aspect was definitely appealing.  Finally, even as I see Portland&#8217;s tech startup scene with more spark in the last few weeks than there&#8217;s been in years, the energy of the Boulder software and startup community was unmistakably electric, so what better way to check it out than to live amongst it.
</p>
<p>
Portland still holds a special draw for us though, so one never knows where this road will lead.  I&#8217;m still working for my same company in Portland, will be back in town on a somewhat regular basis, am still working with partners in Portland on my side-projects and we still own our house there.  Didn&#8217;t exactly cut the cord, eh?
</p>
<p>
That will segue nicely into the next post I think&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2011/07/20/rocky-mountain-hi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Is it hot in here? Apps to help your macbook laptop stay cool</title>
		<link>https://www.webthingsconsidered.com/2008/07/24/is-it-hot-in-here-apps-to-help-your-macbook-laptop-stay-cool/</link>
		<comments>https://www.webthingsconsidered.com/2008/07/24/is-it-hot-in-here-apps-to-help-your-macbook-laptop-stay-cool/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 02:10:07 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[fan]]></category>
		<category><![CDATA[heat]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[macbook air]]></category>
		<category><![CDATA[macbook pro]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=256</guid>
		<description><![CDATA[Working at Strands has presented the unique opportunity to work in an all Mac shop, which is fun seeing all the MacBook Pros and MacBook Airs around the office when I&#8217;m there. But, as many people quickly discover, these things get HOT, like burn your lap and destroy your child producing ability hot (not to &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2008/07/24/is-it-hot-in-here-apps-to-help-your-macbook-laptop-stay-cool/" class="more-link">Continue reading<span class="screen-reader-text"> "Is it hot in here? Apps to help your macbook laptop stay cool"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Working at <a href="http://strands.com">Strands</a> has presented the unique opportunity to work in an all Mac shop, which is fun seeing all the MacBook Pros and MacBook Airs around the office when I&#8217;m there.  But, as many people quickly discover, these things get HOT, like burn your lap and destroy your child producing ability hot (not to mention the possible damage to the hardware itself). The question was posed at work with the ultra modern social media tool of &#8220;send email to whole company&#8221; about how to keep things cool.  Based on the responses, seemed like information worth sharing.</p>
<p>Three apps were mentioned as ways to help boost the fans and monitor temperatures:</p>
<ul>
<li><a href="http://www.macupdate.com/info.php/id/23049">smcFanControl</a></li>
<li>iStat from <a href="http://islayer.com/">iSlayer.com</a></li>
<li><a href="http://www.lobotomo.com/products/FanControl/">Fan Control</a> by Lobotomo software</li>
</ul>
<p>I installed smcFanControl and even after a day noticed pretty significant temperature reduction.</p>
<p>But, I was also reminded of a discussion on <a href="http://blog.stackoverflow.com/2008/07/podcast-12/">Stack Overflow</a> a couple weeks back where Joel recommended an alternative approach to the heat problem, undervolting the CPU, with <a href="http://www.coolbook.se/CoolBook.html">CoolBook</a>.</p>
<p>So, there&#8217;s some options, and make sure you do some research first, wouldn&#8217;t want you doing any damage or voiding any warranties or anything.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2008/07/24/is-it-hot-in-here-apps-to-help-your-macbook-laptop-stay-cool/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WebVisions wrap-up</title>
		<link>https://www.webthingsconsidered.com/2008/05/26/webvisions-wrap-up/</link>
		<comments>https://www.webthingsconsidered.com/2008/05/26/webvisions-wrap-up/#respond</comments>
		<pubDate>Tue, 27 May 2008 06:30:25 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[webvisions]]></category>
		<category><![CDATA[webvisions08]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=254</guid>
		<description><![CDATA[This last Thursday and Friday was the annual WebVisions conference here in Portland. 2008 marks my 4th year in attendance, and I definitely look foward to it every year. You can&#8217;t beat the price, it&#8217;s one of the cheapest conferences around and with it being local, there&#8217;s really not much excuse not to come and &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2008/05/26/webvisions-wrap-up/" class="more-link">Continue reading<span class="screen-reader-text"> "WebVisions wrap-up"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>This last Thursday and Friday was the annual <a href="http://webvisionsevent.com/">WebVisions </a>conference here in Portland.  2008 marks my 4th year in attendance, and I definitely look foward to it every year.  You can&#8217;t beat the price, it&#8217;s one of the cheapest conferences around and with it being local, there&#8217;s really not much excuse not to come and check out at least a few sessions and a keynote.  Plus it&#8217;s a great chance to catch-up with my local developer and entrepreneur friends and meet some new ones.</p>
<p>My main point of feedback for the organizers if they read this.  PLEASE PUT KEYNOTES IN THE MORNING!</p>
<p>All in all, WV was pretty good, though it didn&#8217;t feel as inspiring as the last couple of years.  <a href="http://www.webthingsconsidered.com/2007/05/03/webvisions-starting/">After last year</a>, I made sure to avoid the workshops.  As far as the sessions go, I was entertained and picked up some great info and good tips to follow-up on, but nothing that made me want to carve out a day or so to really think through.  I can&#8217;t quite figure out why exactly, but one thing that I noticed that I didn&#8217;t read a single live-blog or blog post during the conference, it never even occurred to me.  That&#8217;s a major shift from years past.  Why didn&#8217;t it occur to me?  Make a guess, <a href="http://www.twitter.com">Twitter</a>.  In years past, reading about the conference, during the conference has always kept that mind-buzz going.</p>
<p>Twitter is now the primary forum for conference back channel and instant recaps.  Only problem was, Twitter was down for a good portion of the conference, so there was little in terms of immediate response loop.  The conversation has migrated from the blogosphere to Twitter, but when Twitter is down, the conversation dies.</p>
<p>Here&#8217;s a quick round-up of the sessions I attended.  Slide decks for at least some of these <a href="http://www.slideshare.net/event/webvisions-2008/slideshows">available on SlideShare</a>.  Other roundups can be found on the <a href="http://siliconflorist.com/2008/05/26/webvisions-2008-rounding-up-the-posts/">Silicon Florist</a>.</p>
<p><a href="http://webvisionsevent.com/sessions/rss_tool/?redir=L3Nlc3Npb25zLyNzZXNzXzIy">RSS: Bleeding Edge Tips and Tricks</a><br />
I only caught the last half, and I&#8217;ve seen <a href="http://marshallk.com/">Marshall</a> talk about RSS before, but even then I still managed to pick up some new ideas, a testament to Marshall&#8217;s ability to keep finding new ways to digest more information, faster.</p>
<p><a href="http://webvisionsevent.com/sessions/drupal_aint/?redir=L3Nlc3Npb25zLyNzZXNzXzEw">Drupal: This Aint Your Father&#8217;s CMS</a><br />
I&#8217;ve just picked up Drupal in the last couple months for a project at <a href="http://www.strands.com">Strands</a> and this was my first opportunity to hear about it and ask questions after having actually spend considerable time working on it.  I missed most of the actual presentation, but there was lots of time for q &#038; a which was well worth it.  Plus, we got to learn a little bit about <a href="http://www.opensourcery.com/">OpenSourcery</a>, which was new to me.</p>
<p><a href="http://webvisionsevent.com/sessions/mobile_web/?redir=L3Nlc3Npb25zLyNzZXNzXzEz">Going Fast on the Slow Mobile Web</a><br />
Great update to <a href="http://userfirstweb.com">Jason</a>&#8216;s talk in <a href="http://www.cloudfour.com/31/mobile-tsunami-presentation/">February at PDX Web Innovators</a>.  Cloud Four has been doing a lot of research on the performance capabilities of mobile phones, and a lot of that fresh new data was included here.</p>
<p></a><a href="http://webvisionsevent.com/sessions/run_startup/?redir=L3Nlc3Npb25zLyNzZXNzXzIz">So You Want to Run a Startup</a><br />
The startup story of <a href="http://slideshare.com">SlideShare</a>.  This is my first time seeing Rashmi speak and I think it was a good session.  Focus on metrics to measure success, understanding the size of your market, pros/cons of different business models, adapting plans to how the business/site/community take-off, and developing key advisors/investors.  SlideShare is the poster child of web 2.0 in that it is a pure ad-based business model and its marketing strategy was to get on <a href="http://www.techcrunch.com">TechCrunch</a>.  They may just have been one of the few to succeed at that, as it they seem to growing nicely.</p>
<p><a href="http://webvisionsevent.com/sessions/changing_memes/?redir=L3Nlc3Npb25zLyNzZXNzXzI0">Star Wars Kid Is Your New Bicycle: The Changing Lives of Memes</a><br />
Andy Baio&#8217;s talk attempting to identify how <a href="http://en.wikipedia.org/wiki/Internet_phenomenon">memes</a> spread.  This was definitely the most entertaining session, and I have to admit I hadn&#8217;t heard of a couple of the ones mentioned.  But, I certainly remember Star Wars Kid and Numa Numa.  Bottom line, I don&#8217;t think we can ever predict what&#8217;s going to truly go viral.</p>
<p><a href="http://www.webvisionaryawards.com/">WebVisionary awards</a><br />
I was excited to finally make it to an after party for WebVisions for the first time.  This was a fun event and I managed to meet several tweeps for the first time.  But, something that I&#8217;ve gotten used to with WebVisions, the online component of these awards is lacking (no nominees or winners listed as of now, but the lack of online presence is something that WV overall has struggled with to the point of giving up this year IMO, and this is a web conference).  There was no transparency on nominees and with a couple multiple-award winners (Substance and Colour Lovers) I have to question the value of these awards.  Not to take away from the winners, but with that, the apparent lack of nominees and the entry fee the awards just seemed kind of cheap.  I suppose that&#8217;s why they rushed through them so fast.  The ceremony itself was well done though.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2008/05/26/webvisions-wrap-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Events to keep an eye on</title>
		<link>https://www.webthingsconsidered.com/2008/05/21/events-to-keep-an-eye-on/</link>
		<comments>https://www.webthingsconsidered.com/2008/05/21/events-to-keep-an-eye-on/#respond</comments>
		<pubDate>Wed, 21 May 2008 21:24:13 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[PDX Web Innovators]]></category>
		<category><![CDATA[Portland]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[lunch2.0]]></category>
		<category><![CDATA[pdxwi]]></category>
		<category><![CDATA[strands]]></category>
		<category><![CDATA[webvisions]]></category>
		<category><![CDATA[webvisions08]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=250</guid>
		<description><![CDATA[The next couple weeks are going to be busy around these parts and just wanted to share some of the events I&#8217;m planning on attending. WebVisions Always one of my favorites and it&#8217;s cheap! Starts tomorrow. Strands Portland Meet-up Think Strands is all about Music and now Money? Think again. This meet-up will be a &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2008/05/21/events-to-keep-an-eye-on/" class="more-link">Continue reading<span class="screen-reader-text"> "Events to keep an eye on"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>The next couple weeks are going to be busy around these parts and just wanted to share some of the events I&#8217;m planning on attending.</p>
<p><a href="http://www.webvisionsevent.com/">WebVisions</a><br />
Always one of my favorites and it&#8217;s cheap!  Starts tomorrow.</p>
<p><a href="http://upcoming.yahoo.com/event/708023">Strands Portland Meet-up</a><br />
Think Strands is all about <a href="http://www.mystrands.com">Music</a> and now <a href="http://money.strands.com">Money</a>?  Think again.  This meet-up will be a chance to preview the all new <a href="http://www.strands.com">strands.com</a> and meet more of the Strands team.</p>
<p><a href="http://upcoming.yahoo.com/event/587873/">Portland Lunch 2.0 @ Vidoop</a><br />
The Lunch 2.0 series continues at newly re-located to PDX <a href="http://www.vidoop.com">Vidoop</a></p>
<p><a href="http://upcoming.yahoo.com/event/544946/">Andy Baio talks side projects and acquisition at Portland Web Innovators</a><br />
We&#8217;re thrilled to have Andy Baio, founder of Upcoming.org leading the discussion.  Should be awesome!</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2008/05/21/events-to-keep-an-eye-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Breaking the silence</title>
		<link>https://www.webthingsconsidered.com/2008/05/15/breaking-the-silence/</link>
		<comments>https://www.webthingsconsidered.com/2008/05/15/breaking-the-silence/#comments</comments>
		<pubDate>Thu, 15 May 2008 16:31:29 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[NetworthIQ]]></category>
		<category><![CDATA[strands]]></category>
		<category><![CDATA[moneyStrands]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=249</guid>
		<description><![CDATA[Hard to believe it&#8217;s been 6 months since my last post, but what can I say, I&#8217;ve been busy! Not only have I been silent on this here blog, but for those that I have talked with over the last few months can attest, I haven&#8217;t talked a whole lot about what I&#8217;m working on. &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2008/05/15/breaking-the-silence/" class="more-link">Continue reading<span class="screen-reader-text"> "Breaking the silence"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Hard to believe it&#8217;s been 6 months since my last post, but what can I say, I&#8217;ve been busy!   Not only have I been silent on this here blog, but for those that I have talked with over the last few months can attest, I haven&#8217;t talked a whole lot about what I&#8217;m working on.  Today is the day I get to tell my story.  <a href="http://www.networthiq.com">NetworthIQ</a> has been acquired by <a href="http://www.strands.com">Strands</a> and I have joined the Strands team to work on <a href="http://www.strands.com/moneystrands/">moneyStrands</a>, the upcoming <a href="http://blog.strands.com/2008/04/29/moneystrands-expensr/">personal finance solution</a>.  For info on how this news is going to impact NetworthIQ, be sure to read the <a href="http://blog.networthiq.com/2008/05/15/networthiq-joins-strands/">post over there</a>.  This post contributes my personal perspective.  Needless to say, I&#8217;m pretty excited about it.</p>
<p>It was just over 3 years ago that <a href="http://www.fourio.com">we</a> started working on NetworthIQ. It was a bit of a bumpy ride. In the first couple months, I wasn&#8217;t sure if it was going to make it, but with a couple of high-profile press mentions we were off and running. The idea for NetworthIQ was pretty basic, apply the popular Web 2.0 principles of the time (social networking, public sharing, collective intelligence) and apply it to personal finance, something that hadn&#8217;t been done before.  There was the occasional  &#8220;this is the dumbest site ever&#8221; comment, but for the most part we always got great response and feedback from those that signed up, which was what kept me going.</p>
<p>Hard to believe that with the web being as global as is now, that the company that came calling was practically in your back yard.  I spent two terms at OSU, and went through the disappointment of seeing my baseball career die, but now I&#8217;m back in Corvallis living out the dream. Pretty ironic. Not only that, as an active follower of the <a href="http://www.siliconflorist.com">Silicon Florist</a> and <a href="http://blog.oregonlive.com/siliconforest/">Silicon Forest</a>, I already knew who Strands was and was following what they were doing.</p>
<p>So, how and why did NetworthIQ and Strands come together?  Up until a few weeks ago, the face of Strands on the web was <a href="http://www.mystrands.com">MyStrands</a>, the social music site.  It may seem odd for a personal finance site to come under that umbrella.  But, now that moneyStrands has been announced, I think it starts to make a lot more sense right?  Strands is starting to take the personalization and recommendation technology that they&#8217;ve built in new directions and personal finance was one of those directions.  My primary job now is to channel my knowledge of the personal finance market gleaned from building NetworthIQ into the moneyStrands roadmap and keep NetworthIQ humming along.</p>
<p>Though it was a few months ago, it was sad to say good-bye to <a href="http://3sixty.transcore.com/">TransCore</a>, I had many great opportunities to transition into software development (I started as a financial analyst) and got to work on some fun projects with great people there.  But, when an opportunity to work on something that you are personally passionate about full-time and still allows you to support your family, it&#8217;s something worth making the jump for.</p>
<p>As for Corvallis, yes, I commute.  Quite a bit different from my <a href="http://www.webthingsconsidered.com/2007/03/28/its-true-oregonians-cant-drive/">old commute</a> (though I&#8217;m now even more disappointed in Oregon drivers).  But, it&#8217;s only two days a week normally and the rest of time I&#8217;m up north here at home, or enjoying the quiet confines of the Sherwood public library (gotta love a city that provides free wi-fi. Even if its only downtown), or I&#8217;ve even been known to drop in on <a href="http://www.adamduvander.com/">fellow web innovators</a> and do a little co-working.  I&#8217;ve also been able to make it to more events around PDX like PDX Web Innovators, Lunch 2.0, InnoTech, and BarCamp since it&#8217;s good to get out of the house a bit when working at home.  However, after commuting 3 hours one day, I&#8217;m not exactly eager to make the drive into pdx proper that often, but it&#8217;s fun when I do.</p>
<p>Just wanted to add a personal thanks here to <a href="http://www.mycuriouslife.com">Todd</a>, Jeff, and Aaron, my partners in crime at <a href="http://www.fourio.com">Fourio</a>.  Though we certainly had our struggles, the fact that we saw our first released product (a side-project no less) through to an exit is something to be proud of.  I don&#8217;t want to make this into an academy speech, but I haven&#8217;t shared in a while, I should mention that my wife has been great through all of this, supporting my crazy/obsessive side-project turned startup dreams and for that I am extremely grateful.  See honey, it wasn&#8217;t a waste of time :-).</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2008/05/15/breaking-the-silence/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Can I get a yay Windows?  No?</title>
		<link>https://www.webthingsconsidered.com/2007/11/18/can-i-get-a-yay-windows-no/</link>
		<comments>https://www.webthingsconsidered.com/2007/11/18/can-i-get-a-yay-windows-no/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 06:43:32 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[tech conferences]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/2007/11/18/can-i-get-a-yay-windows-no/</guid>
		<description><![CDATA[The glowing apple is becoming ubiquitous. Is this indicative of the conference experience these days? First a picture from RubyConf held earlier this month: Reminded me of one of Jason&#8216;s pics from Gnomedex this summer: I wonder how the audience pics at DevConnections (.NET conference in vegas 2 weeks ago) compare.Â  Now, why didn&#8217;t I &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/11/18/can-i-get-a-yay-windows-no/" class="more-link">Continue reading<span class="screen-reader-text"> "Can I get a yay Windows?  No?"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>The glowing apple is becoming ubiquitous.  Is this indicative of the conference experience these days?</p>
<p>First a picture from RubyConf held earlier this month:<br />
<a href="http://www.tbray.org/ongoing/When/200x/2007/11/12/Good-Ruby"><img src="http://www.tbray.org/ongoing/When/200x/2007/11/12/IMGP7123.png" /></a></p>
<p>Reminded me of one of <a href="http://www.techcraver.com">Jason</a>&#8216;s pics from Gnomedex this summer:<br />
<a href="http://flickr.com/photos/luckyj/1079708782/"><img src="http://farm2.static.flickr.com/1393/1079708782_075c95c56e.jpg?v=0" height="375" width="500" /></a></p>
<p>I wonder how the audience pics at DevConnections (.NET conference in vegas 2 weeks ago) compare.Â  Now, why didn&#8217;t I buy Apple stock when I first started noticing the geeks and their MBP or PBs back then?</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/11/18/can-i-get-a-yay-windows-no/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New challenge &#8211; Web Reviews</title>
		<link>https://www.webthingsconsidered.com/2007/10/30/new-challenge-web-reviews/</link>
		<comments>https://www.webthingsconsidered.com/2007/10/30/new-challenge-web-reviews/#comments</comments>
		<pubDate>Wed, 31 Oct 2007 03:52:09 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=139</guid>
		<description><![CDATA[I&#8217;ve got a new moonlighting gig, to go along with my own projects. I&#8217;m writing web reviews for Digital Trends. I didn&#8217;t really see this one coming but the opportunity seemed like an excellent one, so I&#8217;m giving it my best shot. Digital Trends is one of the best web business stories in the Portland &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/10/30/new-challenge-web-reviews/" class="more-link">Continue reading<span class="screen-reader-text"> "New challenge &#8211; Web Reviews"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve got a new moonlighting gig, to go along with my own projects.  I&#8217;m writing web reviews for <a href="http://www.digitaltrends.com">Digital Trends</a>.  I didn&#8217;t really see this one coming but the opportunity seemed like an excellent one, so I&#8217;m giving it my best shot.</p>
<p>Digital Trends is one of the best web business stories in the Portland area.  Founded just a few years ago, it has bootstrapped its way to a thriving online business focusing on consumer electronics reviews and news.  Through the power networking group known as &#8220;mom&#8217;s groups,&#8221; I met Ian, the CEO, and after a few discussions about the latest TechCrunch reviews, I asked, &#8220;hey, why don&#8217;t you guys do web reviews, seems like a great fit for the current audience.&#8221; Next thing you know, I&#8217;m the one writing them.</p>
<p>My goals with these reviews are different than with a typical &#8220;Web 2.0 blog.&#8221;  I don&#8217;t care about the latest breaking news, funding, the latest gossip, the business model, who the founders are, or anything like that.  I&#8217;m only concerned with the site itself, and that&#8217;s what I focus on.  How useful it is to the web audience.  The site must at least be a public beta too, no private, invitation only ones.  It needs to be ready for anybody to use it.  The hardest part is picking, with so many sites to choose from.  I make my picks on mainly a gut feel when I see the site, that &#8220;this is interesting.&#8221;</p>
<p>You may have also heard me rail against the Web 2.0 blogs posting so often, making it too difficult to keep up, and so my goal is to write 1 and maybe 2 a week.  My inspiration comes more from the Solution Watch approach.  The audience at Digital Trends is much more diverse though, so it&#8217;s fun to distill the great stuff we early adopters come across to a wider group of people.</p>
<p>The first batch went live a couple weeks ago.  Take a look.  I&#8217;d love to hear what you think, good and bad.</p>
<ul>
<li><a href="http://reviews.digitaltrends.com/review4814.html">Me.dium</a></li>
<li><a href="http://reviews.digitaltrends.com/review4813.html">StreetAdvisor</a></li>
<li><a href="http://reviews.digitaltrends.com/review4815.html">Satisfaction</a></li>
<li><a href="http://reviews.digitaltrends.com/review4809.html">Footnote</a></li>
</ul>
<p>I welcome any submissions.  My email is over there in the right-hand column.  I can&#8217;t promise a response, but I will promise at least a look at your site.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/10/30/new-challenge-web-reviews/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Infrequent Round-up</title>
		<link>https://www.webthingsconsidered.com/2007/10/27/infrequent-round-up/</link>
		<comments>https://www.webthingsconsidered.com/2007/10/27/infrequent-round-up/#comments</comments>
		<pubDate>Sat, 27 Oct 2007 23:52:07 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=242</guid>
		<description><![CDATA[When there&#8217;s some down time it&#8217;s nice to get a post out and then not worry about keeping up with the latest goings-on throughout the week so much here. I&#8217;ve pretty much gone the Twitter route for a lot of stuff I may have tried to turn into a post before. You can follow me &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/10/27/infrequent-round-up/" class="more-link">Continue reading<span class="screen-reader-text"> "Infrequent Round-up"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>When there&#8217;s some down time it&#8217;s nice to get a post out and then not worry about keeping up with the latest goings-on throughout the week so much here.  I&#8217;ve pretty much gone the Twitter route for a lot of stuff I may have tried to turn into a post before.  You can <a href="http://twitter.com/rwilliamz">follow me there</a> if you&#8217;re so inclined.</p>
<p><strong>Local Signal</strong><br />
Had a couple days to myself last week and was able to wrap up a number of loose ends with <a href="http://www.localsignal.com">Local Signal</a>.  First, I implemented session tracking, so items are bold if they are new since the last time you visited the page.  Second, I fixed some bugs with the click tracking.  I was using an AJAX call in the link&#8217;s onclick event, making it completely unobtrusive and not having to resort to those ugly redirect URLs.  You can actually see the link when hovering over.  Problem was that the AJAX handler was not getting the call in time, before the the browser followed the link.  It only worked when opening a link in a new tab or window.  Moving the AJAX call to the onmousedown event of the link fixed that.  So, that enabled the &#8220;popular&#8221; pages to be completed.  Only, nothing is really popular enough yet to be of very much use, so they&#8217;re hiding out at the moment.  You can tack on &#8220;popular&#8221; as the page (in lieu of news, biz or the others) if you&#8217;re really curious.</p>
<p>The home page is the only outstanding item at this point before I start pimping it out to a larger audience.  Content will continue to evolve as well, but it looks like there are a number of people checking the Portland news page daily, as that page along accounts for half the traffic to the site.  I&#8217;m contemplating some type of local editor program to have a local representative in each city to provide the best sources and help publicize it.</p>
<p><strong>NetworthIQ</strong><br />
Despite being on auto-pilot as I worked on Local Signal, we had our 2nd biggest traffic event ever this week, adding several hundred new users.  The Australian news portal news.com.au ran a great article on why and how people are using <a href="http://www.networthiq.com">NetworthIQ</a> to <a href="http://www.news.com.au/business/money/story/0,25479,22633570-14327,00.html">help improve their finances</a>.  The community is still growing strong and has really taken hold without me really doing anything, which is cool to see.  I still have a todo list a mile long, but at least it will still be there when I come back around to building it out.  In the coming weeks I really need to focus in on the revenue model beyond low paying ad networks, adsense, and link ads.  That may actually involve doing some real market research and talking to people *gasp*.  While I still got a kick out of seeing the traffic come, and the exposure is great, the rush was nowhere near when the NY Times article ran a couple years ago (can&#8217;t believe it&#8217;s been that long).  A big reason for that is that it really only means literally a few dollars more in my pocket and I know it&#8217;s not really going to do a whole lot to put me in a place where I can work on it full-time.  It needs to be where when one of those hits, it will mean significant revenue.</p>
<p>The site also got hit by the big <a href="http://www.techmeme.com/071024/p42#a071024p42">Google crack-down on paid links</a>, with our PageRank going from 5 to 3.  Organic google traffic accounts for 20% of overally referrers so it&#8217;s not something to take lightly, but the drop so far has not revealed a corresponding drop in our SERP rankings.</p>
<p><strong>Ignite Portland</strong></p>
<p>Unless you were living under a rock, or not in Portland, it was hard to miss <a href="http://www.igniteportland.com/">this week&#8217;s big event</a>.  <a href="http://www.mycuriouslife.com">Todd</a> and I headed down there and I really enjoyed it.  I knew 4 of the presenters, so it was cool to see them do well and I thought pretty much all of the speakers did great.  It was also nice to see many familiar faces from <a href="http://www.pdxwi.com">PDXWI</a> there.  Looking forward to the next one.</p>
<p>The only thing I can remember disagreeing the whole night was the Les Schwab bit.  I think they had good service a couple years ago, but the last few times I&#8217;ve been there, I&#8217;ve been tremendously disappointed at the service and the workmanship (I waited an hour to get a new battery, only for them to tell me it was fine, when I knew for a fact it wasn&#8217;t and had to get it replaced soon after elsewhere).  I think they&#8217;re losing their way, but they have tremendous goodwill still, so it may let them thrive anyway.  Despite this, I&#8217;m not disagreeing with Scott&#8217;s premise, I&#8217;d love to see more services from a gas station, but gas and tires are different animals (gas being more cost-sensitive since we buy it more frequently).</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/10/27/infrequent-round-up/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Portland Web 2.0 update</title>
		<link>https://www.webthingsconsidered.com/2007/10/27/portland-web-20-update/</link>
		<comments>https://www.webthingsconsidered.com/2007/10/27/portland-web-20-update/#respond</comments>
		<pubDate>Sat, 27 Oct 2007 23:36:40 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=241</guid>
		<description><![CDATA[Web 2.0 activity in Portland is still a big interest area for me and a number of Portland sites popped up this week. Seems things are really getting going around here. TwitterWhere TwitterWhere is a cool new project from local Portland developer Matt King. Similar to how Local Signal tracks an assortment of feeds for &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/10/27/portland-web-20-update/" class="more-link">Continue reading<span class="screen-reader-text"> "Portland Web 2.0 update"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Web 2.0 activity in Portland is still a big interest area for me and a number of Portland sites popped up this week.  Seems things are really getting going around here.</p>
<p><strong>TwitterWhere</strong></p>
<p><a href="http://twitterwhere.mattking.com">TwitterWhere</a> is a cool new project from local Portland developer Matt King.  Similar to how <a href="http://www.localsignal.com">Local Signal</a> tracks an assortment of feeds for a specific city to filter and discover news, events, and people, TwitterWhere tracks Twitter activity for a given location, making it easy find local breaking news and other Tweeters. (<a href="http://siliconflorist.com/2007/10/23/twitterwhere-get-tweets-by-geographic-location/">Silicon Florist</a> and <a href="http://www.readwriteweb.com/archives/get_tweets_from_any_location_l.php">Read/Write Web</a> coverage)</p>
<p><strong>ChoiceA</strong></p>
<p><a href="http://www.choicea.com/">ChoiceA</a> is a new national real estate FSBO site (<a href="http://siliconflorist.com/2007/10/24/choicea-takes-on-mls/">Silicon Florist</a> and <a href="http://www.readwriteweb.com/archives/choicea.php">Read/Write Web</a> have more).</p>
<p><strong>Platial</strong></p>
<p>Platial made a pretty bold move it seems in <a href="http://www.techcrunch.com/2007/10/18/social-mapping-game-not-over-yet/">acquiring one of their direct competitors</a> in the social mapping space who had been doing better, <a href="http://www.alexa.com/data/details/traffic_details?site0=platial.com&#038;site1=frappr.com&#038;y=t&#038;z=3&#038;h=300&#038;w=610&#038;range=6m&#038;size=Medium&#038;url=platial.com">traffic ranking wise</a>.  Should be interesting to see what happens with the combined companies.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/10/27/portland-web-20-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Occaisonal Round-up</title>
		<link>https://www.webthingsconsidered.com/2007/10/10/occaisonal-round-up/</link>
		<comments>https://www.webthingsconsidered.com/2007/10/10/occaisonal-round-up/#comments</comments>
		<pubDate>Thu, 11 Oct 2007 05:39:34 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=240</guid>
		<description><![CDATA[Local Signal Continuing to fill out the local content (mainly news, biz and sports) for all the cities in Local Signal. In marketing news, the site was added to the Programmable Web mashup directory which helped drive a nice amount of users this week. There&#8217;s a great new logo, produced by Craft Is The New &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/10/10/occaisonal-round-up/" class="more-link">Continue reading<span class="screen-reader-text"> "Occaisonal Round-up"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p><strong>Local Signal</strong></p>
<p>Continuing to fill out the local content (mainly news, biz and sports) for all the cities in <a href="http://www.localsignal.com">Local Signal</a>.  In marketing news, the site was added to the <a href="http://www.programmableweb.com/mashup/localsignal">Programmable Web mashup directory</a> which helped drive a nice amount of users this week.  There&#8217;s a great new logo, produced by <a href="http://www.citnb.org/">Craft Is The New Black</a>.  Turns out there are brother-n-laws who are in fact good designers.  It&#8217;s pretty cool to be sitting around with the family and get some real progress made on a project.  Those usually don&#8217;t go together very well.  Popular items coming this week I hope.</p>
<p><strong>PDX Web innovators</strong></p>
<p>We had a great meeting last week with Kevin, Michael, and Bryan (sp all ok?) from <a href="http://www.stepchangegroup.com">StepChange</a> giving us the ins and outs of widgets, the economy around them and the development of them.  Like others have commented, I thought it was one of most productive discussions yet, with the brains cranking on great new ideas.  <a href="http://www.metafluence.com/recap-of-the-pdxwi-october-meeting-on-widgetry/">Justin has the round-up</a>, and be sure to take a look at his excellent new design while you&#8217;re there.</p>
<p><strong>Ignite Portland</strong></p>
<p>The popular <a href="http://www.igniteportland.com/">Ignite series is coming to Portland</a> this month.  Looks to be a fun night.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/10/10/occaisonal-round-up/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Kicked out some CLIQers</title>
		<link>https://www.webthingsconsidered.com/2007/10/10/kicked-out-some-cliqers/</link>
		<comments>https://www.webthingsconsidered.com/2007/10/10/kicked-out-some-cliqers/#respond</comments>
		<pubDate>Thu, 11 Oct 2007 05:10:33 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=239</guid>
		<description><![CDATA[As the CLIQ leader for the Portland Web/Tech group, it appears that it is my responsibility to keep the CLIQ relevant. So, I have booted a couple of blogs that were definitely not Portland Web/Tech focused. I will restrain myself from abusing my power by booting those with more views than me ;-). With CLIQ &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/10/10/kicked-out-some-cliqers/" class="more-link">Continue reading<span class="screen-reader-text"> "Kicked out some CLIQers"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>As the CLIQ leader for the <a href="http://www.cliqin.com/web/cliq_detail/3">Portland Web/Tech</a> group, it appears that it is my responsibility to keep the CLIQ relevant.  So, I have booted a couple of blogs that were definitely not Portland Web/Tech focused.  I will restrain myself from abusing my power by booting those with more views than me ;-).</p>
<p>With CLIQ now in public beta, anybody can join, so get over there and sign up if you&#8217;re looking for a little bling for your blog and want to connect with other Portland bloggers.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/10/10/kicked-out-some-cliqers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coming full-circle with MVC</title>
		<link>https://www.webthingsconsidered.com/2007/10/08/coming-full-circle-with-mvc/</link>
		<comments>https://www.webthingsconsidered.com/2007/10/08/coming-full-circle-with-mvc/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 19:40:25 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=238</guid>
		<description><![CDATA[Interesting how software design repeats itself so much as different groups discover old patterns and make them new again to a whole segment of developers. I&#8217;ve been developing for about 8 years, only a fraction in the history of software, but already I&#8217;m looking at repeating myself. I&#8217;m reading today about the ASP.NET MVC (Model &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/10/08/coming-full-circle-with-mvc/" class="more-link">Continue reading<span class="screen-reader-text"> "Coming full-circle with MVC"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Interesting how software design repeats itself so much as different groups discover old patterns and make them new again to a whole segment of developers.  I&#8217;ve been developing for about 8 years, only a fraction in the history of software, but already I&#8217;m looking at repeating myself.  I&#8217;m reading today about the <a href="http://codebetter.com/blogs/jeffrey.palermo/archive/2007/10/05/altnetconf-scott-guthrie-announces-asp-net-mvc-framework-at-alt-net-conf.aspx">ASP.NET MVC (Model View Controller)</a> announcement from this past weekend.  I think it was a little over 3 years ago now that, in my day job,  I left Java for .NET.  For the bulk of my Java days I was doing MVC development with a custom IBM framework (which I wasn&#8217;t too fond of) and with <a href="http://www.springframework.org/">Spring</a> (which I had a lot more fun with).  I consider myself pretty agnostic with software, I&#8217;m not religiously tied with any group, but I made the switch to .NET because I wanted to write web apps, and .NET was the direction my company&#8217;s technology roadmap was going, leaving Java mostly behind as a web front-end.</p>
<p>Thanks to <a href="http://www.rubyonrails.org/">Rails</a> generating an increased buzz in the .NET community about MVC, Microsoft is now going to ship its own MVC framework as an extension to ASP.NET.  I&#8217;ve been doing traditional ASP.NET and ASP.NET with the Model View Presenter (MVP) pattern now for 3 years and am not a big fan of it&#8217;s workings, with viewstate, postbacks, controls and event lifecycle.  Too often I find myself having to work too hard to do fit what I&#8217;m trying to do into the framework.  The web is a simpler medium, and I like the software stacks that web apps are written to be simpler too.  I&#8217;m looking forward to exploring this new framework more along with Rails and <a href="http://www.castleproject.org/monorail/index.html">MonoRail</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/10/08/coming-full-circle-with-mvc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LocalSignal preview release</title>
		<link>https://www.webthingsconsidered.com/2007/09/26/localsignal-preview-release/</link>
		<comments>https://www.webthingsconsidered.com/2007/09/26/localsignal-preview-release/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 18:52:12 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Portland]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=237</guid>
		<description><![CDATA[Thanks for all that voted in my &#8220;name this app&#8221; poll. LocalSignal.com won by an 8 to 6 margin over SocialMetro.com. I&#8217;m going to trust the voters on this one and go with it. It&#8217;s also time to announce the preview, since Silicon Florist and Metroblogging Portland have already covered it. Yes, I know it&#8217;s &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/09/26/localsignal-preview-release/" class="more-link">Continue reading<span class="screen-reader-text"> "LocalSignal preview release"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Thanks for all that voted in my <a href="http://www.webthingsconsidered.com/2007/09/07/help-me-name-a-new-site/">&#8220;name this app&#8221; poll</a>.  LocalSignal.com won by an 8 to 6 margin over SocialMetro.com.  I&#8217;m going to trust the voters on this one and go with it.  It&#8217;s also time to announce the preview, since <a href="http://siliconflorist.com/2007/09/18/local-signal-portland-focused-start-page/">Silicon Florist</a> and <a href="http://portland.metblogs.com/archives/2007/09/local_signal_co.phtml">Metroblogging Portland</a> have already covered it. Yes, I know it&#8217;s aesthetically challenged (though it&#8217;s much better than the first preview thanks to Matt at <a href="http://www.couldbestudios.com">CouldBe Studios</a> who hacked up my css), but I would love to hear feedback on the idea, content, and if you feel so inspired, design ideas.</p>
<p>Jump right into the <a href="http://portland.localsignal.com/news">Portland news</a> to take a look.</p>
<p>LocalSignal is built for 3 types of uses:</p>
<ol>
<li>Quickly get the latest news, event info, and social media content from around the web for your city</li>
<li>See what&#8217;s happening in a city you&#8217;re traveling or moving to</li>
<li>See who&#8217;s online around you in your city</li>
</ol>
<p>As is my custom, I usually give a back story when launching an app (here&#8217;s <a href="http://www.webthingsconsidered.com/2006/01/30/web-20-innovation-map/">Web 2.0 Innovation Map</a> and <a href="http://blog.networthiq.com/2005/07/15/introducing-networthiq/">NetworthIQ</a>).  Basically, I was subscribing to a whole bunch of Portland feeds, and it was beginning to clutter up my reader.  Feed readers are great, but the more feeds you follow the more difficult it is to keep up and need arises to find faster ways to filter.  Also, when I took a trip last year to San Diego, I had been looking for something like this to get an idea of what was going on down there, maybe if there were any Web 2.0 type companies or events to check out.  I also like to know what&#8217;s happening in Seattle to get a feel for overall Northwest happenings, but I certainly didn&#8217;t want to subscribe to those feeds, and didn&#8217;t want to build a new page in PageFlakes/Netvibes for any city I all of a sudden cared about.  Finally, I&#8217;ve met a number of great people locally here in Portland as a result of my online activities, and would like to continue that tradition by finding the local people using various social platforms.</p>
<p>Putting those ideas together with my increasing use of <a href="http://www.originalsignal.com">Original Signal</a> for news scanning, and the <a href="http://www.localsignal.com">city-based single page aggregator</a> now known as LocalSignal was born.  Originally I was just trying to filter out universal social media platforms for local content (<a href="http://www.topix.net">topix</a>, <a href="http://www.newsvine.com">newsvine</a>, <a href="http://del.icio.us">del.icio.us</a>, <a href="http://www.technorati.com">technorati</a>, <a href="http://www.metafilter.com">MetaFilter</a>, <a href="http://www.ballhype.com">Ball Hype</a>, <a href="http://upcoming.yahoo.com">Upcoming</a>).  If a site had feeds and some way to filter content by tag or location, I tried to utilize it.  Unfortunately, I think the vision falls short by only relying on that method.  Some feeds were too stale for that fine grained of content, and some too busy to find anything useful.  For that reason, I&#8217;m starting to add more locally produced content.</p>
<p>If you&#8217;re wondering what the heck I&#8217;m doing building another app right now, as if I have the time.  Well, I wonder myself sometimes.  Focus was never my strong-point.  But, I like to tinker and the feed plumbing was built back in February as I was brushing up on my PHP.  <a href="http://www.mycuriouslife.com">Todd</a> and I discussed some organization and design ideas in Aprilish, but I still let it simmer.  Some recent events have given me the motivation to bring it down from the attic and get it out the door.<br />
There&#8217;s still a number of things to do: UI improvements, showing new items since last visit, showing popular items (determined by clicks), and of course content content content (adding, removing, ordering) for the 53 cities currently being tracked.</p>
<p>Here&#8217;s some additional resources about news filtering methods:</p>
<ul>
<li><a href="http://www.readwriteweb.com/archives/news_aggregation_methods.php">5 News Aggregation Methods Compared</a></li>
<li><a href="http://www.solutionwatch.com/501/tracking-the-web-with-single-page-aggregators/">Tracking the web with Single Page Aggregators</a>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/09/26/localsignal-preview-release/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mint finally launches</title>
		<link>https://www.webthingsconsidered.com/2007/09/19/mint-finally-launches/</link>
		<comments>https://www.webthingsconsidered.com/2007/09/19/mint-finally-launches/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 17:38:20 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Personal Finance]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=236</guid>
		<description><![CDATA[Mint finally launched yesterday at the TechCrunch40 conference. Congratulations Mint! I had been referring to Mint as the great vaporware of personal finance apps. They first started promoting it back in March, and was beginning to think it would never launch. 6 months later they have a public beta out (I believe they actually started &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/09/19/mint-finally-launches/" class="more-link">Continue reading<span class="screen-reader-text"> "Mint finally launches"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.mint.com">Mint</a> finally launched yesterday at the <a href="http://www.techcrunch40.com/2007/index.php">TechCrunch40</a> conference.  Congratulations Mint!  I had been referring to Mint as the great <a href="http://en.wikipedia.org/wiki/Vaporware">vaporware</a> of personal finance apps.  They first started promoting it back in March, and was beginning to think it would never launch.  6 months later they have a public beta out (I believe they actually started working on it on December &#8217;05).  Good to see there is something there after all, so I guess I have to stop calling it vaporware.  Their blog has been great, even <a href="http://blog.networthiq.com/2007/07/11/discover-more-about-members-financial-personalities/">inspiring one of NetworthIQ&#8217;s new features</a>, but hopefully for $5 million in VC money, we can get something better than a blog.</p>
<p>I should be happier for them, more exposure for the personal finance space and all.  But, I&#8217;m feeling a little down today.  As is the case with <a href="http://www.wesabe.com">Wesabe</a>, <a href="http://www.expensr.com">Expensr</a> and <a href="http://www.geezeo.com">Geezeo</a>, I don&#8217;t view them as a competitor.  They are more traditional Personal finance managers, focusing on expense tracking and bank account aggregation.  NetworthIQ looks beyond bank accounts into your whole financial picture at a simpler/higher level while adding a social support network and way for you to chronicle your financial decisions.  It&#8217;s really more of a complement to any of these apps.  Unfortunately though, even if we&#8217;re not competitors, NetworthIQ will be viewed in the same general realm and thus be buried further in the noise and battle for new users.  This also hit home reading this month&#8217;s Money magazine article about social personal finance that ignored NetworthIQ (Jean Chatzky, what&#8217;s a guy gotta do to get on your radar?).  We were the first doing anything personal finance related in Web 2.0/social software.  Now, there are lots out there.  One thing&#8217;s for sure, I&#8217;m going to have to pick up my game a lot more.</p>
<p>As a personal finance software user myself, I&#8217;m not impressed with Mint.  It&#8217;s web-based and very pretty, but I&#8217;ve been using MS money for 8 years and there&#8217;s nothing in Mint that will make me switch.  I&#8217;m a BIG proponent of web-based software, and Money is probably the only reason I keep Windows around (ok, I guess I need it for .NET development too, but it&#8217;s the only software app that I use on Windows).  It would be great to have a web app for this, but I&#8217;m not ready to give a new web service my usernames/passwords (I gave one to test it out), and it only tracks bank and credit card accounts.  It can&#8217;t track mortgages, brokerage accounts, etc, so it&#8217;s not really a &#8220;track all your accounts in one place&#8221; app.  I&#8217;d still have to use Money.  The weekly email summary was a neat thing I admit, but I think there&#8217;s a lot more power in a client PFM in analyzing and reporting on spending.  In the end, Mint feels more like an affiliate marketing scheme than a PFM.</p>
<p>To <a href="http://www.techcrunch.com/2007/09/18/mint-wins-techcrunch40-50000-award/">win the &#8220;best presenter&#8221; award</a> at TC40, I honestly think that&#8217;s ridiculous, but really says more to me about the conference than Mint.  For two reasons.  1) If this is the best app out of the 40, I can promptly ignore the other 39.  2) This has to be one of the best funded companies there, and I don&#8217;t think companies with VC funding should be in the running for conference grants.  Those should be reserved for companies still battling in the funding game.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/09/19/mint-finally-launches/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>LUNARR Launch</title>
		<link>https://www.webthingsconsidered.com/2007/09/18/lunarr-launch/</link>
		<comments>https://www.webthingsconsidered.com/2007/09/18/lunarr-launch/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 05:45:37 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=235</guid>
		<description><![CDATA[Portland company LUNARR, cut through the TechCrunch40 noise nicely this morning with their release. Silicon Florist has a good roundup. This is interesting to me, one because I love trying collaboration tools and two, because I noted LUNARR way back last february and for the longest time, I was getting a good chunk of my &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/09/18/lunarr-launch/" class="more-link">Continue reading<span class="screen-reader-text"> "LUNARR Launch"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Portland company LUNARR, cut through the TechCrunch40 noise nicely this morning with their release.  Silicon Florist has a <a href="http://siliconflorist.com/2007/09/18/lunarr-landing/">good roundup</a>.</p>
<p>This is interesting to me, one because I love trying collaboration tools and two, because I noted <a href="http://www.webthingsconsidered.com/2006/02/12/new-web-startup-to-call-portland-home/"> LUNARR way back last february</a> and for the longest time, I was getting a good chunk of my paltry traffic from <a href="http://www.google.com/search?q=Toru+Takasuka">google searches for Toru Takasuka</a>, the CEO.  I&#8217;ve now been relegated to page 3 of the google results.</p>
<p>So, now that LUNARR is out, let&#8217;s look at the description from back then:</p>
<blockquote><p>
â€œHe says he will develop a Web-based product that will allow business people to handle their computer needs, boosting productivity through collaboration. Information will be accessible via anything from a personal computer to a cell phone to a television.â€
</p></blockquote>
<p>The collaboration part is definitely there, and I see some interesting things there.  The whole &#8220;turn the page over&#8221; idea is kind of cool, and importing web sites to comment on was a nice touch.  We&#8217;ll see how the cell phone and television part plays out.</p>
<p>If you want an invite, let me know.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/09/18/lunarr-launch/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>11 Guys You&#8217;ll Find Playing Basketballl &#8211;  Which one are you?</title>
		<link>https://www.webthingsconsidered.com/2007/09/17/11-guys-youll-find-playing-basketballl-which-one-are-you/</link>
		<comments>https://www.webthingsconsidered.com/2007/09/17/11-guys-youll-find-playing-basketballl-which-one-are-you/#respond</comments>
		<pubDate>Tue, 18 Sep 2007 05:35:13 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=234</guid>
		<description><![CDATA[I&#8217;m not afraid to admit that I&#8217;m Richard Simmons. Don&#8217;t want to pull a muscle now. (via)]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m not afraid to admit that I&#8217;m Richard Simmons.  Don&#8217;t want to pull a muscle now.</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/fgZ-KQKrzZ0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/fgZ-KQKrzZ0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>(<a href="http://sportsillustrated.cnn.com/2007/extramustard/09/17/hotclicks.0917/index.html">via</a>)</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/09/17/11-guys-youll-find-playing-basketballl-which-one-are-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly round-up</title>
		<link>https://www.webthingsconsidered.com/2007/09/14/weekly-round-up/</link>
		<comments>https://www.webthingsconsidered.com/2007/09/14/weekly-round-up/#comments</comments>
		<pubDate>Sat, 15 Sep 2007 05:22:43 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=233</guid>
		<description><![CDATA[It&#8217;s Friday already, here&#8217;s some news to note from the past week or so. Silicon Florist marks its first month &#8211; The best new blog around, if you live in the Portland area and are interested in web/tech, this is a must read. I left a comment about how reading Silicon Florist reminds me of &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/09/14/weekly-round-up/" class="more-link">Continue reading<span class="screen-reader-text"> "Weekly round-up"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>It&#8217;s Friday already, here&#8217;s some news to note from the past week or so.</p>
<p><a href="http://siliconflorist.com/2007/09/12/silicon-florist-one-month-as-the-florist/">Silicon Florist marks its first month</a> &#8211; The best new blog around, if you live in the Portland area and are interested in web/tech, this is a must read.  I left a comment about how reading Silicon Florist reminds me of the early days of TechCrunch, Read/Write Web, and Mashable when I was always anticipating the next post to see what great new stuff was coming.  I&#8217;ve become a bit jaded following the <a href="http://www.webthingsconsidered.com/tracking-web-20/">general web 2.0 blogs</a> lately, with their growing need to be businesses and post constantly, and I rarely get excited about anything that is posted there anymore, nor can I ever hope to keep up.  So having a locally focused blog makes me feel so much more connected again.</p>
<p><a href="http://marshallk.com/joiningrww">Marshall leaves SplashCast to join Read/Write Web</a> &#8211; Speaking of Read/Write Web, Portland&#8217;s most famous web guy makes the jump to one of the top Web 2.0 blogs.  I love this move.  Marshall&#8217;s one of the top minds on web analysis and news and it&#8217;ll be great to have him back covering the whole web again.  BTW, as part of his consulting practice, he&#8217;s now offering a <a href="http://marshallk.com/social-media-starter-kit/">social media starter kit</a> which will be great for anybody interested in learning how to corral the vast information on the web.  Also, if you&#8217;re already fully up to speed on finding news and feeds, but you find too much of it, check out his post on how to <a href="http://marshallk.com/readfeeds">read feeds more efficiently</a> and avoid information overload.</p>
<p><a href="http://stepchange.typepad.com/blog/2007/09/cliq-is-a-new-s.html">CLIQ beta announced</a> &#8211; Portland&#8217;s <a href="http://www.stepchangegroup.com/">StepChange</a> group launches a beta program for <a href="http://www.cliqin.com/">CLIQ</a>, a new blog community widget that lets you share content from your &#8220;clique&#8221; of bloggers.  If you&#8217;re interested in widgets, either developing or the bursting economy around them, Kevin from StepChange will be speaking at the <a href="http://www.pdxwi.com/events/10">October Web Innovators meeting</a>.  Also, as you can see on my site here, I&#8217;ve added a CLIQ widget that features Portland Web/Tech bloggers.  If you&#8217;re interested in joining, sign up for the beta, or let me know and I&#8217;ll send you an invite to the Clique.</p>
<p><a href="http://clearspace.jivesoftware.com/blogs/podcasts/2007/09/06/openid-and-digital-identity">Portland Web Innovators on OpenID</a> &#8211; <a href="http://www.adamduvander.com">Adam</a> put together a great topic and place and the turnout was fantastic.  OpenID has many challenges ahead to reach mass adoption, but its great to see people tackling this important area.  Special thanks to <a href="http://www.jivesoftware.com/">Jive Software</a> for hosting.  I haven&#8217;t been as active this year in the Web Innovators but am thrilled to see it thriving now.</p>
<p><a href="http://www.advancedoperators.com/">Advanced Operators</a> posts its 4th topic &#8211; AdvOp is a great new community that brings bloggers/technologists (lots of Portland ones) together every week to focus on a single topic in the form of blog posts and comments.  Like Silicon Florist, its another great way to get connected to those around you, and that share your interests.  I haven&#8217;t participated yet, but hope to one of these weeks, and I enjoy following the threads.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/09/14/weekly-round-up/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Dilbert&#8217;s co-workers discuss Web 2.0</title>
		<link>https://www.webthingsconsidered.com/2007/09/10/dilberts-co-workers-discuss-web-20/</link>
		<comments>https://www.webthingsconsidered.com/2007/09/10/dilberts-co-workers-discuss-web-20/#respond</comments>
		<pubDate>Mon, 10 Sep 2007 19:18:02 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=232</guid>
		<description><![CDATA[The debate about &#8220;Web 2.0&#8221; has been played out probably thousands of times before in the echo chamber, but it&#8217;s now gone mainstream, with a touch of humor: http://www.dilbert.com/comics/dilbert/archive/dilbert-20070909.html]]></description>
				<content:encoded><![CDATA[<p>The debate about &#8220;Web 2.0&#8221; has been played out probably thousands of times before in the echo chamber, but it&#8217;s now gone mainstream, with a touch of humor:</p>
<p><a href="http://www.dilbert.com/comics/dilbert/archive/dilbert-20070909.html">http://www.dilbert.com/comics/dilbert/archive/dilbert-20070909.html</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/09/10/dilberts-co-workers-discuss-web-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Help me name a new site</title>
		<link>https://www.webthingsconsidered.com/2007/09/07/help-me-name-a-new-site/</link>
		<comments>https://www.webthingsconsidered.com/2007/09/07/help-me-name-a-new-site/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 18:51:00 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=231</guid>
		<description><![CDATA[I&#8217;m trying to nail down a name for my newest project. But since most of the names I thought of are taken or too expensive, I need a little help. Surveys &#8211; Take Our Poll BTW, if you&#8217;re searching for a good name, be sure to add Bust A Name to your toolbox, I can&#8217;t &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/09/07/help-me-name-a-new-site/" class="more-link">Continue reading<span class="screen-reader-text"> "Help me name a new site"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m trying to nail down a name for my newest project.  But since most of the names I thought of are taken or too expensive, I need a little help.</p>
<p><script language="javascript" src="http://www.polldaddy.com/p/100590.js"> </script> <noscript> <a href ="http://www.polldaddy.com" >Surveys</a> &#8211; <a href ="http://www.polldaddy.com/poll.asp?p=100590" >Take Our Poll</a> </noscript></p>
<p>BTW, if you&#8217;re searching for a good name, be sure to add <a href="http://www.bustaname.com/">Bust A Name</a> to your toolbox, I can&#8217;t say enough good things about it.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/09/07/help-me-name-a-new-site/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to get iLife &#8216;08 for free</title>
		<link>https://www.webthingsconsidered.com/2007/09/06/how-to-get-ilife-08-for-free/</link>
		<comments>https://www.webthingsconsidered.com/2007/09/06/how-to-get-ilife-08-for-free/#respond</comments>
		<pubDate>Thu, 06 Sep 2007 20:54:52 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=230</guid>
		<description><![CDATA[I was just getting ready to buy iLife &#8217;08, but then came the news that people that bought iPhones before the price drop would get a $100 credit store credit. I believe I will be using that towards iLife &#8217;08 and that makes me a much happier Apple customer and should calm the early adopter &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/09/06/how-to-get-ilife-08-for-free/" class="more-link">Continue reading<span class="screen-reader-text"> "How to get iLife &#8216;08 for free"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I was just getting ready to buy iLife &#8217;08, but then came <a href="http://money.cnn.com/2007/09/06/technology/iphone_price/index.htm?cnn=yes">the news</a> that people that bought iPhones before the <a href="http://news.com.com/Apples+iPhone+price+cuts+leave+mixed+feelings/2100-1041_3-6206367.html">price drop</a> would get a $100 credit store credit.  I believe I will be using that towards iLife &#8217;08 and that makes me a much happier Apple customer and should calm the early adopter crowd a bit.</p>
<p>Now I just have to find that receipt.  I know it&#8217;s around here somewhere.</p>
<p>Tags: <a href="http://www.technorati.com/tag/iPhone" rel="tag">iPhone</a>, <a href="http://www.technorati.com/tag/Apple" rel="tag">Apple</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/09/06/how-to-get-ilife-08-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Casey controversy</title>
		<link>https://www.webthingsconsidered.com/2007/08/15/the-casey-controversy/</link>
		<comments>https://www.webthingsconsidered.com/2007/08/15/the-casey-controversy/#comments</comments>
		<pubDate>Thu, 16 Aug 2007 06:46:47 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=229</guid>
		<description><![CDATA[You may not have heard (or care much, but I do) that the University of Oregon is bringing back varsity baseball after a 28 (or so) year absence. I think it&#8217;s a wonderful thing, though perhaps 10 years too late for me, but still nice to not have to root for the arch-rival come spring &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/08/15/the-casey-controversy/" class="more-link">Continue reading<span class="screen-reader-text"> "The Casey controversy"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>You may not have heard (or care much, but I do) that the University of Oregon is bringing back varsity baseball after a 28 (or so) year absence.  I think it&#8217;s a wonderful thing, though perhaps 10 years too late for me, but still nice to not have to root for the arch-rival come spring time.  You may also know that the Oregon State baseball team won their second straight national championship in a stunning run through the College World Series back in June.  Their coach, Pat Casey is perhaps the hottest coach in college sports and it came to light this week that the Ducks had maybe tried to <a href="http://www.oregonlive.com/sports/oregonian/brian_meehan/index.ssf?/base/sports/1186975530299330.xml&#038;coll=7">woo Casey down to Eugene</a> with their deep pockets.  The Ducks <a href="http://www.oregonlive.com/oregonian/stories/index.ssf?/base/sports/1187061910116670.xml&#038;coll=7">denied this report</a>, but it&#8217;s still an interesting issue.</p>
<p><a href="http://whitepdx.com/blogs/kelly/default.aspx">Kelly</a> emailed me today and mentioned the subject so I thought it be worth a reply here.</p>
<p>I could go either way on this.  For one, big deal if the Ducks tried to woo him, I don&#8217;t see that as an etiquette violation.  Casey has built OSU into a dominant force, and maybe he&#8217;ll win another national title at OSU, but what if he were to undertake the challenge of bringing UO baseball to national prominence and succeed.  Then he would prove that without a doubt he is one of the greatest coaches in Oregon sports (and college baseball) history.  Nothing like cementing a legacy.  He could always turn the job down if he chooses.</p>
<p>On the other hand, I&#8217;m perhaps one of the few people who do not like Casey.  I can and do respect what he&#8217;s accomplished, but hey he didn&#8217;t let me on their team and I&#8217;ve been known to hold a grudge or two, it&#8217;s one of my weaknesses.  So, to see a coach I don&#8217;t like, coaching my favorite team would not thrill me.  If it turns out as reported and the Ducks start with a fresh name with Oregon roots, I think that would be outstanding.</p>
<p>Let Civil War rage year round now.  Though since the Ducks will probably suck the first couple years, at least we&#8217;ll crush the Beavers with our competitive cheerleading team (the other sport added along with baseball, which just so happens is only the 2nd competitive cheer team in the country).  On the plus side for me, whenever it comes up that I played and coached baseball at the U of O, it&#8217;ll sound a heckuva lot more impressive without knowing that it was Club Baseball.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/08/15/the-casey-controversy/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Stay away from my contacts</title>
		<link>https://www.webthingsconsidered.com/2007/08/14/stay-away-from-my-contacts/</link>
		<comments>https://www.webthingsconsidered.com/2007/08/14/stay-away-from-my-contacts/#respond</comments>
		<pubDate>Wed, 15 Aug 2007 07:09:36 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=228</guid>
		<description><![CDATA[In what is quickly surpassing CAPTCHAs as the most annoying, and frightening part of registering for a new web service, we, as users are being asked to give up our email contacts in order to get more &#8220;friends&#8221; to use the service. I&#8217;ve been pondering this for a week or so, but Jeremy Zawodny summed &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/08/14/stay-away-from-my-contacts/" class="more-link">Continue reading<span class="screen-reader-text"> "Stay away from my contacts"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>In what is quickly surpassing CAPTCHAs as the most annoying, and frightening part of registering for a new web service, we, as users are being asked to give up our email contacts in order to get more &#8220;friends&#8221; to use the service.  I&#8217;ve been pondering this for a week or so, but Jeremy Zawodny summed up my feelings pretty well in <a href="http://jeremy.zawodny.com/blog/archives/009370.html">his post</a> about <a href="http://www.spock.com">Spock</a>:</p>
<blockquote><p>
That&#8217;s right. They want me to provide my username and password for the on-line services that may contain some of my most sensitive information, including: Gmail, Plaxo, Yahoo, Hotmail, and AOL.</p>
<p>I can&#8217;t think of a very polite way to say &#8220;no fucking way&#8221;, so I won&#8217;t even try. There wasn&#8217;t a button for that.
</p></blockquote>
<p>Blame it on <a href="http://www.facebook.com">Facebook</a>, <a href="http://www.flixster.com">Flixster</a>, or whatever spam.. cough cough, I mean &#8220;viral marketing&#8221; success story there is out there that has led to this trend.  I wish it would stop and I wish it would stop now.  I have no problems with a service providing me some copy that I can send to my friends, or even let me put in some email addresses to send invites to.  But asking for username and passwords to online email accounts is beginning to cross the line.  How am I suppose to trust what you do with all of this information?  I realize there is a &#8220;skip this step&#8221; in these examples, but note how small it usually is.</p>
<p>I admit I fell for this on Facebook and they found several people that were in my contacts, and it got me started.   But that&#8217;s Facebook, one of the biggest sites on the web and they have little incentive to abuse the information.  I have since wised up though and even that fact will not dupe me into falling for this again.</p>
<p>Here&#8217;s a quick look at some doing this in addition to facebook and spock:</p>
<p><strong>Flixster</strong><br />
<a href='http://www.webthingsconsidered.com/wp-content/uploads/2007/08/flixster.png' title='flixster.png'><img src='http://www.webthingsconsidered.com/wp-content/uploads/2007/08/flixster.thumbnail.png' alt='flixster.png' /></a></p>
<p><strong>iLike</strong><br />
<a href='http://www.webthingsconsidered.com/wp-content/uploads/2007/08/ilike.png' title='ilike.png'><img src='http://www.webthingsconsidered.com/wp-content/uploads/2007/08/ilike.thumbnail.png' alt='ilike.png' /></a></p>
<p><strong>Me.dium</strong><br />
<a href='http://www.webthingsconsidered.com/wp-content/uploads/2007/08/medium.png' title='medium.png'><img src='http://www.webthingsconsidered.com/wp-content/uploads/2007/08/medium.thumbnail.png' alt='medium.png' /></a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/08/14/stay-away-from-my-contacts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello iPhone</title>
		<link>https://www.webthingsconsidered.com/2007/07/30/hello-iphone/</link>
		<comments>https://www.webthingsconsidered.com/2007/07/30/hello-iphone/#comments</comments>
		<pubDate>Mon, 30 Jul 2007 23:32:36 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=224</guid>
		<description><![CDATA[This post was published on my iPhone. Turning 30 isn&#8217;t so bad with this in my hand. Be sure to leave your favorite iPhone apps in the comments.]]></description>
				<content:encoded><![CDATA[<p>This post was published on my iPhone. Turning 30 isn&#8217;t so bad with this in my hand. Be sure to leave your favorite iPhone apps in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/07/30/hello-iphone/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Today is my last day as a twentysomething</title>
		<link>https://www.webthingsconsidered.com/2007/07/26/today-is-my-last-day-as-a-twentysomething/</link>
		<comments>https://www.webthingsconsidered.com/2007/07/26/today-is-my-last-day-as-a-twentysomething/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 18:22:40 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=223</guid>
		<description><![CDATA[Tomorrow is the big 30. Just thought I&#8217;d mark the milestone somehow, the passing of an era. No longer will I &#8220;still have my youth&#8221; :-). Unfortunately, there haven&#8217;t been many web things considered here lately. I became a father for the 2nd time in early June, which has made this a wonderful time. However, &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/07/26/today-is-my-last-day-as-a-twentysomething/" class="more-link">Continue reading<span class="screen-reader-text"> "Today is my last day as a twentysomething"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Tomorrow is the big 30.  Just thought I&#8217;d mark the milestone somehow, the passing of an era.  No longer will I &#8220;still have my youth&#8221; :-).</p>
<p>Unfortunately, there haven&#8217;t been many web things considered here lately.  I became a father for the 2nd time in early June, which has made this a wonderful time.  However, time for blogs (both reading and writing) has dwindled as I sharpen my focus on family, work, and paying side-projects (yes, July also marks the first month that I will personally make money on NetworthIQ).  I can see opportunities all around these days, it&#8217;s just a matter of seizing them.  That will be my goal as I enter my 30&#8217;s.  Less reading and talking, more doing.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/07/26/today-is-my-last-day-as-a-twentysomething/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Sherwood: best place to live in Oregon</title>
		<link>https://www.webthingsconsidered.com/2007/07/17/sherwood-best-place-to-live-in-oregon/</link>
		<comments>https://www.webthingsconsidered.com/2007/07/17/sherwood-best-place-to-live-in-oregon/#comments</comments>
		<pubDate>Tue, 17 Jul 2007 14:37:29 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=222</guid>
		<description><![CDATA[It must be time to start a Sherwood Web Innovators group now that it&#8217;s been named the #18 best place to live in the country (and top Oregon city). Well, we&#8217;re probably not that far along yet, but maybe someday. Here&#8217;s the write-up: Like much of the Northwest, Sherwood is home to an array of &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/07/17/sherwood-best-place-to-live-in-oregon/" class="more-link">Continue reading<span class="screen-reader-text"> "Sherwood: best place to live in Oregon"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>It must be time to start a Sherwood Web Innovators group now that it&#8217;s been named the <a href="http://money.cnn.com/galleries/2007/moneymag/0707/gallery.BPTL_top_100.moneymag/18.html">#18 best place to live</a> in the country (and top Oregon city).  Well, we&#8217;re probably not that far along yet, but maybe someday.  Here&#8217;s the write-up:</p>
<blockquote><p>Like much of the Northwest, Sherwood is home to an array of beautiful parks and natural beauty. But the quickly growing commercial sites of Sherwood offer true insight into the town&#8217;s character: a juxtaposition of old and new, with reverence toward both the city&#8217;s historic past and its bright, expanding future. The community events calendar is always full and the town&#8217;s location makes for a fairly easy commute to nearby Portland. -A.B.</p></blockquote>
<p>As much as I complain about living so far out, Sherwood does indeed have a nice community feel to it, the downtown/old town area has a great throwback vibe, and there are nice parks and sports facilities.  I grew up in a town of only a couple thousand people, near Eugene, and that was definitely too small for me.  But the 15,000 population range, while near a bigger city is an appealing mix.  Plus, you can have a decent backyard.  That makes it great for families.</p>
<p>If you don&#8217;t have a family, you would probably go crazy in this town.  I&#8217;m betting there is a picture of Sherwood in the dictionary next to the definition of &#8220;suburbia.&#8221;  I can&#8217;t believe the &#8220;fairly easy commute&#8221; line from the author.  Say what?  Personally, I think Sherwood is by far, the most difficult commute of the west-side suburbs (Sherwood, Tigard, Tualatin, Wilsonville, Beaverton, Hillsboro).  There are minimal mass-transit options (nowhere near MAX, one bus running up HWY 99), and driving down Tualatin-Sherwood road to I-5 is one of the most aggravating stretches of road you will ever travel.  I know a lot of people make the commute, but I would never refer to it as easy.</p>
<p>But, it&#8217;s great to see the city get some exposure, perhaps we&#8217;ll get some better restaurants now.  One can only eat at Red Robin so many times.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/07/17/sherwood-best-place-to-live-in-oregon/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Portland suburbanites avoid iPhone hype</title>
		<link>https://www.webthingsconsidered.com/2007/07/05/portland-suburbanites-avoid-iphone-hype/</link>
		<comments>https://www.webthingsconsidered.com/2007/07/05/portland-suburbanites-avoid-iphone-hype/#comments</comments>
		<pubDate>Thu, 05 Jul 2007 23:17:20 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=221</guid>
		<description><![CDATA[I found this report about remaining iPhone stock funny. Despite the fact that there was a line 50 deep at the Sherwood AT&#038;T store on launch night (I checked), the closest Apple store still has stock: Stocks of iPhones were depleted at all but two of Appleâ€™s retail stores by the end of business on &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/07/05/portland-suburbanites-avoid-iphone-hype/" class="more-link">Continue reading<span class="screen-reader-text"> "Portland suburbanites avoid iPhone hype"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I found this <a href="http://www.ifoapplestore.com/2007/07/05/iphone-supplies-depleted/">report about remaining iPhone stock</a> funny.  Despite the fact that there was a line 50 deep at the Sherwood AT&#038;T store on launch night (I checked), the closest Apple store still has stock:</p>
<blockquote><p>Stocks of iPhones were depleted at all but two of Appleâ€<img src="https://s.w.org/images/core/emoji/11/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" />s retail stores by the end of business on July 4th. Only the Shadyside (Pittsburgh) and <strong>Bridgeport Village (Portland area)</strong> stores report stock when they open Thursday, July 5th. Estimates of initial iPhone supplies by analysts range from 700,000 down to about 350,000, not including iPhones shipped to 1,800 AT&#038;T stores.</p></blockquote>
<p>One of my colleagues managed to flip two iPhones on eBay for a modest profit that were purchased at the Bridgeport store shortly after they were released, and without having to wait in line more than a couple minutes.</p>
<p>I guess I&#8217;ll know where to go next time there&#8217;s a hot Apple release.  And, no I didn&#8217;t get an iPhone yet, and yes I do want one.  The real web, not some crippled mobile browser, in the palm of my hand wherever I go.  Sounds like a dream to me.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/07/05/portland-suburbanites-avoid-iphone-hype/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>TechCrunch Database and Startup Search</title>
		<link>https://www.webthingsconsidered.com/2007/06/04/techcrunch-database-and-startup-search/</link>
		<comments>https://www.webthingsconsidered.com/2007/06/04/techcrunch-database-and-startup-search/#comments</comments>
		<pubDate>Mon, 04 Jun 2007 18:36:02 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=219</guid>
		<description><![CDATA[I haven&#8217;t seen any formal announcement, perhaps because it&#8217;s still being built out, but there is a new feature at TechCrunch called the &#8220;TechCrunch Database.&#8221; It appears to be a comprehensive listing of startup companies with information on their products, people, funding with additional content pulled in about the company from TechCrunch posts, TechMeme, Technorati &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/06/04/techcrunch-database-and-startup-search/" class="more-link">Continue reading<span class="screen-reader-text"> "TechCrunch Database and Startup Search"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I haven&#8217;t seen any formal announcement, perhaps because it&#8217;s still being built out, but there is a new feature at <a href="http://www.techcrunch.com">TechCrunch</a> called the &#8220;TechCrunch Database.&#8221;  It appears to be a comprehensive listing of startup companies with information on their products, people, funding with additional content pulled in about the company from TechCrunch posts, <a href="http://www.techmeme.com">TechMeme</a>, <a href="http://www.technorati.com">Technorati</a> (I&#8217;m sensing a tech trend here&#8230;), <a href="http://del.icio.us">del.icio.us</a>,  and the company&#8217;s blog.  If you go to db.techcrunch.com you are re-directed to the main site, but if you want information on a particular company you can go to <a href="http://db.techcrunch.com/c/facebook">http://db.techcrunch.com/c/facebook</a> or <a href="http://db.techcrunch.com/c/twitter">http://db.techcrunch.com/c/twitter</a> to get an idea.</p>
<p>This is a very cool feature that gives a nice, quick snapshot of a company.  It looks like it was released in posts beginning last Wednesday.  What&#8217;s especially interesting is that on the same day, <a href="http://www.niallkennedy.com/blog/archives/2007/05/startup-search.html">Niall Kennedy&#8217;s</a> <a href="http://www.startupsearch.org/">Startup Search</a> was released and it&#8217;s almost exactly the same thing as the TechCrunch database.  Startup Search has better linkage among people and investors in addition to tracking traffic indicators, but the company profiles are nearly identical.</p>
<p>I wonder if Mike and Niall will work together to built a more complete database faster.  Both appear to have pretty limited listings (only 47 companies on startup search and I could only find a handful on TC DB, in contrast I had over 300 on the web 2.0 map last year and that number has at least doubled by now).    And hey guys, bring back an updated version of the <a href="http://www.fourio.com/web20map">Web 2.0 Innovation map</a>, I still think that&#8217;s a cool way to visualize startup activity.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/06/04/techcrunch-database-and-startup-search/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blazers un-jump the shark</title>
		<link>https://www.webthingsconsidered.com/2007/05/23/blazers-un-jump-the-shark/</link>
		<comments>https://www.webthingsconsidered.com/2007/05/23/blazers-un-jump-the-shark/#comments</comments>
		<pubDate>Wed, 23 May 2007 14:02:05 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=218</guid>
		<description><![CDATA[Amazing what a couple weeks will do for a team. The Blazers won the draft lottery last night for the rights to pick first in this years NBA draft, the most highly coveted #1 pick since Lebron James a few years back. Couple that with Brandon Roy&#8217;s rookie of the year win and I&#8217;m actually &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/05/23/blazers-un-jump-the-shark/" class="more-link">Continue reading<span class="screen-reader-text"> "Blazers un-jump the shark"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Amazing what a couple weeks will do for a team.  The Blazers <a href="http://sportsillustrated.cnn.com/2007/basketball/nba/05/22/draft.lottery.ap/index.html">won the draft lottery</a> last night for the rights to pick first in this years NBA draft, the most highly coveted #1 pick since Lebron James a few years back.  Couple that with Brandon Roy&#8217;s rookie of the year win and I&#8217;m actually excited about seeing them play next year.</p>
<p>It&#8217;s been years since I&#8217;ve attended or even watched a game on tv as they&#8217;ve fielded teams that were terrible on and off the court.  I&#8217;m definitely not alone, as the team has suffered huge decreases in attendance and financial performance.  It doesn&#8217;t take a genius to predict that with this stroke of luck, the team should now have a city starting to get behind it again.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/05/23/blazers-un-jump-the-shark/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>TeamSnap &#8211; the northwest is on fire today</title>
		<link>https://www.webthingsconsidered.com/2007/05/18/teamsnap-the-northwest-is-on-fire-today/</link>
		<comments>https://www.webthingsconsidered.com/2007/05/18/teamsnap-the-northwest-is-on-fire-today/#comments</comments>
		<pubDate>Fri, 18 May 2007 20:46:54 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=217</guid>
		<description><![CDATA[TeamSnap, a product of Portland-based SparkPlug is the second northwest site on TechCrunch today and is enjoying a much smoother launch than TalentSpring&#8217;s. I saw TeamSnap on Mike Davidson&#8217;s blog the other day and it definitely is a good-looking site, but didn&#8217;t realize they were local. Congrats on the launch SparkPlug! I used to play &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/05/18/teamsnap-the-northwest-is-on-fire-today/" class="more-link">Continue reading<span class="screen-reader-text"> "TeamSnap &#8211; the northwest is on fire today"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.teamsnap.com/">TeamSnap</a>, a product of Portland-based <a href="http://www.sparkplug.com/">SparkPlug</a> is the second <a href="http://www.techcrunch.com/2007/05/18/amateur-sports-management-meets-web-20-teamsnap/">northwest site on TechCrunch today</a> and is enjoying a much smoother launch than TalentSpring&#8217;s.  I saw TeamSnap on <a href="http://www.mikeindustries.com/blog/archive/2007/05/teamsnap">Mike Davidson&#8217;s blog</a> the other day and it definitely is a good-looking site, but didn&#8217;t realize they were local.  Congrats on the launch SparkPlug!</p>
<p>I used to play a lot of sports and do a little coaching before I got bit by the side-project entrepreneur bug, but not enough to warrant the use of TeamSnap.  I don&#8217;t think it will help my golf game much either.  If I start playing or coaching sports again (which I definitely want to do), I&#8217;ll have to remember to give this a shot.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/05/18/teamsnap-the-northwest-is-on-fire-today/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to blow your launch</title>
		<link>https://www.webthingsconsidered.com/2007/05/18/how-to-blow-your-launch/</link>
		<comments>https://www.webthingsconsidered.com/2007/05/18/how-to-blow-your-launch/#comments</comments>
		<pubDate>Fri, 18 May 2007 18:37:10 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=216</guid>
		<description><![CDATA[I&#8217;m not sure if TechCrunch jumped the gun, but boy is TalentSpring awful. I noticed that TalentSpring is a northwest company (Seattle), which made me want to check it out, as I don&#8217;t bother with most of the stuff that comes through TechCrunch these days. Though I can&#8217;t speak much for the business and/or idea &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/05/18/how-to-blow-your-launch/" class="more-link">Continue reading<span class="screen-reader-text"> "How to blow your launch"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m not sure if TechCrunch <a href="http://www.techcrunch.com/2007/05/18/talentspring-aims-to-disrupt-resume-marketplace/">jumped the gun</a>, but boy is <a href="http://www.talentspring.com">TalentSpring</a> awful.  I noticed that TalentSpring is a northwest company (Seattle), which made me want to check it out, as I don&#8217;t bother with most of the stuff that comes through TechCrunch these days.  Though I can&#8217;t speak much for the business and/or idea itself, as I&#8217;m not totally sure what the point of it all is yet.  It seems slightly interesting, but the TalentSpring site itself is so unusable right now, I have no motivation to explore.</p>
<p><a href='http://www.webthingsconsidered.com/wp-content/uploads/2007/05/talentspring-candidates.png' title='talentspring-candidates.png'><img src='http://www.webthingsconsidered.com/wp-content/uploads/2007/05/talentspring-candidates.thumbnail.png' alt='talentspring-candidates.png' /></a></p>
<p>First off are the 500(!) requests to urchin.js, locking up my browser.  Once that is fully swallowed, you are presented with a half-empty UI.  I guess there are no &#8220;Amateur Programmers&#8221; in the system?  I play with the job category thingamabob and still can&#8217;t get any results.  Next I try these filter widgets, and boy are they slow (this is client-side slowness, having nothing to do with the load on the site).  Oh, I see that I&#8217;m &#8220;Already Logged in,&#8221; well no actually I haven&#8217;t logged in.  Finally I entered some stuff to the &#8220;Get Ranked&#8221; form (I put some skills, not sure exactly what they mean by accomplishments, seems kind of vague) and hit go, and after about 30 seconds my browser finally came back to life with absolutely nothing changed on the screen.  After that, I&#8217;m outta here.  I can&#8217;t wait until <a href="http://www.uncov.com/">uncov</a> gets on this one.</p>
<p>User Experience is hard, I can relate with my own struggle to to create positive experiences that really get the message I&#8217;m trying to spread, across.  But, simplicity can go a long way to helping that, and I would give that advice to the TalentSpring team.  I think the problem is that the home page is trying to do too much with multiple kinds of filters in the browse area, the results area itself, and the &#8220;get ranked&#8221; form.  But, while trying to do too much, nothing gets accomplished here, I never saw any results.  Perhaps getting rid of the &#8220;Get Ranked&#8221; form and prefilling the latest resumes into the results (then the filters can be used) would be a good start.  Just some thoughts.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/05/18/how-to-blow-your-launch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Yahoo broke their GeoCode API</title>
		<link>https://www.webthingsconsidered.com/2007/05/17/yahoo-broke-their-geocode-api/</link>
		<comments>https://www.webthingsconsidered.com/2007/05/17/yahoo-broke-their-geocode-api/#comments</comments>
		<pubDate>Thu, 17 May 2007 17:55:02 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=214</guid>
		<description><![CDATA[UPDATE: It appears to be working again today (Saturday, 3 days after the first reports). I wasn&#8217;t able to make the switch to Google&#8217;s yet, so I&#8217;ll still use Yahoo&#8217;s for now. But, there are some changes I need to make to better prepare if something like this happens again. Yahoo rolled out some updates &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/05/17/yahoo-broke-their-geocode-api/" class="more-link">Continue reading<span class="screen-reader-text"> "Yahoo broke their GeoCode API"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>UPDATE:<br />
It appears to be working again today (Saturday, 3 days after the first reports).  I wasn&#8217;t able to make the switch to Google&#8217;s yet, so I&#8217;ll still use Yahoo&#8217;s for now.  But, there are some changes I need to make to better prepare if something like this happens again.</p>
<p>Yahoo <a href="http://ylocalblog.com/blog/2007/05/16/yahoo-maps-global-rollout-gets-a-new-look-%e2%80%93-and-a-new-platform/">rolled out some updates</a> to their Maps API on Tuesday night, but unfortunately they broke their <a href="http://developer.yahoo.com/maps/rest/V1/geocode.html">Geocode API</a> in the process.    I know, I know, don&#8217;t rely on free APIs, nothing like a day without new users to drive that point home.  In spite of knowing I shouldn&#8217;t rely on this API, I&#8217;m troubled by the way this was broken.  I would expect better from Yahoo, who put a lot of resources into their developer network.</p>
<p>First, they didn&#8217;t version this release, it&#8217;s still &#8220;V1&#8221;.  If they had bumped the version and kept the old one around, the problem could have been avoided.  Secondly, it&#8217;s essentially a schema problem  which are much more difficult to code around than the service being down or throwing errors.  While the response still technically passes schema validation, it&#8217;s easy to see that the data is not right.  Third, it is still not fixed after they&#8217;ve known about it for over a day.</p>
<p>Here&#8217;s the bug.  Run a zip code lookup:</p>
<p><a href="http://local.yahooapis.com/MapsService/V1/geocode?appid=YahooDemo&#038;zip=97201">http://local.yahooapis.com/MapsService/V1/geocode?appid=YahooDemo&#038;zip=97201</a></p>
<p>this is the response:</p>
<pre><code>
&lt;?xml version="1.0"?&gt;
&lt;ResultSet&gt;
   &lt;Result precision="zip"&gt;
      &lt;Latitude&gt;45.507542&lt;/Latitude&gt;
      &lt;Longitude&gt;-122.689796&lt;/Longitude&gt;
      &lt;Address&gt;&lt;/Address&gt;
      &lt;City&gt;Portland, OR  97201&lt;/City&gt;
      &lt;State&gt;United States&lt;/State&gt;
      &lt;Zip&gt;&lt;/Zip&gt;
      &lt;Country&gt;US&lt;/Country&gt;
   &lt;/Result&gt;
&lt;/ResultSet&gt;
&lt;!-- ws03.search.scd.yahoo.com compressed Thu May 17 09:55:39 PDT 2007 --&gt;
</code></pre>
<p>The city, state and zip are combined into the city field while the country is put into the state field.  Whoops.  So the city field has to be further parsed in order to put the data in the right place.  I use this service to take care of that for me, and don&#8217;t have time at the moment to do it.  So, I bumped the limit on my state field in the database in order to work around this, but my geo data will be all messed up until this is fixed and then I&#8217;ll have to go back through and clean it up.</p>
<p>I&#8217;d argue that zip code lookups are fairly common and there should be a test case for this.  Time to look at <a href="http://www.google.com/apis/maps/documentation/#Geocoding_Examples">Google&#8217;s geocoder</a> I suppose.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/05/17/yahoo-broke-their-geocode-api/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New tech group in town</title>
		<link>https://www.webthingsconsidered.com/2007/05/09/new-tech-group-in-town/</link>
		<comments>https://www.webthingsconsidered.com/2007/05/09/new-tech-group-in-town/#comments</comments>
		<pubDate>Wed, 09 May 2007 22:33:04 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=213</guid>
		<description><![CDATA[The folks at Pop Art have launched a new group, PDX UX (UX = User Experience), for area designers and developers to get together (via). Looks to be heavy on Microsoft stuff. That&#8217;s not an indictment against the group (I code in .NET for a living as a matter of fact), but I do know &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/05/09/new-tech-group-in-town/" class="more-link">Continue reading<span class="screen-reader-text"> "New tech group in town"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>The folks at Pop Art have launched a new group, <a href="http://www.pdxux.net/">PDX UX</a> (UX = User Experience), for area designers and developers to get together (<a href="http://whitepdx.com/blogs/kelly/archive/2007/05/09/PDXUX.NET-_2D00_-First-Meeting-on-May-15th.aspx">via</a>).  Looks to be heavy on Microsoft stuff.  That&#8217;s not an indictment against the group (I code in .NET for a living as a matter of fact), but I do know that many developers dislike Microsoft&#8217;s proprietary ways and many designers dislike working with Microsoft technology.  So, it will be interesting to see how it does.  I&#8217;ll add it to <a href="http://www.webthingsconsidered.com/2006/03/14/portland-technology-groups/">the list</a>.</p>
<p>One of the questions that came up during the <a href="http://webvisionsevent.com/sessions/se_ingram/">Inventrepreneurship</a> session (<a href="http://www.slideshare.net/ingramlabs/inventrepreneurship-by-paul-ingram/">slides</a>) at WebVisions was where to find people to help build projects.  Groups like <a href="http://www.pdxwi.com">PDX Web Innovators</a> and PDX UX, as well as any of the groups in that list is probably a good place to start.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/05/09/new-tech-group-in-town/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WebVisions Day 2 review</title>
		<link>https://www.webthingsconsidered.com/2007/05/07/webvisions-day-2-review/</link>
		<comments>https://www.webthingsconsidered.com/2007/05/07/webvisions-day-2-review/#comments</comments>
		<pubDate>Mon, 07 May 2007 20:39:05 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Business]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=212</guid>
		<description><![CDATA[You want irony? On the day I drive 90 minutes to the convention center and nearly 2 hours to get home, I do a brief interview with an Oregonian reporter about my 25 minute daily work commute. Doesn&#8217;t seem so bad now :-). Let&#8217;s recap day 2: Let Go! 8 Steps to Succeeding in a &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/05/07/webvisions-day-2-review/" class="more-link">Continue reading<span class="screen-reader-text"> "WebVisions Day 2 review"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>You want irony?  On the day I drive 90 minutes to the convention center and nearly 2 hours to get home, I do a brief interview with an Oregonian reporter about my 25 minute daily work commute.  Doesn&#8217;t seem so bad now :-).  Let&#8217;s recap day 2:</p>
<h3>Let Go! 8 Steps to Succeeding in a Post-2.0 World</h3>
<p>Lane Becker and Thor Muller, <a href="http://blog.getsatisfaction.com">Satisfaction</a> (<a href="http://www.slideshare.net/Thor/be-like-the-internet-8-steps-to-success-in-a-post-20-world/">slides</a>)<br />
I didn&#8217;t write down the 8 specific things, perhaps they&#8217;ll show up <a href="http://beliketheinternet.pbwiki.com">here</a>, but this talk wasn&#8217;t really about presenting the 8 things, it was more a conversation about their message, &#8220;Be Like the Internet.&#8221;  What does this mean?  It means giving up control, opening up more, looking outside for solutions, embracing chaos, being more agile. Again, look to the wiki they setup, hopefully they&#8217;ll build it out a bit.</p>
<p>More:<br />
<a href="http://www.commoncraft.com/webvision-2007-review">http://www.commoncraft.com/webvision-2007-review</a></p>
<h3><a href="http://webvisionsevent.com/sessions/se_owyang/">Social Media Strategies for your Organization? Connecting the Dots</a></h3>
<p>Jeremiah Owyang (<a href="http://www.web-strategist.com/blog/2007/05/05/webvisions-slides/">presentation</a>) (<a href="http://www.slideshare.net/jeremiah_owyang/social-media-strategies-for-corporations/">slides</a>)<br />
Jeremiah discussed ways to present and implement social media strategies in organizations.  The slides should sum it up well or watch the presentation.  I need to try some of this stuff with my company.  The Air Traffic Controller idea is a good start, though hardly anything is ever said about my company in the blogosphere (perhaps that&#8217;s as good a reason to start doing this).</p>
<p>More:<br />
<a href="http://www.elainenelson.org/2007/05/04/social-media-for-cos/">http://www.elainenelson.org/2007/05/04/social-media-for-cos/</a></p>
<blockquote class="wp-embedded-content" data-secret="Mv9WfZ85OH"><p><a href="http://blog.vibrantjourney.com/2007/05/04/web-visions-presentation-page-hierarchy/">Web Visions: Presentation Page Hierarchy</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" src="http://blog.vibrantjourney.com/2007/05/04/web-visions-presentation-page-hierarchy/embed/#?secret=Mv9WfZ85OH" data-secret="Mv9WfZ85OH" width="525" height="296" title="&#8220;Web Visions: Presentation Page Hierarchy&#8221; &#8212; Vibrant Journey" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>
<blockquote class="wp-embedded-content" data-secret="YtakALYzTX"><p><a href="http://www.elainenelson.org/2007/05/04/web-application-hierarchy-after-lunch/">web application hierarchy, after lunch</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" src="http://www.elainenelson.org/2007/05/04/web-application-hierarchy-after-lunch/embed/#?secret=YtakALYzTX" data-secret="YtakALYzTX" width="525" height="296" title="&#8220;web application hierarchy, after lunch&#8221; &#8212; emergency weblog; or: epersonae; or: elaine nelson" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>
<h3>Lunch</h3>
<p>Apparently neither <a href="http://www.jaacob.com/">Jacob</a> nor <a href="http://promotionsickness.com/">Cliff</a> have experienced a Burgerville milkshake, unbelievable.  Fortunately we survived the throng of pre-teens and made it back to the conference.</p>
<h3>Web Application Page Hierarchy</h3>
<p><a href="http://www.lukew.com/ff/about.asp">Luke Wroblewski</a> (<a href="http://www.lukew.com/ff/entry.asp?540">slides</a>)<br />
Luke W. is my new design hero, I just hope to never have to pronouce his last name.   Not only does he work for Yahoo!, but has his own design business, writes books/articles, and is a prodigous speaker (not always covering the same topic).  His slides on <a href="http://www.lukew.com/ff/entry.asp?502">Best Practices for Web Form Design</a> are the most useful, actionable advice I have ever seen in a presentation (i.e. you can put the stuff to use immediatley).  I didn&#8217;t even see that presentation, just read the slides.</p>
<p>So, the talk was great with some sound and straightforward advice on how to focus your pages on the things that matter.  Good point about the importance of a good  presentation layer, it&#8217;s not just making it pretty.</p>
<p>More:<br />
<a href="http://www.elainenelson.org/2007/05/04/web-application-hierarchy-after-lunch/">http://www.elainenelson.org/2007/05/04/web-application-hierarchy-after-lunch</a><br />
<a href="http://blog.vibrantjourney.com/2007/05/04/web-visions-presentation-page-hierarchy">http://blog.vibrantjourney.com/2007/05/04/web-visions-presentation-page-hierarchy</a></p>
<h3>English: Web 2.0&#8217;s Universal Language</h3>
<p><a href="http://www.kevinsmokler.com/">Kevin Smokler</a><br />
I left the content square-table discussion for reasons <a href="http://www.pdxwi.com/forums/3/topics/50#posts-209">similar to Adam&#8217;s</a> and ended up in this one.  It was ok.  Kevin&#8217;s a smart, energetic guy, but the topic wasn&#8217;t the most exciting to me, or maybe I was just ready to go home.  The discussion was on being clear in our language and making product descriptions easier to understand (passing the mother-in-law test).  RSS was a common topic; it&#8217;s so great, but a lot of people still don&#8217;t really get what it is after all these years.</p>
<p>More:<br />
<a href="http://www.bitclone.com/wp/105/webvisions-2007-rockstars-of-design/">http://www.bitclone.com/wp/105/webvisions-2007-rockstars-of-design/</a></p>
<p>I had to jet and missed the Friday keynote, sounds like it was pretty funny.  Instead I spent the next two hours in the parking lot know as I-5.</p>
<p><strong>Tags:</strong> <a rel="tag" href="http://www.technorati.com/tag/webvisions">webvisions</a>, <a rel="tag" href="http://www.technorati.com/tag/webvisions07">webvisions07</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/05/07/webvisions-day-2-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WebVisions Day 1 review</title>
		<link>https://www.webthingsconsidered.com/2007/05/07/webvisions-day-1-review/</link>
		<comments>https://www.webthingsconsidered.com/2007/05/07/webvisions-day-1-review/#respond</comments>
		<pubDate>Mon, 07 May 2007 20:38:49 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Business]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=211</guid>
		<description><![CDATA[WebVisions turned out all-in-all to be a good time. The sessions were great and I came out of it plenty inspired and am trying to review notes and reviews this morning so that I don&#8217;t lose track of the important bits. AJAX Inside Out (Workshop) Jack Herringon Slides: http://muttmansion.com/webvisions.pdf Code Samples: http://muttmansion.com/webvisions.tgz Waste of time. &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/05/07/webvisions-day-1-review/" class="more-link">Continue reading<span class="screen-reader-text"> "WebVisions Day 1 review"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>WebVisions turned out all-in-all to be a good time.  The sessions were great and I came out of it plenty inspired and am trying to review notes and reviews this morning so that I don&#8217;t lose track of the important bits.</p>
<h3>AJAX Inside Out (Workshop)</h3>
<p>Jack Herringon<br />
Slides: <a href="http://muttmansion.com/webvisions.pdf">http://muttmansion.com/webvisions.pdf</a><br />
Code Samples: <a href="http://muttmansion.com/webvisions.tgz">http://muttmansion.com/webvisions.tgz</a></p>
<p>Waste of time.  They should give refunds for this.  Not sure if it was a horrible mis-communication between WV staff and Mr. Herrington, or between WV marketing and attendees.  This was a demonstration of AJAX, that&#8217;s all.</p>
<h3>Inventrepreneurship</h3>
<p><a href="http://www.ingramlabs.com/">Paul Ingram</a> (<a href="http://www.slideshare.net/ingramlabs/inventrepreneurship-by-paul-ingram/">slides</a>)<br />
Very inspiring talk on ideas; where to get them, and how to bring them to life.  I&#8217;ve recently begun trying some of Paul&#8217;s ideas myself in regards &#8220;private virtual parnerships,&#8221; utilizing informal collectives of people to build projects so am glad to hear others are comfortable doing this as well (as opposed to creating formal organzations/agreements and hiring employees and contractors).  I loved the Segway video (a hypothetical discussion of the importance of the Segway as if all of the initial hype came true) and will have to try to find that.</p>
<p>More:<br />
<a href="http://www.lukew.com/ff/entry.asp?533">http://www.lukew.com/ff/entry.asp?533</a></p>
<h3>Social Architecture: Modeling the Next Generation</h3>
<p><a href="http://www.pixelnomad.com/">Sean Madden</a> (<a href="http://www.slideshare.net/smadden/social-architecture-modeling-the-next-generation">slides</a>)<br />
Emergence, ubiquitous computing, calm technology, genetic algrorithms.  Wow, this is heady stuff, and apparently this guy grew up in Tualatin, which is a stone&#8217;s throw from where I currently live.  The driving point is about making systems more flexible and easier to change/evolve from the community&#8217;s use.  I encourage you read the summaries below, this was one of my favorite sessions and I need to let this sink in a bit more.</p>
<p>More:<br />
<a href="http://www.lukew.com/ff/entry.asp?534">http://www.lukew.com/ff/entry.asp?534</a><br />
<a href="http://www.jasoneiseman.com/blog/?p=168">http://www.jasoneiseman.com/blog/?p=168</a></p>
<h3>Sensory Trasformation: How to Sip from the Information Firehose (Keynote)</h3>
<p>David Pescovitz (BoingBoing blogger among many other pursuits)<br />
Interesting stuff on information overload, ubiquitous computing, predicting the future.  I enjoyed it.  I&#8217;ll have to dump all my RSS feeds one of these days and start over, one of things David does to manage overload and find new and interesting stuff.</p>
<p>More:<br />
<a href="http://www.lukew.com/ff/entry.asp?535">http://www.lukew.com/ff/entry.asp?535</a><br />
<a href="http://www.jasoneiseman.com/blog/?p=169">http://www.jasoneiseman.com/blog/?p=169</a></p>
<p><strong>Tags:</strong> <a rel="tag" href="http://www.technorati.com/tag/webvisions">webvisions</a>, <a rel="tag" href="http://www.technorati.com/tag/webvisions07">webvisions07</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/05/07/webvisions-day-1-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebVisions starting</title>
		<link>https://www.webthingsconsidered.com/2007/05/03/webvisions-starting/</link>
		<comments>https://www.webthingsconsidered.com/2007/05/03/webvisions-starting/#comments</comments>
		<pubDate>Thu, 03 May 2007 20:35:13 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=210</guid>
		<description><![CDATA[I&#8217;m at WebVisions today and tomorrow. Jeremiah is streaming live on Ustream if you want to check out the action. Ahhh, conferences. If I had the time and money, I&#8217;d probably just go to conferences and classes for a career. It&#8217;s a blast to learn new things and listen to different perspectives. But, I&#8217;m practical &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/05/03/webvisions-starting/" class="more-link">Continue reading<span class="screen-reader-text"> "WebVisions starting"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m at <a href="http://www.webvisionsevent.com/">WebVisions</a> today and tomorrow. <a href="http://www.web-strategist.com/">Jeremiah</a> is <a href="http://www.ustream.tv/watch/channel/4JXN,rNc3HhuaRpS6qZztQ">streaming live on Ustream</a> if you want to check out the action.</p>
<p>Ahhh, conferences.  If I had the time and money, I&#8217;d probably just go to conferences and classes for a career.    It&#8217;s a blast to learn new things and listen to different perspectives.  But, I&#8217;m practical and know that you won&#8217;t get much done if you&#8217;re only learning, so usually end up doing one or two outings a year.  This is my third year at WebVisions, and I have to say, I much rather would&#8217;ve gone to Microsoft&#8217;s Mix.  Ok, maybe being in Vegas has a lot to do with that preference.  Local conferences aren&#8217;t always much fun, you don&#8217;t get to experience the whole thing as real life is still very present.  But, with baby #2 nearing arrival, leaving town wasn&#8217;t an option.</p>
<p>The WebVisions lineup and sessions seem a bit weaker (IMO) than in years past, but we&#8217;ll see how how I feel afterwards.  Take any of my criticisms with a grain of salt though, it would take mountains moving for me to get in front of an audience to present.  I can barely ask a question without shaking.</p>
<h3>AJAX Workshop</h3>
<p>I was late (shocking, I know) but this turned out to be a bust.  The speaker was definitely knowledgeable about the topic, pretty similar to my own level of knowledge I&#8217;d say.  But, unfortunately I didn&#8217;t take <a href="http://www.webthingsconsidered.com/2006/07/20/webvisions-day-1/">my own advice</a> about not attending technical/programming sessions at a designer&#8217;s conference.  The presentation was geared at beginners and it was a &#8220;presentation,&#8221; not a workshop.  I was expecting to be able to plug in the laptop and work through some examples and exercises after seeing some demos and a bit of lecutre/presentation.  But instead it was just demos/presentation without the ability to reinforce what was being said through concrete exercises.  You can&#8217;t learn this stuff by listening, you have to do it.</p>
<p>More later, the Inventrepreneurship session is shaping up nicely.</p>
<p><strong>Tags:</strong> <a rel="tag" href="http://www.technorati.com/tag/webvisions">webvisions</a>, <a rel="tag" href="http://www.technorati.com/tag/webvisions07">webvisions07</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/05/03/webvisions-starting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Log4Net problem finally solved (I think)</title>
		<link>https://www.webthingsconsidered.com/2007/05/03/log4net-problem-finally-solved-i-think/</link>
		<comments>https://www.webthingsconsidered.com/2007/05/03/log4net-problem-finally-solved-i-think/#respond</comments>
		<pubDate>Thu, 03 May 2007 12:57:38 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=209</guid>
		<description><![CDATA[For the longest time I&#8217;ve been aggravating over a Log4Net problem using the RollingFileAppender with a RollingStyle of &#8220;Date&#8221;. This is probably the most popular style of logging, with the log file rolling over every day. But, I could never get it to work consistently. Log4Net would always start the log file over each day, &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/05/03/log4net-problem-finally-solved-i-think/" class="more-link">Continue reading<span class="screen-reader-text"> "Log4Net problem finally solved (I think)"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>For the longest time I&#8217;ve been aggravating over a <a href="http://logging.apache.org/log4net/">Log4Net</a> problem using the RollingFileAppender with a RollingStyle of &#8220;Date&#8221;.  This is probably the most popular style of logging, with the log file rolling over every day.  But, I could never get it to work consistently.  Log4Net would always start the log file over each day, but would not always archive the previous day&#8217;s log.  End result being the entire log from the day before was gone!  Not the best result.  It would archive about once a week, so that meant this wasn&#8217;t a permissions issue.  This had been going one for a year or so after an upgrade to a NHibernate 1.0 release, previous to that, everything was fine.</p>
<p>With the NetworthIQ move to a new, dedicated server last month, I was able to move the log directory outside of the web root (yeah, I know, you shouldn&#8217;t have logs in your web root, but they were protected).  All of a sudden, the rolling is working again, with no lost logs.  I guess there&#8217;s a conflict between IIS and Log4Net somewhere, maybe someone knows the exact reason, but for now I&#8217;m happy to have it working.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/05/03/log4net-problem-finally-solved-i-think/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dump the CAPTCHA</title>
		<link>https://www.webthingsconsidered.com/2007/04/30/dump-the-captcha/</link>
		<comments>https://www.webthingsconsidered.com/2007/04/30/dump-the-captcha/#comments</comments>
		<pubDate>Mon, 30 Apr 2007 18:17:35 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=208</guid>
		<description><![CDATA[Why do do new or moderately trafficked sites insist on using a]]></description>
				<content:encoded><![CDATA[<p>Why do do new or moderately trafficked sites insist on using a <a href="<a href="http://en.wikipedia.org/wiki/Captcha">CAPTCHA</a> on their registration form?  A CAPTCHA is a simple test to verify an actual person is using the computer and not a machine, usually in the form of a &#8220;type the letters in this graphic&#8221; question.  They are used primarily to thwart spam bots roaming the web.</p>
<p>Sites create an unnecessary roadblock to user adoption, and it seems to be becoming more common.  The problem is, these tests can be unintelligible and a normal user can&#8217;t pass it.  If you&#8217;re MySpace or Facebook and getting thousands of registrations a day, then it makes sense to worry about thwarting the bots, but until then, please dump the CAPTCHAs.  Use email verification instead, which you probably do anyway, so no need to beat up your users before they&#8217;re actually users with too many tests.</p>
<p>Today, after 5 attempts, I failed my CAPTCHA test at <a href="http://www.fatsecret.com">fatsecret</a> (<a href="http://www.techcrunch.com/2007/04/29/fatsecret-for-fat-people-who-want-to-be-less-so/">techcrunch coverage</a>).  It looked interesting, I wanted to see how they did some things as the idea is similar, feature-wise, to what we do with personal finance on <a href="http://www.networthiq.com">NetworthIQ</a>.  Plus, I could stand to lose a few, so maybe it could help me out.  But, now we&#8217;ll never know for sure because I can&#8217;t sign up.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/04/30/dump-the-captcha/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Have you heard of John Arnold?</title>
		<link>https://www.webthingsconsidered.com/2007/04/11/have-you-heard-of-john-arnold/</link>
		<comments>https://www.webthingsconsidered.com/2007/04/11/have-you-heard-of-john-arnold/#respond</comments>
		<pubDate>Wed, 11 Apr 2007 22:12:22 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=207</guid>
		<description><![CDATA[I bet you will soon. I remember how aghast my sociology prof was in college when some CEO made $100 million in one year. Well, imagine what will be thought of about this hedge fund manager&#8217;s 2006 take: $1.5 &#8211; $2 billion. Given Arnoldâ€™s record 2006 â€” the largest sum, we believe, anyone has ever &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/04/11/have-you-heard-of-john-arnold/" class="more-link">Continue reading<span class="screen-reader-text"> "Have you heard of John Arnold?"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I bet you will soon.  I remember how aghast my sociology prof was in college when some CEO made $100 million in one year.  Well, imagine what will be thought of about <a href="http://www.traderdaily.com/news/item/5449.html">this hedge fund manager&#8217;s 2006 take</a>: $1.5 &#8211; $2 billion.</p>
<blockquote><p>Given Arnoldâ€<img src="https://s.w.org/images/core/emoji/11/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" />s record 2006 â€” the largest sum, we believe, anyone has ever earned in one year â€” a slap like that just might land someone in intensive care.</p></blockquote>
<p>I am stunned.</p>
<p>(<a href="http://paul.kedrosky.com/archives/2007/04/11/top_ten_highest.html">via Paul Kedrosky</a>)</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/04/11/have-you-heard-of-john-arnold/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Portland Web Innovators Meeting Tonight</title>
		<link>https://www.webthingsconsidered.com/2007/04/04/portland-web-innovators-meeting-tonight/</link>
		<comments>https://www.webthingsconsidered.com/2007/04/04/portland-web-innovators-meeting-tonight/#respond</comments>
		<pubDate>Wed, 04 Apr 2007 19:44:45 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[PDX Web Innovators]]></category>
		<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=206</guid>
		<description><![CDATA[I know it&#8217;s late notice, but this should a fun one. Adam has put together a great event, with Dietrich Ayala, a Portland-based Mozilla developer, giving a preview of Firefox 3. Thanks to ISITE for hosting too! When it comes to web innovations, Firefox definitely fits the bill. I remember first discovering Firebird (as it &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/04/04/portland-web-innovators-meeting-tonight/" class="more-link">Continue reading<span class="screen-reader-text"> "Portland Web Innovators Meeting Tonight"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I know it&#8217;s late notice, but this should a fun one.  <a href="http://www.adamduvander.com/simple/why-firefox-has-succeeded">Adam</a> has put together a great event, with Dietrich Ayala, a Portland-based Mozilla developer, giving a preview of Firefox 3.  Thanks to <a href="http://www.isitedesign.com/">ISITE</a> for hosting too!</p>
<p>When it comes to web innovations, Firefox definitely fits the bill.  I remember first discovering Firebird (as it was known before the name change) a few years back along with the Edit CSS plugin, and was amazed that I could edit CSS on the fly and see the changes live.  Its been my browser of choice ever since.  I didn&#8217;t even bother with Safari when I recently bought an iMac, took it out of the dock on the first day in fact.  It&#8217;s only used for compatibility testing.  The main reason I use Firefox?  For the plugins.  No other browser can compete with the sheer volume of useful plugins.  This speaks to a compelling reason for offering an API as well, if you can get developers building cool stuff on your platform, the users will follow, and I do believe Firefox will take over IE.</p>
<p>I&#8217;ll be interested in the discussion around offline apps as well, one of the <a href="http://wiki.mozilla.org/Firefox3">most mentioned features of Firefox 3</a>.  What, with the recent buzz around <a href="http://labs.adobe.com/wiki/index.php/Apollo">Adobe&#8217;s Apollo launch</a> and then <a href="http://www.37signals.com/svn/posts/347-youre-not-on-a-fucking-plane-and-if-you-are-it-doesnt-matter">DHH&#8217;s remarks</a>.</p>
<p>Come out if you can, here&#8217;s the details:</p>
<p>Wednesday, April 4, 2007<br />
7:00 PM &#8211; 9:00 PM</p>
<p>Where<br />
ISITE Design<br />
115 NW First Avenue, Suite 500<br />
Portland, Oregon 97209</p>
<p>Description<br />
Dietrich Ayala will talk about his work with the Mozilla Corporation and whatâ€<img src="https://s.w.org/images/core/emoji/11/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" />s coming in Firefox 3.</p>
<p><a href="http://www.pdxwi.com/events/4">http://www.pdxwi.com/events/4</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/04/04/portland-web-innovators-meeting-tonight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Like.com going to make it?</title>
		<link>https://www.webthingsconsidered.com/2007/03/28/is-likecom-going-to-make-it/</link>
		<comments>https://www.webthingsconsidered.com/2007/03/28/is-likecom-going-to-make-it/#respond</comments>
		<pubDate>Wed, 28 Mar 2007 20:20:18 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=205</guid>
		<description><![CDATA[Remember when they launched in November after their strategic shift from Riya to Like? I don&#8217;t quite understand why they were so quick to change, but people make decisions I don&#8217;t understand all the time. It appears the decision has not paid off. I read that they raised enough to last through 2009 and go &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/03/28/is-likecom-going-to-make-it/" class="more-link">Continue reading<span class="screen-reader-text"> "Is Like.com going to make it?"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Remember when they <a href="http://www.techcrunch.com/2006/11/08/riyas-likecom-is-first-true-visual-image-search/">launched in November</a> after their strategic shift from Riya to Like?  I don&#8217;t quite understand why they were so quick to change, but people make decisions I don&#8217;t understand all the time.  It appears the decision has not paid off.  I read that they raised enough to last through 2009 and go through 3 iterations.  If the Riya was #1 and Like is #2, I&#8217;d bet they&#8217;re thinking about that 3rd iteration by now, especially considering how silent the <a href="http://munjal.typepad.com/">CEO blog</a> has been since the beginning of the year.</p>
<p><a href="http://www.alexa.com/data/details/traffic_details?q=&#038;url=www.like.com"><img src='http://www.webthingsconsidered.com/wp-content/uploads/2007/03/graph.png' /></a></p>
<p>I have a hard time buying <a href="http://earlystagevc.typepad.com/earlystagevc/2007/02/measuring_succe.html">this explanation</a>:</p>
<blockquote><p>Today Riya is using the organic traffic to see how changes improve monetization, repeat usage, etc. The business is in &#8220;fine-tune&#8221; mode.  Every change improves the lifetime value of every user and the marginal profit contribution of every dollar to be spent on marketing.  We haven&#8217;t poured gasoline in the engine to accelerate the traffic.  We are tuning the user experience as measured by the economics of the business.</p></blockquote>
<p>Did Google, YouTube, MySpace, Facebook, Twitter, or any of the recent viral growth success stories have to &#8220;pour gasoline&#8221; by spending money on marketing?  But, who knows, and at least I learned something useful about measuring.  It&#8217;s not to say it won&#8217;t succeed, but given the money and hype put into it, it seems rather shaky.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/03/28/is-likecom-going-to-make-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s true, Oregonians can&#8217;t drive</title>
		<link>https://www.webthingsconsidered.com/2007/03/28/its-true-oregonians-cant-drive/</link>
		<comments>https://www.webthingsconsidered.com/2007/03/28/its-true-oregonians-cant-drive/#comments</comments>
		<pubDate>Wed, 28 Mar 2007 17:13:11 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=203</guid>
		<description><![CDATA[Not really a web thing, but this is engineering/usability/design related. There&#8217;s this crazy idea floating around that Oregonians don&#8217;t know how to drive. You hear it mentioned every once in a while, usually by someone from the busy roads of California. I admit I have seen my fair share of people going 65 in the &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/03/28/its-true-oregonians-cant-drive/" class="more-link">Continue reading<span class="screen-reader-text"> "It&#8217;s true, Oregonians can&#8217;t drive"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Not really a web thing, but this is engineering/usability/design related.</p>
<p>There&#8217;s this crazy idea floating around that Oregonians don&#8217;t know how to drive.  You hear it mentioned every once in a while, usually by someone from the busy roads of California. I admit I have seen my fair share of people going 65 in the left lane on I-5, driving along in ignorant bliss, as the lineup behind them is preparing to run them off the road.  But, usually this is an occasional annoyance.</p>
<p>However, I&#8217;m starting to come to the conclusion that we Oregonians do indeed do not how to drive.  Every day when I drive home from work, I prepare myself for the psychological torment of the Scholls Ferry merge.  I work in Beaverton and live in Sherwood, so the quickest route there is to take Scholls Ferry to Roy Rogers (no, not named after <a href="http://en.wikipedia.org/wiki/Roy_Rogers">THAT Roy Rogers</a>).  Scholls Ferry is bad enough with its stoplights every two car lengths, but then we hit the merge.  The great traffic engineers of the city of Beaverton designed this splendid system of roads that will go along in two lanes and then merge into 1 lane about 3 feet after a stoplight.  Walker Road (by Nike campus) has a lot of these as well.  No, it&#8217;s not really 3 feet, but that&#8217;s pretty much how they&#8217;re treated since only the hooligans or the newbies cut ahead of the backup in the left lane by driving up the right line and merging in after the light as everyone in the left lane tries their hardest to not let them merge, cursing them vehemently.</p>
<p><img src='http://www.webthingsconsidered.com/wp-content/uploads/2007/03/scholls.jpg' alt='scholls.jpg' /></p>
<p>But, are they really hooligans?  Or, are they the smart ones, and the other 99% of the drivers in the left lane are the idiots.  When I first encountered these things, I always patiently waited my turn and fumed at those who tried to beat the system.  But, now, I&#8217;ve realized that I can cut a good 5 minutes or so off of my commute by driving up the right lane and save my sanity.  It&#8217;s at the risk of inciting road-rage, I know.</p>
<p>The way I see it, these layouts are designed to prevent just the backup they cause by letting more cars through the lights, and letting them merge.  There&#8217;s also some purpose to allow cars that are turning right before the merge to bypass the congestion, but I think the bigger issue is reducing congestion by letting more cars through.  So, due to the societal norm of waiting your turn, the system backfires and the congestion remains, serving very little improvement over a single lane system.</p>
<p>Not a very usable design, huh?  How should this be fixed so people feel free to use the right lane?  Or am I cheating and need to get back in line?</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/03/28/its-true-oregonians-cant-drive/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Follow the building of a Web 2.0 app &#8211; with Twitter</title>
		<link>https://www.webthingsconsidered.com/2007/03/27/follow-the-building-of-a-web-20-app-with-twitter/</link>
		<comments>https://www.webthingsconsidered.com/2007/03/27/follow-the-building-of-a-web-20-app-with-twitter/#respond</comments>
		<pubDate>Tue, 27 Mar 2007 16:16:43 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[NetworthIQ]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=201</guid>
		<description><![CDATA[I&#8217;ve been avoiding Twitter like the plague, figuring if I got hooked it would be a major productivity dagger, even more so than reading/writing blogs. Jason asked if I was on Twitter yesterday, and I responded &#8220;nope and don&#8217;t plan too.&#8221; However, the thought occurred to me last night, maybe I can do something slightly &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/03/27/follow-the-building-of-a-web-20-app-with-twitter/" class="more-link">Continue reading<span class="screen-reader-text"> "Follow the building of a Web 2.0 app &#8211; with Twitter"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been avoiding Twitter like the plague, figuring if I got hooked it would be a major productivity dagger, even more so than reading/writing blogs.  <a href="http://www.techcraver.com">Jason</a> asked if I was on Twitter yesterday, and I responded &#8220;nope and don&#8217;t plan too.&#8221;  However, the thought occurred to me last night, maybe I can do something slightly different with Twitter.</p>
<p>I decided to start a <a href="http://twitter.com/networthiq">Twitter feed for the building of NetworthIQ</a>.  Kinda like bare naked app did by blogging about the building of <a href="http://www.amigo.com">Amigo</a> and what Steve Poland is doing now at <a href="http://www.ringsidestartup.com/">Ringside Startup</a>, only mine will be &#8220;microblogging&#8221; allowing me to make quick entries instead of long blog posts.</p>
<p>For some background, <a href="http://www.networthiq.com">NetworthIQ</a> is a bootstrapped, side-project, .NET, personal finance web app/service that launched in the summer of 2005.  It currently is nearing 8000 registered users and I&#8217;ve recently re-committed myself to focusing my spare time to making it better and helping it fulfill its potential.  Two new features (<a href="http://www.networthiq.com/tips">tips</a> and <a href="http://www.networthiq.com/blogs">blogs</a>) have been launched recently and I&#8217;ve got some more cool stuff in the works.</p>
<p>If you&#8217;re interested in the business of web apps, or the technology of web apps (not necessarily limited to .NET, I will explore many issues) I invite you to follow the feed and participate in the discussion as I go along.</p>
<p>Tags: <a href="http://www.technorati.com/tag/twitter" rel="tag">twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/03/27/follow-the-building-of-a-web-20-app-with-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing with GeoRSS</title>
		<link>https://www.webthingsconsidered.com/2007/03/26/playing-with-georss/</link>
		<comments>https://www.webthingsconsidered.com/2007/03/26/playing-with-georss/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 19:45:33 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=200</guid>
		<description><![CDATA[I was just reading the Radar post about Google Maps new support for GeoRSS and wanted to take it for a little spin. I know that Platial supports GeoRSS, so I decided to take the Web 2.0 HQ Feed (which is where new startups are mapped, since I coudn&#8217;t keep up on the Web 2.0 &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/03/26/playing-with-georss/" class="more-link">Continue reading<span class="screen-reader-text"> "Playing with GeoRSS"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I was just reading the <a href="http://radar.oreilly.com/archives/2007/03/google_is_supporting_georss.html">Radar post</a> about Google Maps new support for GeoRSS and wanted to take it for a little spin.  I know that <a href="http://www.platial.com">Platial</a> supports GeoRSS, so I decided to take the <a href="http://www.platial.com/map/1768">Web 2.0 HQ</a> Feed (which is where new startups are mapped, since I coudn&#8217;t keep up on the <a href="http://www.fourio.com/web20map">Web 2.0 Innovation Map</a>), and plug it into Google maps.</p>
<p>Here&#8217;s the result:</p>
<p><a href="http://maps.google.com/maps?f=q&#038;hl=en&#038;q=http://www.platial.com/rss/map/1768">http://maps.google.com/maps?f=q&#038;hl=en&#038;q=http://www.platial.com/rss/map/1768</a></p>
<p>Platial also lets you create maps from GeoRSS, so the new Google feature doesn&#8217;t really do anything new or better, it does however make it a bit easier since I just have to enter a URL for the feed (no account required).  Plus I always like playing with Google Maps and its API features and this gives me reason to learn a bit more about GeoRSS.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/03/26/playing-with-georss/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New features on OregonStartups.com</title>
		<link>https://www.webthingsconsidered.com/2007/03/26/new-features-on-oregonstartupscom/</link>
		<comments>https://www.webthingsconsidered.com/2007/03/26/new-features-on-oregonstartupscom/#respond</comments>
		<pubDate>Mon, 26 Mar 2007 18:15:29 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>
		<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=199</guid>
		<description><![CDATA[The OregonStartups site is beginning to come into the modern age. Up until now, the biggest value of the site is their weekly email newsletter, which includes the most extensive local business event calendar that I&#8217;ve come across. They now publish the calendar to Google Calendar which can be subscribed to, making it super easy &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/03/26/new-features-on-oregonstartupscom/" class="more-link">Continue reading<span class="screen-reader-text"> "New features on OregonStartups.com"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>The <a href="http://www.oregonstartups.com">OregonStartups</a> site is beginning to come into the modern age.  Up until now, the biggest value of the site is their weekly email newsletter, which includes the most extensive local business event calendar that I&#8217;ve come across.  They now publish the calendar to <a href="http://www.google.com/calendar/embed?src=oregonstartups%40gmail.com&#038;mode=MONTH">Google Calendar</a> which can be subscribed to, making it super easy to know what&#8217;s going on around town.</p>
<p>There are also a couple of blogs now (<a href="http://oregonstartups.typepad.com/">main</a> and <a href="http://oregonstartups.typepad.com/news/">news</a>), which for me anyway, is a much easier way to get information these days.</p>
<p>Both new features are welcome additions to the site and turns it into a must have resource for local entrepreneurs.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/03/26/new-features-on-oregonstartupscom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How are you going to use your tax refund?</title>
		<link>https://www.webthingsconsidered.com/2007/02/02/how-are-you-going-to-use-your-tax-refund/</link>
		<comments>https://www.webthingsconsidered.com/2007/02/02/how-are-you-going-to-use-your-tax-refund/#respond</comments>
		<pubDate>Fri, 02 Feb 2007 20:56:23 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=198</guid>
		<description><![CDATA[The best use of my tax refund&#8230; Pay off credit card Discover your own File income taxes &#124; Track your Net worth I know you want to share. Well, jump over to the head-to-head refund smackdown game that Adam and I (mostly Adam, but he&#8217;s gracious enough to say I helped :-)) just released. Best &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/02/02/how-are-you-going-to-use-your-tax-refund/" class="more-link">Continue reading<span class="screen-reader-text"> "How are you going to use your tax refund?"</span></a></p>]]></description>
				<content:encoded><![CDATA[<div style="border: 3px dotted #1B2C4D; margin: 5px; padding: 5px; width: 275px; text-align: center;">
<p>
    <b>The best use of my tax refund&#8230;</b>
    </p>
<p style="font-size: 200%; margin: 1.5em 0 1.5em 0;">
    Pay off credit card    </p>
<p style="margin: 1em 0 0 0;">
    <a href="http://refunds.networthiq.com">Discover your own</a>
    </p>
<p style="font-size: 90%; margin: 0;">
    <a href="http://www.instafile.com">File income taxes</a> | <a href="http://www.networthiq.com">Track your Net worth</a>
    </p>
</p></div>
<p>I know you want to share.  Well, jump over to the head-to-head refund smackdown game that <a href="http://www.adamduvander.com">Adam</a> and I (mostly Adam, but he&#8217;s gracious enough to say I helped :-)) just released.</p>
<p><a href="http://refunds.networthiq.com">Best use of Income Tax Refunds</a></p>
<p>If after doing that you feel inspired to go file your taxes, <a href="http://www.instafile.com/?ia=MG071">InstaFILE</a> is there for you.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/02/02/how-are-you-going-to-use-your-tax-refund/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thank you programming book gods</title>
		<link>https://www.webthingsconsidered.com/2007/02/02/thank-you-programming-book-gods/</link>
		<comments>https://www.webthingsconsidered.com/2007/02/02/thank-you-programming-book-gods/#respond</comments>
		<pubDate>Fri, 02 Feb 2007 20:49:55 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=197</guid>
		<description><![CDATA[Yes! Somebody wrote a book about NHibernate. I can&#8217;t tell how woefully lacking NHibernate is on helpful documentation and articles. Couple that with the little time I have to work on building out my app and I am not nearly as efficient as I could be. I hope this will help. Maybe now I&#8217;ll be &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/02/02/thank-you-programming-book-gods/" class="more-link">Continue reading<span class="screen-reader-text"> "Thank you programming book gods"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Yes!  Somebody wrote a book about NHibernate.  I can&#8217;t tell how woefully lacking NHibernate is on helpful documentation and articles.  Couple that with the little time I have to work on building out my app and I am not nearly as efficient as I could be.  I hope this will help.  Maybe now I&#8217;ll be able to figure out how to delete a persistent object without breaking into plain old SQL and ADO.NET.</p>
<p><a href="http://www.manning.com/kuate/">NHibernate in Action</a></p>
<p>(via <a href="http://www.ayende.com/Blog/2007/01/28/NHibernateInAction.aspx">Ayende</a>)</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/02/02/thank-you-programming-book-gods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You don&#8217;t see that very often</title>
		<link>https://www.webthingsconsidered.com/2007/01/26/you-dont-see-that-very-often/</link>
		<comments>https://www.webthingsconsidered.com/2007/01/26/you-dont-see-that-very-often/#respond</comments>
		<pubDate>Fri, 26 Jan 2007 22:31:31 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=196</guid>
		<description><![CDATA[Ducks, Cougars one of the biggest games of the weekend! This is basketball season isn&#8217;t it? Go Ducks!]]></description>
				<content:encoded><![CDATA[<p><a href="http://sportsillustrated.cnn.com/2007/writers/seth_davis/01/26/five.for.friday/index.html">Ducks, Cougars one of the biggest games</a> of the weekend!  This is basketball season isn&#8217;t it?</p>
<p>Go Ducks!</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/01/26/you-dont-see-that-very-often/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sponsored Post: SEO Toolbar Review</title>
		<link>https://www.webthingsconsidered.com/2007/01/08/sponsored-post-seo-toolbar-review/</link>
		<comments>https://www.webthingsconsidered.com/2007/01/08/sponsored-post-seo-toolbar-review/#comments</comments>
		<pubDate>Tue, 09 Jan 2007 05:53:28 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=195</guid>
		<description><![CDATA[SEO Toolbar: The bad, the bad, and the not so ugly There is definitely no lack of tools in SEO arena. But, there is also a wide range of quality in these tools. I have a couple of favorites in my toolbox including SearchStatus and SEO for Firefox. I have to say after giving the &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/01/08/sponsored-post-seo-toolbar-review/" class="more-link">Continue reading<span class="screen-reader-text"> "Sponsored Post: SEO Toolbar Review"</span></a></p>]]></description>
				<content:encoded><![CDATA[<h2>SEO Toolbar: The bad, the bad, and the not so ugly</h2>
<p><img src="http://www.webthingsconsidered.com/wp-content/uploads/2007/01/toolbar.jpg" /></p>
<p>There is definitely no lack of tools in SEO arena.  But, there is also a wide range of quality in these tools.  I have a couple of favorites in my toolbox including <a href="http://www.quirk.biz/searchstatus/">SearchStatus</a> and <a href="http://tools.seobook.com/firefox/seo-for-firefox.html">SEO for Firefox</a>.  I have to say after giving the <a href="http://www.seoinc.com/seo-toolbar/">SEO Toolbar</a> a run through, I like the tools overall, but I give it thumbs down and will not be adding this to the toolbox.  Apparently I&#8217;m wrong though, because <a href="http://www.seoinc.com/seo-forum/seo-software/seo-inc-toolbar/seo-inc-seo-toolbar-v2-released/372-0.html">100% of polled people can&#8217;t live without it</a>. (note, there was 1 vote at the time of this post)</p>
<h3>The bad: Personal data required to download</h3>
<p>I start off by visiting the <a href="http://www.seoinc.com/seo-toolbar/">download page for the SEO Toolbar</a>.  Immediately, a prospective user is presented with a form to fill out before they can download the toolbar.  Fortunately, you just have to fill out the form and not wait for an email with a link to the download as some do.  So, any ol&#8217; data will do here.  When was the last time you had to enter data to download a Firefox plugin?  But, that&#8217;s getting a bit ahead of ourselves because&#8230;</p>
<h3>The bad: IE Only</h3>
<p>Nowhere on the download page does it say what browsers are supported.  There are no system requirements of any kind on the download page, and I didn&#8217;t find anything elsewhere on the site.  But, eventually, after installing it, discovered this is an IE only tool.  For me, if you don&#8217;t support Firefox, why bother?  How many professional and aspiring SEOs use IE?  With the abundance of <a href="http://del.icio.us/tag/firefox+seo">SEO plugins</a> for Firefox, I&#8217;m sure Firefox is the browser of choice.  However, for the person in the Marketing department that&#8217;s just learning about SEO and still uses IE, this may be helpful for them.  I was a good sport though and completed the install and fired it up in IE.</p>
<h3>The not so ugly: There are some handy tools in here</h3>
<p>Ok, we avoided getting ugly.  But frankly, if I were to just come across it normally, I never would have gone further.  So, let&#8217;s look at the tools provided by the SEO Toolbar.</p>
<ul>
<li>Web Searches &#8211; There is a nice search function where you can choose between 11 search engines.  This would have been cool a couple years ago, but FF and now IE 7 have this ability with no toolbar needed.</li>
<li>Ranking &#8211; This one is handy.  You can visit the target site, enter a search term and then get the rankings for that search on Google, Yahoo, and MSN.  My current toolset doesn&#8217;t have this at the click of a button.  I also like how it shows it summarized in a popup window.</li>
<li>Site Data &#8211; Three tools in this area, a keyword analyzer, a html validator, and a site analyzer tool which gives a good overall summary of the site.  The html validator is worthless here, I already have tools for this in FF, but the other two are nice to have.</li>
<li>Engine Data &#8211; A quick count of backlinks and page counts in the various search engines.  Again, handy to have it summarized in a popup at the click of a button (as opposed to going to a 3rd party tool&#8217;s hosted tool or loading up each engine&#8217;s query page)</li>
<li>Network Data &#8211; A few logistical tools, IP lookup, load time, ping, WHOIS data, and HTTP header info.  Nothing here that I don&#8217;t already have quick access too with the Firefox toolset.</li>
</ul>
<p>So, there are some helpful tools once you get going.  Perhaps if they release a Firefox plugin, I would use it.  But, as it stands now, I don&#8217;t see enough to make me want to use it on IE.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/01/08/sponsored-post-seo-toolbar-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Please don&#8217;t use Snap Preview Anywhere</title>
		<link>https://www.webthingsconsidered.com/2007/01/04/please-dont-use-snap-preview-anywhere/</link>
		<comments>https://www.webthingsconsidered.com/2007/01/04/please-dont-use-snap-preview-anywhere/#comments</comments>
		<pubDate>Thu, 04 Jan 2007 17:44:09 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=193</guid>
		<description><![CDATA[There are good uses of AJAX and bad uses. The Snap Preview Anywhere widget is what I would consider a bad use. I cringe every time I go to TechCrunch now and actually wan&#8217;t to visit one of the sites they mention. It&#8217;s distracting and unexpected (I hover over a link wanting to click on &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2007/01/04/please-dont-use-snap-preview-anywhere/" class="more-link">Continue reading<span class="screen-reader-text"> "Please don&#8217;t use Snap Preview Anywhere"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>There are good uses of AJAX and bad uses.  The <a href="http://www.snap.com/about/spa1A.php">Snap Preview Anywhere widget</a> is what I would consider a bad use.  I cringe every time I go to <a href="http://www.techcrunch.com">TechCrunch</a> now and actually wan&#8217;t to visit one of the sites they mention.  It&#8217;s distracting and unexpected (I hover over a link wanting to click on it and all of a sudden this damn window pops up).  Even if I wanted a preview of the site, the thumbnail isn&#8217;t big enough to provide anything of value other than a cursory look at the page&#8217;s design.  I think it&#8217;s on its way to becoming the blink tag of the blog world.</p>
<p>Please, I beg all site owners, do not use this thing.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2007/01/04/please-dont-use-snap-preview-anywhere/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Clearspace looks cool</title>
		<link>https://www.webthingsconsidered.com/2006/12/21/clearspace-looks-cool/</link>
		<comments>https://www.webthingsconsidered.com/2006/12/21/clearspace-looks-cool/#comments</comments>
		<pubDate>Thu, 21 Dec 2006 17:59:40 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=192</guid>
		<description><![CDATA[Local company Jive Software is readying what appears to be an extremely compelling team collaboration suite called Clearspace. I&#8217;ve seen a lot of job postings for Jive in the pdxMindShare newsletter, but never really looked into what they were building. Nino pointed out the the cNet review which has some nice screenshots. Clearspace looks to &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/12/21/clearspace-looks-cool/" class="more-link">Continue reading<span class="screen-reader-text"> "Clearspace looks cool"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Local company <a href="http://www.jivesoftware.com/">Jive Software</a> is readying what appears to be an extremely compelling team collaboration suite called <a href="http://www.jivesoftware.com/products/clearspace/">Clearspace</a>.  I&#8217;ve seen a lot of job postings for Jive in the <a href="http://www.pdxmindshare.com/">pdxMindShare</a> newsletter, but never really looked into what they were building.  <a href="http://www.oregonlive.com/weblogs/techblog/index.ssf?/mtlogs/olive_tech/archives/2006_12.html#217313">Nino pointed out</a> the the <a href="http://news.com.com/Jive+jumps+into+Web+collaboration/2100-1012_3-6144615.html">cNet review</a> which has some nice screenshots.</p>
<p>Clearspace looks to be bringing together blogs, wikis, forums, and document sharing into a single product, perfect for teams.  Clearspace reminds me a lot of SharePoint, but who likes using SharePoint?  I&#8217;d love an alternative and this looks like a good one.  Sharing information on teams is often a pain.  I know my current team at work has come back to email again (yuck) as the primary means of cummunication, even after installing SharePoint.  Email is horrible for team communication as messages are easily lost and ignored, and they are often disruptive to workflow.  We occasionally use the SharePoint forums, but most of the time people have to send an email pointing to the discussion because it&#8217;s just not part of the natural communication flow yet (not entirely SharePoint&#8217;s fault).</p>
<p>Blogs, forums, and wikis are ideal for team communication because they can be viewed out-of-bound from your current workflow.  You can view them on your own schedule and can much easily filter unwanted information.  Say I find a great new tool (like Firebug), I can simply blog about it instead of emailing everybody.  Plus I can have related conversations on the forum thread or blog comment thread that only involve the interested parties.  The biggest weakness of SharePoint is that it lacks good tools for knowledge sharing.  It&#8217;s ok for documents, lists, and some wiki-like functionality.  But, I&#8217;m looking forward to seeing the blogs, blog reading, and wiki tools in Clearspace, and if they can really help facilitate discussion and knowledge sharing.</p>
<p>Though it&#8217;s not likely we&#8217;ll see Clearspace adoption on my team, because it&#8217;s currently so Microsoft tool focused, I&#8217;ll still be interested in trying it out for my own interest for use on side and future projects.</p>
<p>If you&#8217;re interested in more on collaboration suites, see the <a href="http://www.techcrunch.com/2006/11/21/knownow-and-wordpress-partner-on-rssblogging/">WordPress/Knownow</a> agreement and the <a href="http://www.techcrunch.com/2006/11/07/intel-suitetwo-product-suite-launches/">Intel SuiteTwo release</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/12/21/clearspace-looks-cool/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Belkin is a disaster</title>
		<link>https://www.webthingsconsidered.com/2006/12/21/belkin-is-a-disaster/</link>
		<comments>https://www.webthingsconsidered.com/2006/12/21/belkin-is-a-disaster/#respond</comments>
		<pubDate>Thu, 21 Dec 2006 16:58:57 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=191</guid>
		<description><![CDATA[I&#8217;ve long thought Belkin was the home of crappy/cheap electronic accessories that fell apart easily or never worked quite right. This mainly comes from buying a few things in college, when the funds were low and you generally look for the cheapest version of whatever you&#8217;re buying. You get what you pay for right? Well, &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/12/21/belkin-is-a-disaster/" class="more-link">Continue reading<span class="screen-reader-text"> "Belkin is a disaster"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve long thought <a href="http://world.belkin.com/">Belkin</a> was the home of crappy/cheap electronic accessories that fell apart easily or never worked quite right.  This mainly comes from buying a few things in college, when the funds were low and you generally look for the cheapest version of whatever you&#8217;re buying.  You get what you pay for right?  Well, I thought they were improving with their current generation of products including their iPod accessories.  I just bought a Nano as a present for my wife&#8217;s birthday and needed to get a car adapter for it.  We stopped at Target on our way out of town this past week and I quickly grabbed the <a href="http://catalog.belkin.com/IWCatProductPage.process?Product_Id=149006">Auto Kit</a> for $30, it said &#8220;Power and Play your iPod in your car,&#8221; that was all I needed right?  Plus, it had a nice design and was a much better deal than the $70 Monster <a href="http://www.monstercable.com/productpage.asp?pin=2084">iCarPlay</a>.</p>
<p>So, we&#8217;re heading down the road and my wife&#8217;s trying to get the thing setup and what do you know, the damn Auto Kit is just for power, there&#8217;s no way to actually play the iPod through this thing.  WTF?  I had assumed incorrectly it was an FM adapter, but it&#8217;s only a power charger and amplifier.  What part of &#8220;play&#8221; are they talking about?  You have to buy a separate FM adapter to actually play your iPod in your car, which when you combine the Auto Kit, adds up to about the same price as the iCarPlay.  Guess which one I have now?  Yes, the iCarPlay.  Belkin may have been trying to provide flexibility with their separate power adapter and FM transmitter (and plethora of other combinations thereof), but they ended up providing confusion and distrust.  I have finally learned my lesson with Belkin and I will never buy another one of their product&#8217;s again.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/12/21/belkin-is-a-disaster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web APIs shifting</title>
		<link>https://www.webthingsconsidered.com/2006/12/20/web-apis-shifting/</link>
		<comments>https://www.webthingsconsidered.com/2006/12/20/web-apis-shifting/#respond</comments>
		<pubDate>Thu, 21 Dec 2006 06:04:00 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=190</guid>
		<description><![CDATA[Dare has a good summary of the recent events surrounding web APIs, namely the Google and Del.icio.us moves away from server-side APIs to more Widget based functionality. We talked about APIs back at the September PDX Web Innovators meeting, and much of that was focused around building mashups off of these services. I think it &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/12/20/web-apis-shifting/" class="more-link">Continue reading<span class="screen-reader-text"> "Web APIs shifting"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Dare <a href="http://www.25hoursaday.com/weblog/PermaLink.aspx?guid=55b58719-a06b-445e-aa96-b5d395cbdf75">has a good summary</a> of the recent events surrounding web APIs, namely the Google and Del.icio.us moves away from server-side APIs to more Widget based functionality.</p>
<p>We talked about APIs back at the <a href="http://www.adamduvander.com/projects/the-two-types-of-apis">September PDX Web Innovators meeting</a>, and much of that was focused around building mashups off of these services.  I think it will be a real bummer if this trend continues, and less mashup-friendly services are offered.  I agree with Dare that a site would be stupid to restrict ways to add stuff to your site.  But it also strikes me that controlling the data extraction type of API would be a first step towards limiting a site&#8217;s viral uptake (though I&#8217;m sure Google&#8217;s not too concerned with that at this point in their existence).</p>
<p>Personally, I really like the <a href="http://developer.yahoo.com/">Yahoo set of services</a>, that give you a choice among different output formats (XML, JSON, and PHP), thereby making it easy to use on the server and client (kind of anyway, I can test easily by typing urls in the browser, but the cross-domain AJAX issue in most cases prevents direct use on the client-side).</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/12/20/web-apis-shifting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firebug 1.0 Beta out</title>
		<link>https://www.webthingsconsidered.com/2006/12/04/firebug-10-beta-out/</link>
		<comments>https://www.webthingsconsidered.com/2006/12/04/firebug-10-beta-out/#respond</comments>
		<pubDate>Mon, 04 Dec 2006 23:40:12 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=189</guid>
		<description><![CDATA[If you&#8217;ve been waiting to try out Firebug for any reason, wait no longer. Skip right past the current release and install the the new 1.0 Beta. I can describe this new version in one word: Amazing. Firebug will make debugging your web app a joy. No matter if the problem is in the markup, &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/12/04/firebug-10-beta-out/" class="more-link">Continue reading<span class="screen-reader-text"> "Firebug 1.0 Beta out"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>If you&#8217;ve been waiting to try out <a href="http://www.getfirebug.com/">Firebug</a> for any reason, wait no longer.  Skip right past the current release and install the the new 1.0 Beta.</p>
<p>I can describe this new version in one word: Amazing.  Firebug will make debugging your web app a joy.  No matter if the problem is in the markup, script, CSS, or HTTP request/response, Firebug will help you find it.  You&#8217;ll actually want to have bugs just so you can use it.  Great to see it&#8217;s going to stay open source too.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/12/04/firebug-10-beta-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running multiple browser versions side-by-side</title>
		<link>https://www.webthingsconsidered.com/2006/12/01/running-multiple-browser-versions-side-by-side/</link>
		<comments>https://www.webthingsconsidered.com/2006/12/01/running-multiple-browser-versions-side-by-side/#respond</comments>
		<pubDate>Fri, 01 Dec 2006 19:58:29 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=188</guid>
		<description><![CDATA[Need to run both IE 6 and 7 in order to test your sites? For that matter, you&#8217;ll probably want Firefox 1.5 and at the same time as well. Well, the IE blog announces the release of an Virtual PC hard drive with an authorized Windows XP image and IE 6 installed. They also provide &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/12/01/running-multiple-browser-versions-side-by-side/" class="more-link">Continue reading<span class="screen-reader-text"> "Running multiple browser versions side-by-side"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Need to run both IE 6 and 7 in order to test your sites?  For that matter, you&#8217;ll probably want Firefox 1.5 and at the same time as well.  Well, the IE blog <a href="http://blogs.msdn.com/ie/archive/2006/11/30/ie6-and-ie7-running-on-a-single-machine.aspx">announces the release</a> of an Virtual PC hard drive with an authorized Windows XP image and IE 6 installed.  They also provide the previously announced free VPC install.</p>
<p>There is a catch, it only lasts 4 months (treating us to a wonderful April fools).  But at least it saves me from creating my own VPC hard drive and sitting through a windows install until then.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/12/01/running-multiple-browser-versions-side-by-side/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SmartFilter doesn&#8217;t like Yahoo related JavaScript developers</title>
		<link>https://www.webthingsconsidered.com/2006/11/21/smartfilter-doesnt-like-yahoo-related-javascript-developers/</link>
		<comments>https://www.webthingsconsidered.com/2006/11/21/smartfilter-doesnt-like-yahoo-related-javascript-developers/#comments</comments>
		<pubDate>Tue, 21 Nov 2006 22:20:16 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=187</guid>
		<description><![CDATA[Interesting to see that at one point, the SmartFilter URL filtering software blocked 3 key Yahoo and JavaScript related blogs (with reason in parens): Simon Willison (malicious content) YUI blog (spam urls) Jack Slocum (spam urls) I asked for Willison&#8217;s and Slocum&#8217;s to be whitelisted and the YUI blog started working this week without a &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/11/21/smartfilter-doesnt-like-yahoo-related-javascript-developers/" class="more-link">Continue reading<span class="screen-reader-text"> "SmartFilter doesn&#8217;t like Yahoo related JavaScript developers"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Interesting to see that at one point, the <a href="http://www.securecomputing.com/index.cfm?skey=85">SmartFilter</a> URL filtering software blocked 3 key Yahoo and JavaScript related blogs (with reason in parens):</p>
<p><a href="http://simon.incutio.com/">Simon Willison</a>  (malicious content)<br />
<a href="http://yuiblog.com/">YUI blog</a> (spam urls)<br />
<a href="http://www.jackslocum.com/blog/">Jack Slocum</a> (spam urls)</p>
<p>I asked for Willison&#8217;s and Slocum&#8217;s to be whitelisted and the YUI blog started working this week without a request, so maybe Secure Computing updated the blacklist.  Is this some conspiracy to suppress the adoption of the <a href="http://developer.yahoo.com/yui/">Yahoo User Interface Library</a>?  (only kidding)</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/11/21/smartfilter-doesnt-like-yahoo-related-javascript-developers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firefox 2 takes new measures against popups</title>
		<link>https://www.webthingsconsidered.com/2006/11/17/firefox-2-takes-new-measures-against-popups/</link>
		<comments>https://www.webthingsconsidered.com/2006/11/17/firefox-2-takes-new-measures-against-popups/#comments</comments>
		<pubDate>Sat, 18 Nov 2006 00:50:53 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Browsers]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=186</guid>
		<description><![CDATA[If I had to pick only one application to have installed on my pc, it would be Firefox. I live in it for a good chunk of the day, and am extremely hesitant to install anything else (with the exception of development servers and some programming tools). That&#8217;s the power of the web, you can &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/11/17/firefox-2-takes-new-measures-against-popups/" class="more-link">Continue reading<span class="screen-reader-text"> "Firefox 2 takes new measures against popups"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.webthingsconsidered.com/wp-content/uploads/2006/11/firefox-title.png" alt="Firefox 2" /></p>
<p>If I had to pick only one application to have installed on my pc, it would be Firefox.   I live in it for a good chunk of the day, and am extremely hesitant to install anything else (with the exception of development servers and some programming tools).  That&#8217;s the power of the web, you can do almost anything in a browser now days.</p>
<p>So, it was with great excitement that I updated to the new Firefox release a couple weeks ago.  There are definitely some great features, first and foremost is the spell-checker (getting close to saying goodbye to Word forever) and second , improved tabbing.  But there was one subtle change that is a rather large blow to pop-up windows.  I don&#8217;t mean pop-ups in the bad way, when used for ads.  I mean when purposely used for an application, such as the one I&#8217;m currently developing where the pop-up allows the user to monitor information while still using the main application.  IMO, it would be very awkward to use a div-window within the main document.  So, the change?</p>
<p><img src="http://www.webthingsconsidered.com/wp-content/uploads/2006/11/firefox-javascript.jpg" /></p>
<p>Note the &#8220;Raise or lower windows&#8221; option in the javascript settings.  You can no longer bring focus to a opened window by default.  The user has to grant this permission.  Fat chance of relying on a user setting.  So, my workaround is to close and open the window again when trying to bring it to focus.  This is doable, but for the life of me, I can&#8217;t figure out how to save off the coordinates of the opened window before closing it.  Still some more research for that one to get a nice cross-browser solution.</p>
<p>Anyway, couple the focus issues with the <a href="http://www.yorkspace.com/2005/11/31">title bar issue</a> discovered by a co-worker, and it really seems that FF is pushing hard against pop-ups.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/11/17/firefox-2-takes-new-measures-against-popups/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wesabe launches</title>
		<link>https://www.webthingsconsidered.com/2006/11/17/wesabe-launches/</link>
		<comments>https://www.webthingsconsidered.com/2006/11/17/wesabe-launches/#comments</comments>
		<pubDate>Sat, 18 Nov 2006 00:11:12 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[NetworthIQ]]></category>
		<category><![CDATA[Personal Finance]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=184</guid>
		<description><![CDATA[So, Wesabe launched today. I&#8217;ve been waiting for this since I first saw Marc&#8217;s post on the Radar. As you may know I run a personal finance site, NetworthIQ, so I&#8217;m always on the lookout for related ideas and competition. I&#8217;m also happy to discover other people thinking about how to improve the way we &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/11/17/wesabe-launches/" class="more-link">Continue reading<span class="screen-reader-text"> "Wesabe launches"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>So, <a href="http://www.wesabe.com/">Wesabe</a> launched today.  I&#8217;ve been waiting for this since I first saw Marc&#8217;s post on the <a href="http://radar.oreilly.com/archives/2006/09/wheaties_for_your_wallet.html">Radar</a>.  As you may know I run a personal finance site, <a href="http://www.networthiq.com">NetworthIQ</a>, so I&#8217;m always on the lookout for related ideas and competition.  I&#8217;m also happy to discover other people thinking about how to improve the way we manage our money.</p>
<p>Wesabe is a compelling product that I myself will try out.  Features such as tips and goals are nice community features that are also slated for NetworthIQ one of these years (though my vision of these is a bit different).  I need to still explore the account uploaders, but this could be the best part of Wesabe These uploading features give Wesabe the potential to be a Quicken/Money killer.</p>
<p>To beat Quicken/Money, I believe an app has to get out of the transaction entry approach and solve the problem of tracking finances differently and bring a lot more to the table feature-wise (like with social features).  Yet, most new web-based personal finance apps (PFMs) still rely on transaction entry and have no social features.  The data is already out there in the banks&#8217; databases, so why should we have to enter it again? Plus, banks are rolling out better applications all the time, so it doesn&#8217;t make a lot of sense to compete directly with them.  One of my top goals for NetworthIQ was to provide account aggregation but never require a user to enter a purchase/transaction manually.  That&#8217;s why it&#8217;s incredibly simplified down to just entering account balances once a month (which is stretching the bounds of data entry far enough IMO, and still needs to simplified further with automation and import/export tools).</p>
<p>Like we&#8217;ve faced with NetworthIQ, there is hurdle to overcome for users to trust their financial data to a web-based application.  This is why you probably won&#8217;t see the desktop PFMs die anytime soon.  But, like with online banking, the time is coming and Wesabe should help.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/11/17/wesabe-launches/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Tracking Web 2.0 revisited</title>
		<link>https://www.webthingsconsidered.com/2006/11/09/tracking-web-20-revisited/</link>
		<comments>https://www.webthingsconsidered.com/2006/11/09/tracking-web-20-revisited/#respond</comments>
		<pubDate>Thu, 09 Nov 2006 19:16:49 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=182</guid>
		<description><![CDATA[By far my most popular post here was the Tracking Web 2.0 recap of all of the various blogs and listing sites. I went back and cleaned it up a bit creating two separate lists. Also, because I&#8217;m starting to have fun creating different subscription lists, I created an opml file to kickstart anybody wanting &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/11/09/tracking-web-20-revisited/" class="more-link">Continue reading<span class="screen-reader-text"> "Tracking Web 2.0 revisited"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>By far my most popular post here was the <a href="http://www.webthingsconsidered.com/2006/02/14/tracking-web-20/">Tracking Web 2.0</a> recap of all of the various blogs and listing sites.  I went back and cleaned it up a bit creating two separate lists.  Also, because I&#8217;m starting to have fun creating different subscription lists, I created an opml file to kickstart anybody wanting to start following the Web 2.0 world.</p>
<ul>
<li><a href="http://www.webthingsconsidered.com/web20.opml">Top Web 2.0 Blogs</a> (opml file)</li>
</ul>
<p>If you don&#8217;t want to worry about adding subscriptions, a great resource for keeping up on Web 2.0 is the <a href="http://www.originalsignal.com/">Original Signal</a> singlegator site.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/11/09/tracking-web-20-revisited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stickies everywhere</title>
		<link>https://www.webthingsconsidered.com/2006/11/08/stickies-everywhere/</link>
		<comments>https://www.webthingsconsidered.com/2006/11/08/stickies-everywhere/#respond</comments>
		<pubDate>Wed, 08 Nov 2006 21:13:03 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=181</guid>
		<description><![CDATA[Stickies (and similar notes-based organizational tools) are all the rage these days with 3 4 recent product launches: stikkit stickytag Helipad nottr As much as I want to like these tools, (especially local entry stikkit), I just can&#8217;t get behind them yet. I&#8217;ve tried using all kinds of organizational apps like Ta-da lists, wikis, Basecamp/activeCollab, &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/11/08/stickies-everywhere/" class="more-link">Continue reading<span class="screen-reader-text"> "Stickies everywhere"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Stickies (and similar notes-based organizational tools) are all the rage these days with <span style="text-decoration:line-through">3</span> 4 recent product launches:</p>
<ul>
<li><a href="http://www.stikkit.com">stikkit</a></li>
<li><a href="http://www.stickytag.com">stickytag</a></li>
<li><a href="http://pad.helicoid.net/home.html">Helipad</a></li>
<li><a href="http://www.nottr.com/">nottr</a></li>
</ul>
<p>As much as I want to like these tools, (especially local entry stikkit), I just can&#8217;t get behind them yet.  I&#8217;ve tried using all kinds of organizational apps like <a href="http://www.tadalist.com/">Ta-da lists</a>, wikis, <a href="http://www.basecamphq.com/">Basecamp</a>/<a href="http://www.activecollab.com/">activeCollab</a>, all of the different start pages (google/ig, pageflakes, live.com) and their todo widgets, <a href="http://www.google.com/notebook">Google Notebook</a>, and Microsoft OneNote among others.</p>
<p>But, as hard as I&#8217;ve tried, I just keep coming back to the same two tools I&#8217;ve used for a relatively long-time, Gmail (using drafts and yahoo mail before) and todo.txt files in different places (one at work, different ones at home for different projects).  Using Gmail allows easy online access from anywhere when needed and the ability to upload related files, while todo.txt files are great when offline and when needing more room to process thoughts and lists.  I find it requires too much effort at times to open a browser or another application.  I&#8217;m reminded here of Cory Doctorow&#8217;s <a href="http://www.craphound.com/lifehacksetcon04.txt">Tech Secrets of Overprolific Alpha Geeks</a> presentation from a couple years back.</p>
<p>I&#8217;ll definitely try out stikkit because it looks like such an elegant UI and back-end engineering effort, but we&#8217;ll see if I stick with it (sorry, bad humor).  How do you organize yourself?</p>
<p>Note, this is for my personal organization, when working with a team, I&#8217;d still recommend a tool like activeCollab/Basecamp or a wiki.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/11/08/stickies-everywhere/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Like.com forgot the basics</title>
		<link>https://www.webthingsconsidered.com/2006/11/08/likecom-forgot-the-basics/</link>
		<comments>https://www.webthingsconsidered.com/2006/11/08/likecom-forgot-the-basics/#respond</comments>
		<pubDate>Wed, 08 Nov 2006 17:40:32 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=179</guid>
		<description><![CDATA[Turn off javascript and try to do a search on the newly launched Like.com (Scoble and TechCrunch have more on the release). What do you get? Nothing. This is a move sure to fire up accessibility advocates everywhere. You may say &#8220;But who really ever turns off javascript?&#8221;, well I say why on earth do &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/11/08/likecom-forgot-the-basics/" class="more-link">Continue reading<span class="screen-reader-text"> "Like.com forgot the basics"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.webthingsconsidered.com/wp-content/uploads/2006/11/logo-like.thumbnail.gif" alt="Like.com logo" /> <br />
Turn off javascript and try to do a search on the newly launched <a href="http://www.like.com">Like.com</a> (<a href="http://scobleizer.com/2006/11/08/riya-reborn-is-really-cool-way-to-search/">Scoble</a> and <a href="http://www.techcrunch.com/2006/11/08/riyas-likecom-is-first-true-visual-image-search/">TechCrunch</a> have more on the release).  What do you get?  Nothing.  This is a move sure to fire up accessibility advocates everywhere.  You may say &#8220;But who really ever turns off javascript?&#8221;, well I say why on earth do you need to write a series of javascript functions, have 15 javascript file includes, and wire up event handlers to submit your search form?  Why not keep it simple and let HTML and HTTP do a little work for you?</p>
<p>In looking at the source, I see they&#8217;re trying to set two things, a category to search within and the search query text.  Let&#8217;s find a much simpler way to do this that still keeps the form accessible.</p>
<p>Like.com version (minus some layout/styling markup and all of the javascript necessary to process it):<br />
<code></p>
<pre>
&lt;form class=&quot;searchform&quot; id=&quot;form1&quot;&gt;
    &lt;input name=&quot;mainSearchField&quot; id=&quot;mainSearchField&quot; type=&quot;text&quot;
        class=&quot;textareafont&quot; value=&quot;&quot; onkeypress=&quot;return searchEnter(event)&quot;&gt;
    &lt;a href=&quot;javascript:search()&quot;&gt;&lt;img src=&quot;pictures/searchbutton.gif&quot;
        width=&quot;81&quot; height=&quot;26&quot; align=&quot;middle&quot; border=&quot;0&quot;&gt;&lt;a&gt;
&lt;/form&gt;
</pre>
<p></code></p>
<p>What I would do (no javascript necessary to get the default action):<br />
<code></p>
<pre>
&lt;form action=&quot;search&quot; method=&quot;GET&quot; class=&quot;searchform&quot; id=&quot;form1&quot;&gt;
    &lt;input name=&quot;btnSearch&quot; type=&quot;hidden&quot; value=&quot;all&quot;&gt;
    &lt;input name=&quot;searchText&quot; type=&quot;text&quot; class=&quot;textareafont&quot; value=&quot;&quot;&gt;
    &lt;input type=&quot;image&quot; src=&quot;pictures/searchbutton.gif&quot; width=&quot;81&quot;
        height=&quot;26&quot; align=&quot;middle&quot; border=&quot;0&quot; &gt;
&lt;/form&gt;
</pre>
<p></code></p>
<p>Now the form works for everybody out of the gate and a user without javascript gets a search in the &#8220;all&#8221; category.  Add some javascript to set the hidden &#8220;btnSearch&#8221; field (which identifies the category) when the user clicks on one of the other categories (and optionally submits the form if there is a query already there).  The requirements may be more involved, but this is my 10-minute clean up.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/11/08/likecom-forgot-the-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Discovering top blogs on a specific topic (and Top .NET and PHP Blogs)</title>
		<link>https://www.webthingsconsidered.com/2006/11/07/discovering-top-blogs-on-a-specific-topic-and-top-net-and-php-blogs/</link>
		<comments>https://www.webthingsconsidered.com/2006/11/07/discovering-top-blogs-on-a-specific-topic-and-top-net-and-php-blogs/#comments</comments>
		<pubDate>Tue, 07 Nov 2006 21:58:00 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=178</guid>
		<description><![CDATA[How do you discover new blogs/feeds? The question becomes especially interesting when you want to start studying a new subject area. I checked out Share Your OPML, which certainly seems useful, but that only seems to be helpful for finding the most popular blogs overall or new blogs related to things you already have in &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/11/07/discovering-top-blogs-on-a-specific-topic-and-top-net-and-php-blogs/" class="more-link">Continue reading<span class="screen-reader-text"> "Discovering top blogs on a specific topic (and Top .NET and PHP Blogs)"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>How do you discover new blogs/feeds?  The question becomes especially interesting when you want to start studying a new subject area.  I checked out <a href="http://share.opml.org/">Share Your OPML</a>, which certainly seems useful, but that only seems to be helpful for finding the most popular blogs overall or new blogs related to things you already have in your subscription list, not really helpful for finding the top blogs in a new subject area.  I suppose <a href="http://www.toptensources.com/">Top 10 sources</a> could be helpful too, but I didn&#8217;t see anything that helped me.  I need to look at it a little further though.</p>
<p>I&#8217;m trying to track down a good list of top PHP bloggers in order to keep up with the latest in the PHP world, something I haven&#8217;t been doing over the last year.  It was a lot harder than I anticipated.  But, I got lucky and found an <a href="http://www-128.ibm.com/developerworks/opensource/library/os-php-read/">article</a> that listed several, then searched through <a href="http://del.icio.us/tag/php+blog">del.icio.us/tag/php+blog</a> (I dig tag combinations).</p>
<p>I&#8217;d love something like Share your OPML where you could upload multiple subscription lists and tag the list.  Anything in the tagged list then inherits the tag and you could find the top blogs for the tag.  Or if the OPML has parent outline elements (folders), the name could be used as the tag (therefore you&#8217;d have less work to do to break out your subscriptions).   <a href="http://www.google.com/reader">Google Reader</a> has some potential here to, seeing its use of tags and the feed bundles.  I wonder if they&#8217;ll expose the most popular subscriptions by tag? Anybody do anything like that already?</p>
<p>Any other tips for finding the top blogs on a specific topic?</p>
<p>I&#8217;ve gone ahead and published my .NET and PHP subscription lists (you don&#8217;t see those technologies combined together too often, now do ya?), but I&#8217;d love to see other good lists (on both technologies):</p>
<ul>
<li><a href="http://www.webthingsconsidered.com/dotnet-blogs.opml">Top .NET Blogs</a></li>
<li><a href="http://www.webthingsconsidered.com/php-blogs.opml">Top PHP Blogs</a></li>
</ul>
<p><a href="http://www.digg.com/programming/Discovering_top_blogs_on_a_specific_topic_and_Top_NET_and_PHP_Blogs">Digg this</a><br />
<a href="http://del.icio.us/post?url=http://www.webthingsconsidered.com/2006/11/07/discovering-top-blogs-on-a-specific-topic-and-top-net-and-php-blogs/">Bookmark in del.icio.us</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/11/07/discovering-top-blogs-on-a-specific-topic-and-top-net-and-php-blogs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>More Portland sites</title>
		<link>https://www.webthingsconsidered.com/2006/11/03/more-portland-sites/</link>
		<comments>https://www.webthingsconsidered.com/2006/11/03/more-portland-sites/#comments</comments>
		<pubDate>Fri, 03 Nov 2006 23:16:48 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=177</guid>
		<description><![CDATA[I&#8217;ve got such a backlog of half-written posts, who knows when they&#8217;ll ever get completed. Does every blogger have long list of partially completed stuff? Here&#8217;s a quick link list though. This week has seen a relative slew of new locally produced social sites to launch or that I noticed. Gone Raw PDX Web Innovators &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/11/03/more-portland-sites/" class="more-link">Continue reading<span class="screen-reader-text"> "More Portland sites"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve got such a backlog of half-written posts, who knows when they&#8217;ll ever get completed.  Does every blogger have long list of partially completed stuff?  Here&#8217;s a quick link list though.</p>
<p>This week has seen a relative slew of new locally produced social sites to launch or that I noticed.</p>
<p><a href="http://goneraw.com/">Gone Raw</a><br />
PDX Web Innovators Ray and Kandace from <a href="http://needmoredesigns.com/">Needmore Designs</a> launched their newest creation at the Wednesday meeting, which unfortunately I skipped this month, so I didn&#8217;t get to see it there.  Looks like a nice entry into the social food space and seems like a great site to help people get started and maintain when they go raw.  Gone Raw follows <a href="http://www.cuppin.com/">Cuppin&#8217;</a> which launched earlier this summer.</p>
<p><a href="http://www.artfaceoff.com/">Art Face Off</a><br />
Social networking company for artists, curators and art lovers. (<a href="http://emailer.emailroi.com/users/anvil/pdxMindShare_pdxMS103106.html">via</a>)</p>
<p><a href="http://www.12stepspace.com/">12 Step Space</a><br />
Recovery oriented social networking. (<a href="http://www.oregonlive.com/weblogs/techblog/index.ssf?/mtlogs/olive_tech/archives/2006_11.html#200586">via</a>)</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/11/03/more-portland-sites/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Portland Web 2.0 startup</title>
		<link>https://www.webthingsconsidered.com/2006/10/13/new-portland-web-20-startup/</link>
		<comments>https://www.webthingsconsidered.com/2006/10/13/new-portland-web-20-startup/#comments</comments>
		<pubDate>Fri, 13 Oct 2006 16:45:28 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=176</guid>
		<description><![CDATA[It&#8217;s rare that I get to use the Portland and Web 2.0 categories on this blog, so this is big news. The newest Portland Web 2.0 startup, stikkit, will be publicly unveiling at the Web 2.0 conference (via evhead). Looks like a lot of familiar names behind this project, so it should be interesting. Good &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/10/13/new-portland-web-20-startup/" class="more-link">Continue reading<span class="screen-reader-text"> "New Portland Web 2.0 startup"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>It&#8217;s rare that I get to use the Portland and Web 2.0 categories on this blog, so this is big news.  The newest Portland Web 2.0 startup, <a href="http://stikkit.com/">stikkit</a>, will be publicly unveiling at the Web 2.0 conference (via <a href="http://evhead.com/2006/10/stikkit-on-launch-pad.asp">evhead</a>).  Looks like a lot of familiar names behind this project, so it should be interesting.  Good luck guys.</p>
<p>See previous discussion of the Portland web startup scene <a href="http://www.webthingsconsidered.com/2006/08/22/list-of-seattle-startups/">here</a> and <a href="http://www.webthingsconsidered.com/2006/06/22/attensa-a-connected-innovator-and-other-portland-thoughts/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/10/13/new-portland-web-20-startup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t let Scoble manage your money</title>
		<link>https://www.webthingsconsidered.com/2006/10/12/dont-let-scoble-manage-your-money/</link>
		<comments>https://www.webthingsconsidered.com/2006/10/12/dont-let-scoble-manage-your-money/#comments</comments>
		<pubDate>Thu, 12 Oct 2006 12:24:32 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Personal Finance]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=175</guid>
		<description><![CDATA[Not just rich people buy Playstations and Xboxâ€™s This is just ridiculous. It sickens me to see people advocating the use of credit to buy these types of things. If you need credit to buy a HDTV and gaming system, then you don&#8217;t need a HDTV and gaming system. Use cash or save for it. &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/10/12/dont-let-scoble-manage-your-money/" class="more-link">Continue reading<span class="screen-reader-text"> "Don&#8217;t let Scoble manage your money"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://scobleizer.wordpress.com/2006/10/11/not-just-rich-people-buy-playstations-and-xboxs/">Not just rich people buy Playstations and Xboxâ€<img src="https://s.w.org/images/core/emoji/11/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" />s</a><br />
This is just ridiculous.  It sickens me to see people advocating the use of credit to buy these types of things.  If you need credit to buy a HDTV and gaming system, then you don&#8217;t need a HDTV and gaming system.  Use cash or save for it.  Period.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/10/12/dont-let-scoble-manage-your-money/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Portland version of Bare Naked App</title>
		<link>https://www.webthingsconsidered.com/2006/10/11/portland-version-of-bare-naked-app/</link>
		<comments>https://www.webthingsconsidered.com/2006/10/11/portland-version-of-bare-naked-app/#respond</comments>
		<pubDate>Thu, 12 Oct 2006 04:24:58 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>
		<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=174</guid>
		<description><![CDATA[Zack Jenks, a portland web developer, is chronicling his experience building a web business. Much like the Carsons&#8217; Bare Naked App, Zach shares his status and frustrations as the site comes together. Being in a similar situation, I always appreciate getting a window into another devrepreneur&#8217;s mind, so this should be interesting to keep an &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/10/11/portland-version-of-bare-naked-app/" class="more-link">Continue reading<span class="screen-reader-text"> "Portland version of Bare Naked App"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.someventure.com/">Zack Jenks</a>, a portland web developer, is chronicling his experience building a web business.  Much like the Carsons&#8217; <a href="http://www.barenakedapp.com/">Bare Naked App</a>, Zach shares his status and frustrations as the site comes together.  Being in a similar situation, I always appreciate getting a window into another devrepreneur&#8217;s mind, so this should be interesting to keep an eye on.</p>
<p>We&#8217;ll have to get Zack out ot the PDX Web Innovators next month.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/10/11/portland-version-of-bare-naked-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Money stuff</title>
		<link>https://www.webthingsconsidered.com/2006/10/11/money-stuff/</link>
		<comments>https://www.webthingsconsidered.com/2006/10/11/money-stuff/#respond</comments>
		<pubDate>Thu, 12 Oct 2006 04:13:46 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Personal Finance]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=173</guid>
		<description><![CDATA[I haven&#8217;t been keeping up with the money blogs very well lately, but I did catch a couple of personal finance bits of note lately. Dilbert&#8217;s 9-point financial plan I think this is some very sound advice. You really don&#8217;t need to get that complicated with how you manage your money. Moneyhacks and Get Rich &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/10/11/money-stuff/" class="more-link">Continue reading<span class="screen-reader-text"> "Money stuff"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I haven&#8217;t been keeping up with the money blogs very well lately, but I did catch a couple of personal finance bits of note lately.</p>
<p><a href="http://www.marketwatch.com/News/Story/Story.aspx?guid=%7BBE57F0AA%2D03D9%2D4320%2DBC4D%2D83363B6372F6%7D">Dilbert&#8217;s 9-point financial plan</a><br />
I think this is some very sound advice.  You really don&#8217;t need to get that complicated with how you manage your money.</p>
<p><a href="http://www.moneyhacks.org/">Moneyhacks</a> and <a href="http://www.getrichslowly.org/blog/">Get Rich Slowly</a><br />
J.D. started <a href="http://www.getrichslowly.org/blog/">Get Rich Slowly</a> about six months ago and has quickly risen to the top tier of the money bloggers (see <a href="http://www.pfblog.org/">pfblog.org</a> to learn more about money blogs).  He happens to be from Portland, so it&#8217;s great to see the locals doing well.  He recently added another blog, moneyhacks, focused more on tools and tips.  J.D. was kind enough to <a href="http://www.moneyhacks.org/2006/10/05/networthiq-free-on-line-net-worth-tracker/">include NetworthIQ</a> last week.</p>
<p><a href="http://www.opensecrets.org/pfds/overview.asp">CRP: Personal Financial Disclosure Reports</a><br />
The Center for Responsive Politics has published a fascinating look at what lawmakers are worth.  Make of it what you will.  But, with elections around the corner, it&#8217;s an interesting data point to consider.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/10/11/money-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another idea bites the dust</title>
		<link>https://www.webthingsconsidered.com/2006/10/03/another-idea-bites-the-dust/</link>
		<comments>https://www.webthingsconsidered.com/2006/10/03/another-idea-bites-the-dust/#comments</comments>
		<pubDate>Tue, 03 Oct 2006 23:21:11 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=172</guid>
		<description><![CDATA[Last month I mentioned Cambrian House as a place to share business ideas and possibly have them devloped by a crowdsourced team. The idea I submitted there was a social network for health type thing and it got shot down pretty good unfortunately. The idea was in the middle of my idea list, and it &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/10/03/another-idea-bites-the-dust/" class="more-link">Continue reading<span class="screen-reader-text"> "Another idea bites the dust"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Last month I <a href="http://www.webthingsconsidered.com/2006/08/17/cambrian-house-are-ideas-really-worthless/">mentioned Cambrian House</a> as a place to share business ideas and possibly have them devloped by a crowdsourced team.  The <a href="http://www.cambrianhouse.com/idea-warz/idea-promoter/ideas-id/kFLjkyt/">idea I submitted there</a> was a social network for health type thing and it got shot down pretty good unfortunately.  The idea was in the middle of my idea list, and it was more an experiment with Cambrian House, but I still thought it wasn&#8217;t that bad.</p>
<p>Well what do you know, today I discovered <a href="http://www.organizedwisdom.com/">OrganizedWisdom</a>, which is a social network for health information (via <a href="http://mashable.com/2006/10/03/organizedwisdom-launches-social-network-for-health/">Mashable</a>).     Time will tell I suppose, but maybe my idea wasn&#8217;t that bad after all, and what does that say about Cambrian House?  Goes to show there&#8217;s probably always somebody out there thinking about the same thing.  This also reminds of when <a href="http://www.webthingsconsidered.com/2006/03/10/so-many-ideas-so-little/">Minti came out</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/10/03/another-idea-bites-the-dust/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>nPost.com entrepreneur networking event</title>
		<link>https://www.webthingsconsidered.com/2006/10/02/npostcom-entrepreneur-networking-event/</link>
		<comments>https://www.webthingsconsidered.com/2006/10/02/npostcom-entrepreneur-networking-event/#respond</comments>
		<pubDate>Tue, 03 Oct 2006 04:54:38 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=171</guid>
		<description><![CDATA[nPost.com is coming to town again next week with their second Portland networking event. I went to the first one in August and had a good time. This is a general entrepreneur event, along the lines of an OEF event, but with a youger crowd. Their site is also a great resource for entrepreneurs, featuring &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/10/02/npostcom-entrepreneur-networking-event/" class="more-link">Continue reading<span class="screen-reader-text"> "nPost.com entrepreneur networking event"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.npost.com">nPost.com</a> is coming to town again next week with their second <a href="http://www.npost.com/events.html#101006">Portland networking event</a>.  I went to the first one in August and had a good time.  This is a general entrepreneur event, along the lines of an OEF event, but with a youger crowd.  Their site is also a great resource for entrepreneurs, featuring many great interviews and a northwest focused job board.</p>
<p>I&#8217;m adding nPost to the <a href="http://www.webthingsconsidered.com/2006/03/14/portland-technology-groups/">Portland Technology/Entrepreneur group list</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/10/02/npostcom-entrepreneur-networking-event/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDX Web Innovators &#8211; October</title>
		<link>https://www.webthingsconsidered.com/2006/09/30/pdx-web-innovators-october/</link>
		<comments>https://www.webthingsconsidered.com/2006/09/30/pdx-web-innovators-october/#respond</comments>
		<pubDate>Sun, 01 Oct 2006 00:03:24 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[PDX Web Innovators]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=170</guid>
		<description><![CDATA[We&#8217;re set for the October PDX Web Innovators meeting. Same place, same time, details at Upcoming.org. If you&#8217;re in the Portland area and interested in the web (developer, designer, entrepreneur, whatever), come talk about your projects and interests with your fellow web geeks. Wednesday, October 4, 2006 7:00 PM Equator Coffee Cafe 510 SE Morrison &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/09/30/pdx-web-innovators-october/" class="more-link">Continue reading<span class="screen-reader-text"> "PDX Web Innovators &#8211; October"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>We&#8217;re set for the October PDX Web Innovators meeting.  Same place, same time, details at <a href="http://upcoming.org/event/111520">Upcoming.org</a>. If you&#8217;re in the Portland area and interested in the web (developer, designer, entrepreneur, whatever), come talk about your projects and interests with your fellow web geeks.</p>
<p>Wednesday, October 4, 2006<br />
7:00 PM<br />
Equator Coffee Cafe<br />
510 SE Morrison<br />
Portland, Oregon</p>
<p>Keep up to date with the PDX Web Innovators via the <a href="http://groups.google.com/group/pdxwebInnovators">Google Group</a>.</p>
<p>Tags: <a href="http://technorati.com/tag/pdx" rel="tag" class="techtag">pdx</a> <a href="http://technorati.com/tag/portland" rel="tag" class="techtag">portland</a> <a href="http://technorati.com/tag/web" rel="tag" class="techtag">web</a> <a href="http://technorati.com/tag/web2.0" rel="tag" class="techtag">web2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/09/30/pdx-web-innovators-october/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 2.0 Job/Gig/Matchmaking Board Roundup</title>
		<link>https://www.webthingsconsidered.com/2006/09/28/web-20-jobgigmatchmaking-board-review/</link>
		<comments>https://www.webthingsconsidered.com/2006/09/28/web-20-jobgigmatchmaking-board-review/#comments</comments>
		<pubDate>Fri, 29 Sep 2006 04:31:03 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Business]]></category>
		<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=169</guid>
		<description><![CDATA[We all got a good laugh (at least I got a good laugh) out of Richard MacManus&#8217;s job board announcement, but reality is stranger than fiction sometimes, as they still just keep coming. So, I thought I&#8217;d take a moment to recap. It&#8217;s been a while since I&#8217;ve actually looked for work, but if I &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/09/28/web-20-jobgigmatchmaking-board-review/" class="more-link">Continue reading<span class="screen-reader-text"> "Web 2.0 Job/Gig/Matchmaking Board Roundup"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>We all got a good laugh (at least I got a good laugh) out of Richard MacManus&#8217;s <a href="http://www.readwriteweb.com/archives/links_30aug06.php">job board announcement</a>, but reality is stranger than fiction sometimes, as they still just keep coming.  So, I thought I&#8217;d take a moment to recap.  It&#8217;s been a while since I&#8217;ve actually looked for work, but if I ever need to again, I&#8217;m honestly glad there are so many resources available now.  Down with Monster.com and HotJobs!</p>
<p><strong>Aggregators</strong><br />
Why search so many places, when these guys bring everything to you?  And by everything, I mean everything.  Of course it depends on how focused your search is, but be prepared to mine though a lot of listings.</p>
<ul>
<li><a href="http://www.simplyhired.com/">SimplyHired</a></li>
<li><a href="http://www.indeed.com/">Indeed</a></li>
<li><a href="http://railsrelated.com/">Rails Related Jobs</a> &#8211; Ruby on Rails Specific aggregrator</li>
</ul>
<p><strong>Social networking</strong><br />
What you get when you combine social networking with a job site.</p>
<ul>
<li><a href="http://www.jobster.com">Jobster</a></li>
<li><a href="http://www.whototalkto.com/">Whototalkto.com</a></li>
</ul>
<p><strong>Niche job boards</strong><br />
Sure, they all have their own audience right? Wrong.  But, hey it&#8217;s easy money so who can blame them.  Seriously though, if you&#8217;re looking for full-time work in a specific industry/field, these are much more focused than the big job sites.</p>
<ul>
<li><a href="http://jobs.37signals.com/jobs">37signals Job Board</a> &#8211; design, development, business</li>
<li><a href="http://jobs.techcrunch.com/">CrunchBoard</a> &#8211; design, development, business</li>
<li><a href="http://gigaomjobs.com/">GigaOM Jobs</a> &#8211; design, development, business (I&#8217;m sensing a pattern here)</li>
<li><a href="http://www.paidcontent.org/c/jobs">paidContent.org Jobs</a> &#8211; mostly business</li>
<li><a href="http://jobs.joelonsoftware.com/">jobs.joelonsoftware.com</a> &#8211; Software Development</li>
<li><a href="http://www.authenticjobs.com/">Authentic Jobs</a> &#8211; Web Design &#038; Development</li>
<li><a href="http://www.thinkvitamin.com/jobs/">Think Vitamin Job Board</a> &#8211; Web related</li>
<li><a href="http://www.npost.com/jobs.jsp">Npost</a> &#8211; tech startup related, mostly northwest</li>
<li><a href="http://jobs.codebetter.com/">jobs.codebetter.com</a> &#8211; Software/Web Development</li>
<li><a href="http://jobs.venturebeat.com/">Venture Beat Job Board</a> &#8211; high-end management, tech, finance ($100,000+) </li>
<li><a href="http://jobs.techgigger.com/">TechGigger Jobs</a> &#8211; start-up jobs</li>
<li><a href="http://cssbeauty.com/jobs/">CSS Beauty Job Board</a> &#8211; web design/development</li>
<li><a href="http://jobs.problogger.net/">Problogger Job Board</a> &#8211; blogging jobs</li>
<li><a href="http://jobs.originalsignal.com/">jobs.originalsignal.com</a> &#8211; aggregates many of these sites</li>
</ul>
<p><strong>Gigs</strong><br />
You&#8217;re a contract/freelance web professional and you want to get paid for your work?  Check these out.  You think TechCrunch is going to add a gig board now?</p>
<ul>
<li><a href="http://www.authenticjobs.com/">Authentic Jobs</a></li>
<li><a href="http://gigs.37signals.com/">37signals</a></li>
<li><a href="http://www.odesk.com/">oDesk</a> &#8211; want to work remotely, but have big brother watch your every move?  Yikes.</li>
</ul>
<p><strong>Matchmaking</strong><br />
These don&#8217;t necessarily pay, but if you&#8217;re looking for help on that hot startup idea or looking for the next Sergey &#038; Larry to hook up with, they&#8217;re worth checking out.</p>
<ul>
<li><a href="http://programmermeetdesigner.com/">Programmer Meet Designer</a></li>
<li><a href="http://www.buildv1.com/">Buildv1</a></li>
<li><a href="http://www.gobignetwork.com/Default.aspx">Go Big Network</a></li>
<li><a href="http://www.oregonstartups.com/index.php?module=pnForum&#038;func=viewforum&#038;forum=3">OregonStartups.com</a> &#8211; (Portland/Oregon specific)</li>
</ul>
<p><strong>Crowd sourcing</strong><br />
Have some time and want to tackle some tasks that may earn you some cash?  Then crowdsourcing may be for you.</p>
<ul>
<li><a href="http://www.cambrianhouse.com/">CambrianHouse</a></li>
</ul>
<p><strong>Green Jobs</strong><br />
This category isn&#8217;t really tech/web2.0 specific, but if you&#8217;re as concerned about the environment as Al Gore is, then this could be your ticket to doing something about it.</p>
<ul>
<li><a href="http://www.sustainablebusiness.com/jobs/">Green Dream Jobs</a></li>
<li><a href="http://jobs.treehugger.com/">TreeHugger Jobs</a></li>
</ul>
<p><strong>Managing your search</strong><br />
We wouldn&#8217;t be truly Web 2.0 without something to manage all of this, what with the todo managers, time trackers, etc. growing like weeds.</p>
<ul>
<li><a href="http://isabont.com/pages/">Isabont</a></li>
</ul>
<p>What did I miss?  Add other job sites/board that you like?</p>
<p><a href="http://www.digg.com/tech_news/Web_2_0_Job_Gig_Matchmaking_Board_Review">Digg this</a><br />
<a href="http://del.icio.us/post?url=http://www.webthingsconsidered.com/2006/09/28/web-20-jobgigmatchmaking-board-review/">Bookmark in del.icio.us</a></p>
<p>Tags: <a href="http://www.technorati.com/tag/jobs" rel="tag">jobs</a> <a href="http://www.technorati.com/tag/jobboard" rel="tag">jobboard</a> <a href="http://www.technorati.com/tag/web2.0" rel="tag">web2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/09/28/web-20-jobgigmatchmaking-board-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Lucky, perhaps, but there is more to the story of Ducks big win</title>
		<link>https://www.webthingsconsidered.com/2006/09/20/lucky-perhaps-but-there-is-more-to-the-story-of-ducks-big-win/</link>
		<comments>https://www.webthingsconsidered.com/2006/09/20/lucky-perhaps-but-there-is-more-to-the-story-of-ducks-big-win/#respond</comments>
		<pubDate>Wed, 20 Sep 2006 23:09:53 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=168</guid>
		<description><![CDATA[Football is in the air again and that means I can root for the Ducks again instead of congratulating the beavers. Like most Duck fans, I was a bit delirious on Saturday after the big win over Oklahoma. Honestly, I had pretty much given up hope after Dixon&#8217;s second interception. I mean, how are you &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/09/20/lucky-perhaps-but-there-is-more-to-the-story-of-ducks-big-win/" class="more-link">Continue reading<span class="screen-reader-text"> "Lucky, perhaps, but there is more to the story of Ducks big win"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Football is in the air again and that means I can root for the Ducks again instead of <a href="http://www.webthingsconsidered.com/2006/06/27/osu-wins/">congratulating the beavers</a>.  Like most Duck fans, I was a bit delirious on Saturday after the big win over Oklahoma.  Honestly, I had pretty much given up hope after Dixon&#8217;s second interception.  I mean, how are you supposed to win the game if your offense can&#8217;t stay on the field for more than a play or two?  But, I kept watching, because who knows, right?  Well, the unthinkable happened and the Ducks scored 14 points and blocked an OU field goal in the last 1:22 of the game.</p>
<p>Now, they had a little help from a disputed onside kick.  Well, as there usually is, there&#8217;s more to the story about why the play was not <a href="http://www.oregonlive.com/sports/oregonian/john_canzano/index.ssf?/base/sports/1158639907304430.xml&#038;coll=7">overruled by the replay official</a> (sorry for the annoying oregon live survey, they really need to get rid of that).  Turns out the replay official may have got the video late, didn&#8217;t have the same angles as ABC did, and was being pressured to make a call.  In such situations, the replay official goes with the call on the field.  Seems logical to me.  Sure, if it happened to my team, I&#8217;d be pissed.  Still, I&#8217;m not going to feel guilty about this win, because Oklahoma choked at the end giving up those two touchdowns and geting the kick blocked.  They still had plenty of opportunity to win the game even with the bad call.</p>
<p>But, to me, the most interesting thing from that article was that the replay offical is paid $400 a game.  So, you spend all this money implementing replay, for which decisions can mean millions of dollars in bowl revenue, and you pay $400?  Something doesn&#8217;t seem right about that.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/09/20/lucky-perhaps-but-there-is-more-to-the-story-of-ducks-big-win/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The results of having a successful API</title>
		<link>https://www.webthingsconsidered.com/2006/09/20/the-results-of-having-a-successful-api/</link>
		<comments>https://www.webthingsconsidered.com/2006/09/20/the-results-of-having-a-successful-api/#respond</comments>
		<pubDate>Wed, 20 Sep 2006 16:46:25 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=167</guid>
		<description><![CDATA[APIs were the topic at our Septemeber Web Innovators meeting and Adam has some notes. On the topic of what companies get out of having an API, if it&#8217;s good enough, people will write books about it. We&#8217;ve seen it with the Google Hacks and Amazon Hacks books and now the trend continues with a &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/09/20/the-results-of-having-a-successful-api/" class="more-link">Continue reading<span class="screen-reader-text"> "The results of having a successful API"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>APIs were the topic at our Septemeber Web Innovators meeting and <a href="http://adamduvander.com/projects/the-two-types-of-apis">Adam has some notes</a>.  On the topic of what companies get out of having an API, if it&#8217;s good enough, <a href="http://blog.programmableweb.com/?p=412">people will write books about it</a>.  We&#8217;ve seen it with the Google Hacks and Amazon Hacks books and now the trend continues with a line of Flickr books.  I&#8217;d argue that this is a good sign that your service has arrived, helps to increase mindshare and gets more people using your service, which ultimately will increase the bottom line.  But, again the key here is it has to be from a service that&#8217;s compelling enough.  So, producing an API to your new web service is probably not important to get in the intial set of features.  But, if your service starts to gain traction, you better be considering it.</p>
<p>Also, related to the topic of making a service better through their API, check out <a href="http://www.moo.com/">Moo.com</a>, which for $20 will make a set of minicards from your Flickr photos.  I&#8217;d say that&#8217;s a good use of an API.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/09/20/the-results-of-having-a-successful-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net Neutrality important?  What about corporate neutrality?</title>
		<link>https://www.webthingsconsidered.com/2006/09/14/net-neutrality-important-what-about-corporate-neutrality/</link>
		<comments>https://www.webthingsconsidered.com/2006/09/14/net-neutrality-important-what-about-corporate-neutrality/#comments</comments>
		<pubDate>Fri, 15 Sep 2006 04:41:23 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=166</guid>
		<description><![CDATA[I don&#8217;t talk a whole lot about my day job here. Some of my readers may know for whom I work, and some even work there with me (hi guys), and I don&#8217;t plan to say much beyond this post. It&#8217;s a good company, and I enjoy the work, the people and the other important &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/09/14/net-neutrality-important-what-about-corporate-neutrality/" class="more-link">Continue reading<span class="screen-reader-text"> "Net Neutrality important?  What about corporate neutrality?"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I don&#8217;t talk a whole lot about my day job here.  Some of my readers may know for whom I work, and some even work there with me (hi guys), and I don&#8217;t plan to say much beyond this post.  It&#8217;s a good company, and I enjoy the work, the people and the other important part of working.</p>
<p>Today, I was taken completely aback because the company began implementing a major internet filtering policy, and I mean major.  I&#8217;m still investigating the full scope, but here&#8217;s a taste:</p>
<ul>
<li><a href="http://www.youtube.com">YouTube</a>, blocked.</li>
<li><a href="http://www.myspace.com">MySpace</a> (and pretty much any other social networking site out there), blocked.</li>
<li><a href="http://www.odeo.com">Odeo</a>, blocked.</li>
<li><a href="http://www.upcoming.org">Upcoming.org</a>, blocked.</li>
<li><a href="http://www.apple.com/itunes/">iTunes</a> (at least podcasts), blocked.</li>
<li>Any type of streaming (flash audio/video, QuickTime, etc.), blocked.</li>
</ul>
<p>Now for the good news.  Apparently, straight mp3 files are fine to download, RSS feeds and BlogLines is safe, and for those interested in the social networking scene, <a href="http://www.dogster.com">the pets</a> are still ok.</p>
<p>I&#8217;m sure the guys at <a href="http://www.techdirt.com">TechDirt</a> would have something insightful to say about this, linking to studies showing how internet use is not that big of a deal and actually helps employees be more productive.  Unfortunately, the company is entitled to do whatever it wants, and if it feels it needs to do this to save bandwidth, protect its systems, and maintain efficient work flow, well they have the right.  I just won&#8217;t get to send around any of funny YouTube videos, listen to internet radio, watch movie trailers, check out the latest in social media (I&#8217;m thinking the company doesn&#8217;t have much of interest in understanding or using social media), or easily listen to podcasts.  And like with any filtering technology, it will block something that would help me perform my job better, and then I&#8217;ll have to submit a request to unblock it or just go without it.  Not the end of the world, but still, it will be an inconvenience.</p>
<p>Why post this then?  Well, it got me thinking, and I don&#8217;t claim this to terribly insightful, that maybe the whole <a href="http://en.wikipedia.org/wiki/Net_neutrality">Net Neutrality</a> debate is not the biggest danger to the internet.  Maybe when companies and schools start following this example and shutting their employees and students out (<a href="http://www.techcrunch.com/2006/07/27/us-house-resolution-targeting-myspace-web20-passes-410-15/">as the government is already working on</a>), and since I&#8217;m guessing that&#8217;s where a lot of people use the internet most, that will be a huge hit to many web sites and communities?  I&#8217;m thinking that wouldn&#8217;t be a good thing.  What do you think?</p>
<p><strong>Update</strong><br />
Added upcoming.org to the list.  I can&#8217;t believe they blocked that one.  Ridiculous.</p>
<p>Tags: <a href="http://technorati.com/tag/youtube" rel="tag">youtube</a> <a href="http://technorati.com/tag/myspace" rel="tag">myspace</a> <a href="http://technorati.com/tag/filtering" rel="tag">filtering</a> <a href="http://technorati.com/tag/itunes" rel="tag">itunes</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/09/14/net-neutrality-important-what-about-corporate-neutrality/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>PDX Web Innovators tonight</title>
		<link>https://www.webthingsconsidered.com/2006/09/06/pdx-web-innovators-tonight/</link>
		<comments>https://www.webthingsconsidered.com/2006/09/06/pdx-web-innovators-tonight/#respond</comments>
		<pubDate>Wed, 06 Sep 2006 21:33:53 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=165</guid>
		<description><![CDATA[I wish I&#8217;d gotten to this sooner, but better late than never. Tonight is the night for the September PDX Web Innovators meeting. Check out the details at Upcoming.org. Would you look at that, we have a TOPIC!! Thanks to Adam for suggesting it. So, all you Portland web people come on out if you &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/09/06/pdx-web-innovators-tonight/" class="more-link">Continue reading<span class="screen-reader-text"> "PDX Web Innovators tonight"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I wish I&#8217;d gotten to this sooner, but better late than never.  Tonight is the night for the September PDX Web Innovators meeting.  Check out the <a href="http://upcoming.org/event/103531/">details</a> at Upcoming.org.  Would you look at that, we have a TOPIC!!  Thanks to <a href="http://adamduvander.com/">Adam</a> for suggesting it.  So, all you Portland web people come on out if you can and give your $.02 or just meet some fellow web geeks.</p>
<p>To keep up to date with the group, use our ultra-modern web 2.0 discussion software over at Google Groups:<br />
<a href="http://groups.google.com/group/pdxwebInnovators">http://groups.google.com/group/pdxwebInnovators</a></p>
<p>Here are some related API resources if you feel like studying up:</p>
<ul>
<li><a href="http://www.programmableweb.com/">ProgrammableWeb</a> (discussion and api/mashup listings)</li>
<li><a href="http://particletree.com/features/how-to-add-an-api-to-your-web-service/">How to Add an API to your Web Service</a> (howto)</li>
<li><a href="http://www.apifinder.com/">APIFinder</a> (listing)</li>
<li><a href="http://www.sourcelabs.com/blogs/ajb/2006/08/how_to_provide_a_web_api.html">How To Provide A Web API</a> (another howto)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/09/06/pdx-web-innovators-tonight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dare depressed about unoriginality&#8230; yet works for Microsoft?</title>
		<link>https://www.webthingsconsidered.com/2006/08/31/dare-depressed-about-unoriginality-yet-works-for-microsoft/</link>
		<comments>https://www.webthingsconsidered.com/2006/08/31/dare-depressed-about-unoriginality-yet-works-for-microsoft/#respond</comments>
		<pubDate>Fri, 01 Sep 2006 05:06:00 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=164</guid>
		<description><![CDATA[I think a healthy dose of cynicism is a good thing and I&#8217;ve really enjoyed Dare&#8217;s blog over the years. In fact RSS Bandit was my first reader and really got me into the whole blog thing. I stopped using it when I realized it was too big of a pain keeping client readers updated &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/08/31/dare-depressed-about-unoriginality-yet-works-for-microsoft/" class="more-link">Continue reading<span class="screen-reader-text"> "Dare depressed about unoriginality&#8230; yet works for Microsoft?"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I think a healthy dose of cynicism is a good thing and I&#8217;ve really enjoyed Dare&#8217;s blog over the years.  In fact RSS Bandit was my first reader and really got me into the whole blog thing.  I stopped using it when I realized it was too big of a pain keeping client readers updated and syndicated and switched to BlogLines.  Anyway, I about choked on my lunch today when I saw his comment about <a href="http://www.25hoursaday.com/weblog/PermaLink.aspx?guid=5248bf3b-2a9a-446d-b81c-d6187b64b39a">Web 2.0 sites being unoriginal</a> in their use of AJAX, Tagging, APIs, etc.  This coming from from someone who works for a company (and even team I think?) that this week released <a href="http://qna.live.com/">Windows Live QNA</a>, which is perhaps the most unoriginal app I have seen in a long time (hello, yahoo called and what&#8217;s their app back), and is perhaps one of the most unoriginal companies ever (ok, they invented AJAX, I&#8217;ll give them some credit).</p>
<p>Admittedly, Microsoft has executed unoriginality better than anyone in history and better than the current crop of Web 2.0 startups, especially since they have paying customers.  But, my point is you don&#8217;t have to be original to be successful, and Web 2.0 founders will find their way with experimenting with these features.  We should all think hard about the value of adding these types of features and strive to come up with innovative stuff, but it&#8217;s certainly not sad or depressing to see people give entrepreneurship a go.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/08/31/dare-depressed-about-unoriginality-yet-works-for-microsoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySpace founder from Portland</title>
		<link>https://www.webthingsconsidered.com/2006/08/30/myspace-founder-from-portland/</link>
		<comments>https://www.webthingsconsidered.com/2006/08/30/myspace-founder-from-portland/#respond</comments>
		<pubDate>Thu, 31 Aug 2006 00:42:03 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>
		<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=163</guid>
		<description><![CDATA[Along the same lines as the UserPlane founders, turns out Chris DeWolfe, one of the founders of the vaunted MySpace, grew up in Portland (via John Cook), before ultimately migrating south to make it big.]]></description>
				<content:encoded><![CDATA[<p>Along the same lines as the UserPlane founders, turns out Chris DeWolfe, one of the founders of the vaunted MySpace, <a href="http://money.cnn.com/magazines/fortune/fortune_archive/2006/09/04/8384727/dewolfe.html">grew up in Portland</a> (via <a href="http://blog.seattlepi.nwsource.com/venture/archives/106249.asp?source=rss">John Cook</a>), before ultimately migrating south to make it big.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/08/30/myspace-founder-from-portland/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Movietally &#8211; keep track of movies you&#8217;ve watched</title>
		<link>https://www.webthingsconsidered.com/2006/08/29/movietally-keep-track-of-movies-youve-watched/</link>
		<comments>https://www.webthingsconsidered.com/2006/08/29/movietally-keep-track-of-movies-youve-watched/#respond</comments>
		<pubDate>Wed, 30 Aug 2006 05:18:22 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=162</guid>
		<description><![CDATA[I Discovered MovieTally today (via eHub). It&#8217;s a real basic, neat little app that let&#8217;s you keep track of movies you watch and ones you want to see. I was thinking of something like this just last week as movies are a common/easy discussion starter around the water cooler and I always seem to forget &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/08/29/movietally-keep-track-of-movies-youve-watched/" class="more-link">Continue reading<span class="screen-reader-text"> "Movietally &#8211; keep track of movies you&#8217;ve watched"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I Discovered <a href="http://www.movietally.com/">MovieTally</a> today (via <a href="http://www.emilychang.com/go/ehub/">eHub</a>).  It&#8217;s a real basic, neat little app that let&#8217;s you keep track of movies you watch and ones you want to see.  I was thinking of something like this just last week as movies are a common/easy discussion starter around the water cooler and I always seem to forget what I&#8217;ve seen recently.  By keeping an inventory, it will be much easier to remind myself.</p>
<p>Now, I&#8217;m not a Netflix user, so I imagine there&#8217;s something like this built-in to it?  I know Blockbuster online had this, but who uses them (other than for the free trial anyway).  And, of course there&#8217;s also <a href="http://www.imdb.com">IMDB</a> which has some ability to make lists of movies.</p>
<p>As far as Movietally goes, I dig the basic idea, and see some potential there to be an extremely sticky and fun site.  But, there needs to be a lot more data to seed the system.  There is a very small amount of movies in there, requiring users to build the database.  It would be a whole lot nicer if the data was already in there (movies, directors, actors, acresses, etc) making the search more effective and decreasing the amount of work a user has to do.  Perhaps using IMDB data which is <a href="http://www.imdb.com/interfaces">available</a> (but maybe not free) would be good start.  There are <a href="http://radar.oreilly.com/archives/2006/05/imdb_api_1.html">continuing rumors</a> of an IMDB API too, and Movietally would be an excellent use case for it.  But, who knows where that&#8217;s at?  The tagging approach is ok, but tag suggestions (what other tags have people used) on the add page would be helpful.  I wouldn&#8217;t mind seeing clean urls too, making it easily hackable.</p>
<p>Other reviews:<br />
<a href="http://www.postbubble.com/2006/08/30/movietally-attempts-to-tally-up-movies/">PostBubble sinks MovieTally</a>, with a focus on the movie review aspect, which I barely took notice of in my first pass.  Though the reviews could be valuable long-term, I looked at it as solving my problem with remembering what I&#8217;ve watched and hopefully finding some related movies to check out, which while minor, is still a pain-point.</p>
<p><strong>Update</strong><br />
MovieTally got <a href="http://www.techcrunch.com/2006/10/02/movietally-netflixs-missing-features/">written up by TechCrunch</a> this week.  Turns out it was built by a 15-year old.  Nice work.</p>
<p>Tags: <a href="http://www.technorati.com/tag/movietally" rel="tag">movietally</a> <a href="http://www.technorati.com/tag/imdb" rel="tag">imdb</a> <a href="http://www.technorati.com/tag/api" rel="tag">api</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/08/29/movietally-keep-track-of-movies-youve-watched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oregon baseball makes another run</title>
		<link>https://www.webthingsconsidered.com/2006/08/23/oregon-baseball-makes-another-run/</link>
		<comments>https://www.webthingsconsidered.com/2006/08/23/oregon-baseball-makes-another-run/#respond</comments>
		<pubDate>Thu, 24 Aug 2006 03:52:27 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=161</guid>
		<description><![CDATA[Just a couple months after Oregon State&#8217;s run through the college world series, another team from Oregon is making a run. This time it&#8217;s Murray Hill (Beaverton) shooting for the little league world championship, having now reached the US final. I actually lived in the area when I first moved to Portland after college and &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/08/23/oregon-baseball-makes-another-run/" class="more-link">Continue reading<span class="screen-reader-text"> "Oregon baseball makes another run"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Just a couple months after <a href="http://www.webthingsconsidered.com/2006/06/27/osu-wins/">Oregon State&#8217;s run</a> through the college world series, another team from Oregon is making a run.  This time it&#8217;s Murray Hill (Beaverton) shooting for the little league world championship, having now <a href="http://sportsillustrated.cnn.com/2006/baseball/more/08/23/bc.bby.littleleague.ap/index.html">reached the US final</a>.  I actually lived in the area when I first moved to Portland after college and still work just down the road, so it&#8217;s a very close connection.</p>
<p>I think it&#8217;s awesome they&#8217;re doing so well.  But, there needs to be some sense talked into those coaches, letting a 13 year old throw 115 pitches or whatever it was in Monday&#8217;s game.  Yeah, Jace Frye is a great pitcher, it would just be shame to see his arm finished before he even gets to high school.  I can understand this being a once in a lifetime opportunity, and doing what you gotta do to win, but a line needs to be drawn somewhere.</p>
<p>BTW, did you see that <a href="http://sports.espn.go.com/sports/llws06/news/story?id=2555788">13 year-old from Saudi Arabia</a> who was 6&#8217;8&#8243;?  Unbelieveable!</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/08/23/oregon-baseball-makes-another-run/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kiko auction pulled?</title>
		<link>https://www.webthingsconsidered.com/2006/08/23/kiko-auction-pulled/</link>
		<comments>https://www.webthingsconsidered.com/2006/08/23/kiko-auction-pulled/#respond</comments>
		<pubDate>Wed, 23 Aug 2006 17:04:35 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=160</guid>
		<description><![CDATA[Checked on the Kiko auction (the AJAX calendaring app) today and it&#8217;s been pulled. What&#8217;s the scoop? I was curious to see the result. There was a bidder earlier this week. Update Looks like it was just an eBay technicality that forced them to re-list, here&#8217;s the current auction. Tags: web2.0 kiko]]></description>
				<content:encoded><![CDATA[<p>Checked on the <a href="http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&#038;item=120021374185">Kiko auction</a> (the AJAX calendaring app) today and it&#8217;s been pulled.  What&#8217;s the scoop?  I was curious to see the result. There was a bidder earlier this week.</p>
<p><strong>Update</strong><br />
Looks like it was just an eBay technicality that forced them to re-list, here&#8217;s the <a href="http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&#038;item=120024164593">current auction</a>.</p>
<p>Tags: <a href="http://www.technorati.com/tag/web2.0" rel="tag">web2.0</a> <a href="http://www.technorati.com/tag/kiko" rel="tag">kiko</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/08/23/kiko-auction-pulled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of Seattle startups</title>
		<link>https://www.webthingsconsidered.com/2006/08/22/list-of-seattle-startups/</link>
		<comments>https://www.webthingsconsidered.com/2006/08/22/list-of-seattle-startups/#comments</comments>
		<pubDate>Tue, 22 Aug 2006 21:00:36 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>
		<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=159</guid>
		<description><![CDATA[Here&#8217;s a list of Seattle internet startups ranked by Alexa traffic (via Mike Davidson). Wow, that&#8217;s a long freakin&#8217; list! P-town has a long way to go, and this is a great example for my point at the nPost event last week about how Portland&#8217;s a great city, but we just don&#8217;t see the same &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/08/22/list-of-seattle-startups/" class="more-link">Continue reading<span class="screen-reader-text"> "List of Seattle startups"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s a list of <a href="http://glinden.blogspot.com/2006/08/seattle-internet-startups-ordered-by.html">Seattle internet startups</a> ranked by Alexa traffic (via <a href="http://www.mikeindustries.com/blog/archive/2006/08/newsviner-gets-on-the-ohio-ballot">Mike Davidson</a>).  Wow, that&#8217;s a long freakin&#8217; list!  P-town has a long way to go, and this is a great example for my point at the <a href="http://www.npost.com/">nPost</a> event last week about how Portland&#8217;s a great city, but we just don&#8217;t see the same level of startup activity right now.</p>
<p>Also interesting to note that the <a href="http://www.userplane.com">UserPlane</a> (company <a href="http://www.techcrunch.com/2006/08/14/userplane-purchased-by-aol/">acquired by AOL</a> last week) fouders <a href="http://www.oregonlive.com/business/oregonian/index.ssf?/base/business/1156220709294800.xml&#038;coll=7">are from Oregon</a>.  Glad to see the local connection.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/08/22/list-of-seattle-startups/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Business Basics for Engineers</title>
		<link>https://www.webthingsconsidered.com/2006/08/21/business-basics-for-engineers/</link>
		<comments>https://www.webthingsconsidered.com/2006/08/21/business-basics-for-engineers/#respond</comments>
		<pubDate>Tue, 22 Aug 2006 02:26:47 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=158</guid>
		<description><![CDATA[Business Basics for Engineers appears to be an oldy, but a very helpful resource for those interested in the nuts and bolts of putting a startup business together. I&#8217;ve read many posts by various VC and entrepreneur bloggers on the topic and this ranks among the best. Tags: startup entrepreneur]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.sfu.ca/~mvolker/biz/index.htm">Business Basics for Engineers</a> appears to be an oldy, but a very helpful resource for those interested in the nuts and bolts of putting a startup business together.  I&#8217;ve read many posts by various VC and entrepreneur bloggers on the topic and this ranks among the best.</p>
<p>Tags: <a href="http://www.techorati.com/tag/startup" rel="tag">startup</a> <a href="http://www.techorati.com/tag/entrepreneur" rel="tag">entrepreneur</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/08/21/business-basics-for-engineers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cambrian House idea approved</title>
		<link>https://www.webthingsconsidered.com/2006/08/19/cambrian-house-idea-approved/</link>
		<comments>https://www.webthingsconsidered.com/2006/08/19/cambrian-house-idea-approved/#respond</comments>
		<pubDate>Sat, 19 Aug 2006 14:25:44 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=157</guid>
		<description><![CDATA[My idea was approved, now it&#8217;s on to the IdeaWarz. Feel free to vote for it if you feel so inclined. Tags: cambrianhouse crowdsourcing]]></description>
				<content:encoded><![CDATA[<p>My idea was approved, now it&#8217;s on to the IdeaWarz.  Feel free to vote for it if you feel so inclined.</p>
<p><a href="http://www.cambrianhouse.com/idea-warz/idea-promoter/ideas-id/kFLjkyt/" title="Support My Idea at Cambrian House" target="_blank"><img src="http://www.cambrianhouse.com/0xdeadbeef/pixel-my-idea.gif" height="33" width="33" alt="Support My Idea at Cambrian House" /></a></p>
<p>Tags: <a href="http://www.technorati.com/tag/cambrianhouse" rel="tag">cambrianhouse</a> <a href="http://www.technorati.com/tag/crowdsourcing" rel="tag">crowdsourcing</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/08/19/cambrian-house-idea-approved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Average</title>
		<link>https://www.webthingsconsidered.com/2006/08/19/average/</link>
		<comments>https://www.webthingsconsidered.com/2006/08/19/average/#respond</comments>
		<pubDate>Sat, 19 Aug 2006 14:23:22 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=156</guid>
		<description><![CDATA[The latest entrant into the Web 2.0 tracking game came out this week with Seth Godin&#8217;s Web 2.0 Traffic Watch List at alexaholic. NetworthIQ is at 441, pretty much right in the middle.]]></description>
				<content:encoded><![CDATA[<p>The latest entrant into the <a href="http://www.webthingsconsidered.com/2006/02/14/tracking-web-20/">Web 2.0 tracking</a> game came out this week with <a href="http://www.alexaholic.com/sethgodin">Seth Godin&#8217;s Web 2.0 Traffic Watch List</a> at alexaholic.</p>
<p><a href="http://www.networthiq.com">NetworthIQ</a> is at 441, pretty much right in the middle.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/08/19/average/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cambrian House &#8211; Are ideas really worthless?</title>
		<link>https://www.webthingsconsidered.com/2006/08/17/cambrian-house-are-ideas-really-worthless/</link>
		<comments>https://www.webthingsconsidered.com/2006/08/17/cambrian-house-are-ideas-really-worthless/#comments</comments>
		<pubDate>Thu, 17 Aug 2006 13:31:08 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=155</guid>
		<description><![CDATA[I signed up for Cambrian House last night in an attempt to see if ideas are in fact worth anything. Cambrian House is attempting to capitalize on the &#8220;crowdsourcing&#8221; movement, which merges a few concepts like &#8220;Wisdom of crowds&#8221; and open-source software, to enable teams to come together and develop commercially viable products. I&#8217;m intrigued &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/08/17/cambrian-house-are-ideas-really-worthless/" class="more-link">Continue reading<span class="screen-reader-text"> "Cambrian House &#8211; Are ideas really worthless?"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I signed up for <a href="http://www.cambrianhouse.com/">Cambrian House</a> last night in an attempt to see if ideas are in fact worth anything.  Cambrian House is attempting to capitalize on the &#8220;<a href="http://www.wired.com/wired/archive/14.06/crowds.html">crowdsourcing</a>&#8221; movement, which merges a few concepts like &#8220;Wisdom of crowds&#8221; and open-source software, to enable teams to come together and develop commercially viable products.</p>
<p>I&#8217;m intrigued because I&#8217;ve got a few ideas kicking around and figure it&#8217;s worth a shot to see if they can be developed through Cambrian House where otherwise they would languish in my project queue probably never to see the light of day.  I submitted one idea and it&#8217;s currently pending, so I&#8217;ll update its progress here as the experiment progresses.</p>
<p>For freelancers (designers and developers), I also see this as a cool way to perhaps pick up some work.  But, I believe it&#8217;s way too early to tell how lucrative this all will be.</p>
<p>Tags: <a href="http://www.technorati.com/tag/cambrianhouse" rel="tag">cambrianhouse</a> <a href="http://www.technorati.com/tag/crowdsourcing" rel="tag">crowdsourcing</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/08/17/cambrian-house-are-ideas-really-worthless/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Kiko for sale</title>
		<link>https://www.webthingsconsidered.com/2006/08/16/kiko-for-sale/</link>
		<comments>https://www.webthingsconsidered.com/2006/08/16/kiko-for-sale/#respond</comments>
		<pubDate>Wed, 16 Aug 2006 23:10:07 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=154</guid>
		<description><![CDATA[I can&#8217;t say I&#8217;m surprised to see Kiko for sale on eBay (via OnStartups). Not that I thought Kiko was bad (though it ran up against Google as noted previously), but because I agree with Dharmesh and think this will become a rather common occurence in the not so distant future. With all of these &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/08/16/kiko-for-sale/" class="more-link">Continue reading<span class="screen-reader-text"> "Kiko for sale"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I can&#8217;t say I&#8217;m surprised to see <a href="http://www.kiko.com">Kiko</a> for sale on <a href="http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&#038;item=120021374185">eBay</a> (via <a href="http://onstartups.com/Home/tabid/3339/articleType/ArticleView/articleId/800/Hindsight20LessonsFromAFailedWeb20Startup.aspx">OnStartups</a>).  Not that I thought Kiko was bad (though it ran up against Google as <a href="http://www.webthingsconsidered.com/2005/12/13/online-calendars/">noted previously</a>), but because I agree with Dharmesh and think this will become a rather common occurence in the not so distant future.</p>
<p>With all of these Web 2.0 sites coming out, it&#8217;s easy for them to fade away and get lost in the noise.  When the founders realize that they&#8217;re spending all their time on something that isn&#8217;t meeting their goals and expectations (whether monetary or something else), they&#8217;ll try to sell it and find something better to spend their time on.  Why do I think this?  Because I&#8217;ve had these thoughts about <a href="http://www.networthiq.com">NetworthIQ</a>, and I&#8217;m sure there are hundreds of others who have considered it as well.  It&#8217;s business.  Fortunately, I&#8217;m not competing against Google and I still have a lot to do before I reach that point.</p>
<p>But, before we get all sensationalistic and start saying this is the start of Crash 2.0, let&#8217;s take a step back.  The high number of new startups/sites shouldn&#8217;t be considered a bad thing that we become too <a href="http://www.dead20.com">cynical</a> about.  If these entrepreneurs succeed, awesome.  If not, think of all that&#8217;s being learned.  Whether it&#8217;s gaining skills and experience in software development, or business, these experiences can only make us stronger (as a friend told me, it&#8217;s &#8220;skill-building&#8221;).  Nobody is getting hurt, and the good ones will rise above the noise.  The Web is not going away.  Just be careful, as <a href="http://ricksegal.typepad.com/pmv/2006/08/rmail_just_solv.html">Rick Segal</a> mentions, not to forget about your day job too soon.</p>
<p>I say ignore all this &#8220;bubble 2.0&#8221; talk.  Investors should be smart enough to identify good risks (note the word &#8220;risk&#8221;), it&#8217;s their job, and there will not be a dot.com public market crash this time because the overwhelming majority of these companies will not go public.</p>
<p>(more on the <a href="http://kiko.infogami.com/blog/final">Kiko blog</a> and of course <a href="http://www.techcrunch.com/2006/08/16/ajax-calendar-kikocom-goes-on-ebay-offers-to-delete-accounts/">TechCrunch also weighs in</a>)</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/08/16/kiko-for-sale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Goodbye Basecamp</title>
		<link>https://www.webthingsconsidered.com/2006/08/12/goodbye-basecamp/</link>
		<comments>https://www.webthingsconsidered.com/2006/08/12/goodbye-basecamp/#comments</comments>
		<pubDate>Sat, 12 Aug 2006 20:44:29 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=153</guid>
		<description><![CDATA[Hello activeCollab. I&#8217;ve been wanting to have more projects in Basecamp for a while, but am extremely resistant to shelling out money on tools. Now, thanks to activeCollab, I don&#8217;t have to. I downloaded it earlier this week and was going to set it up on one of my domains, then I noticed that it &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/08/12/goodbye-basecamp/" class="more-link">Continue reading<span class="screen-reader-text"> "Goodbye Basecamp"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Hello <a href="http://www.activecollab.com/">activeCollab</a>.  I&#8217;ve been wanting to have more projects in <a href="http://www.basecamphq.com/">Basecamp</a> for a while, but am extremely resistant to shelling out money on tools.  Now, thanks to activeCollab, I don&#8217;t have to.  I downloaded it earlier this week and was going to set it up on one of my domains, then I noticed that it was a one-click install on <a href="http://www.dreamhost.com/rewards.cgi?mountaineer">Dreamhost</a> (affiliate).  Even better!  5 minutes and it was ready to go.</p>
<p>Now, it&#8217;s not a complete clone with features such as writeboards (use <a href="http://www.writely.com/">writely</a>) and time-tracking not there (a feature which I&#8217;ve yet to look at in basecamp), and I think basecamp feels a little smoother and more polished.  But, I can sacrifice these if it means it&#8217;s FREE!  (assuming you already have a hosting account or server).  Check out <a href="http://slackermanager.com/2006/07/basecamp-vs-activecollab.html">Slacker Manager</a> for more detailed comparison of the two</p>
<p>Now, here&#8217;s the thing, I&#8217;ve read comments defending the Basecamp business model, saying how activeCollab won&#8217;t make an impact because it&#8217;s not hosted and you have to install it.  Well, in my opinion, with the one-click install path, it&#8217;s easier to get activeCollab up and running than signing-up for Basecamp.  Plus you&#8217;ll have a full-fledged hosting account (which you can run other apps on), all for less than a Basecamp account. Finally, for the concerned corporate people, you can keep the app (and the data) behind the firewall.</p>
<p>As a side note, I feel myself tiring of 37signals.  I generally like their apps and message (I bought the 10 seat Getting Real to share with co-workers) and I&#8217;ve been inspired in many ways by them.  But, I thought <a href="http://37signals.com/svn/archives2/dont_believe_businessweeks_bubblemath.php">this post</a> was complete bullshit.  I mean, it&#8217;s a freakin&#8217; magazine cover.  Misleading? Sure, but aren&#8217;t most?  That&#8217;s how they get people to buy them.  37signals gets lots of press, but as soon as a Web 2.0ish article appears that doesn&#8217;t include them and includes companies not following their mantra of no VC, they have to get all pissy.  Let the guys enjoy their press.  Digg may not sell for $200 million now, but it&#8217;s surely big enough to make Rose a lot of money someday.</p>
<p>Tags: <a href="www.technorati.com/tag/basecamp" rel="tag">basecamp</a> <a href="www.technorati.com/tag/activecollab" rel="tag">activecollab</a> <a href="www.technorati.com/tag/37signals" rel="tag">37signals</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/08/12/goodbye-basecamp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Vacation and NetworthIQ press</title>
		<link>https://www.webthingsconsidered.com/2006/08/09/vacation-and-networthiq-press/</link>
		<comments>https://www.webthingsconsidered.com/2006/08/09/vacation-and-networthiq-press/#comments</comments>
		<pubDate>Wed, 09 Aug 2006 23:56:27 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[NetworthIQ]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=152</guid>
		<description><![CDATA[Oh, and of course, if you&#8217;ve followed this blog for a while, you know that whenver I go on vacation, NetworthIQ gets some significant press exposure. Well, it happened again (the 3rd time in the last 12 months). Scott Burns, a syndicated financial columnist, included NetworthIQ in an article about Tricia, a personal finance blogger &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/08/09/vacation-and-networthiq-press/" class="more-link">Continue reading<span class="screen-reader-text"> "Vacation and NetworthIQ press"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Oh, and of course, if you&#8217;ve followed this blog for a while, you know that whenver I go on vacation, <a href="http://www.networthiq.com">NetworthIQ</a> gets some significant press exposure.  Well, it happened again (the 3rd time in the last 12 months).  <a href="http://www.dallasnews.com/business/scottburns/">Scott Burns</a>, a syndicated financial columnist, included NetworthIQ in an <a href="http://www.dallasnews.com/sharedcontent/dws/bus/scottburns/columns/2006/stories/DN-burns_06bus.ART0.State.Edition1.1f4b250.html">article</a> about <a href="http://www.bloggingawaydebt.com/">Tricia</a>, a personal finance blogger (and <a href="http://www.networthiq.com/people/Blogging_Away_Debt">one of our users</a>) chronicling her family&#8217;s climb out of debt.  Congrats for the writeup Tricia, and thanks Scott!  With the power of syndication, and the article being in Boston Globe, Dallas Morning News and several others, it looks like the impact was about equal to that of the <a href="http://www.webthingsconsidered.com/2006/02/23/networthiq-in-business-week/">Business Week article</a> earlier this year.</p>
<p>Still far short of the NY Times, but I&#8217;m not complaining</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/08/09/vacation-and-networthiq-press/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Plugged in again</title>
		<link>https://www.webthingsconsidered.com/2006/08/09/plugged-in-again/</link>
		<comments>https://www.webthingsconsidered.com/2006/08/09/plugged-in-again/#respond</comments>
		<pubDate>Wed, 09 Aug 2006 23:53:06 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=151</guid>
		<description><![CDATA[I&#8217;m on vacation this week and from last Friday until last night I was out of town and completly unplugged. No laptop, no Internet. It was a refreshing break from the constant information processing that usually marks my days (not that I&#8217;m complaining, I enjoy it tremendously). This year we headed off to see some &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/08/09/plugged-in-again/" class="more-link">Continue reading<span class="screen-reader-text"> "Plugged in again"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m on vacation this week and from last Friday until last night I was out of town and completly unplugged.  No laptop, no Internet.    It was a refreshing break from the constant information processing that usually marks my days (not that I&#8217;m complaining, I enjoy it tremendously).</p>
<p>This year we headed off to see some friends in northern Idaho, outside of Sandpoint.  It&#8217;s a beautiful area, and I&#8217;d recommend visiting if you ever get the chance.  With the lakes and mountains it really is a outdoorsman&#8217;s playground.  We stayed for a couple nights up at <a href="http://www.schweitzer.com/">Schweitzer</a> and were able to take a lift up to the top and hike down.  Too bad for the smoke coming over from various fires, because there was a bad haze that reduced visibility.  I imagine when it&#8217;s clear, you can see forever.  Speaking of forever, while driving from Tri-Cities to Spokane, is it just me, or is it impossible to tell where the earth ends and the sky begins?  It&#8217;s just so vast.  A good reminder of how small our little spot on earth is.</p>
<p>
I have to also say that the drive along the Gorge (between Boardman and Hood River) is one of the most calming drives out there.  The fact that I can say that while traveling with a 19-month old who has been in a car seat for 8 hours says a lot (there were enough choo choos to keep her entertained).  With the river and the rolling hills, it&#8217;s pretty cool.  Lots of wind surfers and kite boarders out on the water.  I wonder if <a href="http://www.west-wind.com/weblog/">Rick Strahl</a> was out there.</p>
<p>
So, now I&#8217;m back on the grid and checking out everything that I&#8217;ve missed over the last few days.  Looks like <a href="http://www.techcrunch.com/2006/08/06/aol-proudly-releases-massive-amounts-of-user-search-data/">AOL made quite the mistake</a> and Digg&#8217;s creator is rich (<a href="http://37signals.com/svn/archives2/dont_believe_businessweeks_bubblemath.php">or is he?</a>) according to Business Week.  Anything else I miss?</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/08/09/plugged-in-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site9 lands funding</title>
		<link>https://www.webthingsconsidered.com/2006/07/25/site9-lands-funding/</link>
		<comments>https://www.webthingsconsidered.com/2006/07/25/site9-lands-funding/#comments</comments>
		<pubDate>Wed, 26 Jul 2006 05:34:35 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=150</guid>
		<description><![CDATA[A couple weeks back, I noticed a piece in the Biz Journal feed about a web development firm called Site9 moving its corporate headquarters to Portland. I&#8217;ve never heard of them and from what I could tell they didn&#8217;t look that big to even need a corporate headquarters. But, that&#8217;s cool to have another web &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/07/25/site9-lands-funding/" class="more-link">Continue reading<span class="screen-reader-text"> "Site9 lands funding"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>A couple weeks back, I noticed a piece in the Biz Journal feed about a web development firm called <a href="http://www.site9.com/">Site9</a> moving its <a href="http://portland.bizjournals.com/portland/stories/2006/07/03/daily6.html">corporate headquarters to Portland</a>.  I&#8217;ve never heard of them and from what I could tell they didn&#8217;t look that big to even need a corporate headquarters.  But, that&#8217;s cool to have another web shop in town, no harm there.  Now, they&#8217;ve gone and <a href="http://portland.bizjournals.com/portland/stories/2006/07/24/daily8.html">raised some money</a>.  Again good for them, I&#8217;m happy to see people get a chance to build a business.</p>
<p>But, a couple of things struck me as a bit off.  I don&#8217;t really understand this software they need money to develop.  Pre-built, pluggable modules?  Seems like a tough market, as &#8220;automatic integration&#8221; into an existing website is a pipe dream (though many businesses could very well like to learn this the hard way) and using them to build a site from the ground up is a questionable approach.  For proprietary, little-used technology, it would be difficult to find somebody to maintain your site, but I guess Site9, like any good drug dealer (I mean web agency) will surely maintain it for you.</p>
<p>Then they go and try to attach themselves to web 2.0:</p>
<blockquote><p>&#8220;The Web site design and Web 2.0 software development firm&#8221;</p></blockquote>
<p>Hmmm, ok, if you say so.  Seems like a questionable use of Web 2.0 that contributes to its derision in cynic circles.  Finally there&#8217;s this:</p>
<blockquote><p>&#8220;Next-generation features like social networking, podcasting, video-on-demand, RSS feeds, AJAX interfaces and blogs are integrated into the tool.&#8221;</p></blockquote>
<p>A little buzzword happy are we?  I mean, c&#8217;mon where are the tags? And the APIs?  And mashups?  How can you be a Web 2.0 software development company without those? <img src="https://s.w.org/images/core/emoji/11/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>I wish them luck, but I think their marketing needs some tuning.  But, who knows, maybe it works, cuz it got me to blog about it.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/07/25/site9-lands-funding/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Picasa red-eye tool</title>
		<link>https://www.webthingsconsidered.com/2006/07/23/picasa-red-eye-tool/</link>
		<comments>https://www.webthingsconsidered.com/2006/07/23/picasa-red-eye-tool/#comments</comments>
		<pubDate>Sun, 23 Jul 2006 15:16:22 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=149</guid>
		<description><![CDATA[Is it just me, or is Picasa&#8216;s red-eye tool amazing?Â  So simple, so powerful.Â  Even though I&#8217;ve wound up with several tools for accomplishing different tasks (viewing, storing, searching, printing, editing), when it comes to editing Picasa is a thing of beauty. If you&#8217;re looking for a powerful, light-weight image management tool, check out my &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/07/23/picasa-red-eye-tool/" class="more-link">Continue reading<span class="screen-reader-text"> "Picasa red-eye tool"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Is it just me, or is <a href="http://picasa.google.com/">Picasa</a>&#8216;s red-eye tool amazing?Â  So simple, so powerful.Â  Even though I&#8217;ve wound up with several tools for accomplishing different tasks (viewing, storing, searching, printing, editing), when it comes to editing Picasa is a thing of beauty.</p>
<p>If you&#8217;re looking for a powerful, light-weight image management tool, check out my colleague <a href="http://teamjohnston.net/cs/blogs/jesse/default.aspx">Jesse</a>&#8216;s <a href="http://www.teamjohnston.net/clickHappy.aspx">clickHappy</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/07/23/picasa-red-eye-tool/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Proving Mike Davidson right</title>
		<link>https://www.webthingsconsidered.com/2006/07/23/proving-mike-davidson-right/</link>
		<comments>https://www.webthingsconsidered.com/2006/07/23/proving-mike-davidson-right/#comments</comments>
		<pubDate>Sun, 23 Jul 2006 15:01:15 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=148</guid>
		<description><![CDATA[No, not trying to suck up, just found that it was incredibly ironic proving one of his points from the Webvisions session. The point he made was that a person will try something out if they hear about it from two unrelated sources. On Thursday night I was catching up on my Wired reading while &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/07/23/proving-mike-davidson-right/" class="more-link">Continue reading<span class="screen-reader-text"> "Proving Mike Davidson right"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>No, not trying to suck up, just found that it was incredibly ironic proving one of his points from the <a href="http://www.webthingsconsidered.com/2006/07/21/webvisions-designing-for-community-interaction/">Webvisions</a> session.  The point he made was that a person will try something out if they hear about it from two unrelated sources.</p>
<p>On Thursday night I was catching up on my Wired reading while taking MAX home.  Flipping through, I caught a bit about a band called <a href="http://myspace.com/clapyourhandssayyeah">Clap Your Hands Say Yeah</a>, but didn&#8217;t really think anything more of it.  They&#8217;re apparently some hot new myspace/web band, but I&#8217;m afraid to say I must be so old and out of it that I had no idea.  Then Friday, while listening to the music panel at Webvisions, they mentioned this band like 10 times.  They said they weren&#8217;t very good, but something about the power of MySpace/internet is making them famous without the help of a label.  Any ideas what I&#8217;m listening to at the moment?</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/07/23/proving-mike-davidson-right/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Webvisions day 2</title>
		<link>https://www.webthingsconsidered.com/2006/07/21/webvisions-day-2/</link>
		<comments>https://www.webthingsconsidered.com/2006/07/21/webvisions-day-2/#comments</comments>
		<pubDate>Sat, 22 Jul 2006 05:40:08 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=147</guid>
		<description><![CDATA[Today was much, much better than yesterday. I drove today, MAX was too slow yesterday. MAX can be nice if you live close to it, but Sherwood is just too far away. Great sessions throughout the day with one exception. It&#8217;s interesting going to conferences in your hometown. I think you tend to miss out &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/07/21/webvisions-day-2/" class="more-link">Continue reading<span class="screen-reader-text"> "Webvisions day 2"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Today was much, much better than yesterday.  I drove today, MAX was too slow yesterday.  MAX can be nice if you live close to it, but Sherwood is just too far away.  Great sessions throughout the day with one exception.  It&#8217;s interesting going to conferences in your hometown.  I think you tend to miss out on a lot of the socializing because it&#8217;s more like a day at work.</p>
<p>It was a hot one in Portland, but you&#8217;d never know being in the convention center.  Did you know there are two (not one, but two) Starbucks in the convention center?  I guess it shouldn&#8217;t be too surprising though.  They were already getting setup for OSCON too.  Here&#8217;s my review of the day&#8217;s events:</p>
<ul>
<li><a href="http://www.webvisionsevent.com/schedule/detail/?evtloc=newsline">Designing for Community Interation</a>
<ul>
<li>(<a href="http://www.webthingsconsidered.com/2006/07/21/webvisions-designing-for-community-interaction/">notes</a>) This and Mullenweg&#8217;s were my favorite sessions.  I actually was looking forward to <a href="http://www.simplebits.com">Dan&#8217;s</a> session (Bulletproof web design), but thought this one would be better for me since I&#8217;ve seen Dan&#8217;s slides and can use the book.  <a href="http://www.mikeindustries.com/blog">Mike</a> was one of the first people I read when I discovered blogs a couple years ago, and this was my first chance to hear him speak.</li>
</ul>
</li>
<li><a href="http://www.webvisionsevent.com/schedule/detail/?evtloc=music_panel">The Evolution of the Music Industry</a>
<ul>
<li>I think this was probably the least attended session of the conference.  Too bad though, because it was really interesting talking about how the web (with MySpace a common thread), p2p, and other technologies are really changing the way music is produced, distributed and consumed.  The long-tail really comes into play with the decrease of the mega-hits and the rise of more bands with fragmenting audiences (or niches) and the &#8220;explosion of choice&#8221;.</li>
</ul>
</li>
<li><a href="http://www.webvisionsevent.com/schedule/detail/?evtloc=design_panel">Design Panel</a>
<ul>
<li>(<a href="http://www.brianoberkirch.com/?p=65">Brian&#8217;s notes</a>, and <a href="http://www.darowski.com/tracesofinspiration/2006/07/21/webvisions-2006-day-2-part-ii/">more notes</a>) I expected this one to be packed, and it was.  Good session all around.  I&#8217;m not a designer, but I do a lot of site deveopment/construction using web-standards (I&#8217;m very anal about markup).  I appreciate good-design and like to be reminded about why it&#8217;s important and all of the aspects that go into design.  Some light moments with a copywriter in the audience pitching her services not once, but twice.  But, it was a woman at a predominantly male event, so all is forgiven.</li>
</ul>
</li>
<li><a href="http://www.webvisionsevent.com/schedule/detail/?evtloc=beyond_content">Beyond Just Content: Websites as Interactive Applications</a>
<ul>
<li>Waste of time.  I wasted 30 minutes at this damn thing and all we got was a history of the internet and communication and (gasp) html forms.  I passed up part of a keynote for this?  I had thought this was going to be one of the better sessions to apply to my day job, talking about wikis, forums, blogs, etc.  I&#8217;ll never know, because I left to catch the second half of Luke William&#8217;s keynote.</li>
</ul>
</li>
<li><a href="http://www.webvisionsevent.com/schedule/detail/?evtloc=design_thinking_keynote">Keynote: The Naked Interface &#8211; Liberating Brain, Body and Digital Interactions</a>
<ul>
<li>Ahh, this is a presentation.  Even though I was in the overflow room, it was still cool.  I&#8217;ll link to some notes when I find some, it was too dark to take any.  But, in general it reminded me a lot of BJ Fogg&#8217;s presentation last year, as far as making things simpler (wine bottles don&#8217;t prompt you to upgrade).  Though this was more abstract.</li>
</ul>
</li>
<li><a href="http://www.webvisionsevent.com/schedule/detail/?evtloc=scaling_users">Scaling for Your First 100k Users</a>
<ul>
<li>(<a href="http://www.brianoberkirch.com/?p=69">Brian O&#8217;s notes</a>, <a href="http://www.webvisionsevent.com/wp/?p=18">notes</a>, and <a href="http://www.mickipedia.com/?p=461">more notes</a>)  Great session, almost as good as Mike D&#8217;s.  I can see why <a href="http://scobleizer.wordpress.com/">Scoble</a> likes <a href="http://photomatt.net">Matt</a> so much.  The guy&#8217;s extremely bright and it&#8217;s obvious that he&#8217;s going to make things happen in this industry whatever he works on.  He just started programming when he began on WordPress and the platform rocks.  Here I am a .Net dev primarily, but I love WordPress.   It&#8217;s just so simple and clean.  There&#8217;s a lot to be said for not devolving into a super complex object oriented architechture that tries to do much (ahem Community Server, DNN, SharePoint?).  I think there&#8217;s great opportunity with WordPress MU in the corporate space.  If someone packaged a nice web-based feed reader along with WordPress MU on an appliance, I think you could sell that to companies as an &#8220;instant internal blog server,&#8221; nodbody would have to install a thing on their desktop for reading feeds and every employee could have their own blog.</li>
<li>As <a href="http://adamduvander.com/simple/matt-mullenwegs-twelve-rules">Adam</a> points out, it wasn&#8217;t really about the technical part of scaling, more about how to grow your product.  However, there were a couple of technical points brought up in the Q&#038;A.</li>
<ol>
<li>No use of session state, all session-related/auth stuff is in a cookie.  This reduces the complexity of adding web nodes.</li>
<li>start with 2 db servers, figuring out how to partition data up front because going from two to three and more is much easier than one to two.  Also rather than one $150/month server, get 2 $75/month servers.</li>
<li>WordPress.com uses Round-robin DNS, no load balancing.</li>
<li>if you have a lot of tables (wordpress.com has into the millions, with a separate set of tables for each user) use ISAM because InnoDB claims a bit of a memory every time a table is opened, that is never released.</li>
</ol>
</ul>
</li>
<li><a href="http://www.webvisionsevent.com/schedule/detail/?evtloc=jared_spool_keynote">Keynote: The Dawning of the Age of Experience</a>
<ul>
<li>(<a href="http://www.darowski.com/tracesofinspiration/2006/07/21/webvisions-2006-day-2-part-ii">scroll down here for notes</a>, <a href="http://www.brianoberkirch.com/?p=70">Brian O&#8217;s notes</a>)  Jared&#8217;s the anti-designer.  Never designed a web site and it&#8217;s his life goal to not do so.  Usability/research guy.  Extremely funny though and a great speaker.  I was sad I had to duck out early.</li>
</ul>
</li>
</ul>
<p>That&#8217;s all.  If you&#8217;d like to continue the discussion in the Portland area, check out the <a href="http://groups.google.com/group/pdxwebInnovators">PDX Web Innovators</a> group.  We love talking about this stuff when we get together.</p>
<p><strong>Tags:</strong> <a rel="tag" href="http://www.technorati.com/tag/webvisions">webvisions</a>, <a rel="tag" href="http://www.technorati.com/tag/webvisions06">webvisions06</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/07/21/webvisions-day-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Webvisions: Designing for community interaction</title>
		<link>https://www.webthingsconsidered.com/2006/07/21/webvisions-designing-for-community-interaction/</link>
		<comments>https://www.webthingsconsidered.com/2006/07/21/webvisions-designing-for-community-interaction/#comments</comments>
		<pubDate>Sat, 22 Jul 2006 05:32:49 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=146</guid>
		<description><![CDATA[Speaker: Mike Davidson, CEO of Newsvine Lot&#8217;s of stuff about Newsvine and news sites, how design can enhance your product/community. News moving from pyramid to hourglass (comments being the bottom portion). Identify interaction goals (comments, stories, posts, etc.) Funny (but slightly controversial) riff on PeopleAggregrator and how horrible the design is and even though Marc &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/07/21/webvisions-designing-for-community-interaction/" class="more-link">Continue reading<span class="screen-reader-text"> "Webvisions: Designing for community interaction"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Speaker: <a href="http://www.mikeindustries.com/blog">Mike Davidson</a>, CEO of <a href="http://www.newsvine.com">Newsvine</a></p>
<ul>
<li>Lot&#8217;s of stuff about Newsvine and news sites, how design can enhance your product/community.</li>
<li>News moving from pyramid to hourglass (comments being the bottom portion).</li>
<li>Identify interaction goals (comments, stories, posts, etc.)</li>
<li>Funny (but slightly controversial) riff on <a href="http://peopleaggregator.net/homepage.php">PeopleAggregrator</a> and how horrible the design is and even though Marc is a smart guy, everybody is blowing it off because of the bad design.</li>
<li>Cork&#8217;d good because you learn about wine from common people/friends rather than wine afficianados. Not a myspace for wine drinkers because the focus is on talking about wine.</li>
<li>Friendster is only a social network, there&#8217;s nothing else to do (LinkedIn like it).</li>
<li>Flickr a photo site and a social network, it could exist without the social network. It&#8217;s a great place to &#8220;be a picture&#8221; (quote from Caterina?)</li>
<li>Concentrate on product first, then social features.</li>
<li>Active users vs. passive users, most (90%) are passive, get them to come back again and again.</li>
<li>Users need to hear about something from two unrelated places to try it.</li>
<li>Post-registration, let the user do more before throwing the registration wall.</li>
<li>Only collect as much information as you need</li>
<li>Give people something to do immediatly after registering</li>
<li>3 strategies (real information like banks require, anonymous,  and pseudo-anonymity).  Recommends pseudo-anonymity, because even though anonymous can be successful (nichen? paradox) because registration can keep out good posters, people get less out of being anonymous. People are looking to build up a reputation.  &#8220;Anonymous can&#8217;t counter sanity.&#8221;</li>
<li>Critique of fellow Seattle company <a href="http://www.judysbook.com">Judy&#8217;s Book</a>, and how it&#8217;s bad to give users a 0 &#8220;trust score&#8221; when they first sign up (telling a new user they&#8217;re bad). General discussion of repuation building.</li>
<li>Users are not stupid, just efficient (Veen quote)</li>
<li>Users confuse freedom of speech with membership (newsvine has a code of honor and rating system for comments)</li>
<li>Platform mostly open-source (PHP) but using SQL Server because the open-source db market still needs work.</li>
<li>Companies have inquired about buying Newsvine technology.</li>
</ul>
<p><strong>Tags:</strong> <a rel="tag" href="http://www.technorati.com/tag/webvisions">webvisions</a>, <a rel="tag" href="http://www.technorati.com/tag/webvisions06">webvisions06</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/07/21/webvisions-designing-for-community-interaction/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WebVisions day 1</title>
		<link>https://www.webthingsconsidered.com/2006/07/20/webvisions-day-1/</link>
		<comments>https://www.webthingsconsidered.com/2006/07/20/webvisions-day-1/#comments</comments>
		<pubDate>Fri, 21 Jul 2006 06:22:03 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=145</guid>
		<description><![CDATA[With WebVisions, code camp, and OSCON all around the same time, it&#8217;s tough deciding which one to go to. It always comes down to one since getting away from work two weeks in a row would be a challenge and burning a weekend at code camp wouldn&#8217;t fly at home. I&#8217;ve never gone to OSCON &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/07/20/webvisions-day-1/" class="more-link">Continue reading<span class="screen-reader-text"> "WebVisions day 1"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>With <a href="http://www.webvisionsevent.com/">WebVisions</a>, <a href="http://pdx.techevents.info/codecamp/2/default.aspx">code camp</a>, and <a href="http://conferences.oreillynet.com/os2006/">OSCON</a> all around the same time, it&#8217;s tough deciding which one to go to.  It always comes down to one since getting away from work two weeks in a row would be a challenge and burning a weekend at code camp wouldn&#8217;t fly at home.</p>
<p>I&#8217;ve never gone to OSCON and last year was my first year at WebVisions.  Though slanted mostly towards designers, there&#8217;s still enough for developers, marketers, entrepreneurs, etc. and I enjoyed it a lot.  Plus, even though I&#8217;m a developer primarily, my entrepreneurial leanings lead me to like the web/community/marketing discussions much more than discussions about the details of Ruby or open source software.  Though there&#8217;s definitely crossover in both conferences.</p>
<p>Anyway, WebVisions was the choice again this year and today was the first day.  I attended the &#8220;<a href="http://www.webvisionsevent.com/schedule/detail/?evtloc=professional_blogging">becoming a professional blogger</a>&#8221; session in the morning which was pretty good (Jeremiah <a href="http://www.web-strategist.com/blog/2006/07/20/webvisions-day-1-portland/">has some notes</a>, <a href="http://www.brianoberkirch.com/?p=59">Brian does too</a>).  Took the rest of the morning off because <a href="http://www.networthiq.com">NetworthIQ</a> was down and I was trying to get a release out for it at the same time (what do you think of the new look?).  Plus, they added more workshops to the conference this year and there was only one set of sessions for the conference-only attendees which meant overcrowded rooms if you could get in at all.Â  Went to lunch with some fellow pdxwi guys.<br />
For the afternoon, I went to the following sessions:</p>
<ul>
<li><a href="http://www.webvisionsevent.com/schedule/detail/?evtloc=social_media_in_business">Let Go, Jump In:  Community Marketing Strategies for Empowered Customers</a>
<ul>
<li>Good session (<a href="http://www.webvisionsevent.com/wp/?p=16">notes here</a>).  Picked up some good tips for adding community features to sites.  Was sad to miss the &#8220;Designing for social sharing&#8221; session though.</li>
</ul>
</li>
<li><a href="http://www.webvisionsevent.com/schedule/detail/?evtloc=ruby_on_rails">Ruby on Rails</a>
<ul>
<li>Disappointing.  I think I&#8217;m going to finally use rails on my next project, so was hoping to maybe pick some good stuff up.  The <a href="http://llor.nu/">llor.nu</a> game looks pretty cool, but I didn&#8217;t learn anything in this session.  The rails screencast teaches more IMO.  That&#8217;ll teach me to go to a dev/tech session at a designer&#8217;s conference.</li>
</ul>
</li>
<li><a href="http://www.webvisionsevent.com/schedule/detail/?evtloc=ajax_unleashed">The AJAX Experience</a>
<ul>
<li>(<a href="http://blogs.ebusiness-apps.com/alexei/?p=25">Alexei has notes</a>) I think Dave and eBA (now <a href="http://www.nitobi.com">Nitobi</a>) are some of the strongest AJAX guys out there, their stuff is sweet.  This session was focused on where/how to use AJAX as opposed to the technical details, along with the challenges and opportunities with it.  Good session.  Hope somebody took good notes, my laptop was dead.</li>
</ul>
</li>
</ul>
<p><strong>Tags:</strong> <a rel="tag" href="http://www.technorati.com/tag/webvisions">webvisions</a>, <a rel="tag" href="http://www.technorati.com/tag/webvisions06">webvisions06</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/07/20/webvisions-day-1/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>PDX Web Innovators meetup this week</title>
		<link>https://www.webthingsconsidered.com/2006/07/17/pdx-web-innovators-meetup-this-week/</link>
		<comments>https://www.webthingsconsidered.com/2006/07/17/pdx-web-innovators-meetup-this-week/#comments</comments>
		<pubDate>Mon, 17 Jul 2006 15:39:32 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=144</guid>
		<description><![CDATA[The PDX Web Innovators group is having a meetup this Wednesday at 7:00 (details here). With WebVisions starting on Thursday, this will be a good warm-up. We&#8217;d welcome any of the out of towners coming in Wednesday evening. The Rose &#038; Raindrop is not far from the Convention Center area.Â  PDX Web Innovators is essentially &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/07/17/pdx-web-innovators-meetup-this-week/" class="more-link">Continue reading<span class="screen-reader-text"> "PDX Web Innovators meetup this week"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>The PDX Web Innovators group is having a meetup this Wednesday at 7:00 (<a href="http://upcoming.org/event/91248">details here</a>).  With <a href="http://www.webvisionsevent.com/">WebVisions</a> starting on Thursday, this will be a good warm-up.</p>
<p>We&#8217;d welcome any of the out of towners coming in Wednesday evening.  The Rose &#038; Raindrop is not far from the Convention Center area.Â  PDX Web Innovators is essentially a group of web enthusiasts (developers, designers, entrepreneurs, project managers, etc.) who get together and talk about what&#8217;s going on with the web these days.  People like <a href="http://adamduvander.com/">Adam</a>, <a href="http://www.jaacob.com/">Jacob</a>, <a href="http://needmoredesigns.com/notes/">Ray &#038; Kandace</a>, <a href="http://kelly.staging.popart.com/">Kelly</a>, myself and many others have come out to the early meetups.</p>
<p>Hope to see you there.</p>
<p>Many people I read are coming to Portland this week, so I&#8217;ll invite a few by linking to them.  There are lots of great people coming, so all are invited, these are just the ones on my blogroll.</p>
<ul>
<li><a href="http://blogs.ebusiness-apps.com/dave">Dave Johnson</a></li>
<li><a href="http://www.simplebits.com/">Dan Cederholm</a></li>
<li><a href="http://www.mikeindustries.com/blog/">Mike Davidson</a></li>
<li><a href="http://looksgoodworkswell.blogspot.com/">Bill Scott</a></li>
<li><a href="http://www.lightbox5.com/likeitmatters/">Brian Oberkirch</a></li>
<li><a href="http://www.odannyboy.com/blog/">Dan Saffer</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/07/17/pdx-web-innovators-meetup-this-week/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Music API?</title>
		<link>https://www.webthingsconsidered.com/2006/07/15/music-api/</link>
		<comments>https://www.webthingsconsidered.com/2006/07/15/music-api/#comments</comments>
		<pubDate>Sat, 15 Jul 2006 16:29:16 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=143</guid>
		<description><![CDATA[I&#8217;m exploring some new project ideas and was wondering if anyone knew where to get an API for music, as in I&#8217;d like to know about artists, albums, songs, etc. Kind of like an IMDB for music with an open API? And free? I haven&#8217;t found anything yet. Seems like that could be a project &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/07/15/music-api/" class="more-link">Continue reading<span class="screen-reader-text"> "Music API?"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m exploring some new project ideas and was wondering if anyone knew where to get an API for music, as in I&#8217;d like to know about artists, albums, songs, etc.   Kind of like an IMDB for music with an open API?  And free?  I haven&#8217;t found anything yet.  Seems like that could be a project in of itself, but not quite what I&#8217;m looking to do.</p>
<p>There are a couple sites like <a href="http://www.allmusic.com">allmusic</a> and <a href="http://www.discogs.com">discogs</a> that have pretty extensive databases but no open api.  How do sites like <a href="http://www.last.fm">last.fm</a>, <a href="http://www.mystrands.com">mystrands</a>, <a href="http://search.mercora.com/msearch/index2.jsp">Mercora</a>, and <a href="http://www.audiri.com/">Audiri</a> get their data?  From <a href="http://www.muze.com">Muze</a>?  That looks spendy.</p>
<p><strong>Update</strong><br />
The <a href="http://musicbrainz.org/doc/Database">MusicBrainz</a> database looks like a good place to start.  I&#8217;d still like to see if there are others that I&#8217;m missing though.</p>
<p><strong>Update 2</strong><br />
<a href="http://webservices.rhapsody.com/">Rhapsody</a> has some web services, these might be helpful.</p>
<p><strong>Update 3</strong><br />
Thanks to the power of <a href="http://del.icio.us">del.icio.us</a> (which is becoming a very effective search tool), I found this list of <a href="http://blogs.sun.com/roller/page/plamere?entry=a_directory_of_web_services">music related web services</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/07/15/music-api/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Jot sucks</title>
		<link>https://www.webthingsconsidered.com/2006/06/28/jot-sucks/</link>
		<comments>https://www.webthingsconsidered.com/2006/06/28/jot-sucks/#comments</comments>
		<pubDate>Wed, 28 Jun 2006 23:15:34 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=142</guid>
		<description><![CDATA[It seems that Jot has removed our one page PDX Web Innovators wiki (http://pdxwebinnovators.jot.com/). Why would they do such a thing? Becuase it suffered a major case of comment spam and that caused the page count to be exceeded for the free plan. Sounds reasonable? Well, I see a few problems here: The fact that &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/06/28/jot-sucks/" class="more-link">Continue reading<span class="screen-reader-text"> "Jot sucks"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>It seems that <a href="http://www.jot.com">Jot</a> has removed our one page PDX Web Innovators wiki (http://pdxwebinnovators.jot.com/).  Why would they do such a thing?  Becuase it suffered a major case of comment spam and that caused the page count to be exceeded for the free plan.  Sounds reasonable?  Well, I see a few problems here:</p>
<ol>
<li>The fact that it was so easily comment spammed</li>
<li>The fact that comments are considered pages in their plans</li>
<li>I could find no way to mass delete comments and I was not about to delete several hundred of them by hand.</li>
<li>I replied to their automated warning (automated, but the from address was apparetnly an actual person, Michael Lee &#8211; mike@jot.com) about this issue and never got a response.</li>
</ol>
<p>Even though this was just a temporary home until the group can build something, I am not happy with this outcome.  Go use a competitor like <a href="http://pbwiki.com/">PBWiki</a> if you&#8217;re looking for a free hosted wiki.</p>
<p>Tags: <a rel="tag" href="http://www.technorati.com/tag/wiki">wiki</a> <a rel="tag" href="http://www.technorati.com/tag/jot">jot</a> <a rel="tag" href="http://www.technorati.com/tag/jotspot">jotspot</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/06/28/jot-sucks/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>OSU wins!</title>
		<link>https://www.webthingsconsidered.com/2006/06/27/osu-wins/</link>
		<comments>https://www.webthingsconsidered.com/2006/06/27/osu-wins/#comments</comments>
		<pubDate>Tue, 27 Jun 2006 14:47:35 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=141</guid>
		<description><![CDATA[Congratuations to the OSU Beavers, the 2006 NCAA Division I baseball champions.Â  Facing elimination 6 times in Omaha, the Beavs won all 6.Â  Unbelievable.Â  Oregonians everywhere, no matter a Duck or Beaver, are celebrating this tremendous accomplishment.]]></description>
				<content:encoded><![CDATA[<p><img alt="Oregon State Celebration" id="image111" src="http://www.webthingsconsidered.com/wp-content/uploads/2006/06/ncaa_a_oregonwins_412.jpg" /></p>
<p>Congratuations to the OSU Beavers, the <a href="http://sports.espn.go.com/ncaa/news/story?id=2501435">2006 NCAA Division I baseball champions</a>.Â  Facing elimination 6 times in Omaha, the Beavs won all 6.Â  Unbelievable.Â  Oregonians everywhere, no matter a Duck or Beaver, are celebrating this tremendous accomplishment.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/06/27/osu-wins/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Attensa a connected innovator (and other Portland thoughts)</title>
		<link>https://www.webthingsconsidered.com/2006/06/22/attensa-a-connected-innovator-and-other-portland-thoughts/</link>
		<comments>https://www.webthingsconsidered.com/2006/06/22/attensa-a-connected-innovator-and-other-portland-thoughts/#respond</comments>
		<pubDate>Fri, 23 Jun 2006 05:38:47 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=138</guid>
		<description><![CDATA[How ironic that Attensa came up in a conversation I had today and then saw that it was named a connected innovator at this week&#8217;s SuperNova conference. Congrats Attensa! As you can see from the Web 2.0 Innovation Map, there hasn&#8217;t been a lot of action in the Portland area, yet one of the three &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/06/22/attensa-a-connected-innovator-and-other-portland-thoughts/" class="more-link">Continue reading<span class="screen-reader-text"> "Attensa a connected innovator (and other Portland thoughts)"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>How ironic that <a href="http://www.attensa.com">Attensa</a> came up in a conversation I had today and then saw that it was <a href="http://www.supernova2006.com/go/connected-innovators">named a connected innovator</a> at this week&#8217;s SuperNova conference.  Congrats Attensa!  As you can see from the <a href="http://www.fourio.com/web20map">Web 2.0 Innovation Map</a>, there hasn&#8217;t been a lot of action in the Portland area, yet one of the three (and yes, I know how far behind I am on the map) got this nice accolade.     I consider Attensa web 2.0 for a few reasons: they&#8217;ve been on TechCrunch, they deal in RSS and aggregration and are working on solving the information overload problem.  I think that&#8217;s enough to qualify them as Web 2.0, despite <a href="http://craigslemonade.typepad.com/weblog">Craig&#8217;s</a> seeming resistance that label (Craig, you gotta edit those posts though, it&#8217;s &#8220;flickr&#8221; not &#8220;flicker&#8221; and &#8220;The Reserve&#8221; not &#8220;The Preserve&#8221;).</p>
<p>Some other good news too.  One of the other three Portland Web 2.0 companies on the map, <a href="http://www.platial.com">Platial</a> looks like they had a good week at <a href="http://conferences.oreillynet.com/where2006/">Where 2.0</a> last week and have been getting some GREAT press. <a href="http://www.cuppin.com/">Cuppin&#8217;</a> did aweome in the RailsDay competition and I&#8217;ll have to add it the map.  I&#8217;m continuing to push <a href="http://www.fourio.com">Fourio</a> / <a href="http://www.networthiq.com">NetworthIQ</a> as well, though there is much to be done there, and was even sourced in a recent <a href="http://www.emarketer.com/Report.aspx?moms_jul06">analyst report</a> on Family 2.0 sites. Pretty cool, but I&#8217;m not going to spend $700 just to see my name ;-).</p>
<p>So how is the Portland scene these days?  I found it interesting that Paul Graham mentioned Portland as a possible next <a href="http://www.paulgraham.com/siliconvalley.html">Silicon Valley</a>, yet <a href="http://blog.oef.org/2006/05/idaho_kicked_our_butt.html">Idaho is beating us</a>, there are only three flags on the Web2.0 map, and the <a href="http://www.oregonlive.com/business/oregonian/index.ssf?/base/front_page/1144461309319370.xml&#038;coll=7">Silicon Forest is struggling</a>.    Obviously there is a lot of work to do to meet that standard.  Open Source is big here with the OSDL and Linus in town.   But, where are the Internet startups?  Is it the supposed anti-business environment in the city and state?  Is it the struggles of the state education system?  Is it the fact that the biggest city in the state does not have the premier university?  Is it the local angel and VC market?  All issues I&#8217;ve heard mentioned by local entreprenuers, journalists and investors.  Is this something a half billion dollars in faculty hirings going to solve (refer to Graham&#8217;s essay)?  Well, I don&#8217;t see that happening.  But, if we can get a good cycle of successful entrepreneurs investing in other entrepreneurs like you see in Seattle and SV and continue to push the education angle, then I think you can start something.  It&#8217;s a chicken and the egg dilemma, isn&#8217;t it.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/06/22/attensa-a-connected-innovator-and-other-portland-thoughts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Go Beavs?</title>
		<link>https://www.webthingsconsidered.com/2006/06/22/go-beavs/</link>
		<comments>https://www.webthingsconsidered.com/2006/06/22/go-beavs/#respond</comments>
		<pubDate>Fri, 23 Jun 2006 04:22:07 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=137</guid>
		<description><![CDATA[Wow, as a die-hard Ducks fan, I can&#8217;t believe I&#8217;m actually thinking those words. With a win tonight finalizing their miraculous climb out of the loser&#8217;s bracket, the Oregon State Beavers have reached the final of the College World Series. Amazing is all I can say. I love college baseball, and considering OSU is the &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/06/22/go-beavs/" class="more-link">Continue reading<span class="screen-reader-text"> "Go Beavs?"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Wow, as a die-hard Ducks fan, I can&#8217;t believe I&#8217;m actually thinking those words.  With a <a href="http://sports.espn.go.com/ncaa/news/story?id=2497207">win tonight</a> finalizing their miraculous climb out of the loser&#8217;s bracket, the Oregon State Beavers have reached the final of the College World Series.   Amazing is all I can say.  I love college baseball, and considering OSU is the only varsity DI baseball program in the state I have been cheering for them and am excited to see them play this weekend.  This is huge for baseball in the state of Oregon and the entire Northwest even.  The U of O only has a club team for which I was a player/coach back in my college days, after not making the cut at OSU (and yet I&#8217;m not bitter ;-)).</p>
<p>Maybe <a href="http://www.oregonlive.com/sports/oregonian/index.ssf?/base/sports/1150948525136420.xml&#038;coll=7">Oregon will get a team</a> again someday and we&#8217;ll have Civil War in baseball.    But, until then I&#8217;ll be cheering for the Beavs in the springtime.  Come fall, the gloves are off.</p>
<p>Good luck in Omaha Beavs!</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/06/22/go-beavs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monetization happenings</title>
		<link>https://www.webthingsconsidered.com/2006/06/22/monetization-happenings/</link>
		<comments>https://www.webthingsconsidered.com/2006/06/22/monetization-happenings/#comments</comments>
		<pubDate>Thu, 22 Jun 2006 17:33:18 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=136</guid>
		<description><![CDATA[Couple of interesting bits recently. First, looks like Google may be readying a CommissionJunction rival. I think that would be pretty cool. We haven&#8217;t had a lot of success with affiliate marketing on NetworthIQ (ok, actually zero success as in not a single conversion) through CJ. But, I don&#8217;t really blame that on them. It &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/06/22/monetization-happenings/" class="more-link">Continue reading<span class="screen-reader-text"> "Monetization happenings"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Couple of interesting bits recently.  First, looks like Google may be <a href="http://mashable.com/2006/06/21/google-to-launch-a-commission-junction-rival/">readying a CommissionJunction rival</a>.  I think that would be pretty cool.  We haven&#8217;t had a lot of success with affiliate marketing on <a href="http://www.networthiq.com">NetworthIQ</a> (ok, actually zero success as in not a single conversion) through CJ.  But, I don&#8217;t really blame that on them.  It just hasn&#8217;t been a priority, so I haven&#8217;t done much research/tracking/experimenting, other than throwing a coupld LMB, ING, and Vonage ads up.  However, it never hurts to have competition in the market.</p>
<p>Then <a href="http://www.barenakedapp.com/the-idea/what-is-amigo">we finally learned</a> what <a href="http://www.heyamigo.net/">Amigo</a> is all about.  Adsense for newsletters.  Pretty simple, but one of those ideas that strike you as &#8220;hey, that&#8217;s pretty cool, hasn&#8217;t somebody done that already?&#8221;  I&#8217;ll try to give it shot, especially now that we have over 1000 subscribers to our newsletter.  Maybe this will be the motivation I need to actually send a newsletter consistently.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/06/22/monetization-happenings/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Accident on Mt. Hood</title>
		<link>https://www.webthingsconsidered.com/2006/06/18/accident-on-mt-hood/</link>
		<comments>https://www.webthingsconsidered.com/2006/06/18/accident-on-mt-hood/#comments</comments>
		<pubDate>Sun, 18 Jun 2006 16:37:52 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Fourio]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=135</guid>
		<description><![CDATA[Woke up this morning to quite the scare, hearing that friend and colleague Aaron, one of the four in Fourio, and his friends had been in an accident on Mt. Hood yesterday. I just talked to him and he was in good humor (I&#8217;m sure the pain medicine helped that), with a broken jaw being &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/06/18/accident-on-mt-hood/" class="more-link">Continue reading<span class="screen-reader-text"> "Accident on Mt. Hood"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Woke up this morning to quite the scare, hearing that friend and colleague Aaron, one of the four in <a href="http://www.fourio.com">Fourio</a>, and his friends had been in an <a href="http://www.oregonlive.com/newsflash/national/index.ssf?/base/national-66/1150633156112780.xml&#038;storylist=ornational">accident on Mt. Hood</a> yesterday.  I just talked to him and he was in good humor (I&#8217;m sure the pain medicine helped that), with a broken jaw being the most serious injury.  I know Aaron and his team are very experienced climbers, and I&#8217;m sure that training helped prevent further problems.</p>
<p>Here&#8217;s wishing Aaron and Jeremy a speedy recovery.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/06/18/accident-on-mt-hood/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oregon news on Techdirt</title>
		<link>https://www.webthingsconsidered.com/2006/06/16/oregon-news-on-techdirt/</link>
		<comments>https://www.webthingsconsidered.com/2006/06/16/oregon-news-on-techdirt/#respond</comments>
		<pubDate>Sat, 17 Jun 2006 04:48:46 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=134</guid>
		<description><![CDATA[Good to see Oregon in the news on Techdirt.Â  Nothing like making the state proud, eh?Â  I wonder if it was a Windows machine and if so, I&#8217;d be curious to know how Steve Ballmer feels now?]]></description>
				<content:encoded><![CDATA[<p>Good to see Oregon in the <a href="http://techdirt.com/articles/20060616/1624246.shtml">news on Techdirt</a>.Â  Nothing like making the state proud, eh?Â  I wonder if it was a Windows machine and if so, I&#8217;d be curious to know how <a href="http://www.oregonlive.com/business/oregonian/index.ssf?/base/business/1147227935161150.xml&#038;coll=7">Steve Ballmer</a> feels now?</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/06/16/oregon-news-on-techdirt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cuppin&#8217; watch</title>
		<link>https://www.webthingsconsidered.com/2006/06/16/cuppin-watch/</link>
		<comments>https://www.webthingsconsidered.com/2006/06/16/cuppin-watch/#comments</comments>
		<pubDate>Sat, 17 Jun 2006 04:32:25 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=133</guid>
		<description><![CDATA[As part of Rails day 2006, Ray is working for the next 24 hours on Cuppin&#8217;. Looks like it&#8217;ll be a Cork&#8217;d for coffee. Good luck guys. Update: This site is up and running now at cuppin.com.Â  Go check it out.]]></description>
				<content:encoded><![CDATA[<p>As part of <a href="http://www.railsday2006.com/">Rails day</a><a href="http://www.railsday2006.com/"> 2006</a>, <a href="http://needmoredesigns.com/notes/">Ray</a> is working for the next 24 hours on <a href="http://cuppin.wordpress.com/">Cuppin&#8217;</a>.  Looks like it&#8217;ll be a <a href="http://www.corkd.com">Cork&#8217;d</a> for coffee.  Good luck guys.</p>
<p>Update:</p>
<p>This site is up and running now at <a href="http://www.cuppin.com">cuppin.com</a>.Â  Go check it out.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/06/16/cuppin-watch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I took the bait (Google Spreadsheets is sweet)</title>
		<link>https://www.webthingsconsidered.com/2006/06/06/i-took-the-bait-google-spreadsheets-is-sweet/</link>
		<comments>https://www.webthingsconsidered.com/2006/06/06/i-took-the-bait-google-spreadsheets-is-sweet/#respond</comments>
		<pubDate>Tue, 06 Jun 2006 15:06:29 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=132</guid>
		<description><![CDATA[I jumped at the Google Spreadsheets launch (more here) and wanted to share my first impressions. It sure gets the closest to Excel that I&#8217;ve seen so far. I was incredibly impressed. The editing, formuals and sheets functionality is very well done. You can even change sheets with CTRL-PgDn like in Excel, although if you &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/06/06/i-took-the-bait-google-spreadsheets-is-sweet/" class="more-link">Continue reading<span class="screen-reader-text"> "I took the bait (Google Spreadsheets is sweet)"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I jumped at the <a href="http://spreadsheets.google.com">Google Spreadsheets</a> launch (more <a href="http://www.nytimes.com/2006/06/06/technology/06google.html?_r=1&#038;adxnnl=1&#038;oref=slogin&#038;adxnnlx=1149606333-N/cxsx5NjVxoZAt5DO2jXA">here</a>) and wanted to share my first impressions.  It sure gets the closest to Excel that I&#8217;ve seen so far.  I was incredibly impressed. The editing, formuals and sheets functionality is very well done.  You can even change sheets with CTRL-PgDn like in Excel, although if you have mutliple tabs open in Firefox it will change the sheet in your spreadsheet and then change tabs (so if you want to use this feature, make sure you have your spreadsheet in a single tab instance of Firefox).  The only thing that I couldn&#8217;t find that I use regulary in Excel, was autofill.</p>
<p>Google&#8217;s office suite is rounding into good form.  I&#8217;m now using Gmail,  Google Calendar, and Spreadsheets.  I&#8217;m sure I&#8217;ll use writely as well when the need arises (currently just have one document in Writeboard in Basecamp&#8217;s free plan).</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/06/06/i-took-the-bait-google-spreadsheets-is-sweet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Family 2.0 (I got dissed by cnet)</title>
		<link>https://www.webthingsconsidered.com/2006/06/02/more-family-20/</link>
		<comments>https://www.webthingsconsidered.com/2006/06/02/more-family-20/#comments</comments>
		<pubDate>Fri, 02 Jun 2006 16:07:52 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=131</guid>
		<description><![CDATA[Back in April I posted (or more like rambled) about some parenting/family sites that were popping up. In a stroke of really, really original thought (I&#8217;m being sarcastic here), because they were using what would generally be considered a Web 2.0 approach (collaborative, social, user-generated content, etc.), I called them Family 2.0. Since that time, &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/06/02/more-family-20/" class="more-link">Continue reading<span class="screen-reader-text"> "More Family 2.0 (I got dissed by cnet)"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Back in April I posted (or more like rambled) about some parenting/family sites that were popping up.  In a stroke of really, really original thought (I&#8217;m being sarcastic here), because they were using what would generally be considered a Web 2.0 approach (collaborative, social, user-generated content, etc.), I called them <a href="http://www.webthingsconsidered.com/2006/04/05/family-20/">Family 2.0</a>.  Since that time, a <a href="http://family2point0.wordpress.com/">blog</a> has been started, <a href="http://www.amiglia.com/intro/">Amiglia</a> is using it in their title, and now cnet is running a <a href="http://news.com.com/Here+come+the+Family+2.0+sites/2100-1025_3-6079271.html?tag=nefd.lede">front page story</a> on it.</p>
<p>Now, how do I say this without sounding petty&#8230;.  I was essentially the first to publicly spot the trend, nearly two months ago, so it seems like cnet should have tossed a little credit this way (and an upcoming report on the same topic will be doing so).  Rachel did in her <a href="http://family2point0.wordpress.com/2006/04/11/hello-world/">blog intro</a>, and I appreciate that.  It&#8217;s disappointing that cnet offers no source and practically claims it as their own idea.  Maybe I should&#8217;ve trademarked the term <img src="https://s.w.org/images/core/emoji/11/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> (inside joke for followers of the recent Web 2.0 controversy).  Anyway, just remember, you heard it here first.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/06/02/more-family-20/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Redfin making a comeback</title>
		<link>https://www.webthingsconsidered.com/2006/05/31/redfin-making-a-comeback/</link>
		<comments>https://www.webthingsconsidered.com/2006/05/31/redfin-making-a-comeback/#comments</comments>
		<pubDate>Wed, 31 May 2006 17:27:10 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=130</guid>
		<description><![CDATA[They probably don&#8217;t think they ever really went away, but Zillow and Trulia stole most of their thunder. Being that Redfin was only for Seattle, I can see why nobody ever talked much about them. These guys were the pioneers though, in merging maps, listings and recent sales data. When it came out, I was &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/05/31/redfin-making-a-comeback/" class="more-link">Continue reading<span class="screen-reader-text"> "Redfin making a comeback"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>They probably don&#8217;t think they ever really went away, but <a href="http://www.zillow.com">Zillow</a> and <a href="http://www.trulia.com">Trulia</a> stole most of their thunder.  Being that <a href="http://www.redfin.com">Redfin</a> was only for Seattle, I can see why nobody ever talked much about them.  These guys were the pioneers though, in merging maps, listings and recent sales data.  When it came out, I was just dying for something similar for Portland.  I&#8217;m a real estate, map and data junkie, so this was just awesome.  I&#8217;d love to work on something like that.  The local brokerages&#8217; stuff simply cannot compete with the robustness of these new mashups.  And no, <a href="http://www.portlandrealestateblog.com/realestate/2006/03/prudential_nw_p.html">this</a> does not count.  Having to sign up so you can be harassed by an broker is not the same as having an open site.</p>
<p>Anyway, I see that Redfin is in the <a href="http://www.techcrunch.com/2006/05/31/redfin-can-rewrite-real-estate-rules/">news</a> again with a recent funding and plans to expand to other markets.   They&#8217;re also expanding their services, including representing buyers and refunding 2/3 of the buyer&#8217;s broker&#8217;s commision.  Wow!  That&#8217;s huge.  We just bought a house without a broker and got the whole commision reduced off the price, so I know how helpful this is.<br />
Oh, and I loved this quote from TechCrunch:</p>
<blockquote><p><em>(and that is based on relatively low Seattle home prices)</em></p></blockquote>
<p>Are you joking?  Now, I know Mr. Arrington lives in a very high priced area, and that&#8217;s where he&#8217;s getting the relative from.  But relative nationally, Seattle is one of the most expensive places to live (Adam, great data master, correct me if I&#8217;m wrong) and I bet that most people in that area would get a good laugh out of that.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/05/31/redfin-making-a-comeback/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lesson learned for Visual Studio and Web Deployment Projects</title>
		<link>https://www.webthingsconsidered.com/2006/05/30/lesson-learned-for-visual-studio-and-web-deployment-projects/</link>
		<comments>https://www.webthingsconsidered.com/2006/05/30/lesson-learned-for-visual-studio-and-web-deployment-projects/#respond</comments>
		<pubDate>Wed, 31 May 2006 00:12:13 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=129</guid>
		<description><![CDATA[In my jump into using Web Deployment Projects with Web Application Projects I ran into an issue which is rather obvious after the fact, but thought it would be good to share for Google searchers. When creating a new solution/project configuration (i.e. dev, test, production, etc.) in Visual Studio 2005, which is useful to do &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/05/30/lesson-learned-for-visual-studio-and-web-deployment-projects/" class="more-link">Continue reading<span class="screen-reader-text"> "Lesson learned for Visual Studio and Web Deployment Projects"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>In my jump into using <a href="http://weblogs.asp.net/scottgu/archive/2005/11/06/429723.aspx">Web Deployment Projects</a> with <a href="http://weblogs.asp.net/scottgu/archive/2006/05/08/445742.aspx">Web Application Projects</a> I ran into an issue which is rather obvious after the fact, but thought it would be good to share for Google searchers.</p>
<p>When creating a new solution/project configuration (i.e. dev, test, production, etc.) in Visual Studio 2005, which is useful to do when using Web Deployment Projects, make sure you set the output path for the Web project to &#8220;/bin&#8221;.  By default a new configuration gets an output path of &#8220;/bin/[configuration]&#8221;.  If the web assembly is not in /bin, the aspnet compiler portion of the Web Deployment project will fail with errors like this:</p>
<blockquote><p><em>error ASPPARSE:  Could not load type &#8216;code behind class&#8217;</em></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/05/30/lesson-learned-for-visual-studio-and-web-deployment-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To .Net or not to .Net</title>
		<link>https://www.webthingsconsidered.com/2006/05/23/to-net-or-not-to-net/</link>
		<comments>https://www.webthingsconsidered.com/2006/05/23/to-net-or-not-to-net/#respond</comments>
		<pubDate>Wed, 24 May 2006 06:59:18 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=128</guid>
		<description><![CDATA[Over at Web 2.0 Central, Reg has an interesting post on the Top 13 reasons to CONSIDER the Microsoft platform for Web 2.0 development. I especially liked the disclaimer. Not that I question Reg&#8217;s objectivity, but it sounds like Microsoft showed him a pretty good time. Maybe I&#8217;m just jealous 🙂 This seemed like a &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/05/23/to-net-or-not-to-net/" class="more-link">Continue reading<span class="screen-reader-text"> "To .Net or not to .Net"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Over at Web 2.0 Central, Reg has an interesting post on the <a href="http://web2.0central.com/archives/195">Top 13 reasons to CONSIDER the Microsoft platform for Web 2.0 development</a>.  I especially liked the disclaimer.  Not that I question Reg&#8217;s objectivity, but it sounds like Microsoft showed him a pretty good time.  Maybe I&#8217;m just jealous <img src="https://s.w.org/images/core/emoji/11/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>This seemed like a good topic to get me back into the blogging spirit.  Since I&#8217;m working on a Web 2.0 app (<a href="http://www.networthiq.com">NetworthIQ</a>) using the Microsoft platform, I&#8217;ve got some thoughts on the subject.</p>
<blockquote><p><em>1. Free Developer Tools.</em></p></blockquote>
<p>Over the last month I&#8217;ve been migrating NetworthIQ from 1.1 to 2.0 using the Express editions.  We signed up for the <a href="https://partner.microsoft.com/40010429">Empower</a> program thinking it was the greatest thing ever.  All the Microsoft software you want for a few hundred bucks a year.  How can you beat that?  Well, you know what they say, if it sounds too good to be true, it probably is.  The catch is you have to build an installable application, then make an effort to get certfied by Microsoft, among other requirements.  A public web site, even one you charge for doesn&#8217;t make the cut.  We could build an installable client app or something to satisfy the requirements, but that&#8217;s too much of a distraction, and frankly, after spending the last 18 months doing it at my day job, I don&#8217;t like (building or using even) installed apps very much.  Now, since we&#8217;re disciplined about separating work from side-company, we need to use our own tools.  Free is about all we can justify right now, so the express versions fit the bill perfectly.</p>
<p>Going from full Visual Studio to express isn&#8217;t the most fun, but it&#8217;s a workable solution short of switching platforms. My issues with it are:</p>
<ul>
<li>Being limited to a single web site solution sucks.  we have to run two IDEs, using VC# express for our non web code (domain, data layers, etc.). App_Code was just too full and I didn&#8217;t see an easy way to embed NHibernate xml files into the generated assembly.</li>
<li>The debugging is a pain since you can&#8217;t just attach to a process.</li>
<li>The publishing options are lacking and the Web Deployment Projects don&#8217;t support express.  However, we still have the power of MsBuild, so that one&#8217;s not too big of a deal.</li>
</ul>
<p>However, I am really enjoying ASP.NET 2.0, and am starting to become really productive with it (it helps that I&#8217;m now doing it at the full-time job as well).  VWD Express satisfies me enough for now.  Plus, based on what I&#8217;ve used for PHP development it&#8217;s pretty darn good (I don&#8217;t know enough about developing/debugging tools for Rails to comment at this time).</p>
<blockquote><p><em>2. Free Database</em></p></blockquote>
<p>I haven&#8217;t spent a lot of time with SQL Express, but I am happy it&#8217;s free and it&#8217;s definitely aimed at MySQL.  Competition is a good thing.</p>
<blockquote><p><em>3.  Microsoft Atlas makes AJAX easier.</em></p></blockquote>
<p>I spent some time with Atlas at work over the last few weeks, developing a proof of concept app for the project I&#8217;m on.  I wasn&#8217;t too impressed.  To me, it&#8217;s buggy, bloated, and poorly documented.  But, I do like the Web Service proxying that makes it easy to get data back and forth.  I know it&#8217;s a long way from release, but for me, it&#8217;s not usable yet.</p>
<blockquote><p><em>4. Microsoft doesnâ€<img src="https://s.w.org/images/core/emoji/11/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" />t HAVE to get ALL of your business.</em></p></blockquote>
<p>I don&#8217;t see many if any LAMP shops using Atlas.</p>
<blockquote><p><em>5.  Microsoft solutions can scale.</em></p></blockquote>
<p>It&#8217;s definitely reassuring to know MySpace is using .NET.  But, why does it look like they&#8217;re still using ColdFusion?  Are all 1.5 billion page views on .NET?</p>
<blockquote><p><em>6. Microsoft pricing is flexible.</em></p></blockquote>
<p>This will be the breaking point for us I think.  If and when we have to start scaling, are we going to want to pay the Microsoft tax for Windows and possibly SQL Server licenses?  It remains to be seen, but there&#8217;s a reason we&#8217;re playing with Rails.</p>
<blockquote><p><em>7. Ray Ozzie</em></p></blockquote>
<p>Not a factor for me.  Maybe I&#8217;m ignorant, but I haven&#8217;t even bothered learning about SSE and Live Clipboard. Should I?</p>
<blockquote><p><em>8. Robert Scoble</em></p></blockquote>
<p>I like <a href="http://scobleizer.wordpress.com/">Robert</a> and have read him for a long time.  He even posted about <a href="http://radio.weblogs.com/0001011/2005/09/19.html#a11188">NetworthIQ</a>.  I agree that he&#8217;s doing a lot of good for Microsoft.</p>
<blockquote><p><em>9. Being based on the Microsoft platform doesnâ€<img src="https://s.w.org/images/core/emoji/11/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" />t limit your acquisition options.</em></p></blockquote>
<p>Glad to know :-).  But seriously, I wouldn&#8217;t pick a technology for this reason.  Pick something that you can build a great product with, FAST.</p>
<blockquote><p><em>10. Microsoft wants to be a part of the community</em></p></blockquote>
<p>Ok.</p>
<blockquote><p><em>11. Microsoft employees arenâ€<img src="https://s.w.org/images/core/emoji/11/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" />t evil.</em></p></blockquote>
<p>I&#8217;m definitely not a rah-rah Microsoft developer.  I hate IE (ok hate is a strong word, perhaps saying I prefer firefox is better), and most of the Live.com stuff is crap.  But, I like ASP.NET and I know there are people working hard there and reaching out to be better.  <a href="http://weblogs.asp.net/scottgu/">Scott Guthrie</a> comes to mind as someone doing great work for ASP.NET.</p>
<blockquote><p><em>12. Microsoft has good development resources</em></p></blockquote>
<p>For getting up and running this is pretty true.  However, there are <a href="http://codebetter.com/blogs/jeffrey.palermo/archive/2006/02/20/138778.aspx">ongoing wars</a> between the RAD (everything&#8217;s declarative) camp and the non RADs.  Just hope you don&#8217;t get caught between the two when trying to figure out a good solution to a particular problem.</p>
<blockquote><p><em>13. Microsoft speeds web application development</em></p></blockquote>
<p>Ahh yes, this is the clincher for me (for now).  Sometimes ASP.NET can be terribly frustrating and feels like it&#8217;s getting in the way when you want to do something simple.  It produces crappy markup at times that is difficult to control, and you have to constantly be aware of ViewState (page size) issues.  But, in the end, once you get up to speed, it&#8217;s a nice framework.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/05/23/to-net-or-not-to-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webvisions</title>
		<link>https://www.webthingsconsidered.com/2006/04/15/webvisions/</link>
		<comments>https://www.webthingsconsidered.com/2006/04/15/webvisions/#respond</comments>
		<pubDate>Sun, 16 Apr 2006 01:24:21 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=126</guid>
		<description><![CDATA[I really enjoyed last year&#8217;s Webvisions with some interesting talks by Stewart Butterfield, BJ Fogg, Molly, Thomas Vander Wal and more. It looks like this year&#8217;s is rounding into form as well with Dan Cederholm, one of my favorite designers, coming to town.]]></description>
				<content:encoded><![CDATA[<p>I really enjoyed last year&#8217;s <a href="http://www.webvisionsevent.com/">Webvisions</a> with some interesting talks by Stewart Butterfield, <a href="http://bjfogg.typepad.com/">BJ Fogg</a>, <a href="http://www.molly.com">Molly</a>, <a href="http://vanderwal.typepad.com/">Thomas Vander Wal</a> and more.  It looks like this year&#8217;s is rounding into form as well with Dan Cederholm, one of my favorite designers, <a href="http://www.simplebits.com/notebook/2006/04/15/speaking.html">coming to town</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/04/15/webvisions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zipingo getting left behind?</title>
		<link>https://www.webthingsconsidered.com/2006/04/09/zipingo-getting-left-behind/</link>
		<comments>https://www.webthingsconsidered.com/2006/04/09/zipingo-getting-left-behind/#respond</comments>
		<pubDate>Mon, 10 Apr 2006 03:12:26 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=125</guid>
		<description><![CDATA[In the local reviews race, it looks like Zipingo is trailing badly. Yelp, Insider Pages, and Judy&#8217;s book look to be going strong except for a recent drop-off for Judy&#8217;s book.]]></description>
				<content:encoded><![CDATA[<p><img src="http://traffic.alexa.com/graph?w=362&#038;h=185&#038;r=3m&#038;y=r&#038;a=1&#038;z=1&#038;u=zipingo.com&#038;u=judysbook.com&#038;u=insiderpages.com&#038;u=yelp.com" /></p>
<p>In the local reviews race, it looks like <a href="http://www.zipingo.com">Zipingo</a> is trailing badly.  <a href="http://www.yelp.com">Yelp</a>, <a href="http://www.insiderpages.com">Insider Pages</a>, and <a href="http://www.judysbook.com">Judy&#8217;s book</a> look to be going strong except for a recent drop-off for Judy&#8217;s book.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/04/09/zipingo-getting-left-behind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Family 2.0</title>
		<link>https://www.webthingsconsidered.com/2006/04/05/family-20/</link>
		<comments>https://www.webthingsconsidered.com/2006/04/05/family-20/#comments</comments>
		<pubDate>Wed, 05 Apr 2006 20:44:26 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=123</guid>
		<description><![CDATA[I&#8217;m not exactly sure how I missed Trixie Tracker&#8216;s launch last month, but the great thing about this blog and PDX Web Innovators is that I&#8217;m making some great connections with people here in Portland and this new network is a great place to learn about new things. Anyway, I mention Trixie Tracker, because I&#8217;ve &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/04/05/family-20/" class="more-link">Continue reading<span class="screen-reader-text"> "Family 2.0"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m not exactly sure how I missed <a href="http://www.trixietracker.com/">Trixie Tracker</a>&#8216;s launch last month, but the great thing about this blog and PDX Web Innovators is that I&#8217;m making some great connections with people here in Portland and this new network is a great place to learn about new things.</p>
<p>Anyway, I mention Trixie Tracker, because I&#8217;ve been following Family 2.0 applications like  Trixie Tracker, <a href="http://www.minti.com/">Minti</a>, <a href="http://www.amiglia.com/intro/">Amiglia</a>, and <a href="http://www.families.com">Families.com</a>.  I&#8217;ve had similar ideas in these areas, so it&#8217;s been interesting seeing them pop up.</p>
<p>Trixe Tracker attemtps to solve a piece of what I thought was missing in the existing apps; baby tools (tracking, sharing).  You probably figured I&#8217;m big into tracking, being that&#8217;s what <a href="http://www.networthiq.com">NetworthIQ</a> is all about.  Trixie Tracker doesn&#8217;t take care of it all though, I think there&#8217;s still some good opportunities in this area.  But, Trixie Tracker appears to be a very useful app focused in on babies eating, sleeping, and you know what else schedules.  The graphs and charts look very cool.  I think it&#8217;s a bit too spendy (personally, I&#8217;d consider say a $20 annual subscription), but I respect them for charging off the bat for it.  I&#8217;ve come to the conclusion (excuse me for stating the obvious) that if you&#8217;re going to bootstrap, charging is the best way to go.  You may get away with a <a href="http://avc.blogs.com/a_vc/2006/03/my_favorite_bus.html">freemium</a> business model, which is where we&#8217;re heading with NetworthIQ, but a pure ad-based revenue model will be a tough climb (NetworthIQ was never intended to be a pure ad-based model, but that&#8217;s all we have at the moment).</p>
<p>I enjoyed the <a href="http://www.trixieupdate.com/archives/2006/03/2006_03_13_1128.php">launch post</a>, this hits a bit close to home:</p>
<blockquote><p>&#8220;It&#8217;s really hard to do anything else when you&#8217;re taking care of a baby/child/toddler&#8221;</p></blockquote>
<p>and</p>
<blockquote><p>&#8220;I could reliably count on writing about 3 or 4 lines of code a week.&#8221;</p></blockquote>
<p>I know the feeling well, as idiot me managed to wait until we had a baby to get inspired enough to start building something.  The absolute worst. timing. ever.</p>
<p>They even use a pretty similar &#8220;Track. Share. &#8230;.&#8221; slogan I coined for NetworthIQ.  Just a coincidence?  Who knows, I&#8217;m either flattered or know there&#8217;s somebody who thinks like I do.  Either way is fine with me.</p>
<p><strong>Update</strong></p>
<p>Missed <a href="http://www.cingo.com/index.php?go=login.show_login">Cingo</a> and <a href="http://www.myhomepoint.com/">MyHomePoint</a> the first time around.  Both are trying to provide tools to keep families organized.  I&#8217;ll have to check these out a little more.  For myself, I might really like them as I&#8217;m still trying to nail down a calendar app (even though there&#8217;s no shortage of them).  But I&#8217;d have a hard time convincing my wife to keep it updated.</p>
<p><strong>Update 2</strong></p>
<p><a href="http://www.techcrunch.com/2006/04/12/mayas-mom-for-parents/">TechCrunch</a> has word about another parenting site in the works, <a href="http://www.mayasmom.com/">Maya&#8217;s Mom</a>.</p>
<p><strong>Update 3</strong></p>
<p>JotSpot has released <a href="http://familysite.jot.com/">JotSpot Family Site</a>, which looks to be an easy way to get a family web site going, complete with a calendar, blogs, maps, etc. (via <a href="http://momb.socio-kybernetics.net/beta/jotspot-family-site">MOMB</a>).  They make no mention of &#8216;Wikis&#8217; which is a smart move as I&#8217;d guess that a large percentage of people know what one is.</p>
<p><strong>Update 4</strong></p>
<p>A couple new ones to mention:</p>
<ul>
<li><a href="http://www.mothersclick.com/">MothersClick</a> &#8211; I&#8217;ll indulge with a link even though they issued a press release mother&#8217;s day weekend when the app isn&#8217;t even available yet.  I thought that was a bit tacky.</li>
<li><a href="http://www.ookles.com/">Ookles</a> &#8211; Billed as Flickr+YouTube+Riya for parents.  The current intro page is incredibly annoying though.  They&#8217;ve got a long way to go.</li>
</ul>
<p><strong>Update 5</strong></p>
<p>Rachel Cook from Minti has started a blog, <a href="http://family2point0.wordpress.com/">family2point0</a>,  to track these apps.  Look there for new stuff.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/04/05/family-20/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Time to get a Mac</title>
		<link>https://www.webthingsconsidered.com/2006/04/05/time-to-get-a-mac/</link>
		<comments>https://www.webthingsconsidered.com/2006/04/05/time-to-get-a-mac/#comments</comments>
		<pubDate>Wed, 05 Apr 2006 19:24:34 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=122</guid>
		<description><![CDATA[With the Apple Boot Camp announcement today, I think there are no longer any doubts about what my next laptop will be. Not that I have any idea when that will be. I&#8217;ve been wanting to switch to a Mac, but now that I&#8217;ll (easily) be able to run Windows for ASP.net development, the decision &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/04/05/time-to-get-a-mac/" class="more-link">Continue reading<span class="screen-reader-text"> "Time to get a Mac"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>With the <a href="http://www.pcmag.com/article2/0,1759,1946361,00.asp">Apple Boot Camp</a> announcement today, I think there are no longer any doubts about what my next laptop will be.  Not that I have any idea when that will be.  I&#8217;ve been wanting to switch to a Mac, but now that I&#8217;ll (easily) be able to run Windows for ASP.net development, the decision is made easier.  Time to start saving for a PowerBook.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/04/05/time-to-get-a-mac/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blog updates</title>
		<link>https://www.webthingsconsidered.com/2006/04/05/blog-updates/</link>
		<comments>https://www.webthingsconsidered.com/2006/04/05/blog-updates/#respond</comments>
		<pubDate>Wed, 05 Apr 2006 15:27:33 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=121</guid>
		<description><![CDATA[Last night, I wrapped up a series of blog updates that have been a long time coming. As always, things are never as easy as they appear to be, but everything appears to be working fine now. Here&#8217;s a rundown: Moved web hosting to Dreamhost. I got a screaming deal, like $20 for 12 months &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/04/05/blog-updates/" class="more-link">Continue reading<span class="screen-reader-text"> "Blog updates"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Last night, I wrapped up a series of blog updates that have been a long time coming.  As always, things are never as easy as they appear to be, but everything appears to be working fine now.  Here&#8217;s a rundown:</p>
<ul>
<li>Moved web hosting to <a href="http://www.dreamhost.com/rewards.cgi?mountaineer">Dreamhost</a>.  I got a screaming deal, like $20 for 12 months of hosting.  I&#8217;ve got a number of domain names I can play around with, so the unlimited domain capability is great.  There was a bit of trouble with the permalinks, but managed to get it fixed pretty quickly. I had been running on a Windows/IIS host.  But running PHP apps on a Windows host always seems to be a pain.  For my ASP.net experiments, I&#8217;ll just use our Fourio account.</li>
<li>Upgraded to <a href="http://wordpress.org/">WordPress 2.0.2</a>.  After <a href="http://www.tinyscreenfuls.com/2006/03/just-upgraded-to-wordpress-20-wow-that-was-easy/">Josh</a> mentioned how easy it was, I figured I shouldn&#8217;t wait any longer.  I had to wait until after moving hosts, as trying to move hosts and upgrade all in one would have been a recipe for frustration.  One great thing now is that apparently WordPress 2 now handles /index.php/ style permalinks and the non /index.php/ style at the same time.  This is great since I can use the latter going forward, but still have my old links work (and I don&#8217;t have to fight with mod_rewrite).</li>
<li>Redirected local feed to <a href="http://www.feedburner.com">FeedBurner</a>.  For some reason, <a href="http://www.bloglines.com">Bloglines</a> is convinced my feed lives on the site, even though the alternate url and feed links both point to the feedburner feed.  Plus, even if you manually enter the feedburner feed in bloglines, it changes it to the local feed here, which just seemed downright odd.  I submitted a ticket, but they never fixed this.  So, it was time to force the issue by just re-directing the feed.  I used Steve Smith&#8217;s <a href="http://orderedlist.com/articles/wordpress-feedburner-plugin/">WordPress plugin</a>, and eventually got it working.  There was confusion around how to get WordPress to automatically update the .htaccess file, and it took an hour or so of messing around with it to get it working.Â  Chris Pederick&#8217;s <a href="http://chrispederick.com/work/useragentswitcher/">User Agent Switcher</a> firefox extension was a big help in testing this, since the rewrite rule serves the feed to FeedBurner and re-directs everyone else to the FeedFurner feed.Â  (this is why I&#8217;m a big FireFox fan, there are so many useful extensions)</li>
<li>Added the recent entries listing in the sidebar.  Fortunately, this one was easy.  I think it&#8217;s nice when you can get a quick look at what an author writes about.  I&#8217;m surprised this isn&#8217;t included by default in most wordpress themes/templates.</li>
</ul>
<p>Hopefully, that&#8217;s enough blog work for now.  Time to get back to work on more important things.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/04/05/blog-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDX Web Innovators</title>
		<link>https://www.webthingsconsidered.com/2006/04/04/pdx-web-innovators-2/</link>
		<comments>https://www.webthingsconsidered.com/2006/04/04/pdx-web-innovators-2/#respond</comments>
		<pubDate>Tue, 04 Apr 2006 14:29:07 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=120</guid>
		<description><![CDATA[The next PDX Web Innovators is tomorrow night, April 5. It will be great to catch up with everybody and meet the new faces. See ya then&#8230;]]></description>
				<content:encoded><![CDATA[<p>The next PDX Web Innovators is <a href="http://upcoming.org/event/66780/">tomorrow night, April 5</a>.  It will be great to catch up with everybody and meet the new faces.  See ya then&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/04/04/pdx-web-innovators-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New features at Museum of Modern Betas</title>
		<link>https://www.webthingsconsidered.com/2006/04/03/new-features-at-museum-of-modern-betas/</link>
		<comments>https://www.webthingsconsidered.com/2006/04/03/new-features-at-museum-of-modern-betas/#respond</comments>
		<pubDate>Mon, 03 Apr 2006 15:15:51 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=119</guid>
		<description><![CDATA[Over at MOMB, Saurier has released a couple of new features. The Hot 100 and Top 100: The Top 100 â€“ a list of the 100 most popular betas (and alphas, and pre-betas, &#8230;) based on the number of how many bookmarks there are in del.icio.us; this list will be updated biweekly, and The Hot &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/04/03/new-features-at-museum-of-modern-betas/" class="more-link">Continue reading<span class="screen-reader-text"> "New features at Museum of Modern Betas"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Over at MOMB, Saurier has released a <a href="http://momb.socio-kybernetics.net/blog/top-of-the-pops">couple of new features</a>.  The Hot 100 and Top 100:</p>
<blockquote><p>
<a href="http://momb.socio-kybernetics.net/top-100">The Top 100</a> â€“ a list of the 100 most popular betas (and alphas, and pre-betas, &#8230;) based on the number of how many bookmarks there are in del.icio.us; this list will be updated biweekly, and</p>
<p><a href="http://momb.socio-kybernetics.net/hot-100">The Hot 100</a> â€“ which is a kind of mini-zeitgeist and displays the most popular betas (and alphas, and pre-betas, &#8230;) based on how many bookmarks there have been added within the last 7 days; this list will be updated every Sunday.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/04/03/new-features-at-museum-of-modern-betas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hmmmm&#8230;.. what?</title>
		<link>https://www.webthingsconsidered.com/2006/03/30/hmmmm-what/</link>
		<comments>https://www.webthingsconsidered.com/2006/03/30/hmmmm-what/#respond</comments>
		<pubDate>Fri, 31 Mar 2006 00:42:08 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=118</guid>
		<description><![CDATA[I was reading an interview at SitePoint with Dino Esposito, an &#8220;ASP.NET Expert.&#8221; I know he has written several books (apparently well rated and sold), and I&#8217;ve read several articles by him before. But this comment scares me a bit: &#8220;I don&#8217;t write much real-world code. But automated testing is key. Period.&#8221; So, he&#8217;s an &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/03/30/hmmmm-what/" class="more-link">Continue reading<span class="screen-reader-text"> "Hmmmm&#8230;.. what?"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I was reading an <a href="http://www.sitepoint.com/article/dino-esposito-asp-net-expert">interview at SitePoint with Dino Esposito</a>, an &#8220;ASP.NET Expert.&#8221;  I know he has <a href="http://www.amazon.com/exec/obidos/search-handle-url/index=books&#038;field-author-exact=Dino%20Esposito&#038;rank=-relevance%2C%2Bavailability%2C-daterank/002-5643792-9682468">written several books</a> (apparently well rated and sold), and I&#8217;ve read several articles by him before.  But this comment scares me a bit:</p>
<blockquote><p>&#8220;I don&#8217;t write much real-world code. But automated testing is key. Period.&#8221;</p></blockquote>
<p>So, he&#8217;s an &#8220;Expert,&#8221; but doesn&#8217;t write much real-world code?  Should we be looking elsewhere for ASP.NET 2.0 books?  I generally like to learn from someone who has been there, done that.  Since I don&#8217;t like Wrox books much (too big and disjointed usually), I&#8217;ve avoided their book.   Hopefully, <a href="http://pluralsight.com/blogs/fritz/archive/2006/03/14/20048.aspx">Fritz Onion&#8217;s book</a> will be out sooner rather than later.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/03/30/hmmmm-what/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 2.0 Awards</title>
		<link>https://www.webthingsconsidered.com/2006/03/28/web-20-awards/</link>
		<comments>https://www.webthingsconsidered.com/2006/03/28/web-20-awards/#respond</comments>
		<pubDate>Wed, 29 Mar 2006 01:16:19 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=117</guid>
		<description><![CDATA[I&#8217;ve talked before about tracking Web 2.0 and mentioned the following: But, say I want to find the best calendar app with reviews, ratings, a screenshot, in a easy to navigate list. Where do I go to get that info? I&#8217;d say the Web 2.0 Awards is pretty close to the answer to that question. &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/03/28/web-20-awards/" class="more-link">Continue reading<span class="screen-reader-text"> "Web 2.0 Awards"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve talked before about <a href="http://www.webthingsconsidered.com/index.php/2006/02/14/tracking-web-20/">tracking Web 2.0</a> and mentioned the following:</p>
<blockquote><p>
But, say I want to find the best calendar app with reviews, ratings, a screenshot, in a easy to navigate list. Where do I go to get that info?
</p></blockquote>
<p>I&#8217;d say the <a href="http://web2.0awards.com">Web 2.0 Awards</a> is pretty close to the answer to that question.  The Web 2.0 awards is a beautiful list that has rated, ranked, and awarded the best of Web 2.0 sites across many categories.</p>
<p>Of course I also like it because <a href="http://www.networthiq.com">NetworthIQ</a> got an honorable mention in the &#8220;Business, Money, and eCommerce&#8221; category going up against some pretty big competition.</p>
<p>The other lists I mentioned before are still great going forward to keep an eye on new stuff and there&#8217;s still room for the versiontracker.com type site with more user opinions,  and tracking new features.  But, we have to stop and admire the Web 2.0 awards for a while.  Well done.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/03/28/web-20-awards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving sucks</title>
		<link>https://www.webthingsconsidered.com/2006/03/21/moving-sucks/</link>
		<comments>https://www.webthingsconsidered.com/2006/03/21/moving-sucks/#respond</comments>
		<pubDate>Wed, 22 Mar 2006 05:14:29 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=116</guid>
		<description><![CDATA[The last four days have been an exhausting sprint to get moved into our new house. Half the house is still in boxes, but I&#8217;m heading back to work tomorrow. The old house is cleaned out and ready for the new owners to move in tomorrow. It&#8217;s kind of sad to say good-bye to your &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/03/21/moving-sucks/" class="more-link">Continue reading<span class="screen-reader-text"> "Moving sucks"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>The last four days have been an exhausting sprint to get moved into our new house.  Half the house is still in boxes, but I&#8217;m heading back to work tomorrow.  The old house is cleaned out and ready for the new owners to move in tomorrow.  It&#8217;s kind of sad to say good-bye to your first house.</p>
<p>Thanks to the incompetence of Verizon (we notified them a month ago of the date we were moving in),  I&#8217;ve had no DSL in the new house and won&#8217;t until early next week.  Tell me why the baby bells are allowed to merge back together?  So they can abuse their customers even more.  I&#8217;ll definitely be switching to Comcast for internet, especially with the deal at <a href="http://www.comcastoffers.com/">Comcast Offers</a>.  I&#8217;ve always done DSL in the past because it was cheaper, but with that deal, it equals out over a year.  Plus, Comcast&#8217;s service has always been pretty good.</p>
<p>What else have we learned with this move?  Nobody is never on time.  Cleaners at the new house were an hour late on move day.  Movers (had some larger items moved on Monday) were over an hour late.  The post office is completely confused, with one person telling us it will be 7-10 days before we get mail at the new address, but then after catching the mailwoman today, she informed us that she was holding our mail already and waiting for us to come to the post office for a key.  Would&#8217;ve been nice if someone told us that.</p>
<p>But on a brighter note, the Fourio team and family members were great and the bulk of the move went pretty fast on Saturday.  You never realize how much stuff you have until you move.  Hopefully we won&#8217;t have to move for another 5 years at least.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/03/21/moving-sucks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Portland entrepreneur&#8217;s group</title>
		<link>https://www.webthingsconsidered.com/2006/03/21/another-portland-entrepreneurs-group/</link>
		<comments>https://www.webthingsconsidered.com/2006/03/21/another-portland-entrepreneurs-group/#respond</comments>
		<pubDate>Wed, 22 Mar 2006 05:14:00 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=115</guid>
		<description><![CDATA[Came across Starve Ups today, an interesting looking group focused on start-ups. Here&#8217;s the twist Unlike other organizations, Starve Ups membership is only open to the founders, management and core team members of idea, emerging and established stage companies. This unique approach, which eliminates investors, consultants, vendors and service providers allows Starve Ups to encourage &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/03/21/another-portland-entrepreneurs-group/" class="more-link">Continue reading<span class="screen-reader-text"> "Another Portland entrepreneur&#8217;s group"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Came across <a href="http://www.starveups.com/starveups/">Starve Ups</a> today, an interesting looking group focused on start-ups.   Here&#8217;s the twist</p>
<blockquote><p>Unlike other organizations, Starve Ups membership is only open to the founders, management and core team members of idea, emerging and established stage companies. This unique approach, which eliminates investors, consultants, vendors and service providers allows Starve Ups to encourage full disclosure among its members.</p></blockquote>
<p>I need to check it out a bit more and see if it complements the PDX Web Innovators and OEF events.</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tags/portland" rel="tag">portland</a> <a href="http://www.technorati.com/tags/pdx" rel="tag">pdx</a> <a href="http://www.technorati.com/tags/entrepreneur" rel="tag">entrepreneur</a> <a href="http://www.technorati.com/tags/starveups" rel="tag">starveups</a></span></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/03/21/another-portland-entrepreneurs-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 2.0 or Star Wars Character?</title>
		<link>https://www.webthingsconsidered.com/2006/03/16/web-20-or-star-wars-character/</link>
		<comments>https://www.webthingsconsidered.com/2006/03/16/web-20-or-star-wars-character/#comments</comments>
		<pubDate>Thu, 16 Mar 2006 19:36:11 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=114</guid>
		<description><![CDATA[Web 2.0 or Star Wars Character? I got 39, but I have an excuse because I spent two weekends building the Innovation Map. (via CrunchNotes)]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.cerado.com/web20quiz.htm">Web 2.0 or Star Wars Character?</a>    I got 39, but I have an excuse because I spent two weekends building the <a href="http://www.fourio.com/web20map">Innovation Map</a>.</p>
<p>(via <a href="http://www.crunchnotes.com/?p=165">CrunchNotes</a>)</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/03/16/web-20-or-star-wars-character/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Portland Technology/Entrepreneur groups</title>
		<link>https://www.webthingsconsidered.com/2006/03/14/portland-technology-groups/</link>
		<comments>https://www.webthingsconsidered.com/2006/03/14/portland-technology-groups/#comments</comments>
		<pubDate>Wed, 15 Mar 2006 01:35:19 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=113</guid>
		<description><![CDATA[Now that Portland is the best place to live, some people may want to move here. Because of that (but really because a couple people have asked recently), here are the various technology/entrepreneurial groups around town. This is by no means a complete list. PDX Web Innovators (cross between developers, designers, entrepreneurs) DevgroupNW (design focused) &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/03/14/portland-technology-groups/" class="more-link">Continue reading<span class="screen-reader-text"> "Portland Technology/Entrepreneur groups"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Now that Portland is the best place to live, some people may want to move here.  Because of that (but really because a couple people have asked recently), here are the various technology/entrepreneurial groups around town.  This is by no means a complete list.</p>
<ul>
<li><a href="http://www.pdxwi.com">PDX Web Innovators</a> (cross between developers, designers, entrepreneurs)</li>
<li><a href="http://www.devgroupnw.org/">DevgroupNW</a> (design focused)</li>
<li><a href="http://www.pdxux.net">PDX UX</a> (cross between designers and developers)</li>
<li><a href="http://www.sao.org">SAO &#8211; Software Association of Oregon</a></li>
<li><a href="http://www.oef.org">OEF &#8211; Oregon Entrepreneurs Forum</a></li>
<li><a href="http://www.ipn.org">IPN &#8211; Internet Professionals Northwest</a> (now part of SAO)</li>
<li><a href="http://www.padnug.org/">PADNUG &#8211; .Net User Group</a></li>
<li><a href="http://pdxcfug.org/">PDX CFUG &#8211; ColdFusion User Group</a></li>
<li><a href="http://www.pjug.org/">PJUG &#8211; Java User Group</a></li>
<li><a href="http://www.possepdx.org/">POSSE &#8211; Portland Open Source Software Entrepreneurs</a></li>
<li><a href="http://pdxruby.org/">PDX.rb &#8211; Portland Ruby Brigade</a></li>
<li><a href="http://pdxphp.org/">PDXPHP &#8211; PHP User Group</a></li>
<li><a href="http://www.internetstrategyforum.org/">Internet Strategy Forum</a></li>
<li><a href="http://www.chifoo.org/">CHIFOO</a></li>
<li><a href="http://www.pdxmindshare.com/">pdxMindShare</a></li>
<li><a href="http://www.oregonstartups.com/index.html">OregonStartups.com</a> &#8211; Great collection of resources for local entrepreneurs</li>
<li><a href="http://www.starveups.com/starveups/">Starve Ups</a></li>
<li><a href="http://www.nwen.org/">Northwest Entrepreneur Network</a></li>
<li><a href="http://www.npost.com">nPost.com</a>
</li>
</ul>
<p>There are others like Mac, Linux and PC user groups, Podcasting Meetups, Entrepreneur (general) meetups, but these are the main ones I&#8217;ve come across.  What others do people know of or enjoy?</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tags/pdx" rel="tag">pdx</a> <a href="http://www.technorati.com/tags/portland" rel="tag">portland</a></span></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/03/14/portland-technology-groups/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Portland is #1</title>
		<link>https://www.webthingsconsidered.com/2006/03/14/portland-is-1/</link>
		<comments>https://www.webthingsconsidered.com/2006/03/14/portland-is-1/#respond</comments>
		<pubDate>Wed, 15 Mar 2006 01:07:28 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=112</guid>
		<description><![CDATA[Portland is the best place to live. How do I know? Men&#8217;s Journal says so. Shhh&#8230; don&#8217;t tell anyone. Unless of course you want to move or launch your web startup here, I don&#8217;t mind having more of those around. Tags: pdx portland]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.mensjournal.com/feature/0604/bestplaces.html">Portland is the best place to live</a>.  How do I know?  Men&#8217;s Journal says so.  Shhh&#8230; don&#8217;t tell anyone.   Unless of course you want to move or launch your web startup here, I don&#8217;t mind having more of those around.</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tags/pdx" rel="tag">pdx</a> <a href="http://www.technorati.com/tags/portland" rel="tag">portland</a></span></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/03/14/portland-is-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Awesome social engineering attack</title>
		<link>https://www.webthingsconsidered.com/2006/03/14/awesome-social-engineering-attack/</link>
		<comments>https://www.webthingsconsidered.com/2006/03/14/awesome-social-engineering-attack/#respond</comments>
		<pubDate>Tue, 14 Mar 2006 19:03:31 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=111</guid>
		<description><![CDATA[For all those sports fans looking to get an edge for their team, this is a great story. In the days of MySpace and Facebook, making it easier to find you, I&#8217;d be extra careful if I were an athlete. You&#8217;re conversations might not be too private. Poor guy.]]></description>
				<content:encoded><![CDATA[<p>For all those sports fans looking to get an edge for their team, this is a <a href="http://www.schneier.com/blog/archives/2006/03/basketball_pran.html">great story</a>.</p>
<p>In the days of MySpace and Facebook, making it easier to find you, I&#8217;d be extra careful if I were an athlete.  You&#8217;re conversations might not be too private.  Poor guy.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/03/14/awesome-social-engineering-attack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDX Web Innovators</title>
		<link>https://www.webthingsconsidered.com/2006/03/11/pdx-web-innovators/</link>
		<comments>https://www.webthingsconsidered.com/2006/03/11/pdx-web-innovators/#comments</comments>
		<pubDate>Sat, 11 Mar 2006 16:04:13 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=110</guid>
		<description><![CDATA[After rushing downtown to make the OEF PubTalk, I then rushed over the river for the first PDX Web Innovators meeting. It was interesting going to the PubTalk first because part of the vision I had for PDX Web was the ability for early stage companies to demo/pitch/present. Even after seeing that the PubTalk is &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/03/11/pdx-web-innovators/" class="more-link">Continue reading<span class="screen-reader-text"> "PDX Web Innovators"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>After rushing downtown to make the OEF PubTalk, I then rushed over the river for the first  <a href="http://pdxwebinnovators.jot.com/WikiHome">PDX Web Innovators</a> meeting.  It was interesting going to the PubTalk first because part of the vision I had for PDX Web was the ability for early stage companies to demo/pitch/present.  Even after seeing that the PubTalk is built for this kind of thing, since it&#8217;s more general purpose entrepreneurship and the pitches are really short, I think that PDX Web can support that idea exclusively for web/mobile companies.</p>
<p>Whether or not we get to that point though, it&#8217;s still a lot of fun hanging out with other web people.  For people who follow the web all the time, it&#8217;s not everyday that you meet people that read the some stuff you do and share the same ideas.  Just to run down who was there:</p>
<ul>
<li><a href="http://www.adamduvander.com/">Adam</a></li>
<li>George </li>
<li><a href="http://brigleb.com/">Ray</a></li>
<li><a href="http://taylorstreetstudio.com/">Will</a></li>
<li><a href="http://www.webfu-design.com/">Greg</a></li>
<li><a href="http://www.barflymag.com/blogger-3.html">Kyle</a></li>
<li><a href="http://kandacerae.com/">Kandace</a></li>
<li><a href="http://lesrarebirds.com/">Marcus</a></li>
<li><a href="http://www.jaacob.com/">Jacob</a></li>
<li>myself</li>
</ul>
<p>Maybe it&#8217;s not that surprising, but just about everybody had their own web shops.  The discussions were a great mix of design, programming, blogs, podcasts, business.  I&#8217;ll try to remember some of conversations:</p>
<p>Rails was a big topic.  I hadn&#8217;t even realized Portland was such a leader in Rails development (With the O&#8217;Reilly Rails book author in Portland and his company <a href="http://www.planetargon.com/">Planet Argon</a> being a big Rails shop), and I pride myself on knowing a lot of stuff.</p>
<p>Ray and Kandace talked a bit about their web-based, hosted CMS package, <a href="http://getladybug.com/">Ladybug</a>.  Sounds like a great tool for Flash (and non-Flash) sites.  I believe we have our first presenter for next month.</p>
<p>Marcus shared some his experiences with software in the Music business and <a href="http://tablesturned.com/">Tables Turned</a>, his team&#8217;s initiative to let podcasters legally play music.  <a href="http://tablesturned.com/pages/press">Billboard wrote it up</a>, and it sounds like it&#8217;s getting some great traction among the labels.</p>
<p>Jacob talked about his work in design (you have to check out the design on <a href="http://www.beprivy.com/">BePrivy</a>), email marketing and learning Rails.  I wrote about <a href="http://www.webthingsconsidered.com/index.php/2005/12/07/top-5-tips-for-email-newsletter-success/">email newsletters</a> before, so you&#8217;ll have to let me know how far off-base I am.</p>
<p>Adam and I discussed his work on <a href="http://www.bestplaces.net/">Best Places</a>, and some of the issues they were working out, including the transition to ASP.NET 2.0, something I&#8217;ve been spending a lot of time on lately.  Adam has a lot of biz ideas going too, including the just released <a href="http://www.onblock.com/">onBlOCK</a> spam fighting service.</p>
<p>There was some interesting talk about business models, design, and adsense and how ugly sites seem to do so well.  Scoble&#8217;s post on <a href="http://scobleizer.wordpress.com/2006/03/04/the-role-of-anti-marketing-design/">anti-marketing design</a> is an interesting follow-up on that topic.</p>
<p>I talked a bit on <a href="http://www.networthiq.com">NetworthIQ</a> (shocking I know): specifically about funding options, APIs, Quicken integration, and growth of the site.</p>
<p>I missed the topics from the other end of the table, so feel free to join the converstation with your own writeups.</p>
<p>So, where is this going to go?  Sounds like everybody was up for getting some space and a projector for next month.  Definitely keep the social aspect, but add a presenter or two.  We can take that conversation over to the <a href="http://groups.google.com/group/pdxwebInnovators">google group</a>.</p>
<p>Thanks for coming everybody and we&#8217;ll see you next month.</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tags/pdxwi" rel="tag">pdxwi</a>, <a href="http://www.technorati.com/tags/pdx" rel="tag">pdx</a>, <a href="http://www.technorati.com/tags/portland" rel="tag">portland</a></span></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/03/11/pdx-web-innovators/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>OEF PubTalk: Seed Oregon</title>
		<link>https://www.webthingsconsidered.com/2006/03/10/oef-pubtalk-seed-oregon/</link>
		<comments>https://www.webthingsconsidered.com/2006/03/10/oef-pubtalk-seed-oregon/#respond</comments>
		<pubDate>Fri, 10 Mar 2006 15:40:05 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=109</guid>
		<description><![CDATA[Wednesday night was a very rare night for me with two events in one night (more about PDX Web Innovators in the next post). As is often the case with OEF events, I heard about the Seed Oregon PubTalk at the last minute (I&#8217;ve sent feedback to OEF that they need to do better at &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/03/10/oef-pubtalk-seed-oregon/" class="more-link">Continue reading<span class="screen-reader-text"> "OEF PubTalk: Seed Oregon"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Wednesday night was a very rare night for me with two events in one night (more about PDX Web Innovators in the next post).  As is often the case with <a href="http://www.oef.org">OEF</a> events, I heard about the <a href="https://www.oef.org/events/registration_details?reg_name=pubtalk&#038;venue_id=9">Seed Oregon PubTalk</a> at the last minute (I&#8217;ve sent feedback to OEF that they need to do better at getting notices out of their events, with Upcomig.org or something.  I even signed up for emails, but still didn&#8217;t get anything about this.).  Since I missed Angel Oregon, I really wanted to make this and see some companies pitch and check out the environment.  The companies had to do a true elevator pitch, with no powerpoint or presentation tools.  Out of the 5 companies that pitched, there were some interesting ideas.  These were the companies:</p>
<ul>
<li>Acquirit -Agricultue technology/software</li>
<li>IterationZero &#8211; agile software development tools</li>
<li><a href="http://www.documaxenterprises.com/">DOCUMAX Enterprises</a> &#8211;  Accounts Payable technology</li>
<li>ParaMedia &#8211; &#8220;iTunes for print media&#8221; was the analogy used (comic books was the prime example)</li>
<li><a href="http://iknoodle.com/">iKnoodle</a> &#8211; Ad toolbar that benefits charities</li>
</ul>
<p>Unbelievable, only 2 of these companies have a web site?  I know they&#8217;re not exactly web companies, but sheesh, what year is this?  How am I supposed to learn more about the company?  Even if you&#8217;re early stage, it seems like a site would be a good idea.  Throw a blog up at least.</p>
<p>Anyway, they all got some good questions from the judges and the audience.  IterationZero got the most pushback, mostly because the pitch gave some pretty big numbers (i.e. 84% of software projects fail) but I think there are some good ideas there.  Their angle is to help companies adapt agile methodolgies more gradually, by identifying the areas of agile most likely to succeed and starting with the easy ones.  There&#8217;s a lot of talk about the dangers of &#8220;building to flip&#8221; in the web 2.0 world.  That&#8217;s their business model, get something out and get bought by the IBM&#8217;s of the world.</p>
<p>I don&#8217;t know much about agriculture or Accounts Payable tools.  But, both seemed like viable ideas.  I&#8217;m not sure about the ad toolbar.  I think I&#8217;d rather just write a check to a charity rather than suffer through intersital ads.  But, who knows.  The &#8220;iTunes for print media&#8221; idea seems like it could have many large competitors in no time flat, but if they can be first, all the power to them.</p>
<p>It was a good experience to go.  I think it&#8217;s something we&#8217;ll aim to do with Fourio/NetworthIQ, perhaps for next month if we can get on the list.  Although public speaking and I don&#8217;t exactly get along too well.  So, Todd may get the call ;-).</p>
<p><span class="technoratitag">Technorati Tags: <a href="http://www.technorati.com/tags/portland" rel="tag">portland</a>, <a href="http://www.technorati.com/tags/pdx" rel="tag">pdx</a>, <a href="http://www.technorati.com/tags/oef" rel="tag">oef</a>, <a href="http://www.technorati.com/tags/entrepreneur" rel="tag">entrepreneur</a></span></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/03/10/oef-pubtalk-seed-oregon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s up with TechCrunch?</title>
		<link>https://www.webthingsconsidered.com/2006/03/10/whats-up-with-techcrunch/</link>
		<comments>https://www.webthingsconsidered.com/2006/03/10/whats-up-with-techcrunch/#respond</comments>
		<pubDate>Fri, 10 Mar 2006 14:57:20 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[NetworthIQ]]></category>
		<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=108</guid>
		<description><![CDATA[Or I should say what&#8217;s down, because it&#8217;s been down all morning. But, I guess since it&#8217;s not even 7:00 here on the west coast it&#8217;s not really all morning. I&#8217;ve just been up for a few hours already, so it feels like it. I&#8217;ve been trying to follow the conversation about Minti and niche &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/03/10/whats-up-with-techcrunch/" class="more-link">Continue reading<span class="screen-reader-text"> "What&#8217;s up with TechCrunch?"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Or I should say what&#8217;s down, because it&#8217;s been down all morning.  But, I guess since it&#8217;s not even 7:00 here on the west coast it&#8217;s not really all morning.  I&#8217;ve just been up for a few hours already, so it feels like it.  I&#8217;ve been trying to follow the conversation about <a href="http://www.techcrunch.com/2006/03/09/minti-niche-web-20-stuff-is-coming/">Minti</a> and niche Web 2.0 sites (ahem, such as <a href="http://www.networthiq.com">NetworthIQ</a>).</p>
<p>Mike has some interesting comments about walled gardens.  In general, I don&#8217;t tend to buy his argument about aggregating content from blogs and not forcing people to enter content on the site.  I think it&#8217;s a nice addition to be able to do so, but it&#8217;s not essential at this point (early in a product&#8217;s lifespan, the internet as a whole doesn&#8217;t really get it).  It does get me thinking about NetworthIQ and our other projects and how we should reach out beyond our walls.</p>
<p>Mike, just so you know, NetworthIQ has all kinds of RSS feeds.  We&#8217;re not perfect yet as far as getting data in and out, but I do agree that RSS is a good first step.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/03/10/whats-up-with-techcrunch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So many ideas, so little&#8230;.</title>
		<link>https://www.webthingsconsidered.com/2006/03/10/so-many-ideas-so-little/</link>
		<comments>https://www.webthingsconsidered.com/2006/03/10/so-many-ideas-so-little/#comments</comments>
		<pubDate>Fri, 10 Mar 2006 14:36:17 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=107</guid>
		<description><![CDATA[It was a little over a year ago that I started seriously brainstorming application/business ideas. We had struggled to get going on our first idea, so something simpler was needed. I amassed a list of ideas, which isn&#8217;t particularly hard these days. It&#8217;s pretty simple to follow the blogs and trends to pick up ideas. &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/03/10/so-many-ideas-so-little/" class="more-link">Continue reading<span class="screen-reader-text"> "So many ideas, so little&#8230;."</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>It was a little over a year ago that I started seriously brainstorming application/business ideas.   <a href="http://www.fourio.com">We</a> had struggled to get going on our first idea, so something simpler was needed.   I amassed a list of ideas,  which isn&#8217;t particularly hard these days.  It&#8217;s pretty simple to follow the blogs and trends to pick up ideas.  Almost exactly one year ago, <a href="http://www.networthiq.com">NetworthIQ</a> was picked to be first.  What&#8217;s interesting is how many of these ideas have shown up in different forms recently.  Like what you  ask?</p>
<p>Well, a few ideas were:</p>
<ul>
<li>Social Parenting: <a href="http://www.minti.com/">Minti</a> was launched this week, pretty darn close to what I had in mind, but there&#8217;s some other aspects that it still doesn&#8217;t quite hit (my vague way of saying, there&#8217;s still some opportunity here, but probably will just mean sending some ideas to <a href="http://www.techuncut.com/">Clay</a> and team).</li>
<li>CRM in the spirit of <a href="http://www.37signals.com">37signals</a> apps: I guess the guys at 37signals <a href="http://www.37signals.com/svn/archives2/sunrise_37signals_crm_tool_for_small_business_is_coming_soon.php">thought the same thing</a>, and being that they are 37signals, I think they&#8217;ve got the &#8220;in the spirt of&#8221; part down.</li>
<li>Blog Network: Ok, this was probably obvious to everybody because there are a lot of them now.  But, I think there&#8217;s still some opportunity for location centric blog networks, a real citizen journalism alternative to the local newspaper with subjects including local news, sports, business, gossip, etc.  Put all this easily accessible in one place.</li>
</ul>
<p>This is just the tip of the iceberg.  I wouldn&#8217;t want to give everything away, but it&#8217;s interesting to see others come up with similar ideas.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/03/10/so-many-ideas-so-little/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Web 2.0 directory</title>
		<link>https://www.webthingsconsidered.com/2006/03/03/web-20-directory/</link>
		<comments>https://www.webthingsconsidered.com/2006/03/03/web-20-directory/#comments</comments>
		<pubDate>Fri, 03 Mar 2006 15:10:19 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=105</guid>
		<description><![CDATA[Previously I wrote about the need for a Web 2.0 list with categories, descriptions, ratings, etc. Well, yet another web 2.0 list makes it way onto the web. But, this Web 2.0 directory is definitely worth noting. It has categorized over 900 web2.0 sites. This is going to be a big help for completing descriptions &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/03/03/web-20-directory/" class="more-link">Continue reading<span class="screen-reader-text"> "Web 2.0 directory"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Previously <a href="http://www.webthingsconsidered.com/index.php/2006/02/14/tracking-web-20/">I wrote</a> about the need for a Web 2.0 list with categories, descriptions, ratings, etc.  Well, yet another web 2.0 list makes it way onto the web.  But, <a href="http://www.econsultant.com/web2/"> this Web 2.0 directory</a> is definitely worth noting.  It has categorized over 900 web2.0 sites.  This is going to be a big help for completing descriptions and categories/tags on the innovation map.  It also means there&#8217;s a lot not on the map yet.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/03/03/web-20-directory/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Portland Web Innovators</title>
		<link>https://www.webthingsconsidered.com/2006/02/26/portland-web-innovators/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/26/portland-web-innovators/#respond</comments>
		<pubDate>Mon, 27 Feb 2006 03:30:53 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=103</guid>
		<description><![CDATA[Adam got the ball rolling with his post. I&#8217;ll spread the word a little more here. We&#8217;re looking to start a new, more informal group for Portland web types to get together. Inspired by groups in Boston and San Francisco, we&#8217;re calling it Portland Web Innovators. We know there are many great developers, designers, and &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/02/26/portland-web-innovators/" class="more-link">Continue reading<span class="screen-reader-text"> "Portland Web Innovators"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.adamduvander.com/">Adam</a> got the ball rolling with his <a href="http://adamduvander.com/projects/portland-web-innovators">post</a>.  I&#8217;ll spread the word a little more here.  We&#8217;re looking to start a new, more informal group for Portland web types to get together.  Inspired by groups in <a href="http://www.webinnovatorsgroup.com/boston/">Boston</a> and <a href="http://wsfinder.jot.com/WikiHome/SF+Web+Innovators">San Francisco</a>, we&#8217;re calling it <a href="http://pdxwebinnovators.jot.com/WikiHome">Portland Web Innovators</a>.  We know there are many great developers, designers, and entrepreneurs around, so check out the <a href="http://pdxwebinnovators.jot.com/WikiHome">wiki</a> and sign up if you&#8217;re interested.</p>
<p>We&#8217;re looking to get a first meeting setup sometime in March.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/26/portland-web-innovators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetworthIQ in Business Week</title>
		<link>https://www.webthingsconsidered.com/2006/02/23/networthiq-in-business-week/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/23/networthiq-in-business-week/#respond</comments>
		<pubDate>Fri, 24 Feb 2006 05:16:00 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Fourio]]></category>
		<category><![CDATA[NetworthIQ]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=102</guid>
		<description><![CDATA[Fresh off the buzz of the Innovation Map, we turn our attention back now to NetworthIQ. This is an exciting time at NetworthIQ headquarters (virtual headquarters that is) as this week&#8217;s issue of Business Week features an article (free right now) on personal finance blogs and NetworthIQ is mentioned. Needless to say, the rest of &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/02/23/networthiq-in-business-week/" class="more-link">Continue reading<span class="screen-reader-text"> "NetworthIQ in Business Week"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p><img src='/wp-content/0610covdv.gif' alt='Business Week' /></p>
<p>Fresh off the buzz of the Innovation Map, we turn our attention back now to NetworthIQ.  This is an exciting time at NetworthIQ headquarters (virtual headquarters that is) as this week&#8217;s issue of Business Week features an <a href="http://www.businessweek.com/magazine/content/06_10/b3974111.htm">article</a> (free right now)  on personal finance blogs and NetworthIQ is mentioned.  Needless to say, the rest of the <a href="http://www.fourio.com">Fourio</a> team and I are pretty happy to get this level of exposure.  First the <a href="http://www.nytimes.com/2005/09/18/business/yourmoney/18blog.html">NY Times</a> and now Business Week.  Two big wins with barely a penny spent on marketing (ok I ran a couple of Adwords and Yahoo Search Marketing experiments).  Maybe there&#8217;s something to this viral marketing thing.</p>
<p>It&#8217;s really funny too, because I was heading on a vacation to Sunriver (central Oregon) when the NY Times article ran and I&#8217;m heading back to Sunriver tomorrow for the weekend.  I should really get to Sunriver more often if this keeps happening.</p>
<p><strong>Update:</strong><br />
The article is free right now, though I don&#8217;t know for how long that usually lasts:<br />
<a href="http://www.businessweek.com/magazine/content/06_10/b3974111.htm">http://www.businessweek.com/magazine/content/06_10/b3974111.htm</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/23/networthiq-in-business-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Putting Platial on the map</title>
		<link>https://www.webthingsconsidered.com/2006/02/22/putting-platial-on-the-map/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/22/putting-platial-on-the-map/#comments</comments>
		<pubDate>Thu, 23 Feb 2006 01:45:17 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=101</guid>
		<description><![CDATA[One of the perks of developing the Web 2.0 map has been the response from other Web 2.0 companies, both well known and those that had escaped my radar previously. I was amazed at some of the people submitting their sites or corrections for the map. It was quite a thrill. One of the companies &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/02/22/putting-platial-on-the-map/" class="more-link">Continue reading<span class="screen-reader-text"> "Putting Platial on the map"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>One of the perks of developing the <a href="http://www.fourio.com/web20map">Web 2.0 map</a> has been the response from other Web 2.0 companies, both well known and those that had escaped my radar previously.  I was amazed at some of the people submitting their sites or corrections for the map.   It was quite a thrill.</p>
<p>One of the companies that had escaped my radar was <a href="http://www.platial.com">Platial</a>, a company right here in Portland doing some exciting things with maps.  Platial is billed as a collaborative atlas.  You can create maps of places meaningful to you, share them, tag them, and connect with other users.  I really dig the combination of a map visual with a storytelling aspect that goes along with it.   It&#8217;s understanable that they&#8217;re flying under most radars, the site is in its very early beta stages (launched in December, just hit 1000 users yesterday).  I imagine the buzz level will be escalating before long.</p>
<p>So, anyway, after hearing from one of their developers, I put them on the map and got a note from one of the founders, Di-Ann Eisnor.  Being the budding entrepreneur, I took the opportunity to do a little networking and so yesterday I went to visit Di-<br />
Ann and the rest of the <a href="http://platial.typepad.com/news/2006/02/state_of_the_co.html">Platial team</a>.  They really have some extremely bright people, which when it comes down to it, usually determines the success of a company.  I had a great time learning about what they&#8217;re doing and sharing a bit about what we&#8217;re doing.  It&#8217;s fun finding people that are passionate about the same things you are (and hold that thought for a later post, <a href="http://www.adamduvander.com">Adam DuVander</a> and I are thinking of something for Portland to make this a more common occurence).  I anticipate big things from Platial and am looking forward to seeing what&#8217;s coming.  Thanks for letting me stop by.</p>
<p>The irony though is that they had actually started a Web 2.0 map (seen <a href="http://www.platial.com/mountaineer/map/1768">here</a>) about the same time I started mine.  If their map had taken off before I finished mine, I never would have had this opportunity.  Goes to show, the release early motto can pay dividends.  I&#8217;m also now intrigued about integrating my map more with Platial.</p>
<p>Tags: <a href="http://www.technorati.com/tag/platial" rel="tag">platial</a> <a href="http://www.technorati.com/tag/geo" rel="tag">geo</a> <a href="http://www.technorati.com/tag/maps" rel="tag">maps</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/22/putting-platial-on-the-map/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>More on Ma.gnolia</title>
		<link>https://www.webthingsconsidered.com/2006/02/20/more-on-magnolia/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/20/more-on-magnolia/#comments</comments>
		<pubDate>Tue, 21 Feb 2006 00:51:35 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Business]]></category>
		<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=100</guid>
		<description><![CDATA[I checked out Ma.gnolia today. First the good: groups and private bookmarks are nice and the UI is clean and simple. But, there is some bad, enough of which to keep me away for now. A few things really bug me: 1) The domain name is terrible (as mentioned previously). 2) The masked URLs are &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/02/20/more-on-magnolia/" class="more-link">Continue reading<span class="screen-reader-text"> "More on Ma.gnolia"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I checked out Ma.gnolia today.  First the good: groups and private bookmarks are nice and the UI is clean and simple.  But, there is some bad, enough of which to keep me away for now.  A few things really bug me:</p>
<p>1) The domain name is terrible (as mentioned previously).</p>
<p>2) The masked URLs are lame.  Use some unobtrusive javascript or something to track clicks if you must.  But, I&#8217;d really like to see the real link in the anchor tag, so I can easily right click and copy the url (should I want to).  This is too obtrusive.</p>
<p>3) Build a firefox extension.  Bookmarklets are ok, but an extension with quick access to adding, viewing, viewing popular, viewing tags, etc. makes it much easier to use a social bookmarking site.</p>
<p>So, it&#8217;s back to <a href="http://del.icio.us">delicious</a> for now, but if they keep at it, I&#8217;ll try it again later on.</p>
<p><strong>Update</strong><br />
I emailed them this same feedback and I got a response back from Todd Sieling, the product manager.  Sounds like the domain name is here to stay.  But, they may be open to changing the re-direct urls into something a little less obtrusive.  Todd also reports that an API is on the way which may spur more tools/extensions.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/20/more-on-magnolia/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Random Thoughts</title>
		<link>https://www.webthingsconsidered.com/2006/02/19/random-thoughts/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/19/random-thoughts/#respond</comments>
		<pubDate>Mon, 20 Feb 2006 05:18:41 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=99</guid>
		<description><![CDATA[I&#8217;ve been pretty slammed over the last week and this week looks pretty busy as well. So, I only have time for a couple quick thoughts. Thought #1 Dang, Zillow.com (previously discussed here) sure shot to the top. Have you seen their numbers? I&#8217;m impressed. Looks like they came through that inital rough patch with &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/02/19/random-thoughts/" class="more-link">Continue reading<span class="screen-reader-text"> "Random Thoughts"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been pretty slammed over the last week and this week looks pretty busy as well.  So, I only have time for a couple quick thoughts.</p>
<p><strong>Thought #1</strong><br />
Dang, <a href="http://www.zillow.com/">Zillow.com</a> (previously discussed <a href="http://www.webthingsconsidered.com/index.php/2006/02/08/zillowcom-launch/">here</a>) sure <a href="http://www.alexa.com/data/details/traffic_details?q=&#038;url=www.zillow.com">shot to the top</a>.  Have you seen their numbers?  I&#8217;m impressed.  Looks like they came through that inital rough patch with barely a scratch.  I hear about them everywhere it seems.  Newspaper, local news, co-workers, in-laws.  I&#8217;ll have more to say about the response to Zillow.com in the real estate community in a future post.</p>
<p><strong>Thought #2</strong><br />
<a href="http://ma.gnolia.com/">Ma.gnolia.com</a> came out of beta the other day.  Another social bookmarking tool with a funny domain name.  C&#8217;mon people, if you want to break out of the techie/early adopter crowd, stop with these funky punctuated domain names.  I&#8217;m always surprised how programmed most people are to type &#8220;www.whatever.com&#8221; (they always seem to start with the www, even if you don&#8217;t say it) and it is hard to get them out of this groove.  So, make it easy on them.  How difficult is it going to be for me to tell somebody, &#8220;check out magnolia,&#8221; and they go to magnolia.com, which is apparently part of Exxon/Mobil.   Must be an another oil conspiracy.  At least <a href="http://del.icio.us">del.icio.us</a> bought the real thing.  (somebody else discussed this recently, but I can&#8217;t remember who/where)</p>
<p>The reviews are mixed, though I am seeing enough positive response to give it a shot myself.  Zeldman&#8217;s team did the design, so it&#8217;ll be worth it just to check out their work.  But, can you believe it took <a href="http://www.zeldman.com/daily/0206g.shtml">six people</a> to do the UI?  Crazy.  I thought that was a joke the first time I read it.  I&#8217;m all for great design, usability and clean markup, but that seems like a bit much.   I hope Gnolia got a good deal.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/19/random-thoughts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajax Lessons</title>
		<link>https://www.webthingsconsidered.com/2006/02/14/ajax-lessons/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/14/ajax-lessons/#respond</comments>
		<pubDate>Tue, 14 Feb 2006 23:29:45 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=96</guid>
		<description><![CDATA[If you&#8217;re interested in learning AJAX, take a look at AJAX Lessons. (and if you click on that link you&#8217;ll help me win free books. What can I say, I&#8217;m a sucker for free stuff)]]></description>
				<content:encoded><![CDATA[<p>If you&#8217;re interested in learning AJAX, take a look at <a href="http://www.ajaxlessons.com/contest/?ref=webthingsconsidered.com">AJAX Lessons</a>.  (and if you click on that link you&#8217;ll help me win free books.  What can I say, I&#8217;m a sucker for free stuff)</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/14/ajax-lessons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tracking Web 2.0</title>
		<link>https://www.webthingsconsidered.com/2006/02/14/tracking-web-20/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/14/tracking-web-20/#comments</comments>
		<pubDate>Tue, 14 Feb 2006 13:42:11 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=95</guid>
		<description><![CDATA[Update Cleaned up the lists and added a couple of the newer sites. This will now be maintained in a new page for Tracking Web 2.0 Maybe it&#8217;s just because I made one myself and tend to notice these things more now, but it seems there are an over abundance of web 2.0 tracking sites &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/02/14/tracking-web-20/" class="more-link">Continue reading<span class="screen-reader-text"> "Tracking Web 2.0"</span></a></p>]]></description>
				<content:encoded><![CDATA[<div style="border:1px solid black;background-color:silver">
<strong>Update</strong><br />
Cleaned up the lists and added a couple of the newer sites.  This will now be maintained in a new page for <a href="http://www.webthingsconsidered.com/tracking-web-20/">Tracking Web 2.0</a>
</div>
<p>Maybe it&#8217;s just because I made one myself and tend to notice these things more now, but it seems there are an over abundance of web 2.0 tracking sites popping up.  However, there is still not a clear winner when it comes to providing a way of finding the best of the new online services.  This weekend Pete Cashmore launched his <a href="http://www.mashable.com/weblist/">Weblist</a> blog which adds detailed reviews and user ratings to the mix.  Another one that&#8217;s gaining steam is this <a href="http://www.listible.com/list/complete-list-of-web-2-0-products-and-services">list</a> on listible which actually started back in January.  The diggwatch blog has added a <a href="http://www.diggwatchblog.com/web-20-logos-and-links/">list</a>,  based on the <a href="http://flickr.com/photos/stabilo-boss/93136022/">Web 2.0 logo mashup</a>.  All of these go along with the previous set:</p>
<p>Web 2.0 Blogs (news/reviews/analysis):</p>
<ul>
<li><a href="http://www.techcrunch.com">TechCrunch</a></li>
<li><a href="http://www.readwriteweb.com/">Read/Write Web</a></li>
<li><a href="http://www.webware.com/">WebWare</a></li>
<li><a href="http://www.centernetworks.com/">CenterNetworks</a></li>
<li><a href="http://blogs.zdnet.com/web2explorer/">Web 2.0 Explorer</a></li>
<li><a href="http://www.solutionwatch.com/">Solution Watch</a></li>
<li><a href="http://www.mashable.com/">Mashable</a></li>
<li><a href="http://www.outsidethevalley.com/">Outside the Valley</a></li>
<li><a href="http://www.uncov.com/">Uncov</a></li>
<li><a href="http://startupsquad.com/">Startup Squad</a></li>
<li><a href="http://www.thealarmclock.com/mt/">alarm:clock</a></li>
<li><strike><a href="http://www.postbubble.com/">PostBubble</a></strike></li>
<li><strike>TechCrush</strike> (dead)</li>
<li><strike><a href="http://web2.0central.com/">Web 2.0 Central</a></strike> (appears dead)</li>
</ul>
<p>Web 2.0 Listings</p>
<ul>
<li><a href="http://www.fourio.com/web20map/">Web 2.0 Innovation Map</a></li>
<li><a href="http://www.emilychang.com/go/ehub">eHub</a></li>
<li><a href="http://momb.socio-kybernetics.net/section/about/">Museum of Modern Betas</a></li>
<li><a href="http://startupsearch.org/company/">Startup Search</a></li>
<li><a href="http://www.allthingsweb2.com/">All Things Web 2.0</a></li>
<li><a href="http://www.web2list.com/">Web 2.0 List</a></li>
<li><a href="http://www.killerstartups.com/">KillerStartups</a></li>
<li><a href="http://web2.econsultant.com/">Web 2.0 Directory</a></li>
<li><a href="http://2.0websites.com/">2.0websites.com</a></li>
<li><a href="http://www.buzzshout.com/">BuzzShout</a></li>
<li><a href="http://www.neobinaries.com/">NEO Binaries</a></li>
<li><a href="http://koolweb2.com/index.php">koolWEB 2.0</a></li>
<li><a href="http://web2.0slides.com/">web 2.0 slides</a></li>
<li><a href="http://www.alexaholic.com/sethgodin">Seth Godin&#8217;s Web 2.0 Traffic Watch List</a></li>
<li><a href="http://go2web20.net/">Go2Web20.net</a></li>
<li><a href="http://virtualkarma.blogspot.com/2006/01/complete-list-of-web-20-applications.html">Complete List of Web 2.0 Applications</a></li>
<li><strike><a href="http://www.mashable.com/weblist">Weblist</a></strike> (appears dead)</li>
<li><strike><a href="http://www.diggwatchblog.com/web-20-logos-and-links/">Web 2.0 logos and links</a></strike> (dead)</li>
<li><strike><a href="http://categoriz.com/">categoriz</a></strike> (dead)</li>
</ul>
<p>Best of lists:</p>
<ul>
<li><a href="http://web2.0awards.org/">Web 2.0 Awards</a></li>
<li><a href="http://www.realsoftwaredevelopment.com/2006/10/best_of_the_bes.html">Best of the Best Web 2.0 Web Sites</a></li>
<li><a href="http://www.articledashboard.com/Article/Top-10-Innovative-Web-2-0-Applications-of-2005/10891">Top 10 Innovative Web 2.0 Applications of 2005</a></li>
<li><a href="http://web2.wsj2.com/the_best_web_20_software_of_2005.htm">The Best Web 2.0 Software of 2005</a></li>
<li><a href="http://web2.wsj2.com/more_great_web_20_software.htm">More Great Web 2.0 Software</a></li>
</ul>
<p>These all serve their purpose in one way or another .  Mostly, they are best suited for promotion and demonstrating the explosion of internet services along with keeping early adopters in the loop of new stuff.   But, say I want to find the best calendar app with reviews, ratings, a screenshot, in a easy to navigate list.  Where do I go to get that info?  Seth Godin tells us <a href="http://sethgodin.typepad.com/seths_blog/2006/02/categories_and_.html">categories matter</a>, yet only eHub and Hinchcliffe&#8217;s lists (which aren&#8217;t perpetually updated) have some sort of categorization.</p>
<p>The blog format of TechCrunch, WebList, Web 2.0 Explorer, and Solution Watch is great for an initial review, but breaks down quickly when it comes to trying to scan hundreds of applications.  TechCrunch does try to solve this with the occaisonal rollup of a segment.  eHub is more concise and has categories, but lacks reviews and ratings.  The innovation map lacks descriptions, categories and ratings.  The listible list is also concise and has a rating feature, but lacks reviews, categories and editorial control, so at some point it will probably become worthless.</p>
<p>One of the commenters on Pete&#8217;s <a href="http://mashable.com/2006/02/11/new-mashable-blog-weblist/">Weblist introduction</a> mentioned a versiontracker.com type site.  That&#8217;s exactly right.  What we need is something like Programmable Web&#8217;s <a href="http://www.programmableweb.com/apis">api</a> and <a href="http://www.programmableweb.com/mashups">mashup</a> databases.  These have a nice concise listing, with descriptions, creator, tags/categories, popularity, ratings.  Take this and add a TechCrunch/SW/Weblist style review, screenshot, and comments to the detail page.  Expose an RSS feed and a simple API to enable mashups like the innovation map.  Then you&#8217;d have something great.  That would really help people discover Web 2.0 apps of interest.</p>
<p>Since Weblist has ratings, it&#8217;s probably closest.  Add a rollup page like Programmable Web&#8217;s, track click-thrus for popularity, and add tags and you would pretty much be there.  Hopefully somebody will build this.  If you&#8217;re looking to promote something or yourself, this would be a great way to do it.  If not, I&#8217;ll add this to my todo list, but I really do need to focus on my other projects, so don&#8217;t tempt me.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/14/tracking-web-20/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>What&#8217;s with the IOs? (some history about Fourio)</title>
		<link>https://www.webthingsconsidered.com/2006/02/12/whats-with-the-ios-some-history-about-fourio/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/12/whats-with-the-ios-some-history-about-fourio/#respond</comments>
		<pubDate>Sun, 12 Feb 2006 21:12:32 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Fourio]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=92</guid>
		<description><![CDATA[Seeing that Edgeio is getting some pretty good buzz this week and ready to launch in a few weeks, I thought I&#8217;d comment on the name and it&#8217;s similarity to our company name, Fourio. Not that anyone would ever confuse the two. Because of who&#8217;s behind it (and its potential), they&#8217;ll be getting more press &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/02/12/whats-with-the-ios-some-history-about-fourio/" class="more-link">Continue reading<span class="screen-reader-text"> "What&#8217;s with the IOs? (some history about Fourio)"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Seeing that <a href="http://www.edgeio.com/">Edgeio</a> is getting some pretty <a href="http://blogs.businessweek.com/the_thread/techbeat/archives/2006/02/edgeio_edges_ou.html">good buzz</a> this week and ready to launch in a few weeks, I thought I&#8217;d comment on the name and it&#8217;s similarity to our company name, <a href="http://www.fourio.com">Fourio</a>.  Not that anyone would ever confuse the two.  Because of who&#8217;s behind it (and its potential), they&#8217;ll be getting more press than we dream of and we won&#8217;t be competing or anything.  But, I want to make it clear that Fourio is an original name.</p>
<p>Fourio, the name, was created by <a href="http://dual1dentity.blogspot.com/">Todd</a> almost two years ago now.  He put it in the header of our team blog, and at first the response, to Todd&#8217;s dismay, was a bit underwhelmed.  I thought it was the name of the WordPress theme.  But, after hearing that it was the company name, I was like, &#8220;hey, that&#8217;s pretty cool.&#8221;  Very unique and appropriate.  The name sums up the fact that there were four of us (then three, now four again), taking ideas (input) and creating apps (output).   Back then, there was a lot of input, but not much output, as is often the case when building stuff outside of your day job.  With <a href="http://www.networthiq.com">NetworthIQ</a> and the <a href="http://www.fourio.com/web20map/">Innovation Map</a>, the output finally started to pick up and with the next project moving towards a prototype, we&#8217;re downright sprinting right now ;-).  So, that&#8217;s how we came to be known as Fourio.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/12/whats-with-the-ios-some-history-about-fourio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New web startup to call Portland home</title>
		<link>https://www.webthingsconsidered.com/2006/02/12/new-web-startup-to-call-portland-home/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/12/new-web-startup-to-call-portland-home/#comments</comments>
		<pubDate>Sun, 12 Feb 2006 20:36:24 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Portland]]></category>
		<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=91</guid>
		<description><![CDATA[I haven&#8217;t been very good about reading the paper recently. Mornings are usually spent working on my projects, then off to my job, then home with family and maybe a little more work at night. But, today I caught an article about a Japanese software entrepreneur, Toru Takasuka, and his plans to base his new &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/02/12/new-web-startup-to-call-portland-home/" class="more-link">Continue reading<span class="screen-reader-text"> "New web startup to call Portland home"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I haven&#8217;t been very good about reading the paper recently.  Mornings are usually spent working on my projects, then off to my job, then home with family and maybe a little more work at night.  But, today I caught an <a href="http://www.oregonlive.com/business/oregonian/index.ssf?/base/business/1139554871131440.xml&#038;coll=7">article</a> about a Japanese software entrepreneur, Toru Takasuka, and his plans to base his new web startup in Portland.  Takasuka will be pouring $10 million of his own money into the project.  The company name is Lunarr Inc., but he doesn&#8217;t go into much detail about what the product is exactly.  This is the most we get: </p>
<blockquote><p>&#8220;He says he will develop a Web-based product that will allow business people to handle their computer needs, boosting productivity through collaboration. Information will be accessible via anything from a personal computer to a cell phone to a television.&#8221;</p></blockquote>
<p>Hmmm, can&#8217;t get much vague than that.  But, based on his track record with <a href="http://cybozu.com/">Cybozu</a> and its groupware, it will be interesting to see what the result is.  It&#8217;s Good to see some things happening in Portland.  As you can see from the <a href="http://www.fourio.com/web20map/">Innovation Map</a>, we&#8217;ve got a lot of room for growth.</p>
<p>Tags: <a href="http://www.technorati.com/tag/Lunarr" rel="tag">Lunarr</a> <a href="http://www.technorati.com/tag/portland" rel="tag">Portland</a> <a href="http://www.technorati.com/tag/groupware" rel="tag">groupware</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/12/new-web-startup-to-call-portland-home/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Carnival of Entrepreneurship</title>
		<link>https://www.webthingsconsidered.com/2006/02/09/carnival-of-entrepreneurship/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/09/carnival-of-entrepreneurship/#respond</comments>
		<pubDate>Thu, 09 Feb 2006 19:15:08 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Innovation Map]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=90</guid>
		<description><![CDATA[This week&#8217;s Carnival of Entrepreneurship is up at Small Business Trends and it happens to include the Innovation Map .]]></description>
				<content:encoded><![CDATA[<p>This week&#8217;s <a href="http://www.smallbiztrends.com/2006/02/welcome-to-carnival-of-entrepreneurship-edition-two.html">Carnival of Entrepreneurship</a> is up at <a href="http://www.smallbiztrends.com/">Small Business Trends</a> and it happens to include the <a href="http://www.fourio.com/web20map">Innovation Map</a> .</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/09/carnival-of-entrepreneurship/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zillow.com launch</title>
		<link>https://www.webthingsconsidered.com/2006/02/08/zillowcom-launch/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/08/zillowcom-launch/#comments</comments>
		<pubDate>Wed, 08 Feb 2006 16:36:40 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Business]]></category>
		<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=89</guid>
		<description><![CDATA[Wow, I bet heads are rolling somewhere in Seattle today. Zillow.com launched today (more here), complete with $32 million and 75 employees, and what do we get for that? A nice big outage message. I&#8217;ll say it again, wow! $32 million and you can&#8217;t run a load test? Zillow promises to be able value your &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/02/08/zillowcom-launch/" class="more-link">Continue reading<span class="screen-reader-text"> "Zillow.com launch"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Wow, I bet heads are rolling somewhere in Seattle today.  <a href="http://www.zillow.com/">Zillow.com</a> launched today (more <a href="http://seattlepi.nwsource.com/business/258748_zillow08.html">here</a>), complete with $32 million and 75 employees, and what do we get for that?  A nice big outage message.  I&#8217;ll say it again, wow!  $32 million and you can&#8217;t run a load test?</p>
<p>Zillow promises to be able value your home for you, which is an interesting idea.  I&#8217;m in the middle of buying and selling a house so I was really excited to try it out.  I managed to get in to value my house and Zillow valued it about 10% under what we just sold it for.  But, considering the market these days, I don&#8217;t think that&#8217;s too terrible.   With the lack of comps for our neighborhood, I doubt an agent would have done much better (we sold by owner).  I didn&#8217;t get a chance to value the house I&#8217;m buying, but hopefully will soon, if they can come back online.</p>
<p>I will definitely keep an eye on it, though, because this would be a great tool for <a href="http://www.networthiq.com">NetworthIQ</a> users to be able to value their real estate.  I wonder if Zillow will have an API at some point we could tie into?</p>
<p><strong>Update</strong><br />
It&#8217;s back up now.  The house we&#8217;re buying comes up less than 1% under what we paid.  Not bad.  According to Zillow we&#8217;re selling for 10% more than our house is worth and buying for 1% more than the house is worth.  Aren&#8217;t we the dealmakers <img src="https://s.w.org/images/core/emoji/11/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" />  (of course it never feels like it when you&#8217;re paying as much as houses cost these days)</p>
<p>Tags: <a href="http://www.technorati.com/tag/zillow" rel="tag">zillow</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/08/zillowcom-launch/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>We&#8217;re on TV</title>
		<link>https://www.webthingsconsidered.com/2006/02/07/were-on-tv/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/07/were-on-tv/#respond</comments>
		<pubDate>Tue, 07 Feb 2006 23:50:50 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Innovation Map]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=88</guid>
		<description><![CDATA[This was fun to find. The commandN web video show featured the Web 2.0 Innovation map in this week&#8217;s episode. Thanks commandN!]]></description>
				<content:encoded><![CDATA[<p>This was fun to find.  The <a href="http://commandn.typepad.com/commandn/2006/02/episode_32_febr.html">commandN</a> web video show featured the <a href="http://www.fourio.com/web20map">Web 2.0 Innovation map</a> in this week&#8217;s episode.  Thanks commandN!</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/07/were-on-tv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More maps</title>
		<link>https://www.webthingsconsidered.com/2006/02/06/more-maps/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/06/more-maps/#comments</comments>
		<pubDate>Tue, 07 Feb 2006 01:51:48 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Innovation Map]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=87</guid>
		<description><![CDATA[Some more maps that have been brought to my attention over the last week: SF Bay Area Tech Companies European Web 2.0 map A Web 2.0 meme map In the O&#8217;Reilly Post, PJ from Wayfaring makes a comment about creating maps like ours there. For some reason, none of my comments went through (I got &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/02/06/more-maps/" class="more-link">Continue reading<span class="screen-reader-text"> "More maps"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Some more maps that have been brought to my attention over the last week:</p>
<ul>
<li><a href="http://www.wayfaring.com/maps/show/4358">SF Bay Area Tech Companies</a></li>
<li><a href="http://www.frappr.com/europeanweb2startups/map">European Web 2.0 map</a></li>
<li><a href="http://flickr.com/photos/kosmar/62381076/in/set-1371686/">A Web 2.0 meme map</a></li>
</ul>
<p>In the <a href="http://radar.oreilly.com/archives/2006/01/web_20_innovation_map.html">O&#8217;Reilly Post</a>, PJ from Wayfaring makes a comment about creating maps like ours there.  For some reason, none of my comments went through (I got in the blog itself, but I can&#8217;t get a comment through?).  So, responding here, I hadn&#8217;t really considered using another site, as I wanted to funnel buzz through <a href="http://www.fourio.com">Fourio</a> and our projects.  Plus with so many points, using Wayfaring would have been very painful (I didn&#8217;t see any bulk create functionality, but maybe I missed it?).  But as you can see, someone else did.</p>
<p><a href="http://www.wayfaring.com">Wayfaring&#8217;s </a> interface is well done.  I especially like the tooltips and zoom for each point.  Going forward, the <a href="http://www.fourio.com/web20map">Innovation map</a> will probably evolve into more of a community created resource as to minimize maintenance.  Something to think about.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/06/more-maps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web 2.o Logos</title>
		<link>https://www.webthingsconsidered.com/2006/02/03/web-2o-logos/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/03/web-2o-logos/#respond</comments>
		<pubDate>Fri, 03 Feb 2006 21:50:35 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Innovation Map]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=86</guid>
		<description><![CDATA[Check this photo out on Flickr. Along with our map, this is quite the week for Web 2.0 compilations. (via Russell Beattie)]]></description>
				<content:encoded><![CDATA[<p>Check <a href="http://www.flickr.com/photos/stabilo-boss/93136022/">this photo</a> out on Flickr.  Along with our <a href="http://www.fourio.com/web20map">map</a>, this is quite the week for Web 2.0 compilations.</p>
<p>(via <a href="http://www.russellbeattie.com/notebook/1008786.html">Russell Beattie</a>)</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/03/web-2o-logos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LinkedIn</title>
		<link>https://www.webthingsconsidered.com/2006/02/02/linkedin/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/02/linkedin/#comments</comments>
		<pubDate>Thu, 02 Feb 2006 08:48:03 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=84</guid>
		<description><![CDATA[If there are any LinkedIn users out there. Feel free to connect with me at ryan@fourio.com.]]></description>
				<content:encoded><![CDATA[<p>If there are any LinkedIn users out there.  Feel free to connect with me at ryan@fourio.com.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/02/linkedin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Map updates</title>
		<link>https://www.webthingsconsidered.com/2006/02/02/map-updates/</link>
		<comments>https://www.webthingsconsidered.com/2006/02/02/map-updates/#respond</comments>
		<pubDate>Thu, 02 Feb 2006 08:43:42 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Innovation Map]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=83</guid>
		<description><![CDATA[I&#8217;m currently drowning in submissions. Perhaps email wasn&#8217;t the best mechanism for that, eh? Ahh well, live and learn. A victim of our own success. I hope to catch up by the weekend. There are many international ones, so that should start to satisfy some complaints about the map being too US centric. For anybody &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/02/02/map-updates/" class="more-link">Continue reading<span class="screen-reader-text"> "Map updates"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m currently drowning in submissions.  Perhaps email wasn&#8217;t the best mechanism for that, eh?  Ahh well, live and learn.  A victim of our own success.  I hope to catch up by the weekend.  There are many international ones, so that should start to satisfy some complaints about the map being too US centric.</p>
<p>For anybody reading this that has or is going to submit&#8230;. please include an address or a lat/long (just a url, or a url and a city doesn&#8217;t cut it).  This is a location based map after all and at this point, with the large number of submissions to go through, I&#8217;m not going to be to very willing to track down your location.   I beg you to make it easy for me.</p>
<p>One thing I didn&#8217;t anticipate, was the suddenness of becoming a Web 2.0 gatekeeper.  Determining which applications meet some generally accepted criteria of web 2.0 is a big judgement call, and one I&#8217;ll be wrestling with a bit as this fills out.  The web 2.0 debate is already pretty hot and I don&#8217;t wish the map to be an example for the critics/cynics to point at (any more than they already are of course :-)).</p>
<p>Stay tuned, there may be some big twists ahead.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/02/02/map-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Innovation Map news</title>
		<link>https://www.webthingsconsidered.com/2006/01/31/more-innovation-map-news/</link>
		<comments>https://www.webthingsconsidered.com/2006/01/31/more-innovation-map-news/#respond</comments>
		<pubDate>Wed, 01 Feb 2006 04:36:34 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Innovation Map]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=82</guid>
		<description><![CDATA[A very successful day in blogosphere for the map. Made the Digg front page and del.icio.us/popular page for the first time! (we got close to the del.icio.us/popular page for NetworthIQ). But even more exciting was that Tim O&#8217;Reilly (yes the one who publishes all those books on your bookshelf at work), who helped define the &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/01/31/more-innovation-map-news/" class="more-link">Continue reading<span class="screen-reader-text"> "More Innovation Map news"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>A very successful day in blogosphere for the <a href="http://www.fourio.com/web20map">map</a>.</p>
<p>Made the <a href="http://www.digg.com">Digg</a> front page  and <a href="http://del.icio.us/popular">del.icio.us/popular</a> page for the first time!  (we got close to the del.icio.us/popular page for NetworthIQ).</p>
<p>But even more exciting was that <a href="http://radar.oreilly.com/tim/">Tim O&#8217;Reilly</a> (yes the one who publishes all those books on your bookshelf at work), who helped define the Web 2.0 movement, <a href="http://radar.oreilly.com/archives/2006/01/web_20_innovation_map.html">posted</a>:</p>
<blockquote><p>
&#8220;It is indeed interesting. A lot of apps I haven&#8217;t followed (and missing a lot that I have) so I can&#8217;t speak to how thoroughly it covers Web 2.0 as I think of it. (There are a lot of different aspects to Web 2.0, so this is going to be hard to do.) But it&#8217;s really interesting to see how many of the apps Ryan has selected are not in Silicon Valley.&#8221;
</p></blockquote>
<p>The other big piece of news was that Google itself mentioned the site at the <a href="http://www.emilychang.com/go/weblog/comments/jp-morgan-and-connector-group-showcase/">JP Morgan and Connector Group Showcase</a> last night (<a href="http://www.maxkiesler.com/index.php/weblog/comments/236/">podcast available</a>).  That&#8217;s pretty cool, considering the presenters and attendees.  (if any of those influencers and/or investors would like to know about what else we&#8217;re up to at <a href="http://www.fourio.com">Fourio</a>, please contact me)</p>
<p>Feel free to follow along with news/reviews/comments with these links:<br />
<a href="http://del.icio.us/mountaineer/web20map_reviews">del.icio.us bookmarks</a><br />
<a href="http://digg.com/links/Web_2.0_Innovation_Map">digg.com/links/Web_2.0_Innovation_Map</a><br />
<a href="http://del.icio.us/url/02fd90592645b39be9052955c9e7f9cb">del.icio.us/url/02fd90592645b39be9052955c9e7f9cb</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/01/31/more-innovation-map-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The map is a hit</title>
		<link>https://www.webthingsconsidered.com/2006/01/31/the-map-is-a-hit/</link>
		<comments>https://www.webthingsconsidered.com/2006/01/31/the-map-is-a-hit/#respond</comments>
		<pubDate>Tue, 31 Jan 2006 14:34:31 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Innovation Map]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=81</guid>
		<description><![CDATA[Looks like the map is going over well. Here&#8217;s what&#8217;s happened so far. Dion Hinchcliffe says: &#8220;Visually shows where Web 2.0 development creativity is actually happening, using the latest Web 2.0 software lists. A pretty cool data point.&#8221; Google Maps Mania posted its review: &#8220;Ryan Williams has put together a great new Google Maps mashup &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/01/31/the-map-is-a-hit/" class="more-link">Continue reading<span class="screen-reader-text"> "The map is a hit"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Looks like the <a href="http://www.fourio.com/web20map/">map</a> is going over well.  Here&#8217;s what&#8217;s happened so far.</p>
<p><a href="http://web2.wsj2.com">Dion Hinchcliffe</a> says:</p>
<blockquote><p>&#8220;Visually shows where Web 2.0 development creativity is actually happening, using the latest Web 2.0 software lists. A pretty cool data point.&#8221;</p></blockquote>
<p>Google Maps Mania posted its <a href="http://googlemapsmania.blogspot.com/2006/01/google-maps-mashup-web-20-innovation.html">review</a>:</p>
<blockquote><p>&#8220;Ryan Williams has put together a great new Google Maps mashup called &#8216;The Web 2.0 Innovation Map'&#8221;</p></blockquote>
<p>Emily Chang <a href="http://www.emilychang.com/go/ehub/web-20-innovation-map/">added it to eHub</a> and is going to let me see the entire feed.  This will make the next step, adding brief descriptions to the listings so much easier.</p>
<p>The <a href="http://www.theinnovationinsider.com/2006/01/the_web_20_innovation_map.php">Innovation Insider</a> looks at some of the distribution.</p>
<p>The biggest news so far though is that the map made the <a href="http://del.icio.us/popular/">del.icio.us/popular</a> page.</p>
<p>Be sure to digg it if you get a chance: <a href="http://digg.com/links/Web_2.0_Innovation_Map">http://digg.com/links/Web_2.0_Innovation_Map</a>.</p>
<p>Not a bad first day.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/01/31/the-map-is-a-hit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 2.0 Innovation Map</title>
		<link>https://www.webthingsconsidered.com/2006/01/30/web-20-innovation-map/</link>
		<comments>https://www.webthingsconsidered.com/2006/01/30/web-20-innovation-map/#comments</comments>
		<pubDate>Mon, 30 Jan 2006 18:21:42 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Fourio]]></category>
		<category><![CDATA[Innovation Map]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=80</guid>
		<description><![CDATA[Introducing the Web 2.0 Innovation Map. We all know Silicon Valley is hot when it comes to web startups. But, what about other areas of the country? Are there any hidden hotbeds of web talent? What other groups were in the northwest along with Fourio? These were some of the questions I was looking to &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/01/30/web-20-innovation-map/" class="more-link">Continue reading<span class="screen-reader-text"> "Web 2.0 Innovation Map"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Introducing the <a href="http://www.fourio.com/web20map">Web 2.0 Innovation Map</a>.  We all know Silicon Valley is hot when it comes to web startups.   But, what about other areas of the country?  Are there any hidden hotbeds of web talent?  What other groups were in the northwest along with <a href="http://www.fourio.com">Fourio</a>?  These were some of the questions I was looking to answer.  Now, Web 2.0 can be visualized, using what else, but the Google Maps API and Yahoo Geocoding API.</p>
<p>I&#8217;ve taken 200 applications, tracked down their addresses, geocoded them, and placed them on the map.  With some help from <a href="http://dual1dentity.blogspot.com">Todd</a> on the design, this map was put together in the last week.  It was much more work than I thought it would be to track down the addresses.  Without a good (open/free/structured) WHOIS API, most of the address lookups were manual.  And don&#8217;t get me started on sites not listing a contact address.  Fortunately, my geocoder app worked great, so getting lats/longs was fairly painless.  Then it was just a matter of exporting the Excel data to a JavaScript array and hooking it up to the map.</p>
<p>On a side note, I&#8217;m not here to debate the &#8220;Web 2.0&#8221; term.  For this application, Web 2.0 is simply defined by the explosion of internet applications that have come out over the last year or so.  I&#8217;ve used other people&#8217;s lists to compile the apps to be mapped.</p>
<p>The map isn&#8217;t completely finished (what web application ever is?).  I&#8217;d like to add descriptions, include company information, and maybe add a little thumbnail of the site.  But, I like to release early and see what kind of interest there is before investing too much time.  Any feedback is appreciated.</p>
<p>If anybody knows of a good source for WHOIS data, or has a well structured (XML preferably) list of web apps with the name, url, and brief description (along the lines of an API for <a href="http://www.emilychang.com/go/ehub">eHub</a> or <a href="http://www.techcrunch.com">TechCrunch</a>), please let me know.</p>
<p>Thanks to <a href="http://www.trachtenberg.com/blog/">Adam Trachtenberg&#8217;s</a> <a href="http://www.trachtenberg.com/emgm/">eBay Motors &#038; Google Maps</a> mashup for being a great example of how to do a mashup.  It&#8217;s one of my favorites as far as implementation goes and was a big inspiration for the innovation map.</p>
<p><strong>Update:</strong><br />
I see that TechCrunch has added an <a href="http://www.crunchnotes.com/?p=132">OPML file</a>, which is a very big help.  The one problem is that it points to the TechCrunch post.  If there was something similar that pointed to the actual site&#8217;s URL, that would be awesome.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/01/30/web-20-innovation-map/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>Startup toolkit</title>
		<link>https://www.webthingsconsidered.com/2006/01/11/startup-toolkit/</link>
		<comments>https://www.webthingsconsidered.com/2006/01/11/startup-toolkit/#respond</comments>
		<pubDate>Thu, 12 Jan 2006 01:06:33 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Business]]></category>
		<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=76</guid>
		<description><![CDATA[Chris Mullins presents a great startup tool kit. I&#8217;ve seen most of these before, but there were a few new ones for me, and it&#8217;s nice to have it all in one place. (via Startup Fever, another new to me resource) Subscribed to both.]]></description>
				<content:encoded><![CDATA[<p>Chris Mullins presents a great <a href="http://www.allthatscool.com/archives/2006/01/web_start-ip_to.php">startup tool kit</a>.  I&#8217;ve seen most of these before, but there were a few new ones for me, and it&#8217;s nice to have it all in one place.</p>
<p>(via <a href="http://www.startupfever.com/archives/2006/01/11/chris-mullins-startup-tool-kit/">Startup Fever</a>, another new to me resource)</p>
<p>Subscribed to both.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/01/11/startup-toolkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What happened to Well Spent (Business Week blog)?</title>
		<link>https://www.webthingsconsidered.com/2006/01/07/what-happened-to-well-spent-business-week-blog/</link>
		<comments>https://www.webthingsconsidered.com/2006/01/07/what-happened-to-well-spent-business-week-blog/#respond</comments>
		<pubDate>Sat, 07 Jan 2006 15:59:37 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Personal Finance]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=75</guid>
		<description><![CDATA[I was looking through my Bloglines subscriptions this morning, trying to prune back inactive blogs and seeing what kind of subscriber counts certain blogs had. It&#8217;s interesting that Business Week&#8217;s Well Spent blog only had 5 subscribers (Granted there are 8 available feeds for this blog, so there may be more subscribers across the different &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/01/07/what-happened-to-well-spent-business-week-blog/" class="more-link">Continue reading<span class="screen-reader-text"> "What happened to Well Spent (Business Week blog)?"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I was looking through my Bloglines subscriptions this morning, trying to prune back inactive blogs and seeing what kind of subscriber counts certain blogs had.  It&#8217;s interesting that Business Week&#8217;s <a href="http://www.businessweek.com/the_thread/wellspent/">Well Spent</a> blog only had 5 subscribers (Granted there are 8 available feeds for this blog, so there may be more subscribers across the different feeds. But, why on earth do you need 8 feed URIs?).  So, I went to the site and see that Well Spent is not in the list of blogs anymore.  I wonder what happened?  Is it dead?  Is the pf blogosphere not attractive enough for them?  Are the citizen pf bloggers doing a better job?</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/01/07/what-happened-to-well-spent-business-week-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fun sports reads</title>
		<link>https://www.webthingsconsidered.com/2006/01/02/fun-sports-reads/</link>
		<comments>https://www.webthingsconsidered.com/2006/01/02/fun-sports-reads/#respond</comments>
		<pubDate>Tue, 03 Jan 2006 05:39:16 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=74</guid>
		<description><![CDATA[For most of my life, prior to this thing they call the web, sports was my #1 passion. My goal was to play pro baseball. That didn&#8217;t quite work out and I only made it as far as small college. But, it&#8217;s always fun to read some great sports stories and take your mind off &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2006/01/02/fun-sports-reads/" class="more-link">Continue reading<span class="screen-reader-text"> "Fun sports reads"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>For most of my life, prior to this thing they call the web, sports was my #1 passion.  My goal was to play pro baseball.  That didn&#8217;t quite work out and I only made it as far as small college.  But, it&#8217;s always fun to read some great sports stories and take your mind off everyday life.  I just came across a couple good ones by Michael Lewis, author of <a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&#038;path=ASIN/0393324818&#038;tag=networthiq-20&#038;camp=1789&#038;creative=9325">Moneyball</a><img src="http://www.assoc-amazon.com/e/ir?t=networthiq-20&#038;l=as2&#038;o=1&#038;a=0393324818" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />:</p>
<ul>
<li><a href="http://www.nytimes.com/2005/04/24/magazine/24BASEBALL.html?ei=5090&#038;en=07357cf6fc22e3ac&#038;ex=1271995200&#038;partner=rssuserland&#038;emc=rss&#038;pagewanted=all">Absolutely, Power Corrupts</a> (via <a href="http://www.kottke.org/05/12/the-best-links-2005">Kottke</a>)</li>
<li><a href="http://www.nytimes.com/2005/12/04/magazine/04coach.html?ei=5090&#038;en=c9f46201dc95f91d&#038;ex=1291352400&#038;partner=rssuserland&#038;emc=rss&#038;pagewanted=all">Coach Leach Goes Deep, Very Deep</a> (recommended by a friend and also is on Kottke&#8217;s list)</li>
</ul>
<p>I think I&#8217;m going to have read Moneyball soon, even if a little late.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2006/01/02/fun-sports-reads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Winodws Live Favorites</title>
		<link>https://www.webthingsconsidered.com/2005/12/21/more-winodws-live-favorites/</link>
		<comments>https://www.webthingsconsidered.com/2005/12/21/more-winodws-live-favorites/#respond</comments>
		<pubDate>Wed, 21 Dec 2005 22:12:10 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=72</guid>
		<description><![CDATA[Steve Rubel adds his thoughts on Windows Live Favorites. I echo these criticisms along with my earlier post. I ended up trying Favorites out just for grins. Man, what a pain. First I had to install the MSN toolbar (another disappointing MS tool) and jump through some other hoops. Then, to use it, you have &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2005/12/21/more-winodws-live-favorites/" class="more-link">Continue reading<span class="screen-reader-text"> "More Winodws Live Favorites"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Steve Rubel adds his <a href="http://www.micropersuasion.com/2005/12/windows_live_wh.html">thoughts</a> on <a href="http://favorites.live.com/">Windows Live Favorites</a>.  I echo these criticisms along with my <a href="http://www.webthingsconsidered.com/index.php/2005/12/09/windows-live-favorites/">earlier post</a>.</p>
<p>I ended up trying Favorites out just for grins.  Man, what a pain.  First I had to install the MSN toolbar (another disappointing MS tool) and jump through some other hoops.  Then, to use it, you have to keep an explorer bar open, which I don&#8217;t like doing.  Then you have competing favorites tools (builtin and Windows Live) that aren&#8217;t connected at all, which is kind of weird.  All in all, a frustrating experience and one I wouldn&#8217;t recommend to anyone else.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2005/12/21/more-winodws-live-favorites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pandora</title>
		<link>https://www.webthingsconsidered.com/2005/12/21/pandora/</link>
		<comments>https://www.webthingsconsidered.com/2005/12/21/pandora/#respond</comments>
		<pubDate>Wed, 21 Dec 2005 19:32:15 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=71</guid>
		<description><![CDATA[I&#8217;ve been reading and hearing great things about Pandora. One co-worker referred to it as &#8220;ear crack&#8221; and I can definitely see why. It&#8217;s fun to plugin you&#8217;re favorite artists and songs and see what&#8217;s related. A nice legal way to listen to music.]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been reading and hearing great things about <a href="http://www.pandora.com">Pandora</a>.  One co-worker referred to it as &#8220;ear crack&#8221; and I can definitely see why.  It&#8217;s fun to plugin you&#8217;re favorite artists and songs and see what&#8217;s related.  A nice legal way to listen to music.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2005/12/21/pandora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The web is falling apart</title>
		<link>https://www.webthingsconsidered.com/2005/12/19/the-web-is-falling-apart/</link>
		<comments>https://www.webthingsconsidered.com/2005/12/19/the-web-is-falling-apart/#comments</comments>
		<pubDate>Tue, 20 Dec 2005 00:36:20 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=70</guid>
		<description><![CDATA[It snowed here a bit in Portland yesterday, so attendance is pretty light at work, and it feels pretty relaxed. But, it seems things are falling apart all over the place on the web. TypePad is having all sorts of problems lately, Del.icio.us is having issues, and Bloglines is moving and their servers are down &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2005/12/19/the-web-is-falling-apart/" class="more-link">Continue reading<span class="screen-reader-text"> "The web is falling apart"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>It snowed here a bit in Portland yesterday, so attendance is pretty light at work, and it feels pretty relaxed.  But, it seems things are falling apart all over the place on the web.  TypePad is having all sorts of problems lately, Del.icio.us is having <a href="http://blog.del.icio.us/blog/2005/12/continued_hiccu.html">issues</a>, and Bloglines is <a href="http://www.bloglines.com/about/news#93">moving</a> and their servers are down for a few hours.  It makes it really hard to slack when your favorite tools are offline.</p>
<p><strong>Update</strong><br />
It must be contagious.  Salesforce.com has also had <a href="http://www.infoworld.com/article/05/12/20/HNsalesforceoutage_1.html">issues</a> .</p>
<p><strong>Update 2</strong><br />
Fortunately, Bloglines came back up fine.  Though, I&#8217;d have to disagree with <a href="http://www.techcrunch.com/2005/12/20/three-cheers-for-bloglines/">Michael Arrington</a> about their service.  It&#8217;s not very fast.  They still haven&#8217;t fixed the problem with subscribing to the Feedburner feed for this site and getting the wordpress feed on my server instead, and I&#8217;ve heard nothing back in over a week since they turned the issue over to their engineers.  However, Bloglines is still the best online reader that I&#8217;ve tried so far, so I&#8217;m sticking with it for now.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2005/12/19/the-web-is-falling-apart/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>NetworthIQ makes top 10 list</title>
		<link>https://www.webthingsconsidered.com/2005/12/17/networthiq-makes-top-10-list/</link>
		<comments>https://www.webthingsconsidered.com/2005/12/17/networthiq-makes-top-10-list/#respond</comments>
		<pubDate>Sat, 17 Dec 2005 16:57:03 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[NetworthIQ]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=69</guid>
		<description><![CDATA[As we reach the end of the year, many people are coming out with top 10 lists for this and that. It was exciting to see this week that NetworthIQ was included as #6 in the list of Top 10 Innovative Web 2.0 Applications of 2005. This article made the Digg home page and the &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2005/12/17/networthiq-makes-top-10-list/" class="more-link">Continue reading<span class="screen-reader-text"> "NetworthIQ makes top 10 list"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>As we reach the end of the year, many people are coming out with top 10 lists for this and that.  It was exciting to see this week that <a href="http://www.networthiq.com">NetworthIQ</a> was included as #6 in the list of <a href="http://www.articledashboard.com/Article/Top-10-Innovative-Web-2-0-Applications-of-2005/10891">Top 10 Innovative Web 2.0 Applications of 2005</a>.  This article made the Digg home page and the del.icio.us/popular page, resulting in a surge of traffic and registrations at the site.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2005/12/17/networthiq-makes-top-10-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool .Net products/companies</title>
		<link>https://www.webthingsconsidered.com/2005/12/13/cool-net-productscompanies/</link>
		<comments>https://www.webthingsconsidered.com/2005/12/13/cool-net-productscompanies/#respond</comments>
		<pubDate>Wed, 14 Dec 2005 05:58:51 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=68</guid>
		<description><![CDATA[In the spirit of trying to be more positive about Microsoft on this site, I came across this list of &#8220;cool&#8221; .Net products/companies by Dan&#8217;l Lewin (via]]></description>
				<content:encoded><![CDATA[<p>In the spirit of trying to be more positive about Microsoft on this site, I came across this <a href="http://www.alwayson-network.com/comments.php?id=13141_0_38_0_C">list of &#8220;cool&#8221; .Net products/companies</a> by Dan&#8217;l Lewin (via <a href="<a href="http://scobleizer.wordpress.com/2005/12/14/the-coolest-companies-under-the-tree-use-net/">Scoble</a>). I&#8217;ve only heard of a couple of them, but will be checking the others out.  There&#8217;s also an intersting list of reasons for choosing .Net at the end of the article.  I&#8217;m sure the open source crowd will have something to say about that.</p>
<p>But, there was one glaring omission.  <a href="http://www.networthiq.com">NetworthIQ</a> was missing from the list :-).</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2005/12/13/cool-net-productscompanies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wiki (collaboration tools) Roundup</title>
		<link>https://www.webthingsconsidered.com/2005/12/13/wiki-collaboration-tools-roundup/</link>
		<comments>https://www.webthingsconsidered.com/2005/12/13/wiki-collaboration-tools-roundup/#respond</comments>
		<pubDate>Wed, 14 Dec 2005 05:29:48 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=66</guid>
		<description><![CDATA[This is a reference post for wikis (and other collaboration tools) that I need to check out: Basecamp (already using) Confluence Central Desktop Jotspot [Hosted] Social Text [Hosted] Stikipad [Hosted] WikiSpaces [Hosted] PBwiki [Hosted] Zimbra Perspective [.Net] FlexWiki [.Net] MediaWiki [PHP] DokuWiki [PHP] TikiWiki [PHP] PmWiki [PHP] Twiki [Perl] Kwiki [Perl] trac [Python] Zwiki [Python] &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2005/12/13/wiki-collaboration-tools-roundup/" class="more-link">Continue reading<span class="screen-reader-text"> "Wiki (collaboration tools) Roundup"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>This is a reference post for wikis (and other collaboration tools) that I need to check out:</p>
<ul>
<li><a href="http://www.basecamphq.com">Basecamp</a> (already using)</li>
<li><a href="http://www.atlassian.com/software/confluence/">Confluence</a></li>
<li><a href="http://www.centraldesktop.com/">Central Desktop</a></li>
<li><a href="http://www.jotspot.com">Jotspot</a>  [Hosted]</li>
<li><a href="http://www.socialtext.com">Social Text</a>  [Hosted]</li>
<li><a href="http://www.stikipad.com/">Stikipad</a>  [Hosted]</li>
<li><a href="http://www.wikispaces.com/">WikiSpaces</a>  [Hosted]</li>
<li><a href="http://pbwiki.com/">PBwiki</a> [Hosted]</li>
<li><a href="http://www.zimbra.com">Zimbra</a></li>
<li><a href="http://c2.com/cgi-bin/wiki?PerSpective">Perspective</a> [.Net]</li>
<li><a href="http://www.flexwiki.com/">FlexWiki</a> [.Net]</li>
<li><a href="http://www.mediawiki.org/wiki/MediaWiki">MediaWiki</a> [PHP]</li>
<li><a href="http://wiki.splitbrain.org/wiki:dokuwiki">DokuWiki</a> [PHP]</li>
<li><a href="http://tikiwiki.org/">TikiWiki</a> [PHP]</li>
<li><a href="http://pmwiki.org/">PmWiki</a> [PHP]</li>
<li><a href="http://twiki.org/">Twiki</a> [Perl]</li>
<li><a href="http://www.kwiki.org/">Kwiki</a> [Perl]</li>
<li><a href="http://www.edgewall.com/trac/">trac</a> [Python]</li>
<li><a href="http://www.zwiki.org/FrontPage">Zwiki</a> [Python]</li>
</ul>
<p>Update:<br />
<a href="http://www.wikimatrix.org/">WikiMatrix</a> looks at these too.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2005/12/13/wiki-collaboration-tools-roundup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online calendars</title>
		<link>https://www.webthingsconsidered.com/2005/12/13/online-calendars/</link>
		<comments>https://www.webthingsconsidered.com/2005/12/13/online-calendars/#comments</comments>
		<pubDate>Wed, 14 Dec 2005 05:12:56 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=64</guid>
		<description><![CDATA[This is a reference post for me so that I can keep track of online calendar tools I&#8217;m interested in looking at. Kiko CalendarHub Planzo Hula Trumba Zimbra AirSet 30 boxes HipCal SpongeCell Update TechCrunch takes a look at these too. Final Update Not much need for this list anymore.Â  Google Calendar wins.Â  I generally &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2005/12/13/online-calendars/" class="more-link">Continue reading<span class="screen-reader-text"> "Online calendars"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>This is a reference post for me so that I can keep track of online calendar tools I&#8217;m interested in looking at.</p>
<ul>
<li><a href="http://www.kiko.com/">Kiko</a></li>
<li><a href="http://calendarhub.com/">CalendarHub</a></li>
<li><a href="http://www.planzo.com/">Planzo</a></li>
<li><a href="http://www.hula-project.org/Hula_Project">Hula</a></li>
<li><a href="http://www.trumba.com/">Trumba</a></li>
<li><a href="http://www.zimbra.com/">Zimbra</a></li>
<li><a href="http://www.airset.com/">AirSet</a></li>
<li><a href="http://www.30boxes.com/">30 boxes</a></li>
<li><a href="http://www.hipcal.com/">HipCal</a></li>
<li><a href="http://spongecell.com/">SpongeCell</a></li>
</ul>
<p><strong>Update</strong><br />
TechCrunch <a href="http://www.techcrunch.com/2006/01/30/spongecell-an-ajax-calendar/">takes a look at these too</a>.</p>
<p><strong>Final Update</strong></p>
<p>Not much need for this list anymore.Â  Google Calendar wins.Â  I generally root for the small guy, but it just didn&#8217;t work out this time.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2005/12/13/online-calendars/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Email beta smackdown begins</title>
		<link>https://www.webthingsconsidered.com/2005/12/13/email-beta-smackdown-begins/</link>
		<comments>https://www.webthingsconsidered.com/2005/12/13/email-beta-smackdown-begins/#respond</comments>
		<pubDate>Wed, 14 Dec 2005 04:55:11 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=63</guid>
		<description><![CDATA[As of today, I am now using the big three email betas: Gmail, Windows Live Mail Beta, and Yahoo! Mail Beta. I have entirely too many email accounts, but it&#8217;s interesting using the different clients. I&#8217;ve been using Gmail heavily for a couple months, I just switched to the Yahoo! mail beta last week, and &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2005/12/13/email-beta-smackdown-begins/" class="more-link">Continue reading<span class="screen-reader-text"> "Email beta smackdown begins"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>As of today, I am now using the big three email betas: Gmail, Windows Live Mail Beta, and Yahoo! Mail Beta.  I have entirely too many email accounts, but it&#8217;s interesting using the different clients.  I&#8217;ve been using Gmail heavily for a couple months, I just switched to the Yahoo! mail beta last week, and to the Winodws Live Mail Beta today.  I&#8217;ll spend some time analyzing the three over the next few weeks and see which one comes out on top.  First impressions are that the Gmail is great, Yahoo! rocks, and Windows Live Mail needs some work.</p>
<p>I hate sounding so negative all the time about Microsoft stuff, as I&#8217;m currently working with the .Net technology stack.  So, I&#8217;m going to try to find some positive Microsoft stuff to talk about as well.  I don&#8217;t have anything against Microsoft really, but the other guys are just doing a better job right now.  I can tell you that Windows Live Mail is still better than Verizon&#8217;s webmail product.  See, positive already.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2005/12/13/email-beta-smackdown-begins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The irony: Eye clinic site not accessible</title>
		<link>https://www.webthingsconsidered.com/2005/12/13/the-irony-eye-clinic-site-not-accessible/</link>
		<comments>https://www.webthingsconsidered.com/2005/12/13/the-irony-eye-clinic-site-not-accessible/#respond</comments>
		<pubDate>Wed, 14 Dec 2005 01:30:35 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=62</guid>
		<description><![CDATA[The other night we had an eye emergency in the family, and I desperately needed the phone number for the Oregon Eye Specialists. As you probably know, I use FireFox. Well, guess what happens when you go to that site in FireFox? Nothing! Absolutely nothing. Just a blank blue screen. No alternate content, just blank &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2005/12/13/the-irony-eye-clinic-site-not-accessible/" class="more-link">Continue reading<span class="screen-reader-text"> "The irony: Eye clinic site not accessible"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>The other night we had an eye emergency in the family, and I desperately needed the phone number for the <a href="http://www.oregoneyes.net/">Oregon Eye Specialists</a>.  As you probably know, I use FireFox.  Well, guess what happens when you go to that site in FireFox?  Nothing! Absolutely nothing.  Just a blank blue screen.  No alternate content, just blank (Yes, Flash is installed).  In my haste I went back to Google to track down the phone number.  Later, I gave it a try in IE, and what do you know, it worked.  Now if this isn&#8217;t the ultimate irony that an eye doctor has a completely flash-based movie (I won&#8217;t dignify it by calling it a site), that&#8217;s almost completely inaccessible by most definitions, I don&#8217;t know what is.</p>
<p>I think someone needs to educate whomever developed this flash movie.  Get a clue!  For a site that very easily could have site-impaired users, using alternate browsers, it&#8217;s unacceptable.  Not to mention the search engine traffic they&#8217;re missing out on with this design.  I don&#8217;t even want to think about how much the clinic paid for this site.</p>
<p>Start by reading more of <a href="http://www.molly.com">Molly</a>, <a href="http://www.stuffandnonsense.co.uk/">Andy Clarke</a>, and spending some time at the <a href="http://www.w3.org/WAI/">W3C&#8217;s web accessibility site</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2005/12/13/the-irony-eye-clinic-site-not-accessible/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Live Favorites</title>
		<link>https://www.webthingsconsidered.com/2005/12/09/windows-live-favorites/</link>
		<comments>https://www.webthingsconsidered.com/2005/12/09/windows-live-favorites/#comments</comments>
		<pubDate>Sat, 10 Dec 2005 00:01:42 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=61</guid>
		<description><![CDATA[Let me start off by saying this Windows Live branding is dumb. I mean, I guess it presents some consistency. But, like with Windows Live Local, it sounds like a tag line for the evening news, not a web app. So anyway, I was reading over at Dare&#8217;s blog about the release of Windows Live &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2005/12/09/windows-live-favorites/" class="more-link">Continue reading<span class="screen-reader-text"> "Windows Live Favorites"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Let me start off by saying this Windows Live branding is dumb.  I mean, I guess it presents some consistency.  But, like with Windows Live Local, it sounds like a tag line for the evening news, not a web app.</p>
<p>So anyway, I was reading over at <a href="http://www.25hoursaday.com/weblog/PermaLink.aspx?guid=b664f6ad-e37b-4e44-b3ca-eb2bfe3b5c85">Dare&#8217;s</a> blog about the release of Windows Live Favorites and the associated toolbar.  I thought it might be interesting to try out.  But, it&#8217;s entirely IE specific.  Bleh.  Considering this &#8220;Live&#8221; strategy is about hosted services, I see no reason, other than the fact that Microsoft makes IE, to not support other browsers.  I only use IE when I have to to test sites, so this is certainly no reason to switch back.  I&#8217;ll stick with del.icio.us and the firefox extension for now.</p>
<p>Just to recap online bookmark services/tools that I&#8217;ve tried or attempted to try:</p>
<ul>
<li><a href="http://del.icio.us">Del.icio.us</a> with <a href="https://addons.mozilla.org/extensions/moreinfo.php?id=1532">FireFox extension</a>: Thumbs up.</li>
<li><a href="http://www.flock.com">Flock</a> (which integrates with Del.icio.us): <a href="http://webthingsconsidered.blogspot.com/2005/10/is-flock-half-assed-product.html">Thumbs down</a>.</li>
<li>Windows Live Favorites: Thumbs down.</li>
</ul>
<p>I haven&#8217;t tried any of the other Del.icio.us-alikes, like Furl, My Web, etc.  Does anybody prefer one of these or a different service that works well with FireFox?  I&#8217;d be curious to take a look.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2005/12/09/windows-live-favorites/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Busy week for acquisitions</title>
		<link>https://www.webthingsconsidered.com/2005/12/09/busy-week-for-acquisitions/</link>
		<comments>https://www.webthingsconsidered.com/2005/12/09/busy-week-for-acquisitions/#respond</comments>
		<pubDate>Fri, 09 Dec 2005 20:24:30 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Web Business]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=60</guid>
		<description><![CDATA[First Consummating, now del.icio.us. What a week for web startups. Though I have no experience with Consummating, I&#8217;m an avid del.icio.us user, and think it&#8217;s great that those guys made some cash for their work. I just hope Yahoo doesn&#8217;t screw up any account mergers with del.icio.us like they did with Flickr. I still can&#8217;t &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2005/12/09/busy-week-for-acquisitions/" class="more-link">Continue reading<span class="screen-reader-text"> "Busy week for acquisitions"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>First <a href="http://www.consumating.com/about/news/#2">Consummating</a>, now <a href="http://blog.del.icio.us/blog/2005/12/yahoo.html">del.icio.us</a>.  What a week for web startups.  Though I have no experience with Consummating, I&#8217;m an avid del.icio.us user, and think it&#8217;s great that those guys made some cash for their work.</p>
<p>I just hope Yahoo doesn&#8217;t screw up any account mergers with del.icio.us like they did with Flickr.  I still can&#8217;t get the my old Flickr account back (and the images in it) months after they forced the accounts to move over.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2005/12/09/busy-week-for-acquisitions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Transit (it&#8217;s for Portland!)</title>
		<link>https://www.webthingsconsidered.com/2005/12/09/google-transit-its-for-portland/</link>
		<comments>https://www.webthingsconsidered.com/2005/12/09/google-transit-its-for-portland/#respond</comments>
		<pubDate>Fri, 09 Dec 2005 19:25:46 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=58</guid>
		<description><![CDATA[News yesterday about the Google Labs release of Google Transit (via SearchEngineWatch). It&#8217;s pretty cool that Portland is featured. Being that I live in the Portland area, it&#8217;s also pretty easy for me to test it out. Overall, I was pretty impressed, I could see this being a very useful tool to figure out approximate &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2005/12/09/google-transit-its-for-portland/" class="more-link">Continue reading<span class="screen-reader-text"> "Google Transit (it&#8217;s for Portland!)"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>News yesterday about the Google Labs release of <a href="http://www.google.com/transit">Google Transit</a> (via <a href="http://blog.searchenginewatch.com/blog/051208-025517">SearchEngineWatch</a>).  It&#8217;s pretty cool that Portland is featured.  Being that I live in the Portland area, it&#8217;s also pretty easy for me to test it out.</p>
<p>Overall, I was pretty impressed, I could see this being a very useful tool to figure out approximate routes.  Considering that most public agencies probably don&#8217;t have top-notch web talent like Google does, this could be very helpful.  The specifics were a bit disappointing though.</p>
<p>I routed my commute to work, which only has bus service, no MAX.  I have taken the bus a few times, so I know it takes about 20-30 minutes (never any traffic).  Google says 19 minutes in transit, pretty close.  But, it got the bus stop stop wrong, saying I&#8217;d have to walk 13 minutes to get on the bus where it suggested, when really it takes about 2 minutes.  I&#8217;m not against walking or anything, but no need to brave the cold this time of year more than I have to.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2005/12/09/google-transit-its-for-portland/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gmail adds delete?</title>
		<link>https://www.webthingsconsidered.com/2005/12/07/gmail-adds-delete/</link>
		<comments>https://www.webthingsconsidered.com/2005/12/07/gmail-adds-delete/#respond</comments>
		<pubDate>Wed, 07 Dec 2005 19:05:19 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=57</guid>
		<description><![CDATA[I&#8217;m seeing a delete option now in the actions menu in Gmail. Is this new? It always bugged me that the interface discouraged me from deleting anything. Interesting that they decided to go back to the model all other email clients use.]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m seeing a delete option now in the actions menu in Gmail. Is this new?  It always bugged me that the interface discouraged me from deleting anything.  Interesting that they decided to go back to the model all other email clients use.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2005/12/07/gmail-adds-delete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 tips for email newsletter success</title>
		<link>https://www.webthingsconsidered.com/2005/12/07/top-5-tips-for-email-newsletter-success/</link>
		<comments>https://www.webthingsconsidered.com/2005/12/07/top-5-tips-for-email-newsletter-success/#comments</comments>
		<pubDate>Wed, 07 Dec 2005 16:10:16 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Internet Marketing]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=56</guid>
		<description><![CDATA[Email newsletters are still an important piece to Internet marketing as part of the &#8220;Permission Marketing&#8221; game. Along with blogs (and RSS feeds), they are a great way to update customers on the status of your site/product/service. What&#8217;s interesting is that for NetworthIQ we have almost 500 newsletter subscribers, but maybe only a couple dozen &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2005/12/07/top-5-tips-for-email-newsletter-success/" class="more-link">Continue reading<span class="screen-reader-text"> "5 tips for email newsletter success"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>Email newsletters are still an important piece to Internet marketing as part of the &#8220;Permission Marketing&#8221; game.  Along with blogs (and RSS feeds), they are a great way to update customers on the status of your site/product/service.  What&#8217;s interesting is that for <a href="http://www.networthiq.com">NetworthIQ</a> we have almost 500 newsletter subscribers, but maybe only a couple dozen subscriptions to our feed.  This highlights the importance of having another channel besides blogs to communicate with your customers.</p>
<p>I&#8217;m no email newsletter expert.  I&#8217;ve written a total of two so far for NetworthIQ , but I can tell you I&#8217;ve learned a lot from those two times and it&#8217;s really made me consider the newsletters I read and what makes them effective.</p>
<p><strong>1) Opt in is the only way</strong><br />
This goes without saying, but if you offer a newsletter subscription as part of a site registration, make the newsletter optional and leave it unchecked by default.</p>
<p><strong>2) Use a good tool or service</strong><br />
I&#8217;ve spent (wasted is maybe a better term) a good deal of time researching various newsletter products and services.  I examined the following options:</p>
<ul>
<li>Listserv setup with host ISP.  Low-cost approach, but there was no way to mass import subscribers.</li>
<li>Open source.  The best I could come up with was <a href="http://tincan.co.uk/phplist">PHPList</a>, which I tried unsuccessfully to get running on a WIMP host (Windows, IIS, MySql, PHP).  I&#8217;m sure I could have got it to run, but I had spent too much time already, and from I saw it looked to be overly complex for what we needed. Interesting that with PHP scripts, it&#8217;s always so much easier to find something open source.  I couldn&#8217;t find any open source .Net newsletter products out there (at least unless you wanted to use DotNetNuke).</li>
<li>Commercial Packaged Applications.  I didn’t look too far down this road, as my budget is limited, and if I was going to pay, I might as well go with a hosted solution so I don’t have to worry about installing anything.</li>
<li>Google Groups.  I saw this suggested by <a href="http://www.nickdenton.org/002173.html#2173">Nick Denton</a> in his startup kit.  It’s definitely the cheapest hosted solution, but I was concerned that the service sent confirmation emails when I tested adding subscribers. This seemed like it would be a little disconcerting to users that they were signed up for some Google service without knowing about it.  So, I scratched that idea.  I think they&#8217;d be great for cheap internal list management though.</li>
<li>Build.  I haven&#8217;t ruled out building something simple ourselves, especially so that I can store archives.  But, at this point, I&#8217;d rather not take the time to learn the intricacies of sending bulk email, what with ISP support and CAN-SPAM regulations.  I think this is something that’s better to buy than build, but I reserve the right to change my mind.</li>
<li><a href="http://www.campaignmonitor.com/">Campaign Monitor</a>.  There is an endless list of outsourced email providers, but most of them were prohibitively expensive for us and our needs (monthly email to 500 subscribers and growing).  I&#8217;ve used Campaign Monitor both times and have to say it was one of the best web application experiences I&#8217;ve ever had.  It was so simple and the app provided valuable help and insight where needed.  I felt it was reasonably priced.</li>
</ul>
<p><strong>3) Write an interesting subject line</strong><br />
This is rather obvious once you think about it, but I learned it the hard way and still see other newsletters with poor subject lines.  Having &#8220;Company/Product Newsletter #1&#8221; as the subject is not very effective.  Give a good tease or lead-in, entice the user to open it.  Otherwise they&#8217;ll go right on by it in their inbox.</p>
<p>My first newsletter subject was &#8220;NetworthIQ Newsletter #1,&#8221; and the response generated from it was so quiet, you could hear a pin drop.  Now with newsletter #2, I had &#8220;NetworthIQ Newsletter &#8211; Net Worth Stats Released.&#8221;  Newsletter #2 featured similar content as #1, but I highlighted the <a href="http://www.networthiq.com/explore/net-worth-statistics.aspx">Net Worth Statistics</a> we had just released in the subject.  The response was overwhelmingly better.  Referrers lit up with email clients.</p>
<p><strong>4) Keep it short</strong><br />
There&#8217;s a lot of noise out there these days.  Between reading blogs, emails, etc., people just don&#8217;t have time to read a bunch of copy.  Include short snippets and link to your site to provide more detail.  Provide as many calls to action in the fewest words you possibly can.</p>
<p><strong>5) Stick with text, don&#8217;t bother with HTML</strong><br />
If you follow #4, there&#8217;s really no reason to have HTML.  It just adds complexity.  Most HTML newsletters utilize images extensively, but in case you haven&#8217;t noticed, Outlook 2003 and Google Mail both disable images by default.  Why bother dealing with this?  Need a link?  Well, most email clients turn a textual URL into a link anyway.  Keep it simple and keep it text.  Besides, what are most blogs syndicated as?  Text.  I&#8217;d argue that&#8217;s what makes them successful since it cuts out the crap and gets right to the guts.  Now in the event that you want to do some tracking and place a web bug, HTML is probably fine.  Just stay away from images.</p>
<p>What do you think?  What’s effective for your newsletters?</p>
<p>Additional tips you may find useful:</p>
<ul>
<li><a href="http://www.campaignmonitor.com/blog/archives/2005/11/html_email_desi.html">http://www.campaignmonitor.com/blog/archives/2005/11/html_email_desi.html</a></li>
<li><a href="http://www.useit.com/alertbox/20020930.html">http://www.useit.com/alertbox/20020930.html</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2005/12/07/top-5-tips-for-email-newsletter-success/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting re-acquainted with WordPress</title>
		<link>https://www.webthingsconsidered.com/2005/12/07/getting-re-acquainted-with-wordpress/</link>
		<comments>https://www.webthingsconsidered.com/2005/12/07/getting-re-acquainted-with-wordpress/#comments</comments>
		<pubDate>Wed, 07 Dec 2005 15:02:44 +0000</pubDate>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.webthingsconsidered.com/?p=55</guid>
		<description><![CDATA[I&#8217;ve pretty much wrapped up the move over to WordPress here from my old home. I think I&#8217;ll leave the Blogger posts over there for now, as WordPress&#8217;s blogger-import process is less than ideal. Isn&#8217;t there a Blogger API? Why do I need to publish all of the Blogger articles to my WordPress server and &#8230; <p class="link-more"><a href="https://www.webthingsconsidered.com/2005/12/07/getting-re-acquainted-with-wordpress/" class="more-link">Continue reading<span class="screen-reader-text"> "Getting re-acquainted with WordPress"</span></a></p>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve pretty much wrapped up the move over to WordPress here from my old <a href="http://webthingsconsidered.blogspot.com">home</a>.  I think I&#8217;ll leave the Blogger posts over there for now, as WordPress&#8217;s blogger-import process is less than ideal.  Isn&#8217;t there a Blogger API? Why do I need to publish all of the Blogger articles to my WordPress server and give up my blogpot address that gets some decent search engine traffic?  Maybe there is a better import script out there?  Of course that&#8217;s as much of a problem with Blogger&#8217;s either/or publishing process (once you switch to ftp publishing, you lose the address) as with the import script.</p>
<p>I used WordPress for a project over a year ago, and had no complaints about it.  But, that was before I started blogging publicly, so it&#8217;s interesting to see it again.  Blogger has a better entry interface and better template editing (one file, as opposed to a number of files in WordPress), but WordPress still feels like a much more robust blog system with comment feeds, trackbacks,  categories and plugins.</p>
<p>The final task will be to select a different theme.</p>
<p>Update<br />
I&#8217;m using the Almost Spring theme now.  It&#8217;s very clean, and has the sidebar on the post page, which was missing from the default.  I know it&#8217;s still a pretty common one, but it&#8217;s a step up from the default one, uniqueness-wise.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webthingsconsidered.com/2005/12/07/getting-re-acquainted-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
