<?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>JSEDLAK &#187; Windows</title>
	<atom:link href="http://jsedlak.org/tag/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://jsedlak.org</link>
	<description></description>
	<lastBuildDate>Wed, 01 Sep 2010 00:44:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Debugging Unknown (IIS) Exceptions</title>
		<link>http://jsedlak.org/2009/07/31/debugging-unknown-iis-exceptions/</link>
		<comments>http://jsedlak.org/2009/07/31/debugging-unknown-iis-exceptions/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 13:08:24 +0000</pubDate>
		<dc:creator>John Sedlak</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jsedlak.com/?p=191</guid>
		<description><![CDATA[One of the major gripes I have with the Windows operating system is its inability to build decent event logs when an exception occurs. This is particularly annoying on the server builds because as a developer, I need to know what is causing a crash or a hang. Recently I have been developing a site [...]]]></description>
			<content:encoded><![CDATA[<p>One of the major gripes I have with the Windows operating system is its inability to build decent event logs when an exception occurs. This is particularly annoying on the server builds because as a developer, I need to know what is causing a crash or a hang. Recently I have been developing a site using <a href="http://sitecore.net">Sitecore</a> and after a publish the site started crashing and bringing down the entire server. The following is an overview of how I solved the issue.</p>
<p>The first thing I did was check the Event Viewer on the server itself &#8211; notice the horrible information within the error. The one important code to write down is the exception code (<i>0xE053534F</i>).</p>
<div style="text-align:center;"><a href="http://jsedlak.com/wp-content/uploads/2009/07/event.png"><img src="http://jsedlak.com/wp-content/uploads/2009/07/events.png" alt="Event Viewer"/></a></div>
<p>After reading a tutorial on <a href="http://blogs.msdn.com/tess/archive/2009/03/20/debugging-a-net-crash-with-rules-in-debug-diag.aspx">how to catch a crash</a> I was able to catch the crash in a dump file. While the debug diag tool was useful for catching, I needed <a href="http://www.microsoft.com/whdc/devtools/debugging/default.mspx">WinDbg</a> to get to the root of the problem.</p>
<p><b>Note</b>: I set the symbols location to <i>SRV*c:\users\jsedlak\documents\websymbols*http://msdl.microsoft.com/download/symbols</i></p>
<div style="text-align:center;"><a href="http://jsedlak.com/wp-content/uploads/2009/07/dump.png"><img src="http://jsedlak.com/wp-content/uploads/2009/07/dumps.png" alt="Debug View"/></a></div>
<p>As you can see, the debug view is fairly useless. Run the following commands:</p>
<ul>
<li>.loadby sos mscorwks</li>
<li>!clrstack</li>
</ul>
<p>Now you can see what is causing the stack overflow. Turns out it was an XSLT file that was doing a recursive climb up the Sitecore tree without a base case. The cause of the problem however was that I had just implemented Workflow on all items which corrupted their state and seemed to have removed their published version from the web database. By fixing the XSLT to have a base case and submitting all content through their workflow I was able to get the site back.</p>
<div style="text-align:center;"><a href="http://jsedlak.com/wp-content/uploads/2009/07/dump2.png"><img src="http://jsedlak.com/wp-content/uploads/2009/07/dump2s.png" alt="Stack View"/></a></div>
]]></content:encoded>
			<wfw:commentRss>http://jsedlak.org/2009/07/31/debugging-unknown-iis-exceptions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where Chrome and Safari 4 Fail</title>
		<link>http://jsedlak.org/2009/02/26/where-chrome-and-safari-4-fail/</link>
		<comments>http://jsedlak.org/2009/02/26/where-chrome-and-safari-4-fail/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 18:12:22 +0000</pubDate>
		<dc:creator>John Sedlak</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[IE7]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://jsedlak.com/?p=168</guid>
		<description><![CDATA[A lot of buzz going around about the new release of Safari which I must say seems plenty fast. I think this is more due to the fact that it doesn&#8217;t wait to start rendering stuff. Loading facebook is fast, but loading images on facebook is still painfully slow. Anyways, I enjoy using Chrome because [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of buzz going around about the new release of Safari which I must say seems plenty fast. I think this is more due to the fact that it doesn&#8217;t wait to start rendering stuff. Loading facebook is fast, but loading images on facebook is still painfully slow.</p>
<p>Anyways, I enjoy using Chrome because it is a painless and lightweight alternative to IE, although it does crash every now and then just like every other browser. Where the two new browsers fail is in support for new Windows 7 features like the title bar drag. While you can drag a Safari browser around by the tabs (which is a dumb idea) if you drag to the top and maximize, you can&#8217;t drag out of the maximized size. The same goes for Chrome, however I must give Chrome some props because it doesn&#8217;t use the entire top bar for two tabs!</p>
<p>What would be nice if Safari (and IE!) adopted Chrome&#8217;s look but implemented title bar drag by allowing users to drag from the area to the left and right of the tabs.  Or if they abandoned the approach altogether and came back to a uniform look and feel to software.</p>
<p>Oh and thanks Google and Apple for not even using Aero!</p>
]]></content:encoded>
			<wfw:commentRss>http://jsedlak.org/2009/02/26/where-chrome-and-safari-4-fail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7: Part Deux</title>
		<link>http://jsedlak.org/2009/01/15/windows-7-part-deux/</link>
		<comments>http://jsedlak.org/2009/01/15/windows-7-part-deux/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 00:43:40 +0000</pubDate>
		<dc:creator>John Sedlak</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://jsedlak.com/?p=161</guid>
		<description><![CDATA[So now that I have had the Beta for a couple of days and even got it installed on its own partition I have noticed a few things&#8230; + The taskbar is amazing. I guess I never realized how little I actually needed the old task bar until now. I am still on the fence [...]]]></description>
			<content:encoded><![CDATA[<p>So now that I have had the Beta for a couple of days and even got it installed on its own partition I have noticed a few things&#8230;</p>
<p><b style="color:green;">+</b> The taskbar is amazing. I guess I never realized how little I actually needed the old task bar until now. I am still on the fence about grouping but am trying to force myself to radical change by adopting the &#8220;move it to the side&#8221; campaign. Essentially this includes running the taskbar in its default 7 state and moving it to either side of the monitor. While I find myself going to click at the bottom of the screen sometimes, my efficiency has not dropped. I can still find applications easily and quickly. However this is not a usual circumstance yet as I have not bloated up the drive with all my software.</p>
<p><b style="color:green;">+</b> The explorer got some major improvements since Vista. When I go into work I actually dread using XP. The explorer in XP is horrendous compared to that of Vista and the latter is like a retarded stepchild of Se7en&#8217;s beautiful explorer. My favorite part of the new bits? Favorites! Finally Microsoft has removed the useless built-in sidebar and allowed us to add our own important folders. My only hope now is that every application (HINT HINT Adobe!) will use this format! [b]Update:[/b] <a href="http://twitter.com/TehGrumpyDude/status/1122516259">Bjoern</a> says you can add your favorites in Vista by adding links to the &#8220;C:\Users\<user>\Links&#8221; folder.</p>
<p><b style="color:green;">+</b> Libraries. They may be a basic implementation but boy are they powerful and useful. Imagine all of your stuff (that&#8217;s right I said stuff) located in one virtual spot despite being located physically throughout the drive. My first step with libraries was to create a Logs library for quickly viewing logs of my favorite applications. It removes the need to step through hundreds of directories when I need access to them.</p>
<p><b style="color:green;">+</b> The small stuff. People are saying this is Vista SP2 and &#8220;what Vista should have been&#8221; and they are right. For me it is the attention to detail that makes Windows 7 so great. Being able to see the desktop without losing window locations (Aero Peek) or the sliding animation of the thumbnail viewer. The biggest attention to detail I have seen? Standardization. Microsoft is a large company with hundreds (if not thousands) of pieces of software and naturally these were not very standardized. It is killing the company very quietly because of what Apple did, and I don&#8217;t agree with that either. Windows 7 takes a good step in a good direction with the inclusion of the Ribbon in more places and the semi-standard toolbar theme (found originally in Vista&#8217;s explorer). There are thousands of more things for me to discover and cover, so I will just leave them to you to find.</p>
<p><b style="color:green;">+</b> The bug fixing. I am going to touch on this not because of 7 directly but rather because of what Vista did. After using Vista for so long having to go back to XP is just flat out an annoying experience. To the point above, the little things matter and the bugs in XP are some of the most annoying bugs. Thankfully they have been addressed in Vista, and expanded upon in Se7en. What bugs am I talking about? Multi-monitor support in XP was pretty horrid; at work when I switch to an application via the taskbar it will randomly pop up a window on the other monitor. Let&#8217;s say I have IE open on one and Visual Studio on the other. When I click to goto VS, IE gets covered by another application! Hopefully you can see how annoying this can be. The other major bug that irritates me every day? The natural ability of XP to steal focus away from you just when you start typing. Today I am typing in IE as Visual Studio opens when all of a sudden my typing stops making words. What happened? Well of course XP switched focus to Visual Studio! Thankfully neither of these have been a problem since Vista.</p>
<p><b style="color:red;">-</b> The instability. Yes, I know, it is a beta. The problem is that it is the ONLY beta we are seeing. After this it is supposedly RC0 and then RTM. Hopefully they can sort out the instability problems in that timeframe. For the record I got a BSOD this morning. &#8220;PAGE_FAULT_IN_NON_PAGED_AREA&#8221; or something to that effect. In fact I get this sometimes in Vista and think it is due to my system rather than the OS. I ran memory tests and they all passed so I am thoroughly confused. Oh well.</p>
<p><b style="color:red;">-</b> IE8. The reason I like Chrome is because it is basic, lightweight, fast, simple. How many other adjectives do you want Microsoft? You need to either focus on a lightweight version of IE or fix it. IE8 crashes more times than I hit the A key today. It is likely to crash while writing this. And I know, beta software. The problem is Beta 1 on Vista wasn&#8217;t nearly this bad! The worst part is that a single tab crash still brings down every single tab. I thought a major reason for going the modular route was to prevent that Microsoft?</p>
<p><b style="color:red;">-</b> The backwards compatibility. It is 2009 Microsoft and I suggest that for your next OS you drop 32bit all together. I also suggest you drop the &#8220;Program Files&#8221; directory for &#8220;Programs&#8221; or better yet, virtualize them and make them fast. Stop supporting these legacy systems, increase the phase out program. Make Windows leaner, meaner and ready to fight toe to toe with tomorrow&#8217;s OS, not an OS designed and developed 11 years ago.</p>
<p><b style="color:red;">-</b> Integration will be the key to success for any OS in the future. Google and Apple know this and have built their platforms around it. Microsoft is, as usual, late to the game. While Live Services has been picking up the pace in taking on this attitude, the OS is a far ways away from full integration with the Microsoft &#8220;platform.&#8221; Think of all the hardware you support from Zune to WiMo to the 360. These things should all be tightly wound into your services and more importantly your OS. They should feel and look connected rather than this Games-For-Windows-Live-is-really-Windows-Live-is-really-Xbox-Live-kind-of-I-think-sort-of-complicated-web-bullcrap.</p>
]]></content:encoded>
			<wfw:commentRss>http://jsedlak.org/2009/01/15/windows-7-part-deux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Beta</title>
		<link>http://jsedlak.org/2009/01/08/windows-7-beta/</link>
		<comments>http://jsedlak.org/2009/01/08/windows-7-beta/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 01:20:10 +0000</pubDate>
		<dc:creator>John Sedlak</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Betas]]></category>
		<category><![CDATA[Virtual PC]]></category>

		<guid isPermaLink="false">http://jsedlak.com/?p=160</guid>
		<description><![CDATA[It is no secret that I am a Windows fanboi to the extreme. I have used the OS ever since the early days of DOS and have used every single version including the horrendous Millenium Edition. I have often defended attacks on Vista because they are mostly founded on rumors. However when Windows 7 was [...]]]></description>
			<content:encoded><![CDATA[<p>It is no secret that I am a Windows fanboi to the extreme. I have used the OS ever since the early days of DOS and have used every single version including the horrendous Millenium Edition. I have often defended attacks on Vista because they are mostly founded on rumors. However when Windows 7 was announced I knew Microsoft had to hit a home run. It had to do something big in one way or another and they had to deliver on their promises. In essence, they couldn&#8217;t drop a single one of the gigantic balls they were carrying.</p>
<p>Now that the Windows 7 Beta went public I finally got my grubby little paws on a &#8220;copy&#8221; (download) and installed it within VirtualPC. I am only five minutes into using it and I already want to replace my Vista install with it. The big change is bigger than I thought, a problem that Microsoft marketing will have to overcome. What is the big change? The UI just makes sense. I guess it never occurred to me that Vista&#8217;s UI was confusing because it wasn&#8217;t to me. In my opinion, I always found Vista&#8217;s UI to be vastly superior to XP. Finding my documents, code, etc has never been easier until five minutes ago.</p>
<p>But it isn&#8217;t just about finding your data. Settings and general functionality of the OS is also much more discoverable. I am finding myself easily flowing through the control panel. The task bar, which I imagined to be a horrible gimmick, is something I will have to get used to but will grow to love. I can see why they made the changes. Finding your windows is easy and finding your favorite applications is easy.</p>
<p>While I am sure there will be problems with W7, I am blown out of the water that Microsoft actually took the time to work on the UI in such fine detail. Hopefully they carry the styling and standardization to their other applications like Office and Visual Studio.</p>
]]></content:encoded>
			<wfw:commentRss>http://jsedlak.org/2009/01/08/windows-7-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Managing Focus Across Different Platforms</title>
		<link>http://jsedlak.org/2008/12/11/managing-focus-across-different-platforms/</link>
		<comments>http://jsedlak.org/2008/12/11/managing-focus-across-different-platforms/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 14:25:13 +0000</pubDate>
		<dc:creator>John Sedlak</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[XNA]]></category>
		<category><![CDATA[FGF]]></category>
		<category><![CDATA[Input]]></category>
		<category><![CDATA[Thrust]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Xbox 360]]></category>
		<category><![CDATA[Zune]]></category>

		<guid isPermaLink="false">http://jsedlak.com/?p=151</guid>
		<description><![CDATA[With the upcoming release of FGF/Thrust comes the return of a more traditional GUI. One of the most problematic requirements of a large GUI system is the notion of focus. The question remains how do you efficiently determine who has focus and how do you pass focus between controls? On Windows this is incredibly easy [...]]]></description>
			<content:encoded><![CDATA[<p>With the upcoming release of FGF/Thrust comes the return of a more traditional GUI. One of the most problematic requirements of a large GUI system is the notion of focus. The question remains how do you efficiently determine who has focus and how do you pass focus between controls? On Windows this is incredibly easy because we have the mouse pointer. Focus is changed whenever your mouse acts on a control. What about on the Zune or the Xbox 360 though? On both of these systems their is no mouse (although Thrust supports a virtual mouse).</p>
<p>The answer is to look at what Thrust currently supports. What built in system supports all three systems seamlessly? (~ means some support, X means full support)</p>
<table>
<tr>
<td>Event</td>
<td>Zune</td>
<td>Windows</td>
<td>Xbox 360</td>
</tr>
<tr>
<td>Mouse</td>
<td>&nbsp;</td>
<td>X</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Keyboard</td>
<td>&nbsp;</td>
<td>X</td>
<td>X</td>
</tr>
<tr>
<td>GamePad</td>
<td>~</td>
<td>X</td>
<td>X</td>
</tr>
<tr>
<td>UniversalButton</td>
<td>X</td>
<td>X</td>
<td>X</td>
</tr>
</table>
<p>The problem is we can&#8217;t rely on each individual hardware controller being present and useable. For example we can&#8217;t rely on a keyboard being a focusing mechanism on the Xbox 360 because it isn&#8217;t a guarantee it exists. Likewise, we cannot rely on the GamePad on the Zune because of the lack of buttons.</p>
<p>To get to the point, the UniversalButton system was meant as a virtualization of the various hardware supported for each platform. It turns GamePad, Mouse, and Keyboard events into simple events like Up, Left, Down, Right, Select and Cancel. Because of this we can rely on it and implement a few more events.</p>
<ul>
<li>TabPreviousLocal</li>
<li>TabNextLocal</li>
<li>TabPreviousGlobal</li>
<li>TabNextGlobal</li>
</ul>
<p>You can consider local tabbing to be much like you would on a Windows form: hitting the tab key (or shift-tab) will move you from one control to another based on some order and only in the context of the global focus point (you never tab to a control in another window). The global tabbing can be considered like an Alt-Tab (or shift-alt-tab) where you can switch between windows.</p>
<p>So how do we implement this? We need a managing class (sorry Bjoern) to produce a bottleneck for the input events. As events are channeled through this class, it massages the data and figures out what to do. For instance if a global tab next event is received it has to switch focus to the next window in the system on the same level as the current window. If it receives a local tab event it will pass a message to the current focal point to tab to the next control.</p>
<p>What does this do for us? For one, it unifies the approach to focusing across all the UI subsystems. This means that a Window/Form implementation will focus in much the same way a simple screen will. Unfortunately it also means a complexity requirement for implementation developers. The age of the simple StateManager class is coming to an end. Elements on the screen now need to have a basic state for animation as well as a state for focus (or lack thereof). While it may still be possible to simply unload an element through the StateManager, the reality is that UI elements will have to do a little more management under the hood. Whether this is exposed to the user / developer is still to be decided.</p>
]]></content:encoded>
			<wfw:commentRss>http://jsedlak.org/2008/12/11/managing-focus-across-different-platforms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vista Continually Rebooting After Installing Update?</title>
		<link>http://jsedlak.org/2008/06/29/vista-continually-rebooting-after-installing-update/</link>
		<comments>http://jsedlak.org/2008/06/29/vista-continually-rebooting-after-installing-update/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 07:19:58 +0000</pubDate>
		<dc:creator>John Sedlak</dc:creator>
				<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jsedlak.com/?p=50</guid>
		<description><![CDATA[Tonight I was tasked with the job of reinstalling Vista on my sister&#8217;s new Dell laptop. Why? Because for some odd reason, Dell doesn&#8217;t know how to install an operating system correctly and she was having constant problems. Anyways, after installing the OS (which took ~30 minutes, w00t), I ran Windows update. This, for the [...]]]></description>
			<content:encoded><![CDATA[<p>Tonight I was tasked with the job of reinstalling Vista on my sister&#8217;s new Dell laptop. Why? Because for some odd reason, Dell doesn&#8217;t know how to install an operating system correctly and she was having constant problems. Anyways, after installing the OS (which took ~30 minutes, w00t), I ran Windows update. This, for the first time for me, decided to continually reboot the machine after it was &#8220;done&#8221; with the install.</p>
<p>Hmm. Well, I went into the extra options mode (F8 during Bios) and ran the Directory Services Restore / Repair Mode. This got me to a &#8220;Configuring updates&#8221; screen which was farther than before. After finishing the machine rebooted and kept restarting. So I did it again, and this time the updates were able to finish!</p>
<p>[b]Update (07/07/08):[/b] It started doing it again. After some tracking on the web I found out it has to do with an outdated driver that came with the Dell Vista install disc. Installing Vista SP1 did the trick, but to get there I had to put the drive into IDE mode (via the BIOS) so Windows could boot.</p>
]]></content:encoded>
			<wfw:commentRss>http://jsedlak.org/2008/06/29/vista-continually-rebooting-after-installing-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing SharePoint 2007 on Windows Server 2008</title>
		<link>http://jsedlak.org/2008/06/19/installing-sharepoint-2007-on-windows-server-2008/</link>
		<comments>http://jsedlak.org/2008/06/19/installing-sharepoint-2007-on-windows-server-2008/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 04:08:02 +0000</pubDate>
		<dc:creator>John Sedlak</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[WS2008]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Active Directory]]></category>

		<guid isPermaLink="false">http://jsedlak.com/?p=42</guid>
		<description><![CDATA[Ben Curry has made an excellent post about installing SharePoint 2007 on WS2008 by slipstreaming SP1 updates. I am now running SharePoint and AD on my internal server!]]></description>
			<content:encoded><![CDATA[<p><a href="http://mindsharpblogs.com/ben/archive/2007/12/16/3837.aspx">Ben Curry</a> has made an excellent post about installing SharePoint 2007 on WS2008 by slipstreaming SP1 updates. I am now running SharePoint and AD on my internal server!</p>
<div style="text-align:center;"><a href='http://jsedlak.com/wp-content/uploads/2008/06/moss01.jpg'><img src="http://jsedlak.com/wp-content/uploads/2008/06/moss01-290x300.jpg" alt="MOSS" title="moss01" width="290" height="300" class="alignnone size-medium wp-image-43" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://jsedlak.org/2008/06/19/installing-sharepoint-2007-on-windows-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows UX Task Force</title>
		<link>http://jsedlak.org/2008/06/03/windows-ux-task-force/</link>
		<comments>http://jsedlak.org/2008/06/03/windows-ux-task-force/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 08:23:15 +0000</pubDate>
		<dc:creator>John Sedlak</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://jsedlak.com/?p=26</guid>
		<description><![CDATA[Long Zheng of istartedsomething has started an initiative for bringing attention to Microsoft the biggest problems facing the Windows UI. Head on over to the Windows UX Task Force page to submit ideas, problems and inconsistencies with the current Windows UI.]]></description>
			<content:encoded><![CDATA[<p>Long Zheng of <a href="http://istartedsomething.com">istartedsomething</a> has started an initiative for bringing attention to Microsoft the biggest problems facing the Windows UI. Head on over to the <a href="http://www.istartedsomething.com/taskforce/">Windows UX Task Force</a> page to submit ideas, problems and inconsistencies with the current Windows UI.</p>
]]></content:encoded>
			<wfw:commentRss>http://jsedlak.org/2008/06/03/windows-ux-task-force/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
