<?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>Son Huynh</title>
	<atom:link href="http://www.sonhuynh.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sonhuynh.com</link>
	<description></description>
	<lastBuildDate>Mon, 26 Dec 2011 01:37:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Debugging JavaScript in old versions of Internet Explorer</title>
		<link>http://www.sonhuynh.com/2011/10/24/debugging-javascript-in-old-versions-of-internet-explorer/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=debugging-javascript-in-old-versions-of-internet-explorer</link>
		<comments>http://www.sonhuynh.com/2011/10/24/debugging-javascript-in-old-versions-of-internet-explorer/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 03:51:35 +0000</pubDate>
		<dc:creator>Son Huynh</dc:creator>
				<category><![CDATA[Pro Tips]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[IETester]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://www.sonhuynh.com/?p=284</guid>
		<description><![CDATA[Internet Explorer 8 and above come with a function called Developer Tools which allow you to switch the rendering engine between different versions of IE (version 7 and above). This is useful for debugging CSS in IE (the horror) and there are plenty of other plugins/third-party software that let you do much the same thing [...]]]></description>
			<content:encoded><![CDATA[<p>Internet Explorer 8 and above come with a function called <a href="http://msdn.microsoft.com/en-us/ie/aa740478" title="Developer Tools" target="_blank">Developer Tools</a> which allow you to switch the rendering engine between different versions of IE (version 7 and above). This is useful for debugging CSS in IE (the horror) and there are plenty of other plugins/third-party software that let you do much the same thing if you don&#8217;t like using IE (who does).</p>
<p>However, debugging JavaScript in IE requires that you be able to switch the JavaScript engine between different versions of IE. Many of the IE debugging tools (including Developer Tools) doesn&#8217;t replicate the old JavaScript engines. Luckily there&#8217;s a tool called <a href="http://www.my-debugbar.com/wiki/IETester/HomePage" title="IETest" target="_blank">IETester</a> that lets you test both the rendering engine and the JavaScript engine of IE 5.5 all the way to the latest version of IE.</p>
<p>IETester is really easy and intuitive to use and lets you test any number of sites and any number of versions at the same time. It also has a feature to disable caching like any good debugging tool should.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sonhuynh.com/2011/10/24/debugging-javascript-in-old-versions-of-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Kill Remote Desktop Connections Remotely</title>
		<link>http://www.sonhuynh.com/2010/10/27/how-to-kill-remote-desktop-connections-remotely/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-kill-remote-desktop-connections-remotely</link>
		<comments>http://www.sonhuynh.com/2010/10/27/how-to-kill-remote-desktop-connections-remotely/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 17:47:27 +0000</pubDate>
		<dc:creator>Son Huynh</dc:creator>
				<category><![CDATA[Pro Tips]]></category>
		<category><![CDATA[qwinsta]]></category>
		<category><![CDATA[Remote Desktop Connection]]></category>
		<category><![CDATA[rwinsta]]></category>

		<guid isPermaLink="false">http://gup.sonhuynh.com/?p=93</guid>
		<description><![CDATA[Have you ever tried to use Remote Desktop Connection to remotely log into another computer only to get a &#8220;exceeded maximum number of allowed connections&#8221; error? Most of the time, all those connections are probably legitimate, in which case, you probably shouldn&#8217;t be doing what I&#8217;m about to tell you. However, in some cases, sessions [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever tried to use Remote Desktop Connection to remotely log into another computer only to get a &#8220;exceeded maximum number of allowed connections&#8221; error?</p>
<p>Most of the time, all those connections are probably legitimate, in which case, you probably shouldn&#8217;t be doing what I&#8217;m about to tell you. However, in some cases, sessions just aren&#8217;t killed properly giving you a valid reason to use this trick.</p>
<p>To see what active sessions are currently running on the remote computer, open a command prompt and type:<br />
<code><br />
qwinsta /SERVER:<i>&lt;IP_ADDRESS_OF_REMOTE_COMPUTER&gt;</i><br />
</code></p>
<p>You might get something like below:<br />
<img src="http://sonhuynh.com/sonhuynh/wp-content/uploads/2011/07/qwinsta.jpg" alt="Qwinsta Command Prompt" title="Qwinsta Command Prompt" width="609" height="68" class="alignnone size-full wp-image-171" /></p>
<p>Look for those sessions with the type &#8220;rdpwd&#8221;. At this point, you&#8217;re just going to have to pick a session to kill. Once you&#8217;re made your decision, run:<br />
<code><br />
rwinsta /SERVER:<i>&lt;IP_ADDRESS_OF_REMOTE_COMPUTER&gt;</i> <i>&lt;ID_OF_SESSION_TO_KILL&gt;</i><br />
</code></p>
<p>These commands require you already be authenticated to the computer you&#8217;re trying to log on to. If you&#8217;re not, the commands will fail. Just open a UNC path to the computer and authenticate through that. Then you can run the commands again.</p>
<p>And that&#8217;s it, you should be able to remote in without exceeding the maximum connections now.</p>
<p>Enjoy and use wisely. Remember, with great power comes great responsibility.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sonhuynh.com/2010/10/27/how-to-kill-remote-desktop-connections-remotely/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Winamp for Android Beta &#8211; Wireless Sync Service Drains Battery</title>
		<link>http://www.sonhuynh.com/2010/10/26/winamp-for-android-beta-wireless-sync-service-drains-battery/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=winamp-for-android-beta-wireless-sync-service-drains-battery</link>
		<comments>http://www.sonhuynh.com/2010/10/26/winamp-for-android-beta-wireless-sync-service-drains-battery/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 00:43:13 +0000</pubDate>
		<dc:creator>Son Huynh</dc:creator>
				<category><![CDATA[Pro Tips]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[Vibrant]]></category>
		<category><![CDATA[Winamp]]></category>

		<guid isPermaLink="false">http://gup.sonhuynh.com/?p=89</guid>
		<description><![CDATA[About a week ago, Winamp, a popular media player, released a beta version for Android. Personally I&#8217;ve never really used Winamp (having an iPod, I mostly use iTunes). However the wireless syncing service it offers is too appealing. After all, who doesn&#8217;t hate having to go hunt down that USB cord every time and go [...]]]></description>
			<content:encoded><![CDATA[<p>About a week ago, <a href="http://www.winamp.com/" target="_blank">Winamp</a>, a popular media player, <a href="http://blog.winamp.com/2010/10/20/winamp-for-android-now-in-beta/2" target="_blank">released a beta version for Android</a>.</p>
<p>Personally I&#8217;ve never really used Winamp (having an iPod, I mostly use iTunes). However the wireless syncing service it offers is too appealing. After all, who doesn&#8217;t hate having to go hunt down that USB cord every time and go through the hassle of mounting, etc., etc. Especially because I have the Samsung Vibrant, and silly Samsung, thought they could kill two birds with one stone by giving you a wall adapter that you plug the USB cord into in order to charge your phone. Of course this means I have to walk all the way into my room, grab the cord from off my wall, and walk all the way back to my computer just to hook it up. Painful I know.</p>
<p>Anyway, just a word of warning for whoever&#8217;s using the Winamp Android Beta and have wireless sync enabled. The sync service, called &#8220;WifiSyncService&#8221;, is a huge battery killer. My phone pretty much died within half a day with that service enabled. So if your phone is suddenly dying quicker than usual, check to see if that service is running and kill it. If you&#8217;re using a Task Killer, be careful, sometimes it doesn&#8217;t kill the service.</p>
<p>Otherwise, it&#8217;s an awesome app and I really look forward to the next version.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sonhuynh.com/2010/10/26/winamp-for-android-beta-wireless-sync-service-drains-battery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone app maps over 8 miles of Minneapolis Skyway</title>
		<link>http://www.sonhuynh.com/2010/05/09/iphone-app-maps-over-8-miles-of-minneapolis-skyway/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=iphone-app-maps-over-8-miles-of-minneapolis-skyway</link>
		<comments>http://www.sonhuynh.com/2010/05/09/iphone-app-maps-over-8-miles-of-minneapolis-skyway/#comments</comments>
		<pubDate>Sun, 09 May 2010 19:53:49 +0000</pubDate>
		<dc:creator>Son Huynh</dc:creator>
				<category><![CDATA[TECHdotMN]]></category>
		<category><![CDATA[Casey Holley]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Minneapolis Skyway]]></category>
		<category><![CDATA[Start Ups]]></category>

		<guid isPermaLink="false">http://gup.sonhuynh.net/?p=73</guid>
		<description><![CDATA[Recently I just networked with Casey Holley and wrote a post covering his iPhone application called Minneapolis Skyway. The app just got done and is being sent through Apple&#8217;s approval process. It maps the entire Minneapolis Skyway System (which is renowned for being the largest continuous skyway network in the world) which spans over 8 [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I just networked with Casey Holley and wrote a post covering his iPhone application called <a href="http://www.skywayapp.com/" target="_blank">Minneapolis Skyway</a>. The app just got done and is being sent through Apple&#8217;s approval process. It maps the entire Minneapolis Skyway System (which is renowned for being the largest continuous skyway network in the world) which spans over 8 miles and contains over 350 tenants. I was able to get a first hand look at the app. The user experience is awesome and it has a lot of cool features as well. For more, check out my post on <a href="http://tech.mn/news/2010/05/07/iphone-app-maps-over-300-businesses-and-8-miles-of-minneapolis-skyway/" target="_blank">Tech.mn</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sonhuynh.com/2010/05/09/iphone-app-maps-over-8-miles-of-minneapolis-skyway/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Brief Note On Writing Cover Letters</title>
		<link>http://www.sonhuynh.com/2010/05/05/a-brief-note-on-writing-cover-letters/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-brief-note-on-writing-cover-letters</link>
		<comments>http://www.sonhuynh.com/2010/05/05/a-brief-note-on-writing-cover-letters/#comments</comments>
		<pubDate>Thu, 06 May 2010 04:59:57 +0000</pubDate>
		<dc:creator>Son Huynh</dc:creator>
				<category><![CDATA[Pro Tips]]></category>
		<category><![CDATA[Cover Letters]]></category>

		<guid isPermaLink="false">http://gup.sonhuynh.net/?p=68</guid>
		<description><![CDATA[I&#8217;ve been helping someone with his cover letter for a while now. It&#8217;s been an arduous process. Writing cover letters can be difficult. However, today I came to a realization: writing a cover letter isn&#8217;t supposed to be hard. A cover letter is nothing more than a way to sell yourself to your potential employer. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been helping someone with his cover letter for a while now. It&#8217;s been an arduous process. Writing cover letters can be difficult. However, today I came to a realization: writing a cover letter isn&#8217;t <b><i>supposed</i></b> to be hard.</p>
<p>A cover letter is nothing more than a way to sell yourself to your potential employer. Why should this be difficult? After all, if you&#8217;re applying for a job, you obviously think you can do it. There must be something that you possess that brought you to think that you can do the job. Whether it be a skill, a quality, a trait, anything. You know better than anyone what you&#8217;re capable of. You know better than anyone why you think you can do the job. If you can explain that in your cover letter, you&#8217;re good to go. I mean, if you can&#8217;t explain why you think you can do the job in a cover letter&#8230; how do you expect to explain it in an interview? On the other hand, if you <i>don&#8217;t</i> think you can do the job, don&#8217;t bother applying. If you&#8217;re not convinced that you can do the job, how are you going to convince your employer?</p>
<p>Hope that helps.</p>
<p><b>*UPDATE*</b><br />
Just found a <a href="http://www.adventuringcompany.com/pa/" target="_blank">cover letter</a> done by somebody for a job at Penny Arcade. Chances are you&#8217;re not gonna do anything like this but still fun to look at.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sonhuynh.com/2010/05/05/a-brief-note-on-writing-cover-letters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Movie Mash adds humor to film industry news</title>
		<link>http://www.sonhuynh.com/2010/03/17/the-movie-mash-adds-humor-to-film-industry-news/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-movie-mash-adds-humor-to-film-industry-news</link>
		<comments>http://www.sonhuynh.com/2010/03/17/the-movie-mash-adds-humor-to-film-industry-news/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 20:49:32 +0000</pubDate>
		<dc:creator>Son Huynh</dc:creator>
				<category><![CDATA[TECHdotMN]]></category>
		<category><![CDATA[Barrett Goetz]]></category>
		<category><![CDATA[Start Ups]]></category>
		<category><![CDATA[The Movie Mash]]></category>

		<guid isPermaLink="false">http://gup.sonhuynh.net/?p=61</guid>
		<description><![CDATA[Barrett Goetz, a Strategic Communications graduate from the University of Minnesota, started a movie blog called The Movie Mash. The Movie Mash covers film industry news including movie trailers, reviews, and casting/acting/directing news, and they do so with a slight comedic twist. For more information, read my post on Tech.mn.]]></description>
			<content:encoded><![CDATA[<p>Barrett Goetz, a Strategic Communications graduate from the University of Minnesota, started a movie blog called The Movie Mash. The Movie Mash covers film industry news including movie trailers, reviews, and casting/acting/directing news, and they do so with a slight comedic twist. For more information, read my post on <a href="http://tech.mn/news/2010/03/17/university-of-minnesota-grad-pursuing-passion-through-the-movie-mashuniversity-of-minnesota-grad-pursuing-passion-through-the-movie-mash/" target="_blank">Tech.mn</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sonhuynh.com/2010/03/17/the-movie-mash-adds-humor-to-film-industry-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Started With Android Development</title>
		<link>http://www.sonhuynh.com/2010/02/24/getting-started-with-android-development/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=getting-started-with-android-development</link>
		<comments>http://www.sonhuynh.com/2010/02/24/getting-started-with-android-development/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 00:40:11 +0000</pubDate>
		<dc:creator>Son Huynh</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Development]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JDK]]></category>

		<guid isPermaLink="false">http://gup.sonhuynh.net/?p=59</guid>
		<description><![CDATA[I&#8217;m finally getting into developing for Android. It&#8217;s been a rocky few hours but I think I finally have my environment set up. I&#8217;ll do posts here as I progress. The first one: getting started with Android and setting up the environment. Now Google has some pretty good tutorials so I&#8217;ll mostly use their material [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m finally getting into developing for Android. It&#8217;s been a rocky few hours but I think I finally have my environment set up. I&#8217;ll do posts here as I progress. The first one: getting started with Android and setting up the environment.</p>
<p>Now Google has some pretty good tutorials so I&#8217;ll mostly use their material but I&#8217;ll make sure to make comment on where I ran into problems.</p>
<p>NOTE: I am using Windows 7 Ultimate 64-bit with a 64bit JDK so all the instructions here will be for Windows 64bit.</p>
<p>If you haven&#8217;t already, you&#8217;ll need the Sun Java JDK, download it <a href="http://developers.sun.com/downloads/" target="_blank">here</a>. I am using the 64bit Java SE JDK 6.</p>
<p>To start off, you&#8217;ll need to download the <a href="http://developer.android.com/sdk/index.html" target="_blank">Android SDK</a>. Note that you can also follow the instructions on that page to get your environment set up.</p>
<p>Next you&#8217;ll need Eclipse and the Android Development Tools plugin for it. If you already have Eclipse, click <a href="http://developer.android.com/sdk/eclipse-adt.html" target="_blank">here</a> to figure out how to install the plugin. If you need Eclipse, you can download it <a href="http://www.eclipse.org/downloads/" target="_blank">here</a>. I think they recommend using the Eclipse for Java or Eclipse for RCP/Plug-in but since I&#8217;m using 64bit Windows AND 64bit JDK, I had to download the 64bit version of Eclipse Classic (you may have to do the same if you&#8217;re using a 64bit OS).</p>
<p>After you have Eclipse, follow the instructions from the link above to get the ADT plugin.</p>
<p>Once you get Eclipse running, you&#8217;ll need to download some extra SDK components (for sure at least one Android Platform). You can go <a href="http://developer.android.com/sdk/adding-components.html" target="_blank">here</a> to find out more.</p>
<p>Once you have a platform, you&#8217;ll need to create an Android Virtual Device. You can do this from the Eclipse &#8220;Android SDK and AVD Manager&#8221; (From Eclipse, Window > Android SDK and AVD Manager).</p>
<p>Once everything is set up, follow this <a href="http://developer.android.com/resources/tutorials/hello-world.html" target="_blank">tutorial</a> to get started with an Android Project. Note that the tutorial tells you how to create a Virtual Device from the command line.</p>
<p>Here&#8217;s where it got tricky for me. After following the &#8220;Hello, Android&#8221; tutorial and clicking &#8220;Run&#8221;, nothing happened. No emulator, no nothing. If you look at the console, you may get an error like &#8220;emulator: could not find virtual device named &lt;DeviceName&gt;&#8221;. After some time on Google, I was able to figure out the problem. What&#8217;s happening is that Eclipse is looking for the Virtual Devices to be in the &#8220;C:Users&lt;User&gt;.android&#8221; folder but for whatever reason, it may not have gotten created in that folder. A solution is to create a symlink. First find out where the Devices got created. You can do this by opening the Android SDK and AVD Manager, clicking on the Virtual Device and click &#8220;Details&#8221; (for example mine was &#8220;G:.android&#8221;). Once you get the path, open up a command prompt, cd into &#8220;C:Users&lt;User&gt;&#8221; and run the command &#8220;mklink /J .android G:.android&#8221; (except changing the second path to whatever yours is). Then if you try to run the application again, it should work.</p>
<p>And there ya go, Android environment set up and good to go (hopefully anyway, I stopped everything I did once I got things working to write this post).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sonhuynh.com/2010/02/24/getting-started-with-android-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>College Life Today offers discounts and deals around University of Minnesota campus</title>
		<link>http://www.sonhuynh.com/2010/02/20/college-life-today-offers-discounts-and-deals-around-university-of-minnesota-campus/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=college-life-today-offers-discounts-and-deals-around-university-of-minnesota-campus</link>
		<comments>http://www.sonhuynh.com/2010/02/20/college-life-today-offers-discounts-and-deals-around-university-of-minnesota-campus/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 07:10:09 +0000</pubDate>
		<dc:creator>Son Huynh</dc:creator>
				<category><![CDATA[TECHdotMN]]></category>
		<category><![CDATA[Brooks DeZellar]]></category>
		<category><![CDATA[College Life Today]]></category>
		<category><![CDATA[Start Ups]]></category>

		<guid isPermaLink="false">http://gup.sonhuynh.net/?p=57</guid>
		<description><![CDATA[As I mentioned previously, I am currently writing for TECHdotMN. For my first post, I wrote about College Life Today, started by Brooks DeZellar, an entrepreneur student from the University of Minnesota. College Life Today was created to help students maximize their spending allowance by offering discounts and deals from vendors around the University of [...]]]></description>
			<content:encoded><![CDATA[<p>As I mentioned previously, I am currently writing for <a href="http://tech.mn" target="_blank">TECHdotMN</a>. For my first post, I wrote about <a href="http://collegelifetoday.com/" target="_blank">College Life Today</a>, started by Brooks DeZellar, an entrepreneur student from the University of Minnesota. College Life Today was created to help students maximize their spending allowance by offering discounts and deals from vendors around the University of Minnesota. For more information, <a href="http://tech.mn/news/2010/02/18/u-of-m-student-starts-college-life-today-to-help-cash-strapped-students-maximize-funds/" target="_blank">read my post</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sonhuynh.com/2010/02/20/college-life-today-offers-discounts-and-deals-around-university-of-minnesota-campus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debug IE7 by using IE8</title>
		<link>http://www.sonhuynh.com/2010/02/17/debug-ie7-by-using-ie8/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=debug-ie7-by-using-ie8</link>
		<comments>http://www.sonhuynh.com/2010/02/17/debug-ie7-by-using-ie8/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 20:09:02 +0000</pubDate>
		<dc:creator>Son Huynh</dc:creator>
				<category><![CDATA[Pro Tips]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Internet Explorer 7]]></category>
		<category><![CDATA[Internet Explorer 8]]></category>

		<guid isPermaLink="false">http://gup.sonhuynh.net/?p=52</guid>
		<description><![CDATA[This is by no means an elaborate hack, however I figured since it wasn&#8217;t obvious to me, it probably isn&#8217;t obvious to a few other people out there. If you&#8217;re a web developer then chances are, you have to debug sites in Internet Explorer. However, if you&#8217;re running Windows 7 (or even just Internet Explorer [...]]]></description>
			<content:encoded><![CDATA[<p>This is by no means an elaborate hack, however I figured since it wasn&#8217;t obvious to me, it probably isn&#8217;t obvious to a few other people out there.</p>
<p>If you&#8217;re a web developer then chances are, you have to debug sites in Internet Explorer. However, if you&#8217;re running Windows 7 (or even just Internet Explorer 8), you probably have some sort of separate test environment set up so you can debug in IE7 (at least I did). Well let me tell you, that&#8217;s not necessary.</p>
<p>IE8 comes packaged with something called Developer Tools, which is similar to Firebug for Firefox but no where near as good. However Developer Tools does come with one handy feature: the ability to switch your browser mode to IE7.</p>
<p>All you have to do is open IE8, open Developer Tools (Tools > Developer Tools or hit F12), and from the menu bar, you can select your Browser Mode (IE7, IE8, and IE8 Compatibility) as well as your Document Mode (IE7 Standards, IE8 Standards, and Quirks Mode).</p>
<p>Voila! Goodbye separate test environment. Of course, you&#8217;ll still need some other method if you&#8217;re debugging for IE6. If you <em><strong>are</strong></em> debugging for IE6 however, well, I just feel sorry for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sonhuynh.com/2010/02/17/debug-ie7-by-using-ie8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guest Writer for TECHdotMN</title>
		<link>http://www.sonhuynh.com/2010/02/05/guest-writer-for-techdotmn-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=guest-writer-for-techdotmn-2</link>
		<comments>http://www.sonhuynh.com/2010/02/05/guest-writer-for-techdotmn-2/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 23:26:05 +0000</pubDate>
		<dc:creator>Son Huynh</dc:creator>
				<category><![CDATA[TECHdotMN]]></category>
		<category><![CDATA[Start Ups]]></category>

		<guid isPermaLink="false">http://gup.sonhuynh.net/?p=49</guid>
		<description><![CDATA[TECHdotMN is a Minnesota-based website that covers local tech startups. I have just gotten a position as a guest writer for TECHdotMN which may eventually turn into a regular thing. My job is to cover student startups, mostly from within the University of Minnesota-Twin Cities area. I have a few leads that I&#8217;ll be working [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tech.mn/" target="_blank">TECHdotMN</a> is a Minnesota-based website that covers local tech startups. I have just gotten a position as a guest writer for TECHdotMN which may eventually turn into a regular thing.</p>
<p>My job is to cover student startups, mostly from within the University of Minnesota-Twin Cities area. I have a few leads that I&#8217;ll be working the next few weeks but if you are a local student Minnesota startup or if you know of one that would want to get their name out, contact me and I&#8217;ll be glad to talk to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sonhuynh.com/2010/02/05/guest-writer-for-techdotmn-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

