<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Sukasom C.</title>
	<atom:link href="http://sukasom.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sukasom.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 26 Nov 2009 15:05:26 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='sukasom.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/dc3c0ccbdb2ec4d0bcd5297dc2349a6a?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Sukasom C.</title>
		<link>http://sukasom.wordpress.com</link>
	</image>
			<item>
		<title>LINQ something wrong with auto generating entity class</title>
		<link>http://sukasom.wordpress.com/2009/11/21/linq-bug/</link>
		<comments>http://sukasom.wordpress.com/2009/11/21/linq-bug/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 15:32:17 +0000</pubDate>
		<dc:creator>schaiyakul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sukasom.wordpress.com/?p=578</guid>
		<description><![CDATA[Solving the error message of "System.FormatException: String must be exactly one character long" when using LINQ.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=578&subd=sukasom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I had encountered the following message, &#8220;<em>System.FormatException: String must be exactly one character long..,</em>&#8221; when I try to query an object as shown in the following code.</p>
<p><span style="color:#33cccc;">DataClasses2DataContext </span>dataContext = <span style="color:#0000ff;">new </span><span style="color:#33cccc;">DataClasses2DataContext</span>();<br />
<span style="color:#33cccc;">document</span> doc = (<span style="color:#0000ff;">from</span> d <span style="color:#0000ff;">in</span> dataContext.documents<br />
<span style="color:#0000ff;">                                   where</span> d.COST_ID == &#8220;xxxxxxxxxx&#8221;<br />
<span style="color:#0000ff;">                                  select</span> d).First&lt;<span style="color:#33cccc;">document</span>&gt;();</p>
<p>For your information, I created the entitiy classes (e.g. document) by dragging a table from Server Explorer into the Designer. Visual Studio 2008 generated an entity class (including c# and xml files)  automatically.</p>
<p>Based on <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=337188#tabs">reported bug discussed in Microsoft website</a>, I found out the problem. I discovered that a data type defined in xml (dbml) file was System.char for a NVarChar(1) column in the database; whereas, the data type defined in the auto-generated entity class is String. The solution is to change the &#8220;System.char&#8221; to &#8220;System.string&#8221; in the dbml (xml) file.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sukasom.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sukasom.wordpress.com/578/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sukasom.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sukasom.wordpress.com/578/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sukasom.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sukasom.wordpress.com/578/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sukasom.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sukasom.wordpress.com/578/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sukasom.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sukasom.wordpress.com/578/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=578&subd=sukasom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sukasom.wordpress.com/2009/11/21/linq-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/548099d4d6075ab4d3f39cb2b0f6eda9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sukasom</media:title>
		</media:content>
	</item>
		<item>
		<title>ABAP/4 Programming for SAP book</title>
		<link>http://sukasom.wordpress.com/2009/10/11/abap4-programming-for-sap-book/</link>
		<comments>http://sukasom.wordpress.com/2009/10/11/abap4-programming-for-sap-book/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 14:58:13 +0000</pubDate>
		<dc:creator>schaiyakul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sukasom.wordpress.com/2009/10/11/abap4-programming-for-sap-book/</guid>
		<description><![CDATA[My experience reading the ABAP/4 Programming for SAP book<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=574&subd=sukasom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I had heard about ABAP for a long time. I knew that it is a programming language used in the SAP system. I did it once when I was studying the SAP BW module. I think that I should give it a try. I had seen that some companies want to hire an ABAP programmer. I am currently looking for a job. Let’s do some ABAP studying.</p>
<p>&#160;</p>
<p>I started reading from the book called&#160; “<a href="http://www.amazon.com/gp/product/0761513922?ie=UTF8&amp;tag=pommisrevie-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0761513922">Introduction to ABAP/4 Programming for SAP, Revised and Expanded Edition</a><img style="border-style:none!important;margin:0;" border="0" alt="" src="http://www.assoc-amazon.com/e/ir?t=pommisrevie-20&amp;l=as2&amp;o=1&amp;a=0761513922" width="1" height="1" />.” Interestingly, I found out that ABAP is used for 2 cases mostly. First, ABAP is used to generate report from data within the SAP system. Second, ABAP is used as an interface for import data from an external systerm into the SAP system.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sukasom.wordpress.com/574/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sukasom.wordpress.com/574/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sukasom.wordpress.com/574/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sukasom.wordpress.com/574/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sukasom.wordpress.com/574/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sukasom.wordpress.com/574/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sukasom.wordpress.com/574/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sukasom.wordpress.com/574/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sukasom.wordpress.com/574/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sukasom.wordpress.com/574/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=574&subd=sukasom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sukasom.wordpress.com/2009/10/11/abap4-programming-for-sap-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/548099d4d6075ab4d3f39cb2b0f6eda9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sukasom</media:title>
		</media:content>

		<media:content url="http://www.assoc-amazon.com/e/ir?t=pommisrevie-20&#38;l=as2&#38;o=1&#38;a=0761513922" medium="image" />
	</item>
		<item>
		<title>Celebrity Apprentice II: Wedding Dresses</title>
		<link>http://sukasom.wordpress.com/2009/07/26/celebrity-apprentice/</link>
		<comments>http://sukasom.wordpress.com/2009/07/26/celebrity-apprentice/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 13:45:27 +0000</pubDate>
		<dc:creator>schaiyakul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://sukasom.wordpress.com/?p=561</guid>
		<description><![CDATA[I am watching Celebrity Apprentice II. Today, the girl team has the advantage, because they are supposed to sell the wedding dresses. Of course, the girl team is good at it compared with the men team.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=561&subd=sukasom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was watching Celebrity Apprentice II. There were two teams: girls team and boys team. They had to sell a wedding dress. The team that makes more money wins. It is quite obvious that the girls team has an advantage. One of the girl had a wedding before, and she got her wedding stylist to help her.<br />
Additionally, both teams have to pick 125 wedding dresses from a wedding store for free to sell. The girls team picked the expensive dresses, while the boys team picked the cheap dresses. One of them in the boys team said something like &#8220;due to current economic, people would buy the cheap one.&#8221; It made me to think, &#8220;don&#8217;t the teams get the dresses for free.&#8221; Then, later on, I found out that both teams&#8217; strategy is to call their friends to come in and buy. The boys team should have picked the expensive dresses at first, so it is easier to ask someone to buy.</p>
<p>For the boys team, Tom Green got to be a project manager. I am quite wondering what Dennis Rodman is doing. He wanted to promote the wedding dress selling event, but he walked around in the neighborhood. In the end, the girl team made more money and won.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sukasom.wordpress.com/561/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sukasom.wordpress.com/561/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sukasom.wordpress.com/561/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sukasom.wordpress.com/561/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sukasom.wordpress.com/561/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sukasom.wordpress.com/561/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sukasom.wordpress.com/561/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sukasom.wordpress.com/561/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sukasom.wordpress.com/561/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sukasom.wordpress.com/561/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=561&subd=sukasom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sukasom.wordpress.com/2009/07/26/celebrity-apprentice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/548099d4d6075ab4d3f39cb2b0f6eda9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sukasom</media:title>
		</media:content>
	</item>
		<item>
		<title>Why do I want a Mac computer</title>
		<link>http://sukasom.wordpress.com/2009/07/20/why-do-i-want-a-mac-computer/</link>
		<comments>http://sukasom.wordpress.com/2009/07/20/why-do-i-want-a-mac-computer/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 13:51:09 +0000</pubDate>
		<dc:creator>schaiyakul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sukasom.wordpress.com/?p=541</guid>
		<description><![CDATA[Brief reasons why I need a Mac instead of a PC.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=541&subd=sukasom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I just bought a mac computer.  It is a <a href="http://www.amazon.com/gp/product/B001P05NKG?ie=UTF8&amp;tag=pommisrevie-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B001P05NKG">Apple MacBook Pro 13.3-Inch Laptop (2.26 GHz Intel Core 2 Duo)</a><img class="alignnone" title="wt" src="http://www.assoc-amazon.com/e/ir?t=pommisrevie-20&amp;l=as2&amp;o=1&amp;a=B001P05NKG" alt="" width="1" height="1" /> as shown below.</p>
<div id="attachment_546" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-546" title="DSC07420" src="http://sukasom.files.wordpress.com/2009/07/dsc07420.jpg?w=300&#038;h=225" alt="my MacBook Pro 13.3 inch" width="300" height="225" /><p class="wp-caption-text">my MacBook Pro 13.3 inch</p></div>
<p>Previously, my sister had bought a iMac 20-inch as shown below. I love it as well. My mom currently uses the iMAC. Because I move around the house so much to find a comfortable and quite place, so I bought the Macbook Pro. If you are serious on using Mac for your work, and you have a good place where you work here all the time. I would recommend you to get the iMac 24-inch, because the screen is so big.</p>
<div id="attachment_556" class="wp-caption alignnone" style="width: 235px"><a href="http://www.amazon.com/gp/product/B001U0OGQS?ie=UTF8&#38;tag=pommisrevie-20&#38;linkCode=as2&#38;camp=1789&#38;creative=390957&#38;creativeASIN=B001U0OGQS"><img src="http://sukasom.files.wordpress.com/2009/07/dsc07424.jpg?w=225&#038;h=300" alt="Apple iMAC 20 inch" title="DSC07424" width="225" height="300" class="size-medium wp-image-556" /></a><p class="wp-caption-text">Apple iMAC 20 inch</p></div>
<p>There are some reasons that I want a Mac computer.<br />
1. Ease of software development</p>
<p>I wanted a Mac computer, because I felt that it is easy to do a software development; for example, some tools come configured in a Mac computer already which I can access through a Terminal (kind of  DOS console in Windows) e.g. svn, ssh, ant, gcc, etc. I remembered that I had to spend time setup or configure to use those tools on Windows. Additionally, the Terminal in Mac is Unix-like, so I can practice my Unix skills e.g. how to use VI or grep command, and I can use those skills on a Linux which is Unix-like as well.</p>
<p>I have never used a Unix. You may wondering what does the term &#8220;Unix-like&#8221; mean. Both Linux and Mac behave the same as a Unix; for example, they use the same shell command e.g. cd, pwd, grep, ps, etc.<br />
Shell is important, because it is more stable than GUI. Being able to manage a lot of thing via shells is good.</p>
<p>2. Special program on a Mac<br />
MacTex is very easy to use as well. I remembered when I use TexMaker to edit a Latex document. I remembered that I use TextMaker on a Windows. A TexMaker would display a document in a PostScript viewer which is friendly to use. I can see one page at a time. I just could not do quick browsing. Then, I configured my TextMaker to convert the Latex document into  a PDF file and use the Acrobat Reader. The good thing is that I can browse through a PDF document very quickly, but the bad side is that I have open the PDF file manually. With MacTex (available only in Mac, the PDF is opened automatically, and I can skim through a document pretty quickly.</p>
<p>3. Mac software (iLife)<br />
 You do not need to buy a Mac. You can buy a Linux as well, and it is cheaper. However, there are good things about Macs over a Linux. There are some entertainment tools, multimedia content editing, and other tools which are not available on a Linux. For example, I really like the iTune, iPhoto, and iCal. I don&#8217;t know much about the multimedia content editing (e.g. GarageBand), because I have not played around with it yet. I will talk about it in the future post.</p>
<p>4. Hardware<br />
It is difficult to connect a monitor through a laptop in a regular PC (Windows or Linux). Mac has a special port which can be plugin easily to a second monitor.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sukasom.wordpress.com/541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sukasom.wordpress.com/541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sukasom.wordpress.com/541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sukasom.wordpress.com/541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sukasom.wordpress.com/541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sukasom.wordpress.com/541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sukasom.wordpress.com/541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sukasom.wordpress.com/541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sukasom.wordpress.com/541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sukasom.wordpress.com/541/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=541&subd=sukasom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sukasom.wordpress.com/2009/07/20/why-do-i-want-a-mac-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/548099d4d6075ab4d3f39cb2b0f6eda9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sukasom</media:title>
		</media:content>

		<media:content url="http://www.assoc-amazon.com/e/ir?t=pommisrevie-20&#38;l=as2&#38;o=1&#38;a=B001P05NKG" medium="image">
			<media:title type="html">wt</media:title>
		</media:content>

		<media:content url="http://sukasom.files.wordpress.com/2009/07/dsc07420.jpg?w=300" medium="image">
			<media:title type="html">DSC07420</media:title>
		</media:content>

		<media:content url="http://sukasom.files.wordpress.com/2009/07/dsc07424.jpg?w=225" medium="image">
			<media:title type="html">DSC07424</media:title>
		</media:content>
	</item>
		<item>
		<title>Learn German from VW ads</title>
		<link>http://sukasom.wordpress.com/2009/06/21/learn-german-from-vw-ads/</link>
		<comments>http://sukasom.wordpress.com/2009/06/21/learn-german-from-vw-ads/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 14:17:15 +0000</pubDate>
		<dc:creator>schaiyakul</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[entrepreneurship]]></category>
		<category><![CDATA[deutsch]]></category>
		<category><![CDATA[fahren]]></category>
		<category><![CDATA[german]]></category>
		<category><![CDATA[verb]]></category>

		<guid isPermaLink="false">http://sukasom.wordpress.com/?p=530</guid>
		<description><![CDATA[&#8220;Schade, dass man nach Amerika nicht fahren kann&#8221; probably means &#8220;what a pity that a man can not drive to America.&#8221; At first, I thought that it meant &#8220;what a pity that a man can not travel to Americal&#8221; which does not make sense, because a man can travel to America by an airplane. The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=530&subd=sukasom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div id="attachment_533" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-533" title="Pom-N702370" src="http://sukasom.files.wordpress.com/2009/06/pom-n7023701.jpg?w=300&#038;h=225" alt="Volkswagen Ads" width="300" height="225" /><p class="wp-caption-text">Volkswagen Ads</p></div>
<p>&#8220;Schade, dass man nach Amerika nicht fahren kann&#8221; probably means &#8220;what a pity that a man can not drive to America.&#8221; At first, I thought that it meant &#8220;what a pity that a man can not travel to Americal&#8221; which does not make sense, because a man can travel to America by an airplane. The important verb word here is &#8220;<a href="http://dict.tu-chemnitz.de/dings.cgi?lang=en&amp;service=deen&amp;opterrors=0&amp;optpro=0&amp;query=fahren&amp;iservice=&amp;comment=&amp;email=">fahren</a>&#8221; which means &#8220;travel.&#8221; Then, I realized that the &#8220;fahren&#8221; word could mean &#8220;drive&#8221; as well. Then, it made sense to me.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sukasom.wordpress.com/530/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sukasom.wordpress.com/530/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sukasom.wordpress.com/530/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sukasom.wordpress.com/530/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sukasom.wordpress.com/530/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sukasom.wordpress.com/530/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sukasom.wordpress.com/530/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sukasom.wordpress.com/530/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sukasom.wordpress.com/530/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sukasom.wordpress.com/530/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=530&subd=sukasom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sukasom.wordpress.com/2009/06/21/learn-german-from-vw-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/548099d4d6075ab4d3f39cb2b0f6eda9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sukasom</media:title>
		</media:content>

		<media:content url="http://sukasom.files.wordpress.com/2009/06/pom-n7023701.jpg?w=300" medium="image">
			<media:title type="html">Pom-N702370</media:title>
		</media:content>
	</item>
		<item>
		<title>Lost in Translation</title>
		<link>http://sukasom.wordpress.com/2009/04/13/lost-in-translation/</link>
		<comments>http://sukasom.wordpress.com/2009/04/13/lost-in-translation/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 06:02:31 +0000</pubDate>
		<dc:creator>schaiyakul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sukasom.wordpress.com/?p=496</guid>
		<description><![CDATA[My experineces regarding the use of new language.
German
1) Last month, I was in the terminal in Frankfurt airport. The airplane was late for 2 hours, so the airline  gave the passengers snacks and drinks. The airline also brought a big shelve of magazines. I heard, &#8220;Alles muss raus,&#8221; so I though they meant, &#8220;everything must [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=496&subd=sukasom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>My experineces regarding the use of new language.</p>
<p>German</p>
<p>1) Last month, I was in the terminal in Frankfurt airport. The airplane was late for 2 hours, so the airline  gave the passengers snacks and drinks. The airline also brought a big shelve of magazines. I heard, &#8220;Alles muss raus,&#8221; so I though they meant, &#8220;everything must go.&#8221; I went to take a lot of magazines, but then I realized that they meant, &#8220;everyone get out.&#8221; The ground workers were clearing the passengers to move out from the gate area. The ground workers wanted to check tickets of each passenger before the passengers can move into the gate area.</p>
<p>At first, I thought that they mean, &#8220;everything must go,&#8221; because they put out snacks, drinks and magazines. I remembered that when a store is closed, a sign written &#8220;alles muss raus&#8221;  is put in front of the store to advertise goods.</p>
<p>2) The word &#8220;Sie&#8221;  in German has many meanings. &#8220;Sie,&#8221; when starting a sentence,  could mean &#8220;they&#8221;, &#8220;you,&#8221; or &#8220;she.&#8221; I was speaking to one teacher telling her about my friends, and the teacher talked to me and used the word &#8220;Sie.&#8221; My German was very weak back then. I was not sure what the exact meaning that she meant. If I could catch the form of the verb used, I might be able to determine the exact meaning, so I asked back something like, &#8220;You mean Sie (you) or Sie (they). </p>
<p>English</p>
<p>1) When I was a kid, I saw a westener come toward me and asked me if I can speak English. At that time, I just came out from the English course. I answered him, &#8220;yes.&#8221; However, after that I did not understand what he said. It&#8217;s quite funny. I should have said, &#8220;no.&#8221;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sukasom.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sukasom.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sukasom.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sukasom.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sukasom.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sukasom.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sukasom.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sukasom.wordpress.com/496/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sukasom.wordpress.com/496/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sukasom.wordpress.com/496/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=496&subd=sukasom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sukasom.wordpress.com/2009/04/13/lost-in-translation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/548099d4d6075ab4d3f39cb2b0f6eda9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sukasom</media:title>
		</media:content>
	</item>
		<item>
		<title>SAP BW/SEM online course</title>
		<link>http://sukasom.wordpress.com/2009/04/13/sap-bwsem-online-course/</link>
		<comments>http://sukasom.wordpress.com/2009/04/13/sap-bwsem-online-course/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 05:18:52 +0000</pubDate>
		<dc:creator>schaiyakul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://sukasom.wordpress.com/?p=485</guid>
		<description><![CDATA[Last semester of my master study, I had taken the SAP online course from U. of Duisburg-Essen called, &#8220;Introduction to SAP BW/SEM (Einführung in SAP BW/SEM)&#8221; focussing on SAP BW and SEM modules.  This course is no longer offered anymore, but there is a new course called, &#8220;Introduction to SAP BI (Einführung in SAP BI)&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=485&subd=sukasom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Last semester of my master study, I had taken the SAP online course from U. of Duisburg-Essen called, &#8220;Introduction to SAP BW/SEM (Einführung in SAP BW/SEM)&#8221; focussing on SAP BW and SEM modules.  This course is no longer offered anymore, but there is a new course called, &#8220;Introduction to SAP BI (<a href="http://sap.wip.uni-due.de/live/Einfuehrung-in-SAP-BW-SEM/sap-kurs-bw-sem.aspx">Einführung in SAP BI)</a>&#8221; focussing solely on SAP BW.</p>
<p>&nbsp;</p>
<p> The cost of the course is 450 EUR. It was a lot of money for me. I think that it would be more expensive If I am not a student. Anyway, I could experience and learn the SAP while I was a student. </p>
<p>About about my experience taking this course, I liked the course. Students are required to complete exercises even though there are solution or answers to the exercises. I have an opportunity to learn the basic of  BW (Business Warehouse) and SEM (Strategic Enterprise Management) modules. There are scripts which contain the theory part and the practical part mixed together used by students to study at their own pace. </p>
<p>The course is German. I moved slowly at the beginning due to my weakness in German. I spent sometimes opening a dictionary and translating text. It paid off well later. I spent less time opening a dictionary and translating text later.</p>
<p>For BW module, I have known the data warehouse concept before from my bachelor, so it helps me to quickly understand the theory part including data cube and star schema (kind of a design of tables in a data warehouse). The theory part is partially based on or similar to the &#8220;<a href="http://www.winfobase.de/lehre/wb_material_archiv.nsf/intern01/672F00E8F45F85A0C1256C80005B28F4/$FILE/Theorieskript%20BW.pdf">Data Warehousing mit dem SAP Business Information Warehouse</a>&#8220; theory script from Technical University of Munich (Technische Universität München). For the practical part, it was quite frustrating in the beginning to learn about various terms used in SAP BW including transfer structure, communication structure, data source, info source, data object, update rule, transfer rule, etc. Anyway, I was glad that I could overcome it and finish the course. You may read the &#8220;<a href="http://tobateam.de/downloads/SAPgrundlagen.pdf">SAP BW Grundlagen (p. 29)</a>&#8221; slides in German which is useful for explaning terms used in SAP BW.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sukasom.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sukasom.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sukasom.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sukasom.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sukasom.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sukasom.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sukasom.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sukasom.wordpress.com/485/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sukasom.wordpress.com/485/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sukasom.wordpress.com/485/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=485&subd=sukasom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sukasom.wordpress.com/2009/04/13/sap-bwsem-online-course/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/548099d4d6075ab4d3f39cb2b0f6eda9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sukasom</media:title>
		</media:content>
	</item>
		<item>
		<title>Some German words are built by combining other words</title>
		<link>http://sukasom.wordpress.com/2008/10/25/some-german-words-are-built-by-combining-other-words/</link>
		<comments>http://sukasom.wordpress.com/2008/10/25/some-german-words-are-built-by-combining-other-words/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 17:49:30 +0000</pubDate>
		<dc:creator>schaiyakul</dc:creator>
				<category><![CDATA[German Language (Deutsch)]]></category>
		<category><![CDATA[deutsch]]></category>
		<category><![CDATA[german]]></category>

		<guid isPermaLink="false">http://sukasom.wordpress.com/?p=434</guid>
		<description><![CDATA[I learned deutsch (German) today. It is better for me to write it down, so I do not forget.
1)  word + word
There are some words in Germany built by combining other words. For example, the &#8220;züruckbezahlen&#8221; (pays back) word   consists of two words: &#8220;zurück&#8221; (back) and &#8220;bezahlen&#8221; (pay). This word is listed in dictionaries. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=434&subd=sukasom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I learned deutsch (German) today. It is better for me to write it down, so I do not forget.</p>
<p>1)  word + word</p>
<p>There are some words in Germany built by combining other words. For example, the &#8220;<span style="color:#0000ff;">züruckbezahlen</span>&#8221; (pays back) word   consists of two words: &#8220;<span style="color:#0000ff;">zurück</span>&#8221; (back) and &#8220;<span style="color:#0000ff;">bezahlen</span>&#8221; (pay). This word is listed in dictionaries. However, there are some combined words  not listed in dictionaries which could be quite frustrating for a new beginner when he or she can not find the combined word meaning from dictionaries.</p>
<p>There are words which have different meanings when combining it together. For example, the &#8220;<span style="color:#0000ff;">sitzen bleiben</span>&#8221; means to sit on the chair, and &#8220;<span style="color:#0000ff;">sitzenbleiben</span>&#8221; means to repeat the course in the school again.</p>
<p>There is a joke. There are two sentences. Words are the same. They are written a bit differently. They have different meaning. </p>
<p>- <span style="color:#0000ff;">Ich gehe in die Klasse, um dort sitzen zu bleiben</span>. (I go into the class just to sit there.)</p>
<p>- <span style="color:#0000ff;">Ich gehe in die Klasse, um dort sitzenzubleiben</span>. (I go into the class to review the learned material again there)</p>
<p>A kid may say that I am going into the class just to sit there, but their parents may though that their child goes into the class to study. </p>
<p>2) word + one character + word</p>
<p>Sometimes, two words are connected together with a single character. For example, the &#8220;<span style="color:#0000ff;">Wirtschaftskrise</span>&#8221; (Economic crisis) has a character &#8220;<span style="color:#0000ff;">s</span>&#8221; in the middle to connect &#8220;<span style="color:#0000ff;">Wirtschaft</span>&#8221; and &#8220;<span style="color:#0000ff;">Krise</span>.&#8221; The actual meaning is &#8220;Krise der Wirtschaft&#8221; (Crisis of the econimic). If you understand genitiv, then you would understand the function of the article &#8220;der&#8221; here which means &#8220;of.&#8221;  Another example is &#8220;Wirtschaftslage&#8221; (&#8220;Lage der Wirtschaft,&#8221; Situation of economic).</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sukasom.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sukasom.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sukasom.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sukasom.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sukasom.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sukasom.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sukasom.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sukasom.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sukasom.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sukasom.wordpress.com/434/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=434&subd=sukasom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sukasom.wordpress.com/2008/10/25/some-german-words-are-built-by-combining-other-words/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/548099d4d6075ab4d3f39cb2b0f6eda9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sukasom</media:title>
		</media:content>
	</item>
		<item>
		<title>Scarce and Abundance</title>
		<link>http://sukasom.wordpress.com/2008/10/20/scarce-and-abundance/</link>
		<comments>http://sukasom.wordpress.com/2008/10/20/scarce-and-abundance/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 15:38:07 +0000</pubDate>
		<dc:creator>schaiyakul</dc:creator>
				<category><![CDATA[entrepreneurship]]></category>

		<guid isPermaLink="false">http://sukasom.wordpress.com/?p=382</guid>
		<description><![CDATA[First of all, I am not an expert in economic. I just write what I think. It maybe incorrect.
I remembered that I attend the Informatics Entrepreneurship II course, and there was a student asking a teacher about how could the music industry deals with the copyright infringement problem. The music industry was losing money, because [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=382&subd=sukasom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>First of all, I am not an expert in economic. I just write what I think. It maybe incorrect.</p>
<p>I remembered that I attend the <a href="http://www.tech-entrepreneur.org/ie2/">Informatics Entrepreneurship II</a> course, and there was a student asking a teacher about how could the music industry deals with the copyright infringement problem. The music industry was losing money, because people do not buy their CDs. The guest speaker introduces the concept of scarce and abundance. At any given time for something, there are something a little (scarce), and there are something a lot (abundance). For example, for the music industry, the abundance is the music available from the Internet, and the scarce could be the concert ticket.</p>
<p>In my opinion, it is necessary for an entrepreneur to detect what is scarce and abundant. I agree with the guest speaker on the scarce and abundance concept. </p>
<p>In 1997, there was  an economic crisis in Thailand. Before the crisis, the real estate was bubble. People bought real estate (houses or land) for investment, but they did not buy real estate for living or do something. They hoped that the prices would increase. The prices of real estate were indeed increased. However, after the economic crisis, the prices drop significantly. People do not have money to pay back to the bank. When people can not pay back, the banks took the real estate properties. The abundance would be a lot of cheap real estate. The scarce would be the money. If anyone had bought the cheap real estate properties at that time, they could sell at very high price now, because the real estate business has improved. The situation is similar to the credid crisis occurred in USA recently. If any one has money, they can buy a house cheaply. </p>
<p> </p>
<p> </p>
<p> </p>
<p>If I remembered correctly, the guest speaker also mentioned about the situation in 2001 for IT companies. A lot of companies laid out software developers. Abundance would be the programmers. If anyone with money, they can start an IT company cheaply by hiring those laid out  programmers cheaply. When the economic is back, they can sell their IT products.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sukasom.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sukasom.wordpress.com/382/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sukasom.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sukasom.wordpress.com/382/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sukasom.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sukasom.wordpress.com/382/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sukasom.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sukasom.wordpress.com/382/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sukasom.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sukasom.wordpress.com/382/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=382&subd=sukasom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sukasom.wordpress.com/2008/10/20/scarce-and-abundance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/548099d4d6075ab4d3f39cb2b0f6eda9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sukasom</media:title>
		</media:content>
	</item>
		<item>
		<title>Curious about the Correlation example in Microsoft Windows Workflow Foundation Step by Step book</title>
		<link>http://sukasom.wordpress.com/2008/10/20/correlation-example-in-microsoft-windows-workflow-foundation-step-by-step-book/</link>
		<comments>http://sukasom.wordpress.com/2008/10/20/correlation-example-in-microsoft-windows-workflow-foundation-step-by-step-book/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 09:18:56 +0000</pubDate>
		<dc:creator>schaiyakul</dc:creator>
				<category><![CDATA[Microsoft and .NET]]></category>
		<category><![CDATA[Windows Workflow]]></category>
		<category><![CDATA[correlation parameter]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[Microsoft Windows Workflow Foundation Step by Step]]></category>
		<category><![CDATA[window workflow]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://sukasom.wordpress.com/?p=424</guid>
		<description><![CDATA[I had read the Microsoft Windows Workflow Foundation Step by Step book.  Overall, it is a good reference book.
&#160;
However, I am not quite sure about the application example illustrated in the Microsoft Windows Workflow Foundation Step by Step book in &#8220;External Data Communication&#8221; section. The example may not illustrate the true purpose of using the correlation parameter.
The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=424&subd=sukasom&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I had read the <a title="Microsoft Windows Workflow Foundation Step by Step" href="http://safari.oreilly.com/9780735623354/part04#X2ludGVybmFsX1NlY3Rpb25Db250ZW50P3htbGlkPTk3ODA3MzU2MjMzNTQvY2gxN2xldjFzZWM2">Microsoft Windows Workflow Foundation Step by Step book.</a>  Overall, it is a good reference book.</p>
<p>&nbsp;</p>
<p>However, I am not quite sure about the application example illustrated in the Microsoft Windows Workflow Foundation Step by Step book in &#8220;External Data Communication&#8221; section. The example may not illustrate the true purpose of using the correlation parameter.</p>
<p>The example is about a process of a truck. One workflow has only one truck. There could be many workflows in the system. Each workflow has one truck ID. A truck ID is part of the correlation parameter. </p>
<p>Perhaps, I am wrong. It seems to me that the application try to use the truck ID to differentiate different workflows, so the runtime could send the message to the correct workflow.  I think that the runtime uses Guid which is a workflow instance ID stored in the EventArgs object. The EventArgs is created when the runtime fires an event to the workflow. This Guid is used to differentiate between different workflows, but not the correlation parameter.</p>
<p>Activities in the same conversation are chained together through the value of the correlation parameter.  A better example of using the correlation parameter could be that there are many tasks running parallel in a workflow. Note, this example could be found in my previous blog, &#8220;<a rel="bookmark" href="http://sukasom.wordpress.com/2008/10/18/correlation-parameters-in-windows-workflow/">Communication Between Inside And Outside Of A Workfow In Windows Workflow</a>.&#8221; Each task sends a request and waits for response. Each task has uniquely Task ID. The response sent by task 1 would go back to task 1. The response sent by task 2 would go back to task 2. In this case, there are two values of Task ID which are 1 and 2. The example found in the book simply has  only one Truck ID for the whole workflow which is not make sense.</p>
<p>I think that the objective of the correlation parameter is to bring back an event from outside to the correct activity in a workflow, not to bring back an event to the correct workflow.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sukasom.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sukasom.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sukasom.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sukasom.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sukasom.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sukasom.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sukasom.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sukasom.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sukasom.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sukasom.wordpress.com/424/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sukasom.wordpress.com&blog=2809957&post=424&subd=sukasom&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sukasom.wordpress.com/2008/10/20/correlation-example-in-microsoft-windows-workflow-foundation-step-by-step-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/548099d4d6075ab4d3f39cb2b0f6eda9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Sukasom</media:title>
		</media:content>
	</item>
	</channel>
</rss>