<?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>HieuUK</title>
	<atom:link href="http://www.hieu.co.uk/blog/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hieu.co.uk/blog</link>
	<description>Creative Programing</description>
	<lastBuildDate>Mon, 26 Oct 2009 23:06:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Access Windows special directories (My document, Desktop, Program Files)</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/10/12/access-windows-special-directories-my-document-desktop-program-files/</link>
		<comments>http://www.hieu.co.uk/blog/index.php/2009/10/12/access-windows-special-directories-my-document-desktop-program-files/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 22:25:22 +0000</pubDate>
		<dc:creator>HieuUK</dc:creator>
				<category><![CDATA[C#.NET Code]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://www.hieu.co.uk/blog/?p=817</guid>
		<description><![CDATA[You can easily access to special directories of windows in C# by using: Environment.SpecialFolder.MyDocuments; The same go with other directories Environment.SpecialFolder.Desktop; Environment.SpecialFolder.History; ...]]></description>
		<wfw:commentRss>http://www.hieu.co.uk/blog/index.php/2009/10/12/access-windows-special-directories-my-document-desktop-program-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My room</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/10/06/my-room/</link>
		<comments>http://www.hieu.co.uk/blog/index.php/2009/10/06/my-room/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 19:35:30 +0000</pubDate>
		<dc:creator>HieuUK</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[3D]]></category>

		<guid isPermaLink="false">http://www.hieu.co.uk/blog/?p=810</guid>
		<description><![CDATA[After my verrrrry long holiday, it&#8217;s time for me to start working and posting again. I decide to start my come back with a design post. It&#8217;s my room in 3D. I made it right before I went on my holiday and haven&#8217;t got a chance to post it. Enjoy !!! Dual screen wallpaper (2880&#215;900) [...]]]></description>
		<wfw:commentRss>http://www.hieu.co.uk/blog/index.php/2009/10/06/my-room/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I&#8217;m on holiday</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/08/12/im-on-holiday/</link>
		<comments>http://www.hieu.co.uk/blog/index.php/2009/08/12/im-on-holiday/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 18:59:22 +0000</pubDate>
		<dc:creator>HieuUK</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.hieu.co.uk/blog/?p=808</guid>
		<description><![CDATA[I&#8217;m currently on a long vacation. Unfortunately, I can’t get internet at my house so I couldn’t check mail regularly. I received a lot of email + comments about my websites. I will to reply ASAP but please expect some delay. Thank you for interested in my website.]]></description>
		<wfw:commentRss>http://www.hieu.co.uk/blog/index.php/2009/08/12/im-on-holiday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A shorter way for If statement in C#</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/07/17/a-shorter-way-for-if-statement-in-c/</link>
		<comments>http://www.hieu.co.uk/blog/index.php/2009/07/17/a-shorter-way-for-if-statement-in-c/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 08:33:29 +0000</pubDate>
		<dc:creator>HieuUK</dc:creator>
				<category><![CDATA[C#.NET Code]]></category>

		<guid isPermaLink="false">http://www.hieu.co.uk/blog/?p=807</guid>
		<description><![CDATA[Instead of writing: if (idx == 1) { result = "Yes"; } else { result = "No"; } return result; You could wrap it in one single line code return ((idx == 1) ? "Yes" : "No");]]></description>
		<wfw:commentRss>http://www.hieu.co.uk/blog/index.php/2009/07/17/a-shorter-way-for-if-statement-in-c/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Customize HTML control with jQuery (Checkbox + Radio)</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/07/09/customize-html-control-with-jquery-checkbox-radio/</link>
		<comments>http://www.hieu.co.uk/blog/index.php/2009/07/09/customize-html-control-with-jquery-checkbox-radio/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 07:45:59 +0000</pubDate>
		<dc:creator>HieuUK</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.hieu.co.uk/blog/?p=804</guid>
		<description><![CDATA[In web development/design, there&#8217;re a lot of time you want to customize HTML controls. Some controls are actually quite simple to implement. I will show you how to customize a checkbox/radiobox. It will be very simple, just need a few lines of jQuery and CSS. DEMO DOWNLOAD EXAMPLE ZIP Theory behind As always, I try [...]]]></description>
		<wfw:commentRss>http://www.hieu.co.uk/blog/index.php/2009/07/09/customize-html-control-with-jquery-checkbox-radio/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>The bridge and the bear . . .</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/06/18/the-bridge-and-the-bear/</link>
		<comments>http://www.hieu.co.uk/blog/index.php/2009/06/18/the-bridge-and-the-bear/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 08:41:33 +0000</pubDate>
		<dc:creator>HieuUK</dc:creator>
				<category><![CDATA[Funny Stuffs]]></category>

		<guid isPermaLink="false">http://www.hieu.co.uk/blog/index.php/2009/06/18/the-bridge-and-the-bear/</guid>
		<description><![CDATA[<p>The old bear made a wrong move and found he was hanging by his nails. Somehow he was able to pull himself up onto the ledge, where he saw he was in a very bad, in fact impossible, situation. So what did he do? Yep, he took a nap and sure enough the situation took care of itself while he was asleep. <strong><font color="black">The moral is that when confronted with a bad situation, sometimes the best solution is to take a nap.</font></strong></p>]]></description>
		<wfw:commentRss>http://www.hieu.co.uk/blog/index.php/2009/06/18/the-bridge-and-the-bear/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Developers&#8217; survivor kits</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/06/09/developers-survivor-kits/</link>
		<comments>http://www.hieu.co.uk/blog/index.php/2009/06/09/developers-survivor-kits/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 22:17:57 +0000</pubDate>
		<dc:creator>HieuUK</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Application]]></category>

		<guid isPermaLink="false">http://www.hieu.co.uk/blog/?p=783</guid>
		<description><![CDATA[There are few things that I think I can never survive without as a developer. Surely you will need all the technical stuffs for your work. However a lot of things seem not relate to IT at all but so essential. These are my personal choice only. What about you? Energy drink + Coffee Those [...]]]></description>
		<wfw:commentRss>http://www.hieu.co.uk/blog/index.php/2009/06/09/developers-survivor-kits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The guide to basic Git for absolutely beginer</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/05/27/the-guide-to-basic-git-for-absolutely-beginer/</link>
		<comments>http://www.hieu.co.uk/blog/index.php/2009/05/27/the-guide-to-basic-git-for-absolutely-beginer/#comments</comments>
		<pubDate>Wed, 27 May 2009 23:10:39 +0000</pubDate>
		<dc:creator>HieuUK</dc:creator>
				<category><![CDATA[App Development]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[Revision]]></category>

		<guid isPermaLink="false">http://www.hieu.co.uk/blog/?p=774</guid>
		<description><![CDATA[In my company, we use SVN as our revision system, so I have to use SVN at work everyday. It&#8217;s good at a certain level however there are also a lot of limit behind its structure. So I decide to move to Git to see if this system any better. There are a few reason [...]]]></description>
		<wfw:commentRss>http://www.hieu.co.uk/blog/index.php/2009/05/27/the-guide-to-basic-git-for-absolutely-beginer/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Delete query using Subsonic</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/05/14/delete-query-using-subsonic/</link>
		<comments>http://www.hieu.co.uk/blog/index.php/2009/05/14/delete-query-using-subsonic/#comments</comments>
		<pubDate>Thu, 14 May 2009 14:30:18 +0000</pubDate>
		<dc:creator>HieuUK</dc:creator>
				<category><![CDATA[C#.NET Code]]></category>

		<guid isPermaLink="false">http://www.hieu.co.uk/blog/?p=773</guid>
		<description><![CDATA[Here&#8217;s a quick little bit of code that shows how to delete records in your database using SubSonic&#8217;s Query Tool. I know you can write this is fewer lines of code, but I think this shows a little more clearly what&#8217;s going on. Query qryDelete = new Query(DeliverableCategoriesSelected.Schema); // You can also do the following [...]]]></description>
		<wfw:commentRss>http://www.hieu.co.uk/blog/index.php/2009/05/14/delete-query-using-subsonic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting start with Adobe Air as Web developer/ designer</title>
		<link>http://www.hieu.co.uk/blog/index.php/2009/05/11/getting-start-with-adobe-air-as-web-developer-designer/</link>
		<comments>http://www.hieu.co.uk/blog/index.php/2009/05/11/getting-start-with-adobe-air-as-web-developer-designer/#comments</comments>
		<pubDate>Mon, 11 May 2009 11:15:58 +0000</pubDate>
		<dc:creator>HieuUK</dc:creator>
				<category><![CDATA[App Development]]></category>
		<category><![CDATA[Air]]></category>

		<guid isPermaLink="false">http://www.hieu.co.uk/blog/?p=766</guid>
		<description><![CDATA[The 3 screencasts of how to start making Adobe Air Applications as Web developers/designers. It starts from very basic set up the IDE, Hello worlds app, then how to make your pre-made jquery/javascript web page into a desktop app. Finally making a very simple file browser using Adobe Air API. You also could download the MP4 and the Projects files for the Tutorials.]]></description>
		<wfw:commentRss>http://www.hieu.co.uk/blog/index.php/2009/05/11/getting-start-with-adobe-air-as-web-developer-designer/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

