<?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; technologies</title>
	<atom:link href="http://tech.wowkhmer.com/tag/technologies/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>.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>Still alive!</title>
		<link>http://tech.wowkhmer.com/2008/12/still-alive/</link>
		<comments>http://tech.wowkhmer.com/2008/12/still-alive/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 09:38:00 +0000</pubDate>
		<dc:creator>Samnang Chhun</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[technologies]]></category>

		<guid isPermaLink="false">http://tech.wowkhmer.com/?p=47</guid>
		<description><![CDATA[No blog posts for a whole month is unprecedented. We are busy in completing projects &#38; touch some new technologies. We will do our best to grow all together in our new year.
Some plans that I will focus on new year:

Touch in new features of C# 4.0
Get deeper in ASP.NET MVC and MonoRail
All codes should [...]]]></description>
			<content:encoded><![CDATA[<p>No blog posts for a whole month is unprecedented. We are busy in completing projects &amp; touch some new technologies. We will do our best to grow all together in our new year.</p>
<p>Some plans that I will focus on new year:</p>
<ul>
<li>Touch in new features of C# 4.0</li>
<li>Get deeper in <a href="http://www.asp.net/mvc/">ASP.NET MVC</a> and <a href="http://www.castleproject.org/MonoRail/">MonoRail</a></li>
<li>All codes should be done by test codes first</li>
<li>Get more understanding on <a href="http://en.wikipedia.org/wiki/Object-relational_mapping">ORM</a>, especially <a href="http://www.hibernate.org/343.html">NHibernate</a></li>
<li><a href="http://en.wikipedia.org/wiki/Representational_State_Transfer">RESTful</a> in .NET</li>
<li>Switch to use <a href="http://en.wikipedia.org/wiki/Model_View_Presenter">MVP</a> for developing presentation layer of Windows App.</li>
<li>Looking for a good CMS framework in .NET for building websites</li>
<li>Keep growing IT communities</li>
</ul>
<p>New year is coming, I wish all of you will bring good stuff in new year and leave bad stuff in the old year.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.wowkhmer.com/2008/12/still-alive/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>
	</channel>
</rss>
