<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Russell Solberg</title>
	<atom:link href="http://www.rsolberg.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rsolberg.com</link>
	<description>rsolberg.com</description>
	<lastBuildDate>Tue, 24 Apr 2012 17:10:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>How to select the first element of a dropdown using jQuery?</title>
		<link>http://www.rsolberg.com/how-to-select-the-first-element-of-a-dropdown-using-jquery/</link>
		<comments>http://www.rsolberg.com/how-to-select-the-first-element-of-a-dropdown-using-jquery/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 17:08:58 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[ASP.net]]></category>
		<category><![CDATA[dropdown]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[select]]></category>

		<guid isPermaLink="false">http://www.rsolberg.com/?p=659</guid>
		<description><![CDATA[<p>Let&#8217;s suppose that you are trying to identify what the first element or value us within a dropdown menu or specifically a select list. Suppose that your select list looks like this&#8230; If you wanted to figure out what the very first element of the drop down was, you could use this line of jQuery [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s suppose that you are trying to identify what the first element or value us within a dropdown menu or specifically a select list. Suppose that your select list looks like this&#8230;</p>
<p></p><pre class="crayon-plain-tag">&amp;lt;select id=&quot;myList&quot;&amp;gt;
   &amp;lt;option value=&quot;0&quot; selected&amp;gt;Select One&amp;lt;/option&amp;gt;
   &amp;lt;option value=&quot;1&quot;&amp;gt;One&amp;lt;/option&amp;gt;
   &amp;lt;option value=&quot;2&quot;&amp;gt;Two&amp;lt;/option&amp;gt;
&amp;lt;/select&amp;gt;</pre><p>If you wanted to figure out what the very first element of the drop down was, you could use this line of jQuery to get it.</p><pre class="crayon-plain-tag">$('#myList option:first-child')</pre><p>Suppose that you wanted to update all the selects or dropdown menus on your page to the first item in the list&#8230; You could do that by executing this line of jQuery.</p><pre class="crayon-plain-tag">$('select option:first-child').attr(&quot;selected&quot;, &quot;selected&quot;);</pre><p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rsolberg.com/how-to-select-the-first-element-of-a-dropdown-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC, Razor, &amp; EF Code 1st Drop Down Menus</title>
		<link>http://www.rsolberg.com/asp-net-mvc-razor-ef-code-1st-drop-down-menus/</link>
		<comments>http://www.rsolberg.com/asp-net-mvc-razor-ef-code-1st-drop-down-menus/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 19:06:20 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[ASP.net]]></category>
		<category><![CDATA[asp.net-mvc]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[code first]]></category>
		<category><![CDATA[entity framework]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[razor]]></category>

		<guid isPermaLink="false">http://www.rsolberg.com/?p=626</guid>
		<description><![CDATA[<p>Getting dropdown menus to appear in ASP.NET MVC 3 razor views where FK relationships exist&#8230; EF Classes / Model VIEW</p>
 ]]></description>
			<content:encoded><![CDATA[<p>Getting dropdown menus to appear in ASP.NET MVC 3 razor views where FK relationships exist&#8230;</p>
<h4>EF Classes / Model</h4>
<p></p><pre class="crayon-plain-tag">public class Partner
{
&nbsp; &nbsp; public int Id { get; set; }

&nbsp; &nbsp; [Required]
&nbsp; &nbsp; [MinLength(5)]
&nbsp; &nbsp; [MaxLength(300)]
&nbsp; &nbsp; public String Name { get; set; }

&nbsp; &nbsp; [Required]
&nbsp; &nbsp; public int PartnerTypeId { get; set; }
&nbsp; &nbsp; public PartnerType PartnerType { get; set; }

&nbsp; &nbsp; public int PartnerSubTypeId { get; set; }
&nbsp; &nbsp; public PartnerSubType PartnerSubType { get; set; }

}

public class PartnerType
{
&nbsp; &nbsp; public int Id { get; set; }

&nbsp; &nbsp; [Required]
&nbsp; &nbsp; [MaxLength(40)]
&nbsp; &nbsp; public String Name { get; set; }

&nbsp; &nbsp; [Required]
&nbsp; &nbsp; public bool IsActive { get; set; }

&nbsp; &nbsp; public virtual ICollection&amp;lt;Partner&amp;gt; Partners { get; set; }
}</pre><p></p>
<h4>VIEW</h4>
<p></p><pre class="crayon-plain-tag">&lt;fieldset&gt;
        &lt;legend&gt;Partner&lt;/legend&gt;

        &lt;div class=&quot;editor-label&quot;&gt;
            @Html.LabelFor(model =&gt; model.Name)
        &lt;/div&gt;
        &lt;div class=&quot;editor-field&quot;&gt;
            @Html.EditorFor(model =&gt; model.Name)
            @Html.ValidationMessageFor(model =&gt; model.Name)
        &lt;/div&gt;

        &lt;div class=&quot;editor-label&quot;&gt;
            @Html.LabelFor(model =&gt; model.PartnerTypeId)
        &lt;/div&gt;
        &lt;div class=&quot;editor-field&quot;&gt;
            @Html.EditorFor(model =&gt; model.PartnerTypeId)
            @Html.ValidationMessageFor(model =&gt; model.PartnerTypeId)
        &lt;/div&gt;

        &lt;div class=&quot;editor-label&quot;&gt;
            @Html.LabelFor(model =&gt; model.PartnerSubTypeId)
        &lt;/div&gt;
        &lt;div class=&quot;editor-field&quot;&gt;
            @Html.EditorFor(model =&gt; model.PartnerSubTypeId)
            @Html.ValidationMessageFor(model =&gt; model.PartnerSubTypeId)
        &lt;/div&gt;
&lt;/fieldset&gt;</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rsolberg.com/asp-net-mvc-razor-ef-code-1st-drop-down-menus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data Localization With JavaScript</title>
		<link>http://www.rsolberg.com/data-localization-with-javascript/</link>
		<comments>http://www.rsolberg.com/data-localization-with-javascript/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 23:06:35 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[localization]]></category>

		<guid isPermaLink="false">http://www.rsolberg.com/?p=622</guid>
		<description><![CDATA[<p>I worked on an ASP.NET app with localization and globalization. I was having some difficulty understanding how to get the Date() function in javascript to work properly given the user&#8217;s environment. My user base was split between Mexico (spanish) and the US (english). Since the Mexico date format is dd/mm/yyyy and the english format is [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p><a href="http://rsolberg.zippykidcdn.com/wp-content/uploads/2012/03/datejslogo.jpg"><img src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2012/03/datejslogo-300x151.jpg" alt="" title="datejslogo" width="300" height="151" class="alignright size-medium wp-image-623" /></a>I worked on an ASP.NET app with localization and globalization. I was having some difficulty understanding how to get the Date() function in javascript to work properly given the user&#8217;s environment. My user base was split between Mexico (spanish) and the US (english). Since the Mexico date format is dd/mm/yyyy and the english format is mm/dd/yyyy, the standard Date(strDate) javascript constructor does not work for me.</p>
<p>Then i found <a href="http://code.google.com/p/datejs/" target="_blank">Datejs</a>&#8230;  What a savior!  I started off by reading their blog post titled &#8220;<a href="http://www.datejs.com/2007/11/27/getting-started-with-datejs/" target="_blank">Getting Started With Datejs</a>&#8220;&#8230;.  Hopefully you&#8217;ll find the tool as useful as I did.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rsolberg.com/data-localization-with-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Templates &amp; Stock Photos</title>
		<link>http://www.rsolberg.com/website-templates-stock-photos/</link>
		<comments>http://www.rsolberg.com/website-templates-stock-photos/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 22:26:07 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Open- Source]]></category>
		<category><![CDATA[OSS]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[Stock]]></category>
		<category><![CDATA[Stock Photos]]></category>
		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://www.rsolberg.com/?p=608</guid>
		<description><![CDATA[<p>Over the years as a developer, you tend to create quite a collection of useful links&#8230; Below are some links that have proven very useful to me in the various projects I&#8217;ve worked on&#8230; WordPress Templates WooThemes ThemeFuse ThemeForest Web Templates FreeCSSTemplates OpenWebDesign OpenSourceWebDesign MVC Template Gallery StyleShout Stock Photography iStockPhoto stock.xchng CorbisImages 123RF ShutterStock</p>
 ]]></description>
			<content:encoded><![CDATA[<p>Over the years as a developer, you tend to create quite a collection of useful links&#8230;  Below are some links that have proven very useful to me in the various projects I&#8217;ve worked on&#8230;</p>
<h4>WordPress Templates</h4>
<p><a href="http://www.woothemes.com/woomember/go?r=30347&#038;redirect=www.woothemes.com/" target="_blank">WooThemes</a><br />
<a href="https://www.e-junkie.com/ecom/gb.php?cl=136641&#038;c=ib&#038;aff=206413" target="_blank">ThemeFuse</a><br />
<a href="http://themeforest.net?ref=RussSolberg" target="_blank">ThemeForest</a></p>
<h4>Web Templates</h4>
<p><a href="http://www.freecsstemplates.org/" target="_blank">FreeCSSTemplates</a><br />
<a href="http://openwebdesign.org/" target="_blank">OpenWebDesign</a><br />
<a href="http://www.oswd.org/" target="_blank">OpenSourceWebDesign</a><br />
<a href="http://mvccontribgallery.codeplex.com/" target="_blank">MVC Template Gallery</a><br />
<a href="http://www.styleshout.com/free-templates.php" target="_blank">StyleShout</a></p>
<h4>Stock Photography</h4>
<p><a href="http://www.istockphoto.com/" target="_blank">iStockPhoto</a><br />
<a href="http://www.sxc.hu/" target="_blank">stock.xchng</a><br />
<a href="http://www.corbisimages.com/" target="_blank">CorbisImages</a><br />
<a href="http://www.123rf.com/" target="_blank">123RF</a><br />
<a href="http://www.shutterstock.com/" target="_blank">ShutterStock</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rsolberg.com/website-templates-stock-photos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert ASP.NET Website to ASP.NET Web Application</title>
		<link>http://www.rsolberg.com/convert-asp-net-website-to-asp-net-web-application/</link>
		<comments>http://www.rsolberg.com/convert-asp-net-website-to-asp-net-web-application/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 17:38:19 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[ASP.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[vb]]></category>
		<category><![CDATA[visual studio]]></category>
		<category><![CDATA[web application]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://wwwrsolberg.zippykid.it/?p=597</guid>
		<description><![CDATA[<p>HatM /Free Photos It wasn&#8217;t that many years ago that it seemed like I&#8217;d create a new ASP.NET website a few times a week.  Some for rapid prototyping and others for release.  At the time, the applications felt really easy to manage.  That is until they grew and became a beast with all kinds of [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<dl id="foter-photo-figure" class="foter-photo alignright" style="width: 300px; color: #888; position: relative; font-size: 11px; font-family: Arial, Helvetica, sans-serif; overflow: hidden; zoom: 1; padding: 4px; border: 1px solid #DDDDDD; border-radius: 3px 3px 3px 3px;">
<dt><img class="foter-photo mceItem" style="display: block; width: 100%;" title="Spaghetti" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2012/03/spaghetti-1.jpg" alt="" /></dt>
<dd style="padding: 0; margin: 0;"><span style="display: block; float: right;"><a href="http://www.flickr.com/photos/14993459@N08/">HatM</a> /<a title="Free Photos" href="http://foter.com/">Free Photos</a></span></dd>
</dl>
<p>It wasn&#8217;t that many years ago that it seemed like I&#8217;d create a new ASP.NET website a few times a week.  Some for rapid prototyping and others for release.  At the time, the applications felt really easy to manage.  That is until they grew and became a beast with all kinds of integration needs.</p>
<p>As soon as you start needing to integrate with other systems, databases, applications, etc. the ability to use namespaces and existing components becomes a requirement.  Without it, your code would become completley unmanageable with a complete lack of reuse of components and functions.  I&#8217;m not saying that you can&#8217;t maintain some good coding practices within an ASP.NET website, but when the app grows and its being integrated with, I absolutely hate code sprawl.   My philosphy on coding is rather simple:  Code it once so that you can reuse it at least twice.</p>
<p>Obviously not every code block you write will be reused, but say you have a function to get a contact&#8217;s name from your CRM system&#8230;  It would seem like this is something you&#8217;ll do over and over and over again, so code it once, use it at least twice&#8230;</p>
<p>With all that said, the need arose to be able to convert these growing ASP.NET websites into ASP.NET Web Applications.  When I got to that point, I was able to find a great resource by <a href="http://gurustop.net/blog/2008/08/03/converting-vs-2008-website-to-web-application/" target="_blank">Mohamed Meligy </a>on this very topic.</p>
<p>Essentially it comes down to a few steps&#8230;</p>
<ol>
<li>Create a new blank solution within Visual Studio</li>
<li>Add a new Web Application Project to the newly created solution</li>
<li>Import existing website files into newly created Web Application project (overwrite files as needed)</li>
<li>Manually add references into the new project that you had in your old website</li>
<li>Once all refernces are added, you likely have many namespace errors.  Create the new namespaces as required.</li>
<li>Now we need to perform a conversion process on the web application project, right click on the new Web Application Project and select &#8220;Convert To Web Application&#8221;.  This should fix missinging designer.cs or designer.vb.</li>
</ol>
<p>The above steps will still keep all of your code within a single project in Visual Studio.  Depending on what the application is, does, etc. you may be better off adding a few different projects to seperate database connectivity, data models, and classes that interact with the DB.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rsolberg.com/convert-asp-net-website-to-asp-net-web-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Azure &amp; Updated Pricing</title>
		<link>http://www.rsolberg.com/sql-azure-updated-pricing/</link>
		<comments>http://www.rsolberg.com/sql-azure-updated-pricing/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 16:37:18 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[ASP.net]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL-Azure]]></category>

		<guid isPermaLink="false">http://rsolberg.com/?p=446</guid>
		<description><![CDATA[<p>One of the biggest challenges I face daily is how to build and architect cost effective technical solutions to improve our business processes. While we have no shortage of ideas for processes we can enhance, we are very constrained on capital to invest. With all that said, we still have to operate and improve our [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p>One of the biggest challenges I face daily is how to build and architect cost effective technical solutions to improve our business processes. While we have no shortage of ideas for processes we can enhance, we are very constrained on capital to invest. With all that said, we still have to operate and improve our processes. Our goal as a business is to be the best at what we do which means we also need to make sure we have appropriate scalable technical solutions in please to meet the demands of our users.</p>
<p>Over the past few years our Customer Relationship Management (CRM) database has become our Enterprise Resource Planning (ERP) system. This system tells our staff everything they need to know about our customers, potential customers, and what activities need to be completed and when. This system is an ASP.NET web application with a SQL database on the back end. In the days leading up to our busy season, we had an Internet outage (thanks to some meth tweakers for digging up some copper!) and only one of our offices had access to our system. At this time, I knew that our business required us to rethink the hosting of our server and services.</p>
<p>After working with various technical partners, we determined we could collocate our existing server in a data center for a mere $400 per month. While this was a workable solution, the only perk this would really provide us was redundant power and internet access which we didn&#8217;t have in our primary location. We still had huge redundancy issues with our server in general, and by huge I mean non-existent. In other words, if a hard disk failed, we were SOL until Dell was able to get us a replacement. Since our busy season of work had just begun, I decided that we&#8217;d roll the dice and address the concerns in the 1Q of 2012.</p>
<h2>Enter Azure</h2>
<p>When Azure was announced from Microsoft, I initially brushed off the platform. I found the Azure pricing model way too difficult to comprehend and I really wasn&#8217;t willing to spend the hours, weeks, or months trying to put it all together. Things have changed though!</p>
<p>On February 14th, 2012 Microsoft announced that it was reducing the pricing of SQL Azure and I decided to see if I could figure out what that meant. While digging into this, I came across a nice article written by <a title="Announcing Reduce Pricing on SQL Azure and New 100MB Database Option" href="http://blogs.msdn.com/b/windowsazure/archive/2012/02/14/announcing-reduced-pricing-on-sql-azure-and-new-100mb-database-option.aspx" target="_blank">Steven Martin</a> that did a good job explaining the costs.  After reading the article, I decided to evaluate the pricing calculator again.  Winner Winner Chicken Dinner!</p>
<p><a href="http://rsolberg.zippykidcdn.com/wp-content/uploads/2012/02/SqlAzurePricing.png"><img class="aligncenter size-full wp-image-453" title="SqlAzurePricing" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2012/02/SqlAzurePricing.png" alt="" width="520" /></a></p>
<p>I could move our entire database to the SQL Azure platform for $9.99 per month!  This would at least handle some of the disaster recovery and scalability concerns.  The only other piece to the puzzle would be our ASP.NET web application.  While I have scalability concerns with that, disaster recovery isn&#8217;t really a concern because the data drives the app.  In other words, a Windows PC can running IIS would work until the server is fixed.  But what if the cost wasn&#8217;t an issue on the Azure platform?  Would it be worth it?  Five months ago, I couldn&#8217;t have told you the cost.  With the updated pricing calculator, I can see that running 2 extra-small instances of our ASP.NET web app will cost $60.00 per month.  VERY AFFORDABLE!</p>
<p><a href="http://rsolberg.zippykidcdn.com/wp-content/uploads/2012/02/AzurePricing.png"><img class="aligncenter size-full wp-image-458" title="AzurePricing" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2012/02/AzurePricing.png" alt="" width="520" /></a></p>
<p>While I&#8217;ve not deployed our solutions to Azure yet, it is something that I&#8217;ve got on the list to complete within the next 60 days.  Hosting our entire application for less than $70 per month (ok, a penny less&#8230; but still!) is amazing!  I&#8217;ll write another blog entry once we&#8217;ve tested the Azure system out, but very promising!!!!!</p>
<h2>What if your database was 30GB?<br />
<a href="http://rsolberg.zippykidcdn.com/wp-content/uploads/2012/02/SQLAzurePricing2.png"><img class="aligncenter size-full wp-image-456" title="SQLAzurePricing2" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2012/02/SQLAzurePricing2.png" alt="" width="520" height="187" /></a></h2>
]]></content:encoded>
			<wfw:commentRss>http://www.rsolberg.com/sql-azure-updated-pricing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HP TouchPad from OnSale</title>
		<link>http://www.rsolberg.com/hp-touchpad-from-onsale-through-amazon/</link>
		<comments>http://www.rsolberg.com/hp-touchpad-from-onsale-through-amazon/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 04:00:04 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Amazon.com]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[HP TouchPad]]></category>
		<category><![CDATA[OnSale]]></category>

		<guid isPermaLink="false">http://rsolberg.com/?p=434</guid>
		<description><![CDATA[<p>Well if you&#8217;re reading this, my guess is that you were potentially impacted by the fire sale of the HP TouchPads after the insane new price of $99 for the 16GB version was established. While most &#8220;Geeks&#8221; out there probably already had their tablet of choice in hand already or their eyes on one, the [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p>Well if you&#8217;re reading this, my guess is that you were potentially impacted by the fire sale of the HP TouchPads after the insane new price of $99 for the 16GB version was established.  While most &#8220;Geeks&#8221; out there probably already had their tablet of choice in hand already or their eyes on one, the $99 price point made the device very sexy.  Simply putting it on your desk as a digital picture frame, or calendar display, or eBook reader at this price would simply be amazing.  Below I will recap my overall experience trying to grab one of these hot buys.  If you&#8217;re looking for one, sorry I&#8217;m in the same boat as you!</p>
<hr />
<p>Obviously something that has so much to give at $99 would be in hot demand.  HP sold through their inventory very quickly.  Most national and global retailers removed their stock to send back to HP.  This left just a few folks whom were selling them through other channels like the re-seller platform through Amazon.  On Sunday I came across a<a href="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/HP-TouchPad_2.jpg"><img src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/HP-TouchPad_2-300x205.jpg" alt="" title="HP-TouchPad_2" width="300" height="205" class="alignleft size-medium wp-image-435" /></a> tweet alerting folks that the $99 HP TouchPad was available on Amazon.  I logged onto Amazon as quickly as I could and ordered 3 of them.  Again at the $99 price point, these would offer incredible value and make fantastic gifts.  I then decided to pony up the extra coin to have the shipment expedited.  After receiving the confirmation emails, etc. from OnSale, the re-seller, I got pretty darn excited.  </p>
<p>Normally ordering something on Amazon and selecting next day delivery goes off without a hitch.  On Monday, I full expected to see a shipment notification from OnSale.  Monday came and went and so did Tuesday and still not shipment notification.  On Wednesday morning I checked my order status and saw &#8220;Shipping Soon.&#8221;  I figured, this must be good news&#8230;  I then saw some tweets from people suggesting their order had been cancelled from OnSale since the item was on back order.  From the way folks were describing the situation, OnSale apparently oversold their inventory by the thousands.  </p>
<p>I decided to call Amazon just to make sure everything with my order was OK and they said, &#8220;YES&#8221; and to call OnSale with questions.  I tried, dozens of times throughout the day.  I&#8217;m guessing thousands of others were as well since all I got was &#8220;All circuits are busy, please try your call again later&#8221;&#8230;  Clearly there was a big mess going on.  Finally near 5PM I was able to get through to OnSale and they told me that they had no record of my order and that Amazon failed to send it to them.  After publicly defending them and Amazon for the mess, I decided I was mad.  I called Amazon and they again said, &#8220;everything looked fine&#8221; and that OnSale probably needed more time to catch up.  About fifteen minutes later, I received my cancellation notice.</p>
<hr />
<p>Clearly there was an inventory management issue somewhere in the supply chain for Amazon.com.  While I know Amazon.com is not fully responsible for the re-seller channel, especially in terms of inventory, there wasn&#8217;t nearly enough communication.  People were checking their front door days after ordering only to find cancellation emails.  The communication on this was atrocious.  If I were running the show at Amazon.com, I&#8217;d send out an email to all those customers whom tried to purchase the device with a recap of what happened, why, and what Amazon.com is doing to make sure it doesn&#8217;t happen again.  While this fiasco won&#8217;t change my shopping habits, sometimes accountability will go a very long ways.  If I were running the show, I&#8217;d also try to get in touch with HP and work something out.  Supposedly HP may have some more inventory available within the week and a large retailer like Amazon may have enough clout to cut a deal on getting devices out to those whom ordered.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rsolberg.com/hp-touchpad-from-onsale-through-amazon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Owen is 9 Months Old</title>
		<link>http://www.rsolberg.com/owen-is-9-months-old/</link>
		<comments>http://www.rsolberg.com/owen-is-9-months-old/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 04:05:59 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[baby]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[owen]]></category>

		<guid isPermaLink="false">http://rsolberg.com/?p=382</guid>
		<description><![CDATA[<p>Long time no updates, but that can be explained! Things in the Solberg household have been insanely crazy for the past 6 months. Between some health issues like faulty gallbladders, leaving my job at PACCAR, and moving into our new home in Vancouver, there just hasn&#8217;t been too much time for some updates. Oh, and [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p>Long time no updates, but that can be explained! Things in the Solberg household have been insanely crazy for the past 6 months. Between some health issues like faulty gallbladders, leaving my job at PACCAR, and moving into our new home in Vancouver, there just hasn&#8217;t been too much time for some updates. Oh, and did I mention that during this time Owen when from a cute cuddly 3 month old to a 9 month old who just wants to crawl everywhere?</p>
<p>While the updates have been sparse, the fun we&#8217;ve been having has been far from sparse. The highlight of the past 6 months for our family has to be getting adjusted to life in our new home. Moving from an 1150 SQ/FT condo to a 3300 SQ/FT house is significant. We have rooms with NOTHING in them! What a change. I&#8217;ll add more beef to this post later, but back to work I go. Enjoy the pictures below.</p>

<a href='http://www.rsolberg.com/owen-is-9-months-old/attachment/0051/' title='0051'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/0051-150x150.jpg" class="attachment-thumbnail" alt="0051" title="0051" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/attachment/0026/' title='0026'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/0026-150x150.jpg" class="attachment-thumbnail" alt="0026" title="0026" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/attachment/0013/' title='0013'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/0013-150x150.jpg" class="attachment-thumbnail" alt="0013" title="0013" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/attachment/0060/' title='0060'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/0060-150x150.jpg" class="attachment-thumbnail" alt="0060" title="0060" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/attachment/0036/' title='0036'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/0036-150x150.jpg" class="attachment-thumbnail" alt="0036" title="0036" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/attachment/0094/' title='0094'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/0094-150x150.jpg" class="attachment-thumbnail" alt="0094" title="0094" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/dsc_0251/' title='DSC_0251'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/DSC_0251-150x150.jpg" class="attachment-thumbnail" alt="DSC_0251" title="DSC_0251" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/dsc_0246/' title='DSC_0246'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/DSC_0246-150x150.jpg" class="attachment-thumbnail" alt="DSC_0246" title="DSC_0246" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/dsc_0259/' title='DSC_0259'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/DSC_0259-150x150.jpg" class="attachment-thumbnail" alt="DSC_0259" title="DSC_0259" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/dsc_0249/' title='DSC_0249'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/DSC_0249-150x150.jpg" class="attachment-thumbnail" alt="DSC_0249" title="DSC_0249" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/attachment/0068/' title='0068'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/0068-150x150.jpg" class="attachment-thumbnail" alt="0068" title="0068" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/attachment/0055/' title='0055'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/0055-150x150.jpg" class="attachment-thumbnail" alt="0055" title="0055" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/dsc_0254/' title='DSC_0254'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/DSC_0254-150x150.jpg" class="attachment-thumbnail" alt="DSC_0254" title="DSC_0254" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/attachment/0047/' title='0047'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/0047-150x150.jpg" class="attachment-thumbnail" alt="0047" title="0047" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/dsc_0258/' title='DSC_0258'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/DSC_0258-150x150.jpg" class="attachment-thumbnail" alt="DSC_0258" title="DSC_0258" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/attachment/0019/' title='0019'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/0019-150x150.jpg" class="attachment-thumbnail" alt="0019" title="0019" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/attachment/0063/' title='0063'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/0063-150x150.jpg" class="attachment-thumbnail" alt="0063" title="0063" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/attachment/0015/' title='0015'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/0015-150x150.jpg" class="attachment-thumbnail" alt="0015" title="0015" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/dsc_0248/' title='DSC_0248'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/DSC_0248-150x150.jpg" class="attachment-thumbnail" alt="DSC_0248" title="DSC_0248" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/dsc_0245/' title='DSC_0245'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/DSC_0245-150x150.jpg" class="attachment-thumbnail" alt="DSC_0245" title="DSC_0245" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/attachment/0033/' title='0033'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/0033-150x150.jpg" class="attachment-thumbnail" alt="0033" title="0033" /></a>
<a href='http://www.rsolberg.com/owen-is-9-months-old/dsc_0247/' title='DSC_0247'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/DSC_0247-150x150.jpg" class="attachment-thumbnail" alt="DSC_0247" title="DSC_0247" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.rsolberg.com/owen-is-9-months-old/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Owen is 6 Months Old</title>
		<link>http://www.rsolberg.com/owen-is-6-months-old/</link>
		<comments>http://www.rsolberg.com/owen-is-6-months-old/#comments</comments>
		<pubDate>Sat, 04 Jun 2011 01:01:13 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[baby]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[owen]]></category>

		<guid isPermaLink="false">http://rsolberg.com/?p=420</guid>
		<description><![CDATA[<p>These were taken back in June for our official 6 month photos of little man. I&#8217;m one day removed from having my gallbladder out as well in these photos. Enjoy.</p>
 ]]></description>
			<content:encoded><![CDATA[<p>These were taken back in June for our official 6 month photos of little man.  I&#8217;m one day removed from having my gallbladder out as well in these photos.  Enjoy.</p>

<a href='http://www.rsolberg.com/owen-is-6-months-old/solberg104/' title='solberg104'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/solberg104-150x150.jpg" class="attachment-thumbnail" alt="solberg104" title="solberg104" /></a>
<a href='http://www.rsolberg.com/owen-is-6-months-old/solberg47/' title='solberg47'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/solberg47-150x150.jpg" class="attachment-thumbnail" alt="solberg47" title="solberg47" /></a>
<a href='http://www.rsolberg.com/owen-is-6-months-old/solberg75/' title='solberg75'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/solberg75-150x150.jpg" class="attachment-thumbnail" alt="solberg75" title="solberg75" /></a>
<a href='http://www.rsolberg.com/owen-is-6-months-old/solberg109/' title='solberg109'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/solberg109-150x150.jpg" class="attachment-thumbnail" alt="solberg109" title="solberg109" /></a>
<a href='http://www.rsolberg.com/owen-is-6-months-old/solberg12/' title='solberg12'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/solberg12-150x150.jpg" class="attachment-thumbnail" alt="solberg12" title="solberg12" /></a>
<a href='http://www.rsolberg.com/owen-is-6-months-old/solberg30/' title='solberg30'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/solberg30-150x150.jpg" class="attachment-thumbnail" alt="solberg30" title="solberg30" /></a>
<a href='http://www.rsolberg.com/owen-is-6-months-old/solberg24/' title='solberg24'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/solberg24-150x150.jpg" class="attachment-thumbnail" alt="solberg24" title="solberg24" /></a>
<a href='http://www.rsolberg.com/owen-is-6-months-old/solberg115/' title='solberg115'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/solberg115-150x150.jpg" class="attachment-thumbnail" alt="solberg115" title="solberg115" /></a>
<a href='http://www.rsolberg.com/owen-is-6-months-old/solberg65/' title='solberg65'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/solberg65-150x150.jpg" class="attachment-thumbnail" alt="solberg65" title="solberg65" /></a>
<a href='http://www.rsolberg.com/owen-is-6-months-old/solberg36/' title='solberg36'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/08/solberg36-150x150.jpg" class="attachment-thumbnail" alt="solberg36" title="solberg36" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.rsolberg.com/owen-is-6-months-old/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Months Old, Already!</title>
		<link>http://www.rsolberg.com/3-months-old-already/</link>
		<comments>http://www.rsolberg.com/3-months-old-already/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 06:58:16 +0000</pubDate>
		<dc:creator>Russell</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[baby]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[owen]]></category>

		<guid isPermaLink="false">http://rsolberg.com/?p=362</guid>
		<description><![CDATA[<p>Time is simply flying. No stopping it&#8230; Owen is now officially 3 months old. It seems like it was just yesterday that we were looking at the embryo smaller than a pea on the ultrasound, and now I have a 12 pound bundle of joy to play with. I am now excited to wake up [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p>Time is simply flying.  No stopping it&#8230;  Owen is now officially 3 months old.  It seems like it was just yesterday that we were looking at the embryo smaller than a pea on the ultrasound, and now I have a 12 pound bundle of joy to play with.  I am now excited to wake up at 6AM because that means it is daddy-son time while mom gets ready for work.  He and I are having a blast together&#8230;</p>
<p>I&#8217;ll keep the mushy talk to a minimum, but here is Owen at almost 3 months wearing the outfit that I wore (and filled out) at 6 weeks.  He clearly has some growing to do.  (sorry mom, I guess I was a HUGE baby?)<br />

<a href='http://www.rsolberg.com/3-months-old-already/dsc_0355/' title='DSC_0355'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/02/DSC_0355-e1297148922737-150x150.jpg" class="attachment-thumbnail" alt="DSC_0355" title="DSC_0355" /></a>
<a href='http://www.rsolberg.com/3-months-old-already/dsc_0354/' title='DSC_0354'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/02/DSC_0354-e1297148893968-150x150.jpg" class="attachment-thumbnail" alt="DSC_0354" title="DSC_0354" /></a>
<a href='http://www.rsolberg.com/3-months-old-already/dsc_0360/' title='DSC_0360'><img width="150" height="150" src="http://rsolberg.zippykidcdn.com/wp-content/uploads/2011/02/DSC_0360-e1297148872851-150x150.jpg" class="attachment-thumbnail" alt="DSC_0360" title="DSC_0360" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rsolberg.com/3-months-old-already/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

