<?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>WowKhmer Tech &#187; .NET</title>
	<atom:link href="http://tech.wowkhmer.com/tag/net/feed/" rel="self" type="application/rss+xml" />
	<link>http://tech.wowkhmer.com</link>
	<description>We.Passionate.Technologies</description>
	<lastBuildDate>Sun, 28 Mar 2010 08:39:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Visual Studio Theme Makes Me Different Taste, Different Feeling</title>
		<link>http://tech.wowkhmer.com/2009/02/visual-studio-theme-makes-me-different-taste-different-feeling/</link>
		<comments>http://tech.wowkhmer.com/2009/02/visual-studio-theme-makes-me-different-taste-different-feeling/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 08:28:00 +0000</pubDate>
		<dc:creator>Samnang Chhun</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[visual studio theme]]></category>

		<guid isPermaLink="false">http://tech.wowkhmer.com/?p=54</guid>
		<description><![CDATA[I have been using Visual Studio for a couple of years, but I only work with default environment. Last night, I decided to switch to use new theme to get different taste with black screen editor. I felt so strange at first, but after I worked with it one hour. Then I realized I really [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using Visual Studio for a couple of years, but I only work with default environment. Last night, I decided to switch to use new theme to get different taste with black screen editor. I felt so strange at first, but after I worked with it one hour. Then I realized I really love it. It’s like to make my brain refresh and learn something new. <a href="http://www.hanselman.com/blog/VisualStudioProgrammerThemesGallery.aspx">Scott Hanselman</a> posted a gallery of ready to use themes to any taste, you can try to get your best environment.</p>
<p align="center"><a href="http://tech.wowkhmer.com/wp-content/uploads/2009/08/vsnewtheme.png"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Visual Studio Them" src="http://tech.wowkhmer.com/wp-content/uploads/2009/08/vsnewtheme_thumb.png" border="0" alt="Visual Studio Them" width="414" height="262" /></a>My New Visual Studio Theme</p>
<p align="left">If you want it, you can <a href="http://tech.wowkhmer.com/wp-content/uploads/2009/02/MyVSTheme.rar">download it here</a>. Give an alternate theme a try and let me know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.wowkhmer.com/2009/02/visual-studio-theme-makes-me-different-taste-different-feeling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.NET Coder should give Ruby a try!</title>
		<link>http://tech.wowkhmer.com/2009/01/net-coder-should-give-ruby-a-try/</link>
		<comments>http://tech.wowkhmer.com/2009/01/net-coder-should-give-ruby-a-try/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 01:29:00 +0000</pubDate>
		<dc:creator>Samnang Chhun</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[technologies]]></category>

		<guid isPermaLink="false">http://tech.wowkhmer.com/?p=43</guid>
		<description><![CDATA[Last weekend, I gave Ruby a try. Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write. I&#8217;m a .NET coder, everyday I use C# for developing projects in my company. There are few reasons that [...]]]></description>
			<content:encoded><![CDATA[<p>Last weekend, I gave <a href="http://www.ruby-lang.org/">Ruby</a> a try. Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write. I&#8217;m a .NET coder, everyday I use C# for developing projects in my company. There are few reasons that bring me to try Ruby because I see a lot programmers mention Ruby is a very powerful and flexible programming language, is it true? And the main reason, I would like to try something new because almost my programming skills are just in static typed language and a bit dynamic typed language with Javascript.</p>
<p>After I played with Ruby about a few hours, I started loving it. Ruby is a fun toy. Like the differences between spoken languages, Ruby differs from most other programming languages not only by syntax, but by culture, grammar, and customs. And some programmers consider Ruby is English for computers. Ruby brings a new way of thinking about programming and software development. I would like to show you very basic examples, let’s go to see snippet code comparing between C# and Ruby.</p>
<pre class="brush: csharp;">
//Swap value between two variables
int a = 5, b = 10;
int temp = a;
a = b;
b = temp;

//Output message 3 times
for(int i = 0; i &lt;= 3; i++)
 Console.WriteLine(&quot;Hello&quot;);

//Output message if condition is true string
str = string.Empty;
if(str == string.Empty)
 Console.WriteLine(&quot;str is empty&quot;);
</pre>
<pre class="brush: ruby;">
#Swap value between two variables
a, b = 5, 10
a, b = b, a

#Output message 3 times
3.times { puts &quot;Hello&quot; }

#Output message if condition is true
str = ''
puts &quot;str is empty&quot; if str.empty?
</pre>
<p>Code comparisons above are not to show which language is bad and another is good, but I just want to show how I feel about new language. Ruby code is short and readable like in English. There are lots of more powerful features in Ruby that I haven’t mentioned here.</p>
<p>If you haven’t touched something new recently, why don’t you give Ruby a try?</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.wowkhmer.com/2009/01/net-coder-should-give-ruby-a-try/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>My NHibernate Presentation is available</title>
		<link>http://tech.wowkhmer.com/2008/11/my-nhibernate-presentation-is-available/</link>
		<comments>http://tech.wowkhmer.com/2008/11/my-nhibernate-presentation-is-available/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 12:55:00 +0000</pubDate>
		<dc:creator>Samnang Chhun</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ORM]]></category>
		<category><![CDATA[nhibernate]]></category>
		<category><![CDATA[presentations]]></category>

		<guid isPermaLink="false">http://tech.wowkhmer.com/?p=37</guid>
		<description><![CDATA[This is a presentation of NHibernate that I have presented to my colleagues as like in my Techtalk few months ago after I have spent some times for taking look at NHibernate. It focuses on a brief overview of the power of NHibernate. I decide to publish and hope that it will be useful for [...]]]></description>
			<content:encoded><![CDATA[<p>This is a presentation of <a href="http://www.hibernate.org/343.html">NHibernate</a> that I have presented to my colleagues as like in my Techtalk few months ago after I have spent some times for taking look at NHibernate. It focuses on a brief overview of the power of NHibernate. I decide to publish and hope that it will be useful for someone who is new and wants to get started on NHibernate.</p>
<div id="__ss_755164" style="text-align: left; width: 425px;"><a style="margin: 12px 0px 3px; display: block; font: 14px helvetica,arial,sans-serif; text-decoration: underline" title="NHibernate (The ORM For .NET Platform)" href="http://www.slideshare.net/samnang.chhun/nhibernate-the-orm-for-net-platform-presentation">NHibernate (The ORM For .NET Platform)</a><object style="margin:0px" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=nhibernatethe-orm-for-net-platform-1226744632929962-8&amp;stripped_title=nhibernate-the-orm-for-net-platform-presentation" /><param name="allowfullscreen" value="true" /><embed style="margin:0px" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=nhibernatethe-orm-for-net-platform-1226744632929962-8&amp;stripped_title=nhibernate-the-orm-for-net-platform-presentation" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="font-family: tahoma,arial; height: 26px; font-size: 11px; padding-top: 2px;">View more <a style="text-decoration: underline" href="http://www.slideshare.net/">documents</a> from <a style="text-decoration: underline" href="http://www.slideshare.net/samnang.chhun">Samnang Chhun</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tech.wowkhmer.com/2008/11/my-nhibernate-presentation-is-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Full List of PDC2008 Sessions</title>
		<link>http://tech.wowkhmer.com/2008/11/the-full-list-of-pdc2008-sessions/</link>
		<comments>http://tech.wowkhmer.com/2008/11/the-full-list-of-pdc2008-sessions/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 04:53:00 +0000</pubDate>
		<dc:creator>Samnang Chhun</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[pdc2008]]></category>
		<category><![CDATA[technologies]]></category>

		<guid isPermaLink="false">http://tech.wowkhmer.com/?p=48</guid>
		<description><![CDATA[After PDC2008(Professional Developers Conference October 27-30, 2008) finished, there were a lot of new things coming with this event. Unfortunately for those ones(like me) who didn’t participate this event, you can now have full and free access to a simple list of all keynotes and sessions by code and title. Luckily, our life become better.
Mike [...]]]></description>
			<content:encoded><![CDATA[<p>After PDC2008(Professional Developers Conference October 27-30, 2008) finished, there were a lot of new things coming with this event. Unfortunately for those ones(like me) who didn’t participate this event, you can now have full and free access to a simple list of all keynotes and sessions by code and title. Luckily, our life become better.</p>
<p><a href="http://blogs.msdn.com/mswanson/">Mike Swanson</a> has prepared for us <a href="http://blogs.msdn.com/mswanson/pages/PDC2008Sessions.aspx">a simple list of all keynotes and sessions by code and title</a>.</p>
<p>What should we learn from all of those technologies?</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.wowkhmer.com/2008/11/the-full-list-of-pdc2008-sessions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Started Castle MonoRail Project Template for VS2008</title>
		<link>http://tech.wowkhmer.com/2008/11/get-started-castle-monorail-project-template-for-vs2008/</link>
		<comments>http://tech.wowkhmer.com/2008/11/get-started-castle-monorail-project-template-for-vs2008/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 01:02:00 +0000</pubDate>
		<dc:creator>Samnang Chhun</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[castle]]></category>
		<category><![CDATA[monorail]]></category>
		<category><![CDATA[visual studio]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://tech.wowkhmer.com/?p=60</guid>
		<description><![CDATA[At least I faced a problem, when I was trying in order to start MonoRail project, I didn&#8217;t get good luck from creating a new project from New Project window of Visual Studio 2008. Then I checked out on Castle website, I found it has only support Visual Studio 2005. After that, I needed to [...]]]></description>
			<content:encoded><![CDATA[<p>At least I faced a problem, when I was trying in order to start <a href="http://www.castleproject.org/MonoRail/">MonoRail</a> project, I didn&#8217;t get good luck from creating a new project from New Project window of Visual Studio 2008. Then I checked out on Castle website, I found it has only support Visual Studio 2005. After that, I needed to start creating  my testing project from scratch. Some .NET programmers are annoyed when they are new and want to try MonoRail, at least me. So I decide to create a new MonoRail template project that you can import it into your template project window. It’s very simple for you to get a working project that you just only give project name and click on Run button.</p>
<p>Import template project Instruction:</p>
<ul>
<li>Get the latest CastleProject Binary/MSI Installation from <a href="http://www.castleproject.org/castle/download.html">http://www.castleproject.org/castle/download.html</a></li>
<li>Download template project from <a href="http://tech.wowkhmer.com/wp-content/uploads/2008/11/CastleMonoRailProject.zip">Castle MonoRail Project</a><a href="http://localhost:2164/files/CastleMonoRailProject.zip"></a></li>
<li>Copy it into {your document folder}\Visual Studio 2008\Templates\ProjectTemplates</li>
</ul>
<p>After you are done, you will get your Castle MonoRail Project under My Templates in New Project window.</p>
<p align="center"><a href="http://tech.wowkhmer.com/wp-content/uploads/2009/08/MonoRailTempateProject.png"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="MonoRail Tempate Project" src="http://tech.wowkhmer.com/wp-content/uploads/2009/08/MonoRailTempateProject_thumb.png" border="0" alt="MonoRail Tempate Project" width="375" height="238" /></a>New MonoRail Project</p>
<p align="center"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="project structure" src="http://tech.wowkhmer.com/wp-content/uploads/2009/08/projectstructure.png" border="0" alt="project structure" width="281" height="296" />Project structure</p>
<p align="left">Finally, what are you waiting for? Try MonoRail!</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.wowkhmer.com/2008/11/get-started-castle-monorail-project-template-for-vs2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compile and Test .NET Code Snippet Without Saving</title>
		<link>http://tech.wowkhmer.com/2008/10/compile-and-test-net-code-snippet-without-saving/</link>
		<comments>http://tech.wowkhmer.com/2008/10/compile-and-test-net-code-snippet-without-saving/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 02:29:00 +0000</pubDate>
		<dc:creator>Samnang Chhun</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://tech.wowkhmer.com/?p=40</guid>
		<description><![CDATA[I often find myself creating a new .NET project in Visual Studio.NET every time I want to try some simple pieces of code from books that I read or test some code in my system. Have you ever faced the same problem? If yes, that’s not a big deal forever. I’ve found a little tool [...]]]></description>
			<content:encoded><![CDATA[<p>I often find myself creating a new .NET project in Visual Studio.NET every time I want to try some simple pieces of code from books that I read or test some code in my system. Have you ever faced the same problem? If yes, that’s not a big deal forever. I’ve found a little tool invaluable called <a href="http://www.sliver.com/dotnet/SnippetCompiler/">Snippet Compiler</a>.</p>
<p>The Snippet Compiler is a small Windows-based application that allows you to write, compile, and run .NET 2.0/3.5 code.It has some other features such as intellisense that lets you write code as fast as using Visual Studio.NET, etc, but the ability of just being able to test things quickly is my opinion the best feature.</p>
<p style="text-align: center"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Snippet Compiler" src="http://tech.wowkhmer.com/wp-content/uploads/2009/08/snippetcompiler.png" border="0" alt="Snippet Compiler" width="527" height="614" /> Snippet Compiler was written by Jeff Key and can be download from <a href="http://www.sliver.com/dotnet/SnippetCompiler/">http://www.sliver.com/dotnet/SnippetCompiler/</a>.</p>
<p>All I can say is a tool that .NET programmers must have in their development PC. What are your tools?</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.wowkhmer.com/2008/10/compile-and-test-net-code-snippet-without-saving/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
