<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Ryan Kyle&#039;s Tech Blog</title>
	<atom:link href="http://ryankyle.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ryankyle.wordpress.com</link>
	<description>Out of the mouth of a developer</description>
	<lastBuildDate>Wed, 25 May 2011 18:43:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ryankyle.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/a29c770d068a0440d65d8f91a12f6b63?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Ryan Kyle&#039;s Tech Blog</title>
		<link>http://ryankyle.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ryankyle.wordpress.com/osd.xml" title="Ryan Kyle&#039;s Tech Blog" />
	<atom:link rel='hub' href='http://ryankyle.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Find CSS Classes in HTML Using Regular Expressions</title>
		<link>http://ryankyle.wordpress.com/2011/05/25/find-css-classes-in-html-using-regular-expressions/</link>
		<comments>http://ryankyle.wordpress.com/2011/05/25/find-css-classes-in-html-using-regular-expressions/#comments</comments>
		<pubDate>Wed, 25 May 2011 17:57:53 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">https://ryankyle.wordpress.com/2011/05/25/find-css-classes-in-html-using-regular-expressions/</guid>
		<description><![CDATA[Cleaning up old CSS can be a messy chore. I’ve decided to finally make it just a little simpler. The editor I’m using is Visual Studio 2010. The primary issue I faced was finding where a given CSS class was being applied in the html. Usually it’s as simple as doing a search for the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=174&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Cleaning up old CSS can be a messy chore. I’ve decided to finally make it just a little simpler. The editor I’m using is Visual Studio 2010. The primary issue I faced was finding where a given CSS class was being applied in the html.</p>
<p>Usually it’s as simple as doing a search for the class name. Let’s look at a couple of examples. Let’s say that the class name is “button” or “text”; not easy. “button” will find &lt;button ..&gt; and “text” will find &lt;textarea …&gt;, etc. Next I tried using “Match whole word” option in the “Find and Replace” dialog. This helped narrow down some results, but not enough and not for all search terms. Is there anything that’s bulletproof?</p>
<p>Regular expressions, I thought. VS has a Regular expression search option. </p>
<p><strong>Press Ctrl-F to bring up the “Find and Replace” dialog. Click the “Use” checkbox and select “Regular expressions”</strong></p>
<p>What might that look like? I’m not a regex expert by any means, but I read enough of a regex book to figure this out. If you’d like to better understand the regex code, I may later write that explanation. I don’t yet understand the usage of <font color="#4f81bd">&lt;</font> and <font color="#4f81bd">&gt;</font>.</p>
<p>Before I get into my process, let’s take a look at the final result so we know where we’re headed. The class we are looking for is “className”.</p>
<blockquote><p><font color="#4f81bd">(class=['|&quot;][a-zA-Z ^&quot;']*&lt;className&gt;)|(\.className *[{|,])|(addClass\(['|&quot;]className['|&quot;]\))</font></p>
</blockquote>
<p>Ok, how did I get to this? I started out with this…</p>
<blockquote><p><font color="#4f81bd">class=&quot;className</font><font color="#000000">&#160;&#160;&#160; and&#160;&#160;&#160; </font>class=&quot;[a-zA-Z ^&quot;]*&lt;className&gt;&quot;</p>
</blockquote>
<p><font color="#000000">The first is to catch the class name at the beginning of the class list; the second is for the end.</font></p>
<p><font color="#000000">Next I wanted to combine these into a single statement and allow single quotes ( ‘ ) as well as double quotes ( “ ).</font></p>
<blockquote><p><font color="#4f81bd">class=['|&quot;][a-zA-Z ^&quot;']*&lt;className&gt;</font></p>
</blockquote>
<p>That’s better. It finds class names anywhere in the class list. What about in the CSS itself?</p>
<blockquote><p><font color="#4f81bd">\.className *[{|,]</font></p>
</blockquote>
<p>Combined looks like</p>
<blockquote><p><font color="#4f81bd">(class=['|&quot;][a-zA-Z ^&quot;']*&lt;className&gt;)|(\.className *[{|,])</font></p>
</blockquote>
<p>This may be enough for most people doing HTML and CSS. Next is adding references to jQuery dynamically adding the class. Again, allowing for usage of single or double quotes.</p>
<blockquote><p><font color="#4f81bd">addClass\(['|&quot;]className['|&quot;]\)</font></p>
</blockquote>
<p>All together it looks like this</p>
<blockquote><p><font color="#4f81bd">(class=['|&quot;][a-zA-Z ^&quot;']*&lt;className&gt;)|(\.className *[{|,])|(addClass\(['|&quot;]className['|&quot;]\))</font></p>
</blockquote>
<p>I will continue to update this until I get it just right and understand all of the code. As always, feel free to comment, add to what I wrote, or critique the code.</p>
<p>&#8211; Ryan D Kyle</p>
<br /> Tagged: <a href='http://ryankyle.wordpress.com/tag/css/'>CSS</a>, <a href='http://ryankyle.wordpress.com/tag/find/'>find</a>, <a href='http://ryankyle.wordpress.com/tag/html/'>HTML</a>, <a href='http://ryankyle.wordpress.com/tag/jquery/'>jQuery</a>, <a href='http://ryankyle.wordpress.com/tag/regex/'>regex</a>, <a href='http://ryankyle.wordpress.com/tag/visual-studio/'>Visual Studio</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/174/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=174&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2011/05/25/find-css-classes-in-html-using-regular-expressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Useful jQuery Websites</title>
		<link>http://ryankyle.wordpress.com/2011/03/28/useful-jquery-websites/</link>
		<comments>http://ryankyle.wordpress.com/2011/03/28/useful-jquery-websites/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 17:55:35 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/?p=162</guid>
		<description><![CDATA[Here is a simple list of websites helpful for doing web development in jQuery. This list should grow over time. jQuery Homepage &#8211; Download jQuery jQuery API &#8211; Look up jQuery functions jQuery Documentation &#8211; Awesome Google hosted jQuery codebase &#8211; for fast client downloads and caching Featured jQuery questions on StackOverflow Ryan D. Kyle [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=162&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is a simple list of websites helpful for doing web development in jQuery. This list should grow over time.</p>
<ul>
<li><a href="http://jquery.com">jQuery Homepage</a> &#8211; Download jQuery</li>
<li><a href="http://api.jquery.com">jQuery API</a> &#8211; Look up jQuery functions</li>
<li><a href="http://docs.jquery.com/Main_Page">jQuery Documentation</a> &#8211; Awesome</li>
<li><a href="http://code.google.com/apis/libraries/devguide.html#jquery">Google hosted jQuery codebase</a> &#8211; for fast client downloads and caching</li>
<li><a href="http://stackoverflow.com/questions/tagged/jquery?sort=featured&amp;pagesize=15">Featured jQuery questions on StackOverflow</a></li>
</ul>
<p>Ryan D. Kyle | <a href="http://www.digitallifeboat.com">Digital Lifeboat</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/162/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=162&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2011/03/28/useful-jquery-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Use of Delegates in Unit Tests to Simplify Code in C# .NET</title>
		<link>http://ryankyle.wordpress.com/2010/07/24/use-of-delegates-in-unit-tests-to-simplify-code-in-c-net/</link>
		<comments>http://ryankyle.wordpress.com/2010/07/24/use-of-delegates-in-unit-tests-to-simplify-code-in-c-net/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 22:18:56 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA["number sequences"]]></category>
		<category><![CDATA["number theory"]]></category>
		<category><![CDATA["unit tests"]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[delegates]]></category>
		<category><![CDATA[TDD]]></category>
		<category><![CDATA[tests]]></category>

		<guid isPermaLink="false">https://ryankyle.wordpress.com/2010/07/24/use-of-delegates-in-unit-tests-to-simplify-code-in-c-net/</guid>
		<description><![CDATA[I’ve been writing a program in .NET that analyzes number sequences. I’ve been doing my best to follow TDD practices. In doing so, I’ve spend hours writing tests and little actual code yet. In the process I ran into an issue of duplicate code in my tests. I found myself copy/pasting test code just to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=152&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I’ve been writing a program in .NET that analyzes number sequences. I’ve been doing my best to follow TDD practices. In doing so, I’ve spend hours writing tests and little actual code yet.</p>
<p>In the process I ran into an issue of duplicate code in my tests. I found myself copy/pasting test code just to change the method that was called during that particular test. Hmm… that’s not good practice.All the methods had one of two method signatures. I thought to myself: “I’m sure there’s a better way of doing this”. And sure enough, after writing a quick example program of delegates, I discovered my solution. This post takes the form of a refactor rather than writing tests from scratch.</p>
<p>None of these steps should take long to perform since very little new code is being written. This process took me 15 minutes total. I will write example code for all this soon and post it.</p>
<p>&#160;</p>
<p>Steps: Test, Identify, Declare, Rewrite one, Test, Rewrite, Test.</p>
<p>Step 1: Run all the existing tests you plan to modify and note their result.</p>
<p>Step 2: Identity the method signatures that are commonly being used.</p>
<p>Step 3: Declare delegates using the method signatures from step 1. I made them private fields in the test class.</p>
<p>Step 4: Factor out the test code into a separate method that takes arguments including the delegate.</p>
<p>Step 5: Rewrite the first test using the delegate, above the existing code. Comment out the old code instead of deleting it!</p>
<p>Step 6: Run the test! It’s very important to run that test to make sure that your new test code came to the same conclusion as your old test code. It doesn’t hurt to step through the test code briefly to make sure everything flows smoothly.</p>
<p>Step 7: Rewrite the rest of the tests that are very similar.</p>
<p>Step 8: Run all your rewritten tests. See step 5 for more detail.</p>
<p>&#160;</p>
<p><a href="http://ryankyle.files.wordpress.com/2010/07/useofdelegatesinunittestsall.jpg" target="_blank"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="Use of delegates in unit tests - all" border="0" alt="Use of delegates in unit tests - all" src="http://ryankyle.files.wordpress.com/2010/07/useofdelegatesinunittestsall_thumb.jpg?w=644&#038;h=227" width="644" height="227" /></a> </p>
<p>&#160;</p>
<p>Alright! You’ve greatly simplified your unit tests by using delegates. This is likely a niche technique, but quite useful if you have a need. If you have more innovative uses for delegates, write a blog post and then post a link to it in the comments.</p>
<p>&#160;</p>
<p>Ryan D. Kyle | Concord Mfg LLC</p>
<br /> Tagged: <a href='http://ryankyle.wordpress.com/tag/number-sequences/'>"number sequences"</a>, <a href='http://ryankyle.wordpress.com/tag/number-theory/'>"number theory"</a>, <a href='http://ryankyle.wordpress.com/tag/unit-tests/'>"unit tests"</a>, <a href='http://ryankyle.wordpress.com/tag/net/'>.NET</a>, <a href='http://ryankyle.wordpress.com/tag/c/'>C#</a>, <a href='http://ryankyle.wordpress.com/tag/delegates/'>delegates</a>, <a href='http://ryankyle.wordpress.com/tag/tdd/'>TDD</a>, <a href='http://ryankyle.wordpress.com/tag/tests/'>tests</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=152&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2010/07/24/use-of-delegates-in-unit-tests-to-simplify-code-in-c-net/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>

		<media:content url="http://ryankyle.files.wordpress.com/2010/07/useofdelegatesinunittestsall_thumb.jpg" medium="image">
			<media:title type="html">Use of delegates in unit tests - all</media:title>
		</media:content>
	</item>
		<item>
		<title>Spoke at Portland Code Camp 2010</title>
		<link>http://ryankyle.wordpress.com/2010/05/28/spoke-at-portland-code-camp-2010/</link>
		<comments>http://ryankyle.wordpress.com/2010/05/28/spoke-at-portland-code-camp-2010/#comments</comments>
		<pubDate>Sat, 29 May 2010 01:02:14 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
		
		<guid isPermaLink="false">https://ryankyle.wordpress.com/2010/05/28/spoke-at-portland-code-camp-2010/</guid>
		<description><![CDATA[This post will be really short at first. I recently spoke at Portland Code Camp 2010 on May 22nd. I also spoke at Seattle Code Camp 2010 on April 18th. Here is the link to my slide deck. http://cid-6b3c5da3aeceb52c.skydrive.live.com/self.aspx/.Public/Potential%20of%20Code%20Generation.pptx Thanks everyone for attending!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=149&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post will be really short at first.</p>
<p>I recently spoke at <a href="http://portlandcodecamp.org/2010/">Portland Code Camp 2010</a> on May 22nd.</p>
<p>I also spoke at <a href="https://seattle.codecamp.us/">Seattle Code Camp 2010</a> on April 18th.</p>
<p>Here is the link to my slide deck.</p>
<p><a title="http://cid-6b3c5da3aeceb52c.skydrive.live.com/self.aspx/.Public/Potential%20of%20Code%20Generation.pptx" href="http://cid-6b3c5da3aeceb52c.skydrive.live.com/self.aspx/.Public/Potential%20of%20Code%20Generation.pptx">http://cid-6b3c5da3aeceb52c.skydrive.live.com/self.aspx/.Public/Potential%20of%20Code%20Generation.pptx</a></p>
<p>Thanks everyone for attending!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=149&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2010/05/28/spoke-at-portland-code-camp-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Startup Weekend Seattle 4 at Adobe &#8211; Day Three</title>
		<link>http://ryankyle.wordpress.com/2010/03/30/startup-weekend-seattle-4-at-adobe-day-three/</link>
		<comments>http://ryankyle.wordpress.com/2010/03/30/startup-weekend-seattle-4-at-adobe-day-three/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 07:58:27 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2010/03/30/startup-weekend-seattle-4-at-adobe-day-three/</guid>
		<description><![CDATA[I strolled in to the Adobe Conference Center around 11am Sunday morning. The edot team had already started on version two of the graphics for the website and were nearly complete when I arrived. A thank you to Donald for your tireless effort to deliver on your promise. Most of my time on Sunday was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=147&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I strolled in to the Adobe Conference Center around 11am Sunday morning. The <a href="http://www.everydayonething.com/about">edot team</a> had already started on version two of the graphics for the website and were nearly complete when I arrived. A thank you to Donald for your tireless effort to deliver on your promise.</p>
<p>Most of my time on Sunday was spent setting up edot’s secondary websites, namely the <a href="http://everydayonething.wordpress.com/">blog</a>, <a href="http://cafepress.com/everyday1thing">store</a>, and <a href="http://everyday1thing.uservoice.com/">feedback</a>. The rest of my time was spent networking with the wonderful people at the event.</p>
<p>Presentations were amazing! I enjoyed every one of them. Some were exceptional. Many great applications came out of this weekend and I look forward to using a number of them.</p>
<p>edot’s presentation seemed to go well. We started our presentation at eighty something fans on our <a href="http://www.facebook.com/pages/Every-Day-One-Thing/105901449433198">Facebook fan page</a>. After the edot presentation we had 106 fans! Because we broke the 100 mark in one day, we gave away a free “I did a thing!” edot t-shirt to one lucky Facebook fan.</p>
<p>The big winner of the night was <a href="http://digri.net/">Digri</a>.</p>
<p><a href="http://www.everydayonething.com">Every Day One Thing</a> won the <a href="http://daverigotti.com/startup-weekend-seattle">Socially Responsible Award</a>!</p>
<p>Overall, it was a great weekend. A BIG thanks to Clint and Mark for their work to setup such a wonderful event. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=147&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2010/03/30/startup-weekend-seattle-4-at-adobe-day-three/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Every Day One Thing Launches!</title>
		<link>http://ryankyle.wordpress.com/2010/03/22/every-day-one-thing-launches/</link>
		<comments>http://ryankyle.wordpress.com/2010/03/22/every-day-one-thing-launches/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 06:58:46 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2010/03/22/every-day-one-thing-launches/</guid>
		<description><![CDATA[Sunday night, two hours before Every Day One Thing presented at SWSEA, Every Day One Thing went live with the official launch of the website. Check it out at www.EveryDayOneThing.com While you’re there, take a look at the about us page, blog, and store, and please give generous amounts of feedback about everything on the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=144&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sunday night, two hours before Every Day One Thing presented at SWSEA, Every Day One Thing went live with the official launch of the website.</p>
<p>Check it out at <a href="http://www.EveryDayOneThing.com">www.EveryDayOneThing.com</a></p>
<p>While you’re there, take a look at the about us page, blog, and store, and please give generous amounts of feedback about everything on the feedback site. We love to hear what you think.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/144/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=144&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2010/03/22/every-day-one-thing-launches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Ryan&#8217;s New Nickname</title>
		<link>http://ryankyle.wordpress.com/2010/03/20/ryans-new-nickname/</link>
		<comments>http://ryankyle.wordpress.com/2010/03/20/ryans-new-nickname/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 02:13:25 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Startup Weekend]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2010/03/20/ryans-new-nickname/</guid>
		<description><![CDATA[I am now called Tigger. Ask me.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=140&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am now called Tigger. Ask me.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/140/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=140&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2010/03/20/ryans-new-nickname/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Startup Weekend Seattle 4 at Adobe &#8211; Day Two</title>
		<link>http://ryankyle.wordpress.com/2010/03/20/startup-weekend-seattle-4-at-adobe-day-two/</link>
		<comments>http://ryankyle.wordpress.com/2010/03/20/startup-weekend-seattle-4-at-adobe-day-two/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 18:37:39 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2010/03/20/startup-weekend-seattle-4-at-adobe-day-two/</guid>
		<description><![CDATA[Today is all about work. I arrived at 8:30am after sleeping only 3 hours, if that. We got right to work on logo design, app design, feature discussions, etc. It was at about 9am that the masses showed up. Most people were fairly quiet early on in the day. Remember, most of us are geeks/programmers [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=128&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today is all about work. I arrived at 8:30am after sleeping only 3 hours, if that. We got right to work on logo design, app design, feature discussions, etc. It was at about 9am that the masses showed up. Most people were fairly quiet early on in the day. Remember, most of us are geeks/programmers and are not morning people. My story is that I’m not a morning person except at a Startup Weekend!</p>
<p>My role on the team changed as the day went on, from a primary developer, to jack-of-all-trades for whatever needed to be done. I did everything from logo design to secondary website building (blog, store, feedback, etc) to product and team evangelism.</p>
<p>By about 6pm on Saturday our team had a functional prototype that we declared to be beta. At that point I started recruiting our first non-team users. By the end of the day we had somewhere between 15 and 20 users from other teams at the event.</p>
<p>Jesse stayed a bit later than everyone else and reworked the iPhone mobile css for the website. Great job Jesse!</p>
<p>The Every Day One Thing group:</p>
<p><a href="http://ryankyle.files.wordpress.com/2010/03/pic24741.jpg"><img style="display:inline;border-width:0;" title="PIC-2474" border="0" alt="PIC-2474" src="http://ryankyle.files.wordpress.com/2010/03/pic2474_thumb1.jpg?w=260&#038;h=200" width="260" height="200" /></a> <a href="http://ryankyle.files.wordpress.com/2010/03/wehb.jpg"><img style="display:inline;border-width:0;" title="wehb" border="0" alt="wehb" src="http://ryankyle.files.wordpress.com/2010/03/wehb_thumb.jpg?w=260&#038;h=200" width="260" height="200" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/128/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=128&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2010/03/20/startup-weekend-seattle-4-at-adobe-day-two/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>

		<media:content url="http://ryankyle.files.wordpress.com/2010/03/pic2474_thumb1.jpg" medium="image">
			<media:title type="html">PIC-2474</media:title>
		</media:content>

		<media:content url="http://ryankyle.files.wordpress.com/2010/03/wehb_thumb.jpg" medium="image">
			<media:title type="html">wehb</media:title>
		</media:content>
	</item>
		<item>
		<title>Startup Weekend Seattle 4 at Adobe &#8211; Day One</title>
		<link>http://ryankyle.wordpress.com/2010/03/20/startup-weekend-seattle-4-at-adobe-day-one/</link>
		<comments>http://ryankyle.wordpress.com/2010/03/20/startup-weekend-seattle-4-at-adobe-day-one/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 10:07:22 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Startup Weekend]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2010/03/20/startup-weekend-seattle-4-at-adobe-day-one/</guid>
		<description><![CDATA[Today, Friday, is the first day of Startup Weekend Seattle at Adobe. My approximation is that 120 people showed up on day one of this event here at Adobe in Fremont (Seattle WA). The purpose of Startup Weekend is to foster entrepreneurship and new ideas. How it works is people pitch ideas on Friday night [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=125&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today, Friday, is the first day of <a href="http://seattle.startupweekend.org/">Startup Weekend Seattle</a> at Adobe. My approximation is that 120 people showed up on day one of this event here at Adobe in Fremont (Seattle WA).</p>
<p>The purpose of Startup Weekend is to foster entrepreneurship and new ideas. How it works is people pitch ideas on Friday night and the entire attendance votes on the ideas. After the top ideas are chosen, people choose the team the wish to join. Work starts at 9am on Saturday and ends around 6pm on Sunday (with or without sleep) when presentations are made.</p>
<p>This weekend there are plenty of great ideas. For a full list, check out the homepage for <a href="http://seattle.startupweekend.org/">SW Seattle</a> I will share a few of them that got me excited and want to be a part of. The name in (parentheses) is the person who pitched the idea.</p>
<ul>
<li>Everyday One Thing (Leah) – Track your impact on the environment when you make positive environmental choices. The idea is that small things add up and through this site/app you can see how. </li>
<li>Lake Tagger (Cole) – Foursquare for boating. Information about gatherings, events, locations for the boating community. </li>
<li>FourFriends (Ayush) – Foursquare app. </li>
<li>SpeakUp (Kumaresh) – students ask anon Qs in classroom. More cool uses. </li>
<li>Best thing to do (Jeff) – Real-time ratings for events to choose the best event/ happening / place /speaker to attend / visit / listen to. Could be used for conferences / bars / clubs / local events. </li>
</ul>
<p>There were 40 total pitches tonight and I believe that it was narrowed down to about 12 ideas/teams. I will confirm this info in the morning. The Adobe Conference Center is so far a great space for this event. Apparently the first SW Seattle (this is the 4th) took place in the same location.</p>
<p>Looking forward to tomorrow.</p>
<p>Ryan D. Kyle | Concord Mfg LLC</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=125&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2010/03/20/startup-weekend-seattle-4-at-adobe-day-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>My First Windows Phone 7 Application</title>
		<link>http://ryankyle.wordpress.com/2010/03/18/my-first-windows-phone-7-application/</link>
		<comments>http://ryankyle.wordpress.com/2010/03/18/my-first-windows-phone-7-application/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 01:54:18 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[New Technologies]]></category>
		<category><![CDATA[Windows Phone 7]]></category>
		<category><![CDATA[ContactFIRST]]></category>
		<category><![CDATA[WP7]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2010/03/18/my-first-windows-phone-7-application/</guid>
		<description><![CDATA[If you’re reading this, you probably know that I’ve been silent for a while on this blog. But I’ve been busy designing applications and networking. I will write about those applications next week. Windows Phone 7 (WP7) was announced at MIX10 on Monday. The keynote is roughly an hour and a half and most of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=124&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you’re reading this, you probably know that I’ve been silent for a while on this blog. But I’ve been busy designing applications and networking. I will write about those applications next week.</p>
<p>Windows Phone 7 (WP7) was announced at <a href="http://live.visitmix.com/">MIX10</a> on Monday. The <a href="http://live.visitmix.com/MIX10/Sessions/KEY01">keynote is roughly an hour and a half</a> and most of it is worth watching. I watched the entire keynote on Monday night on my 46 inch LCD TV through my laptop. Quite an enjoyable night.</p>
<p>Monday night I downloaded the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=2338b5d1-79d8-46af-b828-380b0f854203&amp;displaylang=en">free development tools</a> and installed the tools Tuesday morning. By 6pm I had written my first Windows Phone 7 application. BTW, on a 46 inch TV, the phone emulator is 16” x 8”.</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; <a href="http://ryankyle.files.wordpress.com/2010/03/firstwinphone7appcontactfirst.png"><img style="display:inline;border-width:0;" title="FirstWinPhone7App - ContactFIRST" border="0" alt="FirstWinPhone7App - ContactFIRST" src="http://ryankyle.files.wordpress.com/2010/03/firstwinphone7appcontactfirst_thumb.png?w=141&#038;h=244" width="141" height="244" /></a>&#160;&#160;&#160;&#160;&#160;&#160;&#160; <a href="http://ryankyle.files.wordpress.com/2010/03/firstwinphone7appcontactfirstdetailpage.png"><img style="display:inline;border-width:0;" title="FirstWinPhone7App - ContactFIRST - DetailPage" border="0" alt="FirstWinPhone7App - ContactFIRST - DetailPage" src="http://ryankyle.files.wordpress.com/2010/03/firstwinphone7appcontactfirstdetailpage_thumb.png?w=141&#038;h=244" width="141" height="244" /></a></p>
<p align="left">Here’s what’s special about Windows Phone 7: The applications you write are Silverlight applications. My barrier to writing Windows Mobile 5 and 6 applications was the need to learn the SDK. With my existing <a href="http://silverlight.net/">Silverlight</a>, <a href="http://www.microsoft.com/Expression/products/overview.aspx?key=blend">Blend</a>, and <a href="http://www.microsoft.com/expression/products/overview.aspx?key=design">Design</a> experience, I’m able to start writing WP7 applications immediately.</p>
<p align="left">If you’re interested in jumping in and learning how to write a WP7 application, check out <a href="http://blogs.msdn.com/usisvde/archive/2010/03/16/download-windows-phone-7-developer-training-kits.aspx">this blog post with links to Developer Training Kits</a>.</p>
<p align="left">If you’re wondering about my application, I used the first Presidents of the USA as sample data. Apparently all of the presidents had cell phones in the Seattle area… I also designed the buttons in the lower part of the detail page (on the right).</p>
<br /> Tagged: <a href='http://ryankyle.wordpress.com/tag/contactfirst/'>ContactFIRST</a>, <a href='http://ryankyle.wordpress.com/tag/windows-phone-7/'>Windows Phone 7</a>, <a href='http://ryankyle.wordpress.com/tag/wp7/'>WP7</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=124&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2010/03/18/my-first-windows-phone-7-application/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>

		<media:content url="http://ryankyle.files.wordpress.com/2010/03/firstwinphone7appcontactfirst_thumb.png" medium="image">
			<media:title type="html">FirstWinPhone7App - ContactFIRST</media:title>
		</media:content>

		<media:content url="http://ryankyle.files.wordpress.com/2010/03/firstwinphone7appcontactfirstdetailpage_thumb.png" medium="image">
			<media:title type="html">FirstWinPhone7App - ContactFIRST - DetailPage</media:title>
		</media:content>
	</item>
		<item>
		<title>Plan for 2010</title>
		<link>http://ryankyle.wordpress.com/2010/01/12/plan-for-2010/</link>
		<comments>http://ryankyle.wordpress.com/2010/01/12/plan-for-2010/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 15:11:00 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[CodeCamp]]></category>
		<category><![CDATA[Startupweekend]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2010/01/12/plan-for-2010/</guid>
		<description><![CDATA[This is my first post of 2010 and my first post in a while. It wasn’t until the last few days that I figured out what I’ll be doing the first half of this year. I will be attending events, big and small, but not all out crazy like I did last fall. I plan [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=118&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is my first post of 2010 and my first post in a while. It wasn’t until the last few days that I figured out what I’ll be doing the first half of this year. I will be attending events, big and small, but not all out crazy like I did last fall. I plan to attend some major events such as <a href="http://seattle.startupweekend.org/">Startup Weekend Seattle</a> and <a href="https://seattle.codecamp.us/default.aspx">Seattle CodeCamp</a>.</p>
<p>I will be finishing up a large project soon and plan to show off the creator of that software shortly thereafter. I also plan to get back into school, at least part time, working toward an associate degree. Ok, one last thing. I hope to get time soon to write my series on building n-tier applications on the .NET stack.</p>
<p>If you will be attending events in the future in the Seattle area that you think I should attend, just let me know by leaving a comment.</p>
<p>Ryan D. Kyle | Concord Mfg LLC</p>
<br /> Tagged: CodeCamp, Events, Startupweekend <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=118&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2010/01/12/plan-for-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Redmond Startup Weekend Reunion</title>
		<link>http://ryankyle.wordpress.com/2009/10/17/redmond-startup-weekend-reunion/</link>
		<comments>http://ryankyle.wordpress.com/2009/10/17/redmond-startup-weekend-reunion/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 20:27:48 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Common Ground]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Startup Weekend]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[Find Common Ground]]></category>
		<category><![CDATA[Friend Mosaic]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[RedmondSW]]></category>
		<category><![CDATA[Seattle]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2009/10/17/redmond-startup-weekend-reunion/</guid>
		<description><![CDATA[I recently attended the Redmond Startup Weekend Reunion in Seattle where the star of the night was Friend Mosaic. Roy Leban handed out our Startup Weekend Friend Mosaic shirts and took pictures. Not sure if those pictures have been posted online yet, but if I find them I’ll post the links here. Roy’s camera, while [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=105&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently attended the Redmond Startup Weekend Reunion in Seattle where the star of the night was <a href="http://friendmosaic.com/">Friend Mosaic</a>. Roy Leban handed out our <a href="http://startupweekend.org/">Startup Weekend</a> Friend Mosaic shirts and took pictures. Not sure if those pictures have been posted online yet, but if I find them I’ll post the links here. Roy’s camera, while taking said pictures, identified the faces in the shirts as real faces. It was quite amusing. I learned that it’s difficult to take photos of the LCD screen of a camera. If you look really closely, you can see a thin green box around the face in the shirt on the left in the left photograph.</p>
<p><a href="http://ryankyle.files.wordpress.com/2009/10/friendmosaiccamerafacerecognition1.jpg"><img style="border-bottom:0;border-left:0;display:inline;margin-left:0;border-top:0;margin-right:0;border-right:0;" title="friend mosaic camera face recognition" border="0" alt="friend mosaic camera face recognition" align="left" src="http://ryankyle.files.wordpress.com/2009/10/friendmosaiccamerafacerecognition_thumb1.jpg?w=277&#038;h=331" width="277" height="331" /></a> <a href="http://ryankyle.files.wordpress.com/2009/10/redmondstartupweekendreunion.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="Redmond Startup Weekend Reunion" border="0" alt="Redmond Startup Weekend Reunion" src="http://ryankyle.files.wordpress.com/2009/10/redmondstartupweekendreunion_thumb.jpg?w=277&#038;h=331" width="277" height="331" /></a>&#160; </p>
<p>It was really great seeing lots of people again without the pressures of shipping a product by 7pm. The gathering was a much more relaxed atmosphere where everyone had a story or two to share about their <a href="http://bizspark.startupweekend.com/">SWRedmond</a> projects or other current business endeavors.</p>
<p>Marc showed up (who did not attend the SWRedmond), but Clint, who ran the event, was not present. What’s the deal?</p>
<p>I learned that stories written in online articles about a product don’t necessary result in sales of the product, simply views of the website.</p>
<p>As for my own startup from SWRedmond, Find Common Ground was not ready to go live for this event. I will be spending some time on it this month. There are a few features that need to be implemented before going live. I will definitely blog about it when that happens.</p>
<p>There are two more Startup Weekend events coming up that I plan to attend: <a href="http://seattle.startupweekend.org/">Seattle</a> and <a href="http://corvallis.startupweekend.org/">Corvallis</a>.</p>
<p>Thanks everyone for a great night and a great event.</p>
<p>P.S. Here are the links to my previous posts about SWRedmond:</p>
<p><a title="http://ryankyle.wordpress.com/2009/09/05/startup-weekend-in-review-friday/" href="http://ryankyle.wordpress.com/2009/09/05/startup-weekend-in-review-friday/">http://ryankyle.wordpress.com/2009/09/05/startup-weekend-in-review-friday/</a></p>
<p><a title="http://ryankyle.wordpress.com/2009/09/25/startup-weekend-redmond-in-review-saturday/" href="http://ryankyle.wordpress.com/2009/09/25/startup-weekend-redmond-in-review-saturday/">http://ryankyle.wordpress.com/2009/09/25/startup-weekend-redmond-in-review-saturday/</a></p>
<br /> Tagged: camera, Find Common Ground, Friend Mosaic, Learning, RedmondSW, Seattle, Startup Weekend <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=105&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2009/10/17/redmond-startup-weekend-reunion/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>

		<media:content url="http://ryankyle.files.wordpress.com/2009/10/friendmosaiccamerafacerecognition_thumb1.jpg" medium="image">
			<media:title type="html">friend mosaic camera face recognition</media:title>
		</media:content>

		<media:content url="http://ryankyle.files.wordpress.com/2009/10/redmondstartupweekendreunion_thumb.jpg" medium="image">
			<media:title type="html">Redmond Startup Weekend Reunion</media:title>
		</media:content>
	</item>
		<item>
		<title>Line of Business Application Overview</title>
		<link>http://ryankyle.wordpress.com/2009/10/05/line-of-business-application-overview/</link>
		<comments>http://ryankyle.wordpress.com/2009/10/05/line-of-business-application-overview/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 19:51:18 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[LOB Application]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[line of business]]></category>
		<category><![CDATA[LOB]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2009/10/05/line-of-business-application-overview/</guid>
		<description><![CDATA[This post is in a series of post on how I’ve written enterprise scale applications end to end. I will work from the bottom up, from database to user interface. This series might take a while to finish, since there are many layers to the application and I’m writing this entirely in my free time [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=102&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post is in a series of post on how I’ve written enterprise scale applications end to end. I will work from the bottom up, from database to user interface.</p>
<p>This series might take a while to finish, since there are many layers to the application and I’m writing this entirely in my free time at coffee shops. As I write this, it seems this entire series could become a small book.</p>
<p>Let me make some assumptions about this software application.</p>
<ol>
<li>The application has multiple tiers.</li>
<li>The middle tier is written on the .NET framework.</li>
<li>The database is SQL based. I’m using SQL Server 2008.</li>
</ol>
<p>With these assumptions, I will walk through one way of how to write an end to end application that should scale. I say ‘should’ because I have not load tested the completed application. I will include code, and at the end I will provide a full Visual Studio solution that can be downloaded and run.</p>
<p>The next post in the series will be on writing a Data Access Layer.</p>
<br /> Tagged: .NET, line of business, LOB <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=102&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2009/10/05/line-of-business-application-overview/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Networking In Seattle Page</title>
		<link>http://ryankyle.wordpress.com/2009/10/05/networking-in-seattle-page/</link>
		<comments>http://ryankyle.wordpress.com/2009/10/05/networking-in-seattle-page/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 17:45:03 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/?p=100</guid>
		<description><![CDATA[I recently compiled all of my links of networking events in the Seattle area into one page. I incorperated all of the links sent to me since my first post on networking in Seattle. I hope you find some of it useful and I look forward to seeing some of you at events. So check it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=100&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently compiled all of my links of <a title="Networing events in the Seattle area" href="http://ryankyle.wordpress.com/networking-events-in-seattle/">networking events in the Seattle area </a>into one page. I incorperated all of the links sent to me since my <a title="first post on networking in Seattle" href="http://ryankyle.wordpress.com/2009/08/18/startup-and-networking-events-in-seattle/">first post on networking in Seattle</a>. I hope you find some of it useful and I look forward to seeing some of you at events.</p>
<p>So check it out! <a title="Networking events in the Seattle area" href="http://ryankyle.wordpress.com/networking-events-in-seattle/">Networking events in the Seattle area </a>.</p>
<br /> Tagged: Networking <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=100&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2009/10/05/networking-in-seattle-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Welcome to StartupDay 2009</title>
		<link>http://ryankyle.wordpress.com/2009/09/26/welcome-to-startupday-2009/</link>
		<comments>http://ryankyle.wordpress.com/2009/09/26/welcome-to-startupday-2009/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 16:04:19 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Seattle 2.0]]></category>
		<category><![CDATA[speakers]]></category>
		<category><![CDATA[Startup Day]]></category>
		<category><![CDATA[StartupDay]]></category>
		<category><![CDATA[Startups]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2009/09/26/welcome-to-startupday-2009/</guid>
		<description><![CDATA[It’s great to be at StartupDay, early and ready to go. This is looking to be an exciting day here in downtown Bellevue. They have put together a great lineup of speakers. I’m looking forward to hearing from Richard Barton of Zillow, Ksenia Oustiougova of Lilipip Studios, and Dave Schappell of TeachStreet. Sunday edit: I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=89&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It’s great to be at <a href="http://www.startupday.com/">StartupDay</a>, early and ready to go. This is looking to be an exciting day here in downtown Bellevue.</p>
<p>They have put together a great lineup of speakers. I’m looking forward to hearing from Richard Barton of <a href="http://www.zillow.com">Zillow</a>, Ksenia Oustiougova of <a href="http://www.lilipip.com/">Lilipip Studios</a>, and Dave Schappell of <a href="http://www.teachstreet.com/">TeachStreet</a>.</p>
<p>Sunday edit:</p>
<p>I took notes at the event and I&#8217;d like to share some of them with you. If you&#8217;re one of the speakers and like (or don&#8217;t like) what I wrote, let me know! I hope I do justice to the speakers with these comments.</p>
<h3>Marcelo Calbucci (Event Organizer)</h3>
<p>Did a good job of introducing the event and promoting the sponsors. Put an a spectacular event.</p>
<h3>Hillel Cooperman &#8211; Why Do a Startup?</h3>
<p>An unexpected view on why to create a startup. He mostly talked about why he created a startup and how much damn <strong>work</strong> it takes. A reality for those unaware.</p>
<p>Takeaways: <strong>Don&#8217;t quit</strong> your day job; not even when you think it&#8217;s time, because it&#8217;s probably not. It takes a lot of work.</p>
<h3>Josh Petersen – Pick an Idea</h3>
<p>First, have<strong> lots of ideas</strong>. Collaborating is a necessity. When selecting an idea, keep in mind that we have <strong>biases</strong>, including towards our own ideas. Solve your own <strong>problems</strong>. Use a technique called “<a href="http://www.achievement.org/autodoc/page/bez0int-3">regret minimization framework</a>” to decide on what project would you later regret not doing. Ask yourself: <strong>What if it works?</strong> And will I be happy with that outcome?</p>
<h3>Colin Wong – Co-Founders and Advisors</h3>
<p><strong>Trust</strong> is critical. Find cofounders who <strong>complement</strong> you. Cofounders can provide operations, capital, knowledge, and introductions. Advisors provide knowledge and introductions. <strong>Pitfalls</strong> to cofounders: delivery (or not) of promises, conflict of personality. Build mechanisms to modify <strong>terms</strong>, partially to allow for a graceful exit if necessary. Put the terms on paper, even if they feel informal. <strong>Set expectations</strong> (of time, etc) with advisors. Be open to offering 1-2% equity instead of cash.</p>
<h3>Alex Algard – Growing Through Bootstrapping</h3>
<p>Cut non essential expenses. Work <strong>understaffed</strong>. Work with people with <strong>complementary</strong> skills. Know key financial terms – don’t get ripped off. All decisions inside the startup should be based on the $ it has today. Read “<a href="http://www.amazon.com/Bootstrappers-Bible-Start-Business-Almost/dp/157410103X">The Bootstrapper’s Bible</a>”. Join local organizations for startups.</p>
<h3>T.A. McCann – Funding Through Angels or VCs</h3>
<p>T.A. talked mostly about how to go about acquiring outside funding for your startup. Write an <strong>operational plan</strong> instead of a big business plan. What investors are looking for: <strong>50% people</strong>, 25% idea, 25% execution. I listened to T.A. give advice to a pre-entrepreneur during lunch. He really knows what he’s talking about.</p>
<h3>Kelly Smith – Naming and Branding</h3>
<p><strong>Getting noticed</strong> is the hardest part. Be straightforward with intent and purpose. Feel <strong>special!</strong> Brands start with good products. Brand is difficult to replicate. Make <strong>fun stories</strong>. Say <strong>audacious</strong>, yet truthful, statements.</p>
<h3>Dave Schappell – Building the Product</h3>
<p>Cycle: build team, ship prototype, simplify, test, avoid the giant decider, <strong>scrum</strong>. PODS- Product Owner Daily Scrum.</p>
<h3>Alex Berg – User Experience and Metrics</h3>
<p>A <strong>small team that’s fast</strong>. <strong>Design patterns</strong> – not just for code. Fail quick, fail cheap. Use <strong>prototyping</strong> tools. Use personas. Despite the title, Alex shied away from talking about metrics.</p>
<h3>Mike Mathieu – Acquiring Customers and Marketing</h3>
<p>The worst <strong>insults</strong> for your startup are: feature or product, not business. You have to have sauce to have <strong>secret sauce</strong>.Value is defined by the customer. Working capital. Customer <strong>scalability</strong>. Know the <strong>unknowns</strong>. Build a <strong>revenue engine</strong>.</p>
<h3>Shelly Farnham – Networking and Partnering</h3>
<p>When <strong>networking</strong>, ask yourself “could this person be a: partner? customer? investor? advisor?” Seek <strong>diversity</strong>. Freely <strong>give away</strong> your ideas and knowledge. Go to events with possible customers.</p>
<p>Unfortunately I missed two presentations, which were:</p>
<ul>
<li>Ben Huh – Advertcraptizing: Where’s the Silver Lining?</li>
<li>Alex Castro – Making Money Through SaaS</li>
</ul>
<h3>Ksenia Oustiougova – When It All Fails</h3>
<p>I was so into Ksenia’s <strong>stories</strong>, I forgot to take notes. She talked about how startups can fail. About putting too much into the business and how it <strong>impacted</strong> her family.</p>
<h3>Jonathan Sposato -  Being Acquired</h3>
<p>17 secrets: 11 things you can control.</p>
<h3>Rich Barton – Closing Keynote</h3>
<p>Be <strong>revolutionary</strong>. Have a big hairy audacious dream (BHAD).</p>
<br /> Tagged: Networking, Seattle 2.0, speakers, Startup Day, StartupDay, Startups <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=89&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2009/09/26/welcome-to-startupday-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Startup Weekend Redmond in Review &#8211; Saturday</title>
		<link>http://ryankyle.wordpress.com/2009/09/25/startup-weekend-redmond-in-review-saturday/</link>
		<comments>http://ryankyle.wordpress.com/2009/09/25/startup-weekend-redmond-in-review-saturday/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 17:24:34 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Common Ground]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Find Common Ground]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Startup Weekend]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2009/09/25/startup-weekend-redmond-in-review-saturday/</guid>
		<description><![CDATA[Check out Startup Weekend if you have not before. There are events going on all around the US and around the world. This is what the Microsoft Conference Center looked like at 8:30 in the morning. You can see all the white boards and huge notepads on the right. People started pouring in around 9:30am. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=87&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Check out <a href="http://www.startupweekend.org">Startup Weekend</a> if you have not before. There are events going on all around the US and around the world.</p>
<p>This is what the Microsoft Conference Center looked like at 8:30 in the morning. You can see all the white boards and huge notepads on the right. People started pouring in around 9:30am.</p>
<p><a href="http://ryankyle.files.wordpress.com/2009/09/swredmond2009saturday9am.jpg"><img style="display:inline;border-width:0;" title="swRedmond 2009 Saturday 8:30am" src="http://ryankyle.files.wordpress.com/2009/09/swredmond2009saturday9am_thumb.jpg?w=283&#038;h=217" border="0" alt="swRedmond 2009 Saturday 8:30am" width="283" height="217" /></a></p>
<p>Two people showed up out of nowhere to help out Find Common Ground.</p>
<p>First, a woman named Pam came around to my team’s table (where I was sitting alone) and essentially asked to help out. Pam walked me through all the steps of designing a business plan and brainstorming of revenue generation. Pam was incredibly helpful and after 10 minutes we had the outline of a business plan. Shortly thereafter, she left the building. As far as I know, it could have all been a mirage. It was like magic! Thank You Pam!</p>
<p>The second magical person showed up just a few minutes after Pam left. His name was Bruce. Bruce decided to join my team for the duration of the event. He was not able to make it on Friday and wanted to contribute. As luck would have it, Bruce is a developer (and a good one at that). Thank you Bruce for joining the team! Again, like magic!</p>
<p>As my two other team members showed up, we started working out the details of the application, Find Common Ground. We worked in 1 hour agile iterations.</p>
<p><strong>Speakers</strong></p>
<p>There were several speakers provided by Microsoft, including <a href="http://www.scottgu.com/">Scott Guthrie</a> and <a href="http://adamkinney.com/">Adam Kinney</a>. Other speakers included <a href="http://www.founderscoop.com/people.php">Andy Sack</a>. Thank you all who presented and shared your knowledge.</p>
<p><a href="http://ryankyle.files.wordpress.com/2009/09/scottguthriespeakingatswredmond2009.jpg"><img style="display:inline;margin-left:0;margin-right:0;border-width:0;" title="Scott Guthrie speaking at swRedmond 2009" src="http://ryankyle.files.wordpress.com/2009/09/scottguthriespeakingatswredmond2009_thumb.jpg?w=278&#038;h=331" border="0" alt="Scott Guthrie speaking at swRedmond 2009" width="278" height="331" /></a></p>
<p>We stayed programming until about 10pm. Another late night.</p>
<br /> Tagged: Find Common Ground, Microsoft, Startup Weekend <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=87&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2009/09/25/startup-weekend-redmond-in-review-saturday/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>

		<media:content url="http://ryankyle.files.wordpress.com/2009/09/swredmond2009saturday9am_thumb.jpg" medium="image">
			<media:title type="html">swRedmond 2009 Saturday 8:30am</media:title>
		</media:content>

		<media:content url="http://ryankyle.files.wordpress.com/2009/09/scottguthriespeakingatswredmond2009_thumb.jpg" medium="image">
			<media:title type="html">Scott Guthrie speaking at swRedmond 2009</media:title>
		</media:content>
	</item>
		<item>
		<title>Software Development Machine Build Order</title>
		<link>http://ryankyle.wordpress.com/2009/09/15/software-development-machine-build-order/</link>
		<comments>http://ryankyle.wordpress.com/2009/09/15/software-development-machine-build-order/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 01:33:39 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[New Technologies]]></category>
		<category><![CDATA[Avast]]></category>
		<category><![CDATA[Expression Studio 3]]></category>
		<category><![CDATA[Office 2007]]></category>
		<category><![CDATA[Pex]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Spybot Search & Destroy]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>
		<category><![CDATA[Web Platform Installer]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Wix]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2009/09/15/software-development-machine-build-order/</guid>
		<description><![CDATA[I build a development machine at least once a year, either on my laptop or desktop. It often takes at least a full day and is a huge time sink. I have come up with a build order for building a development machine quickly, securely, and without delays. The machine must be connected to the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=69&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I build a development machine at least once a year, either on my laptop or desktop. It often takes at least a full day and is a huge time sink. I have come up with a build order for building a development machine quickly, securely, and without delays. The machine must be connected to the internet. Much of the software is available free on the web. The rest is available through the <a title="BizSpark" href="http://www.microsoft.com/bizspark/">BizSpark</a> program (also free, initially).</p>
<p>Here is my my current list. All of this software is publicly available, although some may be beta or research.</p>
<p><strong>Windows 7 x64</strong></p>
<p><strong>Security</strong></p>
<p>1. <a title="Windows Update" href="http://windowsupdate.microsoft.com">Windows Update</a> &#8211; Run this over and over again until it says no more updates.</p>
<p>RESTART</p>
<p>2. <a title="Avast! Home Edition" href="http://www.avast.com/eng/download-avast-home.html">Avast Home Edition</a> (free anti-virus)</p>
<p>RESTART</p>
<p>3. <a title="Web of Trust" href="http://www.mywot.com/">Web of Trust</a></p>
<p>4. <a title="Spybot Search &amp; Destroy" href="http://www.safer-networking.org/en/download/index.html">Spybot Search and Destroy</a> (free anti-spyware)</p>
<p> <strong>Development</strong></p>
<p>5. <a title="SQL Server 2008 Developer Edition" href="http://www.microsoft.com/sqlserver/2008/en/us/developer.aspx">Sql Server 2008 Developer Edition</a> (from DVD)</p>
<p>6. <a title="SQL Server 2008 SP1" href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=66ab3dbb-bf3e-4f46-9559-ccc6a4f9dc19">SQL Server 2008 SP1</a> &#8211; Required on Windows 7</p>
<p>RESTART</p>
<p>7. <a title="Visual Studio 2008 Team Suite" href="http://www.microsoft.com/visualstudio/en-us/products/teamsystem/default.mspx">Visual Studio 2008 Team Suite</a> (from DVD)</p>
<p>8. <a title="Visual Studio 2008 SP1" href="http://www.microsoft.com/downloads/details.aspx?familyid=FBEE1648-7106-44A7-9649-6D9F6D58056E&amp;displaylang=en">Visual Studio 2008 SP1</a></p>
<p>9. <a title="Web Platform Installer" href="http://www.microsoft.com/web/">Web Platform Installer</a> &#8211; A single installer for all of these tools and more.</p>
<p>    A. <a title="ASP.NET MVC 1.0" href="http://www.asp.net/mvc">ASP.NET MVC 1.0</a></p>
<p>    B. <a title="Silverlight Tools for Visual Studio" href="http://www.silverlight.net/">Silverlight Tools for Visual Studio</a></p>
<p>    C. <a title="SQL Server 2008 Express" href="http://www.microsoft.com/express/sql/Default.aspx">SQL Server 2008 Express</a></p>
<p>10. <a title="Expression Studio 3" href="http://www.microsoft.com/expression/default.aspx">Expression Studio 3</a> (DVD)</p>
<p>11. <a title="Pex" href="http://research.microsoft.com/en-us/projects/pex/">Pex</a> &#8211; Automated White box Testing for .NET (Microsoft Research Pre-Release)</p>
<p>12. <a title="Windows Installer XML (Wix)" href="http://wix.sourceforge.net/">Windows Installer XML (Wix)</a></p>
<p><strong>Document / Web Apps / More</strong></p>
<p>13. <a title="Microsoft Office 2007" href="http://office.microsoft.com/">Microsoft Office 2007</a> (from DVD) -OR- <a title="Microsoft Word Viewer" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=3657ce88-7cfa-457a-9aec-f4f827f20cac&amp;displaylang=en">Microsoft Word Viewer</a></p>
<p>14. <a title="Adobe Flash Player" href="http://www.adobe.com/products/flashplayer/">Adobe Flash Player</a></p>
<p>15. <a title="Adobe Reader" href="http://get.adobe.com/reader/">Adobe Reader</a></p>
<p>16. <a title="Outlook Connector" href="http://office.microsoft.com/en-us/outlook/HA102225181033.aspx">Outlook Connector</a> &#8211; Recieve Live Hotmail emails in Outlook.</p>
<p>17. <a title="Windows Mobile Device Center" href="http://www.microsoft.com/windowsmobile/devicecenter.mspx">Windows Mobile Device Center</a> &#8211; for syncing my Windows Mobile phone.</p>
<p>18. <a title="Zune Software" href="http://zune.net/products/software/download/default.htm">Zune Software</a> - To sync music to my Zune.</p>
<br /> Tagged: Avast, Expression Studio 3, Office 2007, Pex, software, Spybot Search &amp; Destroy, SQL Server 2008, Visual Studio 2008, Web Platform Installer, Windows 7, Wix <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=69&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2009/09/15/software-development-machine-build-order/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Windows 7 through a KVM Switch</title>
		<link>http://ryankyle.wordpress.com/2009/09/15/installing-windows-7-through-a-kvm-switch/</link>
		<comments>http://ryankyle.wordpress.com/2009/09/15/installing-windows-7-through-a-kvm-switch/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 20:45:31 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[installation failure]]></category>
		<category><![CDATA[KVM switch]]></category>
		<category><![CDATA[video cards]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2009/09/15/installing-windows-7-through-a-kvm-switch/</guid>
		<description><![CDATA[With all things software, it is often good to keep things simple in the beginning. Get something working, and then slowly make it more complex. Well, last night, I tried an install of Windows 7 with a complex hardware setup. I was building my next development machine along side my old development machine by way [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=68&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>With all things software, it is often good to keep things simple in the beginning. Get something working, and then slowly make it more complex.</p>
<p>Well, last night, I tried an install of Windows 7 with a complex hardware setup. I was building my next development machine along side my old development machine by way of a KVM switch. In addition to adding a KVM switch, I also switched around video cards (PCI Express and AGP) and moved to all DVI video cables from simple blue VGA cables. And I did all of this without testing, just before installing Windows on the new machine.</p>
<p>I learned a couple of lessons from this. It’s a good idea to test the video cards on the desired machine prior to hooking it up to a KVM switch with all new cables. Second, Windows 7 was not able to figure out what was not able to recognize the keyboard through KVM switch at all times (namely in parts of BIOS). The installation of Windows actually failed. I believe this was due to not being able to recognize the keyboard. After installation and subsequent connection to the KVM, Windows 7 immediately recognized the switch and installed all of the necessary drivers. Pretty impressive.</p>
<p>So, long story short, this is how to install Windows 7 if you have a KVM switch:</p>
<ol>
<li>Connect devices directly to computer.</li>
<li>Install Windows 7.</li>
<li>Shut down the computer.</li>
<li>Connect devices through KVM switch.</li>
<li>Start computer.</li>
</ol>
<p>This was an unexpected learning opportunity at 8pm, but good information to know for the future. Hope you learned something too.</p>
<p>Very soon (and I mean it this time), I will post my build order of installing software for building a software development machine on the Microsoft stack.</p>
<br /> Tagged: installation, installation failure, KVM switch, video cards, Windows 7 <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=68&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2009/09/15/installing-windows-7-through-a-kvm-switch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Startup Weekend in Review &#8211; Friday</title>
		<link>http://ryankyle.wordpress.com/2009/09/05/startup-weekend-in-review-friday/</link>
		<comments>http://ryankyle.wordpress.com/2009/09/05/startup-weekend-in-review-friday/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 05:42:39 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Common Ground]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[BizSpark]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Redmond WA]]></category>
		<category><![CDATA[Startup Weekend]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2009/09/05/startup-weekend-in-review-friday/</guid>
		<description><![CDATA[Last weekend I participated in Startup Weekend in Redmond, WA, hosted by Microsoft BizSpark. See my previous post for a little more info about the event. This post is the first of a mini-series of three about each day of my experiences at Startup Weekend Redmond. Pitches Shortly after arriving at the Microsoft Conference Center, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=52&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last weekend I participated in <a href="http://www.startupweekend.org" target="_blank">Startup Weekend</a> in <a href="http://www.bing.com/maps/default.aspx?q=redmond+wa" target="_blank">Redmond, WA</a>, hosted by <a href="http://www.microsoft.com/bizspark/" target="_blank">Microsoft BizSpark</a>. See my <a href="http://ryankyle.wordpress.com/2009/08/30/common-ground-team-at-startup-weekend/" target="_blank">previous post</a> for a little more info about the event. This post is the first of a mini-series of three about each day of my experiences at <a href="http://bizspark.startupweekend.com" target="_blank">Startup Weekend Redmond</a>.</p>
<p><strong>Pitches</strong></p>
<p>Shortly after arriving at the <a href="http://bit.ly/MicrosoftBldg33" target="_blank">Microsoft Conference Center</a>, I heard about pitches. People would have an opportunity to get up on stage and pitch their idea for a software solution. I figured that I should have one myself. Why not? So just two hours before pitches started, I began brainstorming ideas. I came up with four ideas, but one looked like it could actually be done in a weekend and be useful.</p>
<p><strong>My Pitch</strong></p>
<p>So I actually went up on stage and pitched my idea in front of 200+ people! The problem I wanted to solve was that finding a meeting place and time is cumbersome and requires a lengthy phone call or series of emails. My solution is a website where each user can input their location and time available and it figures out places and times that work for both parties.</p>
<p><strong>Voting</strong></p>
<p>The audience was allowed to start voting before all of the pitches were done. I put all three of my votes into my idea. I got three other votes total from two other people, bringing my total up to 6 votes. That was enough to make it to #14 in the idea rankings. The top 15 were chosen as the startups of the weekend. Yay!</p>
<p><strong>Team building</strong></p>
<p>This was the most difficult aspect of the startup process and the part I was least successful at. Having one of the lowest ranked ideas chosen, people really wanted to be a part of other teams. I had to fight to get people to even consider joining. In the end, I found a team with a relatable idea that was not chosen and got them to join with me. At this point “Meeting Place” was me and two guys from Romania. One was a backend developer and the other had skills in marketing. I have experience with end to end development, which meant that I became the UI guy.</p>
<p><strong>Rest of the Night</strong></p>
<p>Several people went out to a local venue to continue talking. After that, I spent the rest of the night, without sleep, rebuilding my laptop as a VS 2008 development box. VS2008 installed on the ride over (in the back seat) to Microsoft at 8 in the morning. The team had no business plan and no name.</p>
<br /> Tagged: BizSpark, Common Ground, Microsoft, Redmond WA, Startup Weekend <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=52&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2009/09/05/startup-weekend-in-review-friday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Common Ground Team at Startup Weekend</title>
		<link>http://ryankyle.wordpress.com/2009/08/30/common-ground-team-at-startup-weekend/</link>
		<comments>http://ryankyle.wordpress.com/2009/08/30/common-ground-team-at-startup-weekend/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 23:47:03 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Common Ground]]></category>
		<category><![CDATA[Find Common Ground]]></category>
		<category><![CDATA[Startup Weekend]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/?p=44</guid>
		<description><![CDATA[Hi all, I&#8217;m writing this from Startup Weekend in Redmond, WA. Today is the last day of the event. It has been incredibly exciting. I pitched an idea on the first day, Friday, along with about 35 others. I put all my votes in and a few other people supported it. The idea managed to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=44&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi all,</p>
<p>I&#8217;m writing this from <a title="Startup Weekend" href="http://www.startupweekend.com">Startup Weekend</a> in Redmond, WA. Today is the last day of the event. It has been incredibly exciting. I pitched an idea on the first day, Friday, along with about 35 others. I put all my votes in and a few other people supported it. The idea managed to be in the top 15 (#14), which made it one of the software projects of the weekend.</p>
<p>The idea of <a title="Common Ground" href="http://www.findcommonground.biz">Common Ground</a> is to find a mutually acceptable location and time for 2 people to meet. With only a few developers and two days, we are developing a working prototype. We will be presenting later today, in just a few hours. The current url is <a href="http://www.findcommonground.biz">http://www.findcommonground.biz</a>. Presently parked, it will host our application in the near future. Look for it soon! I have a wonderful team of hard working developers and deep thinkers. I think we are fairing well given that we are one of the smallest teams of the weekend.</p>
<p>I will be posting a series over the next few days documenting my time here at Startup Weekend.</p>
<p>Ryan D. Kyle | Concord Mfg LLC</p>
<br /> Tagged: Common Ground, Find Common Ground, Startup Weekend <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=44&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2009/08/30/common-ground-team-at-startup-weekend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>This Week in Networking</title>
		<link>http://ryankyle.wordpress.com/2009/08/28/this-week-in-networking/</link>
		<comments>http://ryankyle.wordpress.com/2009/08/28/this-week-in-networking/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 18:48:43 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Meetup]]></category>
		<category><![CDATA[NWEN]]></category>
		<category><![CDATA[open coffee]]></category>
		<category><![CDATA[small business]]></category>
		<category><![CDATA[Startupweekend]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2009/08/28/this-week-in-networking/</guid>
		<description><![CDATA[I booked myself for a total of 6 events this week. I’ll walk through them quickly. Monday was August 24th, 2009. Monday &#124; Eastside Small Business Meetup (Redmond), Bellevue Job Club Meetup (Bellevue) Tuesday &#124; Seattle Startups Open Coffee (Seattle) Wednesday &#124;&#160;Eastside Startups Open Coffee (Redmond) Thursday &#124; NWEN House Party (Seattle) Friday – Sunday [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=40&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I booked myself for a total of 6 events this week. I’ll walk through them quickly. Monday was August 24th, 2009.</p>
<p><strong>Monday |</strong> <a href="http://www.meetup.com/CNP-Presents-Eastside-Small-Business-Group/">Eastside Small Business Meetup</a> (Redmond), <a href="http://www.meetup.com/Job-Club-Bellevue/">Bellevue Job Club Meetup</a> (Bellevue)</p>
<p><strong>Tuesday |</strong> <a href="http://www.seattle20.com/event/Seattle-Startups-Open-Coffee.aspx">Seattle Startups Open Coffee</a> (Seattle)</p>
<p><strong>Wednesday |</strong>&#160;<a href="http://www.seattle20.com/event/Eastside-Startups-Open-Coffee.aspx">Eastside Startups Open Coffee</a> (Redmond)</p>
<p><strong>Thursday |</strong> <a href="http://www.nwen.org/">NWEN</a> House Party (Seattle)</p>
<p><strong>Friday – Sunday |</strong> <a href="http://bizspark.startupweekend.com/">Startup Weekend (BizSpark at Redmond)</a></p>
<p>Very soon I will be creating a dedicated page to networking events in the greater Seattle area. Look there for reviews of all of these events and more. Expect a post on Tuesday about Startup Weekend.</p>
<p>Enjoy your weekend! I certainly will, programming.</p>
<br /> Tagged: Meetup, Networking, NWEN, open coffee, small business, Startupweekend <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=40&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2009/08/28/this-week-in-networking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Patterns, Process, and Architecture Reading List</title>
		<link>http://ryankyle.wordpress.com/2009/08/19/patterns-process-and-architecture-reading-list/</link>
		<comments>http://ryankyle.wordpress.com/2009/08/19/patterns-process-and-architecture-reading-list/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 13:22:00 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[LinkedIn Reading List]]></category>
		<category><![CDATA[patterns]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[web services]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2009/08/18/patterns-process-and-architecture-reading-list/</guid>
		<description><![CDATA[I have been reading a lot of technical books recently. So much so, that I recently designed a new software architecture application based on the book I’m reading, Pro .NET 2.0 Code and Design Standards in C#. Another book I was reading, but somehow lost is Learning WCF: A Hands-on Guide. I picked the following [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=31&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been reading a lot of technical books recently. So much so, that I recently designed a new software architecture application based on the book I’m reading, <a href="http://www.amazon.com/gp/product/1590595602">Pro .NET 2.0 Code and Design Standards in C#</a>. Another book I was reading, but somehow lost is <a href="http://www.amazon.com/dp/0596101627/" target="_blank">Learning WCF: A Hands-on Guide</a>.</p>
<p>I picked the following books because they are already on the bookshelves behind my desk. There are hundreds of books on these bookshelves, but these particular books stood out to be because they are about patterns, process, and architecture. My goal will be to read at least one of these book per week.</p>
<p>Here’s my list of books to read in the near future:</p>
<ul>
<li><a href="http://www.amazon.com/dp/0201485672/" target="_blank">Martin Fowler – “Refactoring</a>” </li>
<li><a href="http://www.amazon.com/dp/0735621624" target="_blank">Web Services Architecture and Its Specifications: Essentials for Understanding WS</a> </li>
<li><a href="http://www.amazon.com/dp/0735618372/" target="_blank">Application Architecture for .NET: Designing Applications and Services</a> </li>
</ul>
<p>If I had any books on Silverlight or better books on WPF, I would probably add those to the list. For those that are connected to me on LinkedIn, you can look at my Reading List to see what else I have read.</p>
<p>Reading technical books like these is one of my favorite and fastest ways to learn new technologies. I encourage those who want to learn, to find a book on a topic you are interested in and just start reading.</p>
<br /> Tagged: .NET, architecture, books, C#, Learning, LinkedIn Reading List, patterns, process, web services <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=31&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2009/08/19/patterns-process-and-architecture-reading-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Articles with Advice for Startups</title>
		<link>http://ryankyle.wordpress.com/2009/08/18/articles-with-advice-for-startups/</link>
		<comments>http://ryankyle.wordpress.com/2009/08/18/articles-with-advice-for-startups/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 14:00:00 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Blogspot]]></category>
		<category><![CDATA[life balance]]></category>
		<category><![CDATA[sales team]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2009/08/18/articles-with-advice-for-startups/</guid>
		<description><![CDATA[These are just a few articles I found while browsing around that I found interesting and perhaps useful for startups.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=33&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>These are just a few articles I found while browsing around that I found interesting and perhaps useful for startups. The first link is a must!</p>
<ul>
<li><a title="Answers to every Seattle tech startups question ever asked" href="http://www.slideshare.net/twilio/answers-to-every-seattle-tech-startups-question-ever-asked">Answers to every Seattle tech startups question ever asked</a> – humorous slide show of questions and answers of Seattle tech startups. </li>
<li><a title="Hard work is essential for startups but how much is too much" href="http://www.xconomy.com/seattle/2009/08/13/hard-work-is-essential-for-startups-but-how-much-is-too-much-part-1/">Hard work is essential for startups but how much is too much (part 1)</a> – life balance article. </li>
<li><a title="http://onstartups.com/tabid/3339/bid/10155/Building-Startup-Sales-Teams-Tips-For-Founders.aspx" href="http://onstartups.com/tabid/3339/bid/10155/Building-Startup-Sales-Teams-Tips-For-Founders.aspx">Building Startup Sales Teams Tips For Founders</a> – found this through <a href="http://onstartups.com/">OnStartups blog</a>. </li>
<li><a title="http://www.womengrowbusiness.com/2009/07/your-revenue-and-a-harsh-fairytale-when-building-a-good-sales-team-you-kiss-a-lot-of-frogs/" href="http://www.womengrowbusiness.com/2009/07/your-revenue-and-a-harsh-fairytale-when-building-a-good-sales-team-you-kiss-a-lot-of-frogs/">Your revenue and a harsh fairytale when building a good sales team you kiss a lot of frogs</a> – building a sales team: when and how. Found this from above article. </li>
<li><a title="http://blog.hubspot.com/blog/tabid/6307/bid/46/Why-Your-Business-Blog-Shouldn-t-Be-On-BlogSpot-com.aspx" href="http://blog.hubspot.com/blog/tabid/6307/bid/46/Why-Your-Business-Blog-Shouldn-t-Be-On-BlogSpot-com.aspx">Why Your Business Blog Shouldn&#8217;t Be On BlogSpot.com</a> – after reading this article, I decided this blog should really be on it’s own domain. I need to do lots more research first, though. I have heard that WordPress is much nicer than BlogSpot when it comes to transitioning. </li>
</ul>
<p>Let me know what you found interesting, what changed your thinking, and what was boring. I love getting comments! I respond to all.</p>
<p>I’m also interested in how you came across my blog. Comment about that too.</p>
<br /> Tagged: blog, Blogspot, life balance, sales team, Startups, Wordpress <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=33&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2009/08/18/articles-with-advice-for-startups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Startup and Networking Events in Seattle</title>
		<link>http://ryankyle.wordpress.com/2009/08/18/startup-and-networking-events-in-seattle/</link>
		<comments>http://ryankyle.wordpress.com/2009/08/18/startup-and-networking-events-in-seattle/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 12:26:00 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[nPost]]></category>
		<category><![CDATA[Seattle 2.0]]></category>
		<category><![CDATA[Seattle Tech Calendar]]></category>
		<category><![CDATA[Seattle Tech Startups]]></category>
		<category><![CDATA[Startupweekend]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2009/08/18/startup-and-networking-events-in-seattle/</guid>
		<description><![CDATA[These are all the event websites currently in my IE favorites. Seattle Tech Calendar – the most populated online calendar of tech events in Seattle that I know of. Startup-Entrepreneurship Events in Seattle – Seattle 2.0’s list. nPost event list – nPost’s event list. Gary&#8217;s Guide – just found this a few seconds ago. list [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=34&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>These are all the event websites currently in my IE favorites.</p>
<ul>
<li><a title="SeattleTechCalendar" href="http://www.seattletechcalendar.com/">Seattle Tech Calendar</a> – the most populated online calendar of tech events in Seattle that I know of.</li>
<li><a title="Startup-Entrepreneurship Events in Seattle" href="http://www.seattle20.com/events.aspx">Startup-Entrepreneurship Events in Seattle</a> – Seattle 2.0’s list.</li>
<li><a title="http://www.wiki.npost.com/index.php/Main_Page" href="http://www.wiki.npost.com/index.php/Main_Page">nPost event list</a> – nPost’s event list.</li>
<li><a title="http://seattle.garysguide.org/" href="http://seattle.garysguide.org/">Gary&#8217;s Guide</a> – just found this a few seconds ago.</li>
<li><a title="http://www.techflash.com/events" href="http://www.techflash.com/events">list by TechFlash</a> – includes STC from above.</li>
<li><a title="Seattle Tech Startups" href="http://www.seattletechstartups.com/doku.php">Seattle Tech Startups</a> – Last Wednesday I met Robert and Nathan at STS. Thanks guys! Great event. Monthly event.</li>
<li><a title="http://www.seattle20.com/event/Seattle-Startups-Open-Coffee.aspx" href="http://www.seattle20.com/event/Seattle-Startups-Open-Coffee.aspx">Seattle Startups Open Coffee</a> – I will be there the day this is published (Tuesday).</li>
<li><a title="Eastside Startups Open Coffee" href="http://www.seattle20.com/event/Eastside-Startups-Open-Coffee.aspx">Eastside Startups Open Coffee</a> – I will probably be there the day after this is published (Wednesday). If I do go, I will be bringing a guest.</li>
<li><a title="Seattle Job Social - FOR THE GREATER GOOD" href="http://www.seattlejobsocial.com/index.html">Seattle Job Social</a> – Heard good things about this networking event. Employers, recruiters, job seekers, etc. I might be there this Thursday.</li>
<li><a title="Hops &amp; Chops" href="http://www.hopsandchops.com/">Hops &amp; Chops</a> – regular event. Again, heard good things. I will be at one of these soon.</li>
<li><a title="http://techfoam.org/wordpress/" href="http://techfoam.org/wordpress/">TechFoam</a> – Eastside version of Hops n Chops. Yet to go.</li>
<li><a title="Six Hour Startup } A bi-monthly Seattle experiment" href="http://sixhourstartup.com/">Six Hour Startup</a> – Recently heard about it. Yet to go.</li>
<li><a title="http://www.saturdayhouse.org/" href="http://www.saturdayhouse.org/">Saturday House</a> – Recently heard about it. Yet to go.</li>
<li><a title="Startupweekend with MS BizSpark" href="http://bizspark.startupweekend.com/">Startupweekend with MS BizSpark</a> – Design and code a small application in a weekend. $50 entry.</li>
</ul>
<p>Lots of events, so little time. Also, check out <a href="http://www.meetup.com">Meetup.com</a> for more local events. I think all of my links are are tech or startup related, but Meetup has great meetings as well. I’m participating in two so far. If you have more events or lists of events, please comment.</p>
<p>By popular demand (about 5 people). Hope to see you at an event.</p>
<br /> Tagged: Events, Networking, nPost, Seattle 2.0, Seattle Tech Calendar, Seattle Tech Startups, Startupweekend <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=34&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2009/08/18/startup-and-networking-events-in-seattle/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
		<item>
		<title>Websites Devoted to Startups in Seattle</title>
		<link>http://ryankyle.wordpress.com/2009/08/17/websites-devoted-to-startups-in-seattle/</link>
		<comments>http://ryankyle.wordpress.com/2009/08/17/websites-devoted-to-startups-in-seattle/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 14:00:00 +0000</pubDate>
		<dc:creator>Ryan Kyle</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[nPost]]></category>
		<category><![CDATA[OnStartups]]></category>
		<category><![CDATA[Seattle 2.0]]></category>
		<category><![CDATA[Seattle Tech Startups]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[STS]]></category>

		<guid isPermaLink="false">http://ryankyle.wordpress.com/2009/08/17/websites-devoted-to-startups-in-seattle/</guid>
		<description><![CDATA[There are many sites out there dedicated to helping startups in Seattle and I went on a hunt to find them.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=32&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are many sites out there dedicated to helping startups in Seattle and I went on a hunt to find them. I recently compiled this partial list on my own from meeting people, reading blogs, and following links.</p>
<ul>
<li><a href="http://www.npost.com" target="_blank">nPost</a></li>
<li><a href="http://www.seattle20.com/" target="_blank">Seattle 2.0</a></li>
<li><a title="On Startups by Dharmesh Shah" href="http://onstartups.com/">On Startups</a></li>
<li><a title="Seattle Tech Startups" href="http://www.seattletechstartups.com/doku.php">Seattle Tech Startups</a></li>
</ul>
<p>Another category of links I found useful is local tech events. Many of the above sites have a list of events. In an upcoming post, I will list all of the event sites (Seattle specific) I know of so far. If you know of more sites I should be connected with, post a comment. I will read it and respond.</p>
<p>For those of you that read my first post, I will be posting more than once a week, for a few months, just to get my blog out there. Two or three post per week will be my goal.</p>
<br /> Tagged: Events, Links, nPost, OnStartups, Seattle 2.0, Seattle Tech Startups, Startups, STS <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ryankyle.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ryankyle.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ryankyle.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ryankyle.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ryankyle.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ryankyle.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ryankyle.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ryankyle.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ryankyle.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ryankyle.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ryankyle.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ryankyle.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ryankyle.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ryankyle.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ryankyle.wordpress.com&amp;blog=8899048&amp;post=32&amp;subd=ryankyle&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ryankyle.wordpress.com/2009/08/17/websites-devoted-to-startups-in-seattle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ba7a75b78dd5767ff8441b987eec811a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kyler</media:title>
		</media:content>
	</item>
	</channel>
</rss>
