<?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>Jed&#039;s Blog</title>
	<atom:link href="http://jed.limke.me/feed/" rel="self" type="application/rss+xml" />
	<link>http://jed.limke.me</link>
	<description>Programming, technology, and life.</description>
	<lastBuildDate>Tue, 15 May 2012 18:04:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Protected: Distortion</title>
		<link>http://jed.limke.me/2012/05/11/distortion/</link>
		<comments>http://jed.limke.me/2012/05/11/distortion/#comments</comments>
		<pubDate>Fri, 11 May 2012 15:56:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jed.limke.me/?p=117</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://jed.limke.me/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-117">Password:<br />
<input name="post_password" id="pwbox-117" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://jed.limke.me/2012/05/11/distortion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resizing images in C#</title>
		<link>http://jed.limke.me/2012/01/27/resizing-images-in-c/</link>
		<comments>http://jed.limke.me/2012/01/27/resizing-images-in-c/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 15:42:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[image]]></category>

		<guid isPermaLink="false">http://jed.limke.me/?p=90</guid>
		<description><![CDATA[Just ran into a problem where I needed to resize images to fill (without distortion) a box of a defined height and width with high quality using C#. <a href="http://jed.limke.me/2012/01/27/resizing-images-in-c/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just ran into a problem where I needed to resize images to fill (without distortion) a box of a defined height and width with high quality using C#. As I&#8217;m working with the Images as Streams to and from the database, my function takes and returns MemoryStream objects. It should be trivial to adjust the function to use Image objects as inputs and outputs instead.<br />
<br />
The code I&#8217;ve written is below.</p>

<div class="wp_syntax"><div class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.IO</span><span style="color: #008000;">;</span>
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.Drawing</span><span style="color: #008000;">;</span>
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.Drawing.Imaging</span><span style="color: #008000;">;</span>
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.Drawing.Drawing2D</span><span style="color: #008000;">;</span>
&nbsp;
<span style="color: #008000;">...</span>
&nbsp;
<span style="color: #0600FF; font-weight: bold;">private</span> MemoryStream ResizeImageStream<span style="color: #008000;">&#40;</span>MemoryStream stream, <span style="color: #6666cc; font-weight: bold;">int</span> boundingBoxWidth, <span style="color: #6666cc; font-weight: bold;">int</span> boundingBoxHeight<span style="color: #008000;">&#41;</span>
<span style="color: #008000;">&#123;</span>
    <span style="color: #008080; font-style: italic;">// One of the dimensions of the resultant image WILL be 'full size'.</span>
    <span style="color: #008080; font-style: italic;">// i.e. The image will either have a width of boundingBoxWidth or a height of boundingBoxHeight.</span>
    <span style="color: #008080; font-style: italic;">// This will happen whether the image needs to be shrunk or enlarged.</span>
&nbsp;
    Image imageToBeResized <span style="color: #008000;">=</span> Image<span style="color: #008000;">.</span><span style="color: #0000FF;">FromStream</span><span style="color: #008000;">&#40;</span>stream<span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
&nbsp;
    <span style="color: #008080;">#region Derive the undistorted dimensions of the resized image.</span>
    <span style="color: #6666cc; font-weight: bold;">int</span> imageResizeToHeight <span style="color: #008000;">=</span> <span style="color: #008000;">&#40;</span>imageToBeResized<span style="color: #008000;">.</span><span style="color: #0000FF;">Height</span> <span style="color: #008000;">*</span> boundingBoxWidth<span style="color: #008000;">&#41;</span> <span style="color: #008000;">/</span> imageToBeResized<span style="color: #008000;">.</span><span style="color: #0000FF;">Width</span><span style="color: #008000;">;</span>
    <span style="color: #6666cc; font-weight: bold;">int</span> imageResizeToWidth <span style="color: #008000;">=</span> boundingBoxWidth<span style="color: #008000;">;</span>
&nbsp;
    <span style="color: #0600FF; font-weight: bold;">if</span> <span style="color: #008000;">&#40;</span>imageResizeToHeight <span style="color: #008000;">&gt;=</span> boundingBoxHeight<span style="color: #008000;">&#41;</span>
    <span style="color: #008000;">&#123;</span>
        imageResizeToWidth <span style="color: #008000;">=</span> <span style="color: #008000;">&#40;</span>imageResizeToWidth <span style="color: #008000;">*</span> boundingBoxHeight<span style="color: #008000;">&#41;</span> <span style="color: #008000;">/</span> imageResizeToHeight<span style="color: #008000;">;</span>
        imageResizeToHeight <span style="color: #008000;">=</span> boundingBoxHeight<span style="color: #008000;">;</span>
    <span style="color: #008000;">&#125;</span>
    <span style="color: #008080;">#endregion</span>
&nbsp;
    <span style="color: #008080;">#region Resize the image with high quality.</span>
    Bitmap bitmap <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> Bitmap<span style="color: #008000;">&#40;</span>imageResizeToWidth, imageResizeToHeight<span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
&nbsp;
    Graphics graphics <span style="color: #008000;">=</span> Graphics<span style="color: #008000;">.</span><span style="color: #0000FF;">FromImage</span><span style="color: #008000;">&#40;</span>bitmap<span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
    graphics<span style="color: #008000;">.</span><span style="color: #0000FF;">SmoothingMode</span> <span style="color: #008000;">=</span> SmoothingMode<span style="color: #008000;">.</span><span style="color: #0000FF;">AntiAlias</span><span style="color: #008000;">;</span>
    graphics<span style="color: #008000;">.</span><span style="color: #0000FF;">PixelOffsetMode</span> <span style="color: #008000;">=</span> PixelOffsetMode<span style="color: #008000;">.</span><span style="color: #0000FF;">HighQuality</span><span style="color: #008000;">;</span>    
    graphics<span style="color: #008000;">.</span><span style="color: #0000FF;">InterpolationMode</span> <span style="color: #008000;">=</span> InterpolationMode<span style="color: #008000;">.</span><span style="color: #0000FF;">HighQualityBicubic</span><span style="color: #008000;">;</span>
&nbsp;
    <span style="color: #008080; font-style: italic;">// Resize the image using the Graphics object.</span>
    <span style="color: #008080; font-style: italic;">// As the Graphics object is tied to the Bitmap above, the resulting image will be in the Bitmap object.</span>
    graphics<span style="color: #008000;">.</span><span style="color: #0000FF;">DrawImage</span><span style="color: #008000;">&#40;</span>imageToBeResized, <span style="color: #008000;">new</span> Rectangle<span style="color: #008000;">&#40;</span><span style="color: #FF0000;">0</span>, <span style="color: #FF0000;">0</span>, imageResizeToWidth, imageResizeToHeight<span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
&nbsp;
    <span style="color: #008080; font-style: italic;">// Re-instantiate the stream in order to clean it out.</span>
    stream <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> MemoryStream<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
&nbsp;
    <span style="color: #008080; font-style: italic;">// Save the Bitmap into the MemoryStream as a PNG.</span>
    bitmap<span style="color: #008000;">.</span><span style="color: #0000FF;">Save</span><span style="color: #008000;">&#40;</span>stream, ImageFormat<span style="color: #008000;">.</span><span style="color: #0000FF;">Png</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
    <span style="color: #008080;">#endregion</span>
&nbsp;
    <span style="color: #0600FF; font-weight: bold;">return</span> stream<span style="color: #008000;">;</span>
<span style="color: #008000;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://jed.limke.me/2012/01/27/resizing-images-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sorry We&#8217;re in Fargo</title>
		<link>http://jed.limke.me/2012/01/20/sorry-were-in-fargo/</link>
		<comments>http://jed.limke.me/2012/01/20/sorry-were-in-fargo/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 16:53:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[fargo]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://jed.limke.me/?p=64</guid>
		<description><![CDATA[Sorry we're in Fargo... <a href="http://jed.limke.me/2012/01/20/sorry-were-in-fargo/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I love my state and I&#8217;m happily living in Fargo, however, after being inspired by Chris Welle&#8217;s <a title="Valuco Tweet" href="https://twitter.com/#!/chriswelle/status/160114169776050177" target="_blank">tweet</a> about <a title="Valuco" href="http://www.kickstarter.com/projects/2049768676/valuco-font-design?ref=card" target="_blank">Valuco</a>, I just couldn&#8217;t help myself.</p>
<p><a href="http://jed.limke.me/wp-content/uploads/2012/01/fargo.png"><img class="aligncenter size-medium wp-image-70" title="Sorry We're in Fargo" src="http://jed.limke.me/wp-content/uploads/2012/01/fargo-300x231.png" alt="Sorry We're in Fargo" width="300" height="231" /></a></p>
<p>In order to design the sign in lieu of Valuco&#8217;s completion, I had to pickup a font similar to Valuco called <a title="Lost Type Co-op : Duke" href="http://www.losttype.com/font/?name=duke" target="_blank">Duke</a> from the <a title="Lost Type Co-op" href="http://www.losttype.com/" target="_blank">Lost Type Co-op</a>. Duke itself is gorgeous as well and I think it looks great. Thanks for the fantastic fonts, guys!</p>
<p>Get the <a title="Sorry We're in Fargo - Print PDF" href="http://jed.limke.me/2012/01/20/sorry-were-in-fargo/fargo_print/">PDF</a> &#8211; just print it on 8.5&#8243; x 11&#8243; with 0.5&#8243; margins.</p>
]]></content:encoded>
			<wfw:commentRss>http://jed.limke.me/2012/01/20/sorry-were-in-fargo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating Visual Studio 2010 with SP1</title>
		<link>http://jed.limke.me/2012/01/06/visual-studio-2010-sp1/</link>
		<comments>http://jed.limke.me/2012/01/06/visual-studio-2010-sp1/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 22:15:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[LightSwitch]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://jed.limke.me/?p=56</guid>
		<description><![CDATA[I've been trying to get VS2010 SP1 to upgrade Visual Studio 2010 Professional for seemingly hours now, and I've finally hit a breakthrough <a href="http://jed.limke.me/2012/01/06/visual-studio-2010-sp1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.microsoft.com/visualstudio/en-us"><img class="alignright size-full wp-image-57" title="Visual Studio 2010" src="http://jed.limke.me/wp-content/uploads/2012/01/Visual_Studio_2010_Logo_Horizontal_layout.jpg" alt="Visual Studio 2010" width="300" height="44" /></a>I&#8217;ve been trying to get VS2010 SP1 to upgrade Visual Studio 2010 Professional for seemingly hours now, and I finally hit a breakthrough without having to reformat my machine (my preferred method of fixing software problems). When I had initially installed VS2010, I had let it install &#8216;everything&#8217;&#8230; i.e. support for C++, C#, F#, Web Development, etc. all out of the box. After uninstalling and reinstalling VS and minor VS SP1 cruft numerous times in an all out &#8220;bang-your-head-against-the-wall&#8221; method, I finally use the installer for VS2010 to reconfigure my installation and <strong>remove</strong> the components I wasn&#8217;t using &#8211; namely F# and C++ support. As I plan to use this installation for web development, the lack of C++ really isn&#8217;t much of a problem for me.</p>
<p>It was a shot in the dark, but it worked. I was able to install SP1 from here: <a title="Visual Studio 2010 SP1 Web Downloader" href="http://www.microsoft.com/web/gallery/install.aspx?appsxml=&amp;appid=VS2010SP1Pack" target="_blank">Visual Studio 2010 SP1 Web Downloader</a></p>
<p>Finally, I get to move onto installing Lightswitch to find out what it&#8217;s all about!</p>
]]></content:encoded>
			<wfw:commentRss>http://jed.limke.me/2012/01/06/visual-studio-2010-sp1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project Euler</title>
		<link>http://jed.limke.me/2010/09/08/project-euler/</link>
		<comments>http://jed.limke.me/2010/09/08/project-euler/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 19:16:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[algorithm]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[mathematics]]></category>
		<category><![CDATA[Project Euler]]></category>

		<guid isPermaLink="false">http://jed.limke.me/?p=45</guid>
		<description><![CDATA[I've been working on <a href="http://projecteuler.net/index.php?section=problems">problems</a> at <a href="http://projecteuler.net">Project Euler</a> in order to help myself grow as a programmer as of late. While I haven't completed many at this point, it's been fun to think about algorithm design and problem solving with such 'simple' problems. <a href="http://jed.limke.me/2010/09/08/project-euler/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on <a href="http://projecteuler.net/index.php?section=problems">problems</a> at <a href="http://projecteuler.net">Project Euler</a> in order to help myself grow as a programmer as of late. While I haven&#8217;t completed many at this point, it&#8217;s been fun to think about algorithm design and problem solving with such &#8216;simple&#8217; problems.</p>
<p>I&#8217;ve really liked working on them as they build upon one another. Subsequent problems normally build (from a logical sense) upon the algorithms of previous problems. For example, the first problem is &#8220;Add all the natural numbers below one thousand that are multiples of 3 or 5,&#8221; while the second problem is &#8220;Find the sum of all the even-valued terms in the Fibonacci sequence which do not exceed four million.&#8221; Anyone can see how techniques developed for the first problem could be applied in the resolution of the second.</p>
<p>I definitely suggest visiting <a href="http://projecteuler.net">Project Euler</a> to anyone who wants to code their way around a few brain teasers for fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://jed.limke.me/2010/09/08/project-euler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Migration</title>
		<link>http://jed.limke.me/2010/08/05/wordpress-migration/</link>
		<comments>http://jed.limke.me/2010/08/05/wordpress-migration/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 04:52:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[headaches]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://jed.limke.me/?p=35</guid>
		<description><![CDATA[At work we're preparing to move data from one WordPress install to another, as part of an overall "let's consolidate all our blogs under one roof" move. Of course, it's not as easy as it should be. <a href="http://jed.limke.me/2010/08/05/wordpress-migration/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>At work we&#8217;re preparing to move data from one WordPress install to another, as part of an overall &#8220;let&#8217;s consolidate all our blogs under one roof&#8221; move. Of course, it&#8217;s not as easy as it should be.</p>
<p>First off, let me say this: I truly believe that WordPress is one of the best examples of open source on the planet, if not simply for its breakout popularity. While I don&#8217;t always agree with how certain bits were done in certain ways, there is more than one way to skin a cat.</p>
<p>That being said, however, I believe, as it stands, the migration utilities available could use some work. We&#8217;re moving Blog X from a 3.0.1 install to another 3.0.1 install, but it&#8217;s not as simple as just hitting export in the WordPress admin. Why? The importer seems to freak out once the import file becomes to large. Even though we&#8217;ve gone through the settings for WordPress and the underlying system, it begins to freak around 800 posts in. So, as a solution, we&#8217;re linking up the databases and running queries directly on the backend to migrate the data. Fortunately, however, this is pretty darn easy&#8230;</p>
<p>Even more stink comes in when one notices that Blog X is currently a standalone blog&#8230; and we&#8217;re trying to put it into another WordPress 3.0.1 install&#8230; one that we&#8217;re using as an MU system, and Blog X is no longer going to be the &#8216;main event&#8217;. I realize this isn&#8217;t a common issue, but it certainly would be nice if this worked a bit better. So, like I said, it&#8217;s not that bad. But, as the importer will tell you, &#8220;Upload your WordPress eXtended RSS (WXR) file and we’ll import the posts, pages, comments, custom fields, categories, and tags into this site.&#8221; That&#8217;s just great. However, I&#8217;ve got users. 2000+ users that need to move as well. This is no longer easy. I have had to come up with a way (along with a colleague&#8217;s generous assistance) to not only migrate the data on the DB side for each user (not so bad, honestly) but also to generate the correct associated folders and files in the filesystem (for avatars and the like) which turned out to be a complete pain in the rump.</p>
<p>However, launch day is next Tuesday. Maybe we&#8217;ll get lucky and all of our planning (3 test runs later) will pay off and showing up at 2AM to do this thing will prove to be far too cautious for what was actually needed. I certainly hope so.</p>
<p>In the end, all I really want is a user import feature to be a part of WordPress&#8217; core functionality. I realize plugins exist, but we all know they need to update along with WordPress to stay stable and accurate. Please hear my plea, WordPress Development Team! Add a way to import users to the core so we don&#8217;t face the headaches again!</p>
]]></content:encoded>
			<wfw:commentRss>http://jed.limke.me/2010/08/05/wordpress-migration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wolfram&#124;Alpha Widgets</title>
		<link>http://jed.limke.me/2010/07/30/wolframalpha-widgets/</link>
		<comments>http://jed.limke.me/2010/07/30/wolframalpha-widgets/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 15:55:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[Wolfram|Alpha]]></category>

		<guid isPermaLink="false">http://jed.limke.me/?p=15</guid>
		<description><![CDATA[A few days ago, Wolfram&#124;Alpha released a beta of their widget creation tool. So far, I have to say I&#8217;m very impressed. The tool allows developers (or anyone, really) to create customizable widgets that embody the results of queries, enhanced &#8230; <a href="http://jed.limke.me/2010/07/30/wolframalpha-widgets/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A few days ago, <a href="http://www.wolframalpha.com/" alt="Wolfram|Alpha Computational Knowledge Engine">Wolfram|Alpha</a> released a beta of their widget creation tool. So far, I have to say I&#8217;m very impressed.</p>
<p>The tool allows developers (or anyone, really) to create customizable widgets that embody the results of queries, enhanced with dropdown menus, input boxes, and the like.</p>
<p>For example, say I wanted to add a tool to my blog post on &#8216;The Cost of Living&#8217; that allowed visitors to compare their cost of living index with that of other regions. I could simply head over to <a href="http://developer.wolframalpha.com/widgets/" alt="Wolfram|Alpha Widgets">Wolfram|Alpha Widgets</a>, create an account, and start building. Simply put, for the first step I would try out some example queries until I receive the result I&#8217;m looking for. In this case, I&#8217;d do &#8220;Cost of Living Index Fargo, ND vs. New York, NY&#8221;. Through the next few steps, I&#8217;m able to replace different parts of that query with references to text inputs, allowing the end user to specify their own cities for comparison. After some color choices and descriptive text, I have myself a widget:<br />
<script type="text/javascript" id="WolframAlphaScripte91068fff3d7fa1594dfdf3b4308433a" src="http://www.wolframalpha.com/widget/widget.jsp?id=e91068fff3d7fa1594dfdf3b4308433a"></script></p>
<p>The widget builder is a dream to use and allows users to easily create and deploy user-friendly tools that leverage the power Wolfram|Alpha has to offer. I&#8217;ve been a big proponent of Wolfram|Alpha since it was launched in May of last year, and this tool gives me even more options to introduce it to others.</p>
<hr/>
Other widgets I&#8217;ve built as proofs-of-concept:<br />
<script type="text/javascript" id="WolframAlphaScriptfd9dcf1d146272bb05c490d790b6da52" src="http://www.wolframalpha.com/widget/widget.jsp?id=fd9dcf1d146272bb05c490d790b6da52"></script><br />
<script type="text/javascript" id="WolframAlphaScript322f62469c5e3c7dc3e58f5a4d1ea399" src="http://www.wolframalpha.com/widget/widget.jsp?id=322f62469c5e3c7dc3e58f5a4d1ea399"></script><br />
<script type="text/javascript" id="WolframAlphaScript8c9a14ffebb7677d033ffce847991293" src="http://www.wolframalpha.com/widget/widget.jsp?id=8c9a14ffebb7677d033ffce847991293"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://jed.limke.me/2010/07/30/wolframalpha-widgets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thoughts on Microsoft&#8217;s &#8220;Metro&#8221; UI</title>
		<link>http://jed.limke.me/2010/07/21/thoughts-on-microsofts-metro-ui/</link>
		<comments>http://jed.limke.me/2010/07/21/thoughts-on-microsofts-metro-ui/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 02:57:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Windows Phone 7]]></category>

		<guid isPermaLink="false">http://jed.limke.me/?p=5</guid>
		<description><![CDATA[I have to say I'm pretty impressed thus far with Microsoft's latest foray into the mobile space. Of course, Windows Phone 7 hasn't yet been released, but I'm genuinely excited to use this product as soon as it becomes available. Why, you ask? The "Metro" UI, of course. <a href="http://jed.limke.me/2010/07/21/thoughts-on-microsofts-metro-ui/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have to say I&#8217;m pretty impressed thus far with Microsoft&#8217;s latest foray into the mobile space. Of course, Windows Phone 7 hasn&#8217;t yet been released, but I&#8217;m genuinely excited to use this product as soon as it becomes available. Why, you ask? The &#8220;Metro&#8221; UI, of course.</p>
<p>As stated in their <a href="http://developer.windowsphone.com/windows-phone-7/">UI Design and Interaction Guide</a>,</p>
<blockquote><p>The Metro design principles center on a look that uses type to echo the visual language of airport and metro system signage. The goal is to clearly direct end users to the content they want. Metro interfaces are supposed to embody harmonious, functional, and attractive visual elements.</p></blockquote>
<p>From what I&#8217;ve seen thus far when interacting with both the Zune HD and a similarly designed Windows Media Center, this is yet another step in the right direction for Microsoft. The ease of use of the Zune HD is a testament to the fact that Microsoft is really pulling the right people and resources together to make UI their number one priority.</p>
<p><a href="http://jed.limke.me/wp-content/uploads/2010/07/iheartwp7-Copy.png"><img class="alignright size-full wp-image-13" title="i-heart-wp-7" src="http://jed.limke.me/wp-content/uploads/2010/07/iheartwp7-Copy.png" alt="" width="268" height="71" /></a>We can see their push for usability in their obvious attentiveness to what&#8217;s been working in the market these days (embodied so splendidly in Apple&#8217;s iOS). The design team has pulled together a rigid design document detailing specifications to make the system easier to use, rather than easier to program. I&#8217;m especially pleased that Microsoft is using the same techniques Apple and other touch-UI designers have pioneered to deliver a consistent paradigm across all of their devices, as well as those from other companies. They aren&#8217;t leaving the established gestures behind; they&#8217;re using what&#8217;s proven to work rather than coming up with different ways just for the sake of being different.</p>
<p>Overall, I&#8217;m pleased with what I&#8217;ve seen so far; Microsoft is really rising to the challenge in today&#8217;s mobile market with the Windows Phone 7&#8242;s &#8220;Metro&#8221; UI. They&#8217;re using proven concepts from across the board to enhance their experience, while simultaneously providing a simple, yet colorful UI that&#8217;s definitely uniquely entertaining. If things continue along this path, expect to hear a lot more about Windows Phone 7&#8242;s intuitive UI in the coming months.</p>
]]></content:encoded>
			<wfw:commentRss>http://jed.limke.me/2010/07/21/thoughts-on-microsofts-metro-ui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

