<?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>MicroBlog</title>
	<atom:link href="http://hwalung.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://hwalung.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Mon, 25 Oct 2010 17:04:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='hwalung.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>MicroBlog</title>
		<link>http://hwalung.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://hwalung.wordpress.com/osd.xml" title="MicroBlog" />
	<atom:link rel='hub' href='http://hwalung.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Programming in Ruby</title>
		<link>http://hwalung.wordpress.com/2010/04/09/programming-in-ruby/</link>
		<comments>http://hwalung.wordpress.com/2010/04/09/programming-in-ruby/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 17:49:48 +0000</pubDate>
		<dc:creator>husylvan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hwalung.wordpress.com/2010/04/09/programming-in-ruby/</guid>
		<description><![CDATA[Ruby is an genuine object-oriented language, meaning every thing in Ruby is an object or a class that is a combination of instance variables and instance methods.     &#8220;gin joint&#8221;.length    9 &#8220;Rick&#8221;.index(&#8216;c&#8217;)    2 -123.abs    123     The difference between a single quote literal and a double quote literal is how [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=198&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ruby is an genuine object-oriented language, meaning every thing in Ruby is an object or a class that is a combination of instance variables and instance methods.
</p>
<p> <br />
 </p>
<div style="margin-left:24pt;">
<table style="border-collapse:collapse;" border="0">
<col>
<col>
<col>
<tbody valign="top">
<tr>
<td style="border-top:solid #a3a3a3 1pt;border-left:solid #a3a3a3 1pt;border-bottom:solid #a3a3a3 1pt;border-right:solid #a3a3a3 1pt;padding:5px;">
<p>&#8220;gin joint&#8221;.length</p>
</td>
<td style="border-top:solid #a3a3a3 1pt;border-left:none;border-bottom:solid #a3a3a3 1pt;border-right:solid #a3a3a3 1pt;padding:5px;">
<p>  </p>
</td>
<td style="border-top:solid #a3a3a3 1pt;border-left:none;border-bottom:solid #a3a3a3 1pt;border-right:solid #a3a3a3 1pt;padding:5px;">
<p>9</p>
</td>
</tr>
<tr>
<td style="border-top:none;border-left:solid #a3a3a3 1pt;border-bottom:solid #a3a3a3 1pt;border-right:solid #a3a3a3 1pt;padding:5px;">
<p>&#8220;Rick&#8221;.index(&#8216;c&#8217;)</p>
</td>
<td style="border-top:none;border-left:none;border-bottom:solid #a3a3a3 1pt;border-right:solid #a3a3a3 1pt;padding:5px;">
<p>  </p>
</td>
<td style="border-top:none;border-left:none;border-bottom:solid #a3a3a3 1pt;border-right:solid #a3a3a3 1pt;padding:5px;">
<p>2</p>
</td>
</tr>
<tr>
<td style="border-top:none;border-left:solid #a3a3a3 1pt;border-bottom:solid #a3a3a3 1pt;border-right:solid #a3a3a3 1pt;padding:5px;">
<p>-123.abs</p>
</td>
<td style="border-top:none;border-left:none;border-bottom:solid #a3a3a3 1pt;border-right:solid #a3a3a3 1pt;padding:5px;">
<p>  </p>
</td>
<td style="border-top:none;border-left:none;border-bottom:solid #a3a3a3 1pt;border-right:solid #a3a3a3 1pt;padding:5px;">
<p>123</p>
</td>
</tr>
</tbody>
</table>
</div>
<p style="margin-left:27pt;"> <br />
 </p>
<p>The difference between a single quote literal and a double quote literal is how much Ruby processes it when it gets created.
</p>
<p style="margin-left:27pt;">A double quote literal looks for substitutes for an escape sequence and # (…) constructs.
</p>
<p> <br />
 </p>
<p>The value returned by Ruby method is the value of the last expression evaluated, so don&#8217;t need a return.
</p>
<p> <br />
 </p>
<p>Ruby conventions:
</p>
<p style="margin-left:27pt;">A variable starts with a lower case ==&gt; local variable
</p>
<p style="margin-left:27pt;">A variable or name starts with an upper case ==&gt; class name, module name, or constant variable
</p>
<p style="margin-left:27pt;">A variable starts with $ ==&gt; global variable
</p>
<p style="margin-left:27pt;">A variable starts with @ ==&gt; instance variable
</p>
<p style="margin-left:27pt;">A variable starts with @@ ==&gt; class variable
</p>
<p> <br />
 </p>
<p>Arrays and Hashes
</p>
<p> <br />
 </p>
<p>Both are index collections and can take any mixed type of objects. The only difference between them is arrays&#8217; indexes must be integer whereas hashes indexes can be any kind of objects.
</p>
<p> <br />
 </p>
<p style="margin-left:27pt;">array = Array.new
</p>
<p style="margin-left:27pt;">array = []
</p>
<p style="margin-left:27pt;">array = [1, 'K', 'It's a string', 3.14]
</p>
<p style="margin-left:27pt;">array = %w[cat dog apple]
</p>
<p style="margin-left:27pt;"> <br />
 </p>
<p style="margin-left:27pt;">hash = Hash.new
</p>
<p style="margin-left:27pt;">hash = Hash.new(0)
</p>
<p style="margin-left:27pt;">hash = {0 =&gt; &#8216;cat&#8217;, &#8216;dog&#8217; =&gt; &#8216;bark&#8217;, 9 =&gt; -9}
</p>
<p> <br />
 </p>
<p style="margin-left:3pt;">Control Structures
</p>
<p style="margin-left:3pt;"> <br />
 </p>
<p style="margin-left:3pt;">Statement modifiers
</p>
<p style="margin-left:30pt;">puts &#8220;Ich liebe dich&#8221; if myLove == herLove
</p>
<p style="margin-left:30pt;">puts &#8220;love me only&#8221; while myAge &lt; 1000
</p>
<p style="margin-left:30pt;">
 </p>
<p style="margin-left:30pt;">Regular Expression
</p>
<p style="margin-left:30pt;">As you expect, regular expressions are objects  in Ruby. The match operator =~ returns the  position it first found or nil if not found.
</p>
<p style="margin-left:3pt;">
 </p>
<p style="margin-left:30pt;">individuated s yy:mm:dd  1P(erllython)l e Perl or Python
</p>
<p style="margin-left:30pt;">&#8216;Ruby of *Peril x Ruby and zero or one  move character and  Perl
</p>
<p style="margin-left:30pt;">(Ruby 1st Perl/ 4 Ruby and one or move  white space and Perl
</p>
<p style="margin-left:30pt;">if line =~ (perl python
</p>
<p style="margin-left:74pt;">puts &#8221; You got me.&#8221;
</p>
<p style="margin-left:30pt;">end
</p>
<p style="margin-left:30pt;">pos = sub (lperll, &#8216;ruby&#8217;) H replace first perl  with ruby
</p>
<p style="margin-left:30pt;">pos = grubs (Python.&#8217; Ruby) * replace every  Python with Ruby
</p>
<p style="margin-left:30pt;">
 </p>
<p style="margin-left:30pt;">
 </p>
<p style="margin-left:30pt;">Blocks and Iterators
</p>
<p style="margin-left:30pt;"> <br />
 </p>
<p style="margin-left:30pt;"><span style="font-size:14pt;">Code blocks are chunks of code that you can associate with method invocations. Chunks of code are between braces or &#8216;do … end&#8217;. Once you&#8217;ve created a block, you can associate it with a call to a method. You might be better off thinking of the block and the method as coroutines, which transfer control back and forth between themselves.<br />
</span></p>
<p style="margin-left:30pt;"> <br />
 </p>
<p style="margin-left:3pt;"> <br />
 </p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">Reading and &#8216;Riting<br />
</span></p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">The gets routine has a side effect; as well as returning the last line read, it also stores the last line into the global variable $_.<br />
</span></p>
<p> <br />
 </p>
<p style="margin-left:27pt;"><span style="font-size:14pt;">while gets<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">if /Ruby/<br />
</span></p>
<p style="margin-left:81pt;"><span style="font-size:14pt;">print<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">end<br />
</span></p>
<p style="margin-left:27pt;"><span style="font-size:14pt;">end<br />
</span></p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">ARGF represents a stream input.<br />
</span></p>
<p> <br />
 </p>
<p style="margin-left:27pt;"><span style="font-size:14pt;">ARGF.each { |line| print line unless line =~ /ruby/ }<br />
</span></p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">Classes, Objects, and Variables<br />
</span></p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">class &#8211; how to declare, define, create,<br />
</span></p>
<p><span style="font-size:14pt;">To create a new class object, invoke the <em>new</em> method of the class. <em>Song</em>.<em>new</em> calls the class&#8217; <em>initialize</em> method to set up the class&#8217; internal state.<br />
</span></p>
<p> <br />
 </p>
<p style="margin-left:27pt;"><span style="font-size:14pt;">class Song<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">def initialize(name, artist, duration)<br />
</span></p>
<p style="margin-left:81pt;"><span style="font-size:14pt;">@name = name<br />
</span></p>
<p style="margin-left:81pt;"><span style="font-size:14pt;">@artist = artist<br />
</span></p>
<p style="margin-left:81pt;"><span style="font-size:14pt;">@duration = duration<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">end<br />
</span></p>
<p style="margin-left:27pt;"><span style="font-size:14pt;">end<br />
</span></p>
<p style="margin-left:27pt;"> <br />
 </p>
<p style="margin-left:27pt;"><span style="font-size:14pt;">aSong = Song.new(&#8216;Let it be&#8217;, &#8216;The Beatles&#8217;, 310)<br />
</span></p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">The <em>inspect</em> message dumps a object&#8217;s id and instance variables. While the message&#8217;s default formatting leaves something to be desired, the <em>to_s</em> message can be overridden.<br />
</span></p>
<p> <br />
 </p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">Inheritance and Messages<br />
</span></p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">Inheritance allows you to create a class that is a refinement or specialization of another class. The less than character(&lt;) lets you inherit from another class. Make sure that you override the <em>initialize</em> method and the <em>to_s</em> method properly. You may not want a subclass directly to access the instance variables of its super class to set up because it couples between them; that&#8217;s a bad programming style. Rather, use <em>super</em> in the subclass for decoupling.<br />
</span></p>
<p> <br />
 </p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">Inheritance and Mixins<br />
</span></p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">Multiple inheritance can be dangerous since the inheritance hierarchy can become ambiguous. In real life, however, things often inherit attributes from multiple sources. A Ruby class can only have a single direct parent, but Ruby has a technique called Mixins to provide a multiple-inheritance-like functionality.<br />
</span></p>
<p> <br />
 </p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">Objects and Attributes<br />
</span></p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">An object is solely responsible for maintaining its own consistency. Ruby provides a convenient way of creating getters and setters.<br />
</span></p>
<p> <br />
 </p>
<p style="margin-left:27pt;"><span style="font-size:14pt;">class Song<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">attr_reader :name, :artist, :duration<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">attr_writer :name, :artist, :duration<br />
</span></p>
<p style="margin-left:27pt;"><span style="font-size:14pt;">end<br />
</span></p>
<p> <br />
 </p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">Virtual Attributes<br />
</span></p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">Use attribute methods to create a virtual instance variable that seems like a real instance variable to outside of the world.<br />
</span></p>
<p> <br />
 </p>
<p style="margin-left:27pt;"><span style="font-size:14pt;">class Song<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">def durationInMinute<br />
</span></p>
<p style="margin-left:81pt;"><span style="font-size:14pt;">@duratoin / 60.0<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">end<br />
</span></p>
<p style="margin-left:54pt;"> <br />
 </p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">def durationInMinute=(value)<br />
</span></p>
<p style="margin-left:81pt;"><span style="font-size:14pt;">@duration = (value * 60).to_i<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">end<br />
</span></p>
<p style="margin-left:27pt;"><span style="font-size:14pt;">end<br />
</span></p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">The setter here is like an operator overloading in C++. Type casting is different from C-like languages. Ruby deals everything as an object, even a number, so Ruby provides the<em> to_i</em> method for type casting.<br />
</span></p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">In his landmark book Object-Oriented Software Construction , Bertrand Meyer calls this the Uniform Access Principle. By hiding the difference between instance variables and calculated values, you are shielding the rest of the world from the implementation of your class. You&#8217;re free to change how things work in the future without impacting the millions of lines of code that use your class. This is a big win.<br />
</span></p>
<p> <br />
 </p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">Class Variables and Class Methods<br />
</span></p>
<p> <br />
 </p>
<p style="margin-left:27pt;"><span style="font-size:14pt;">class Song<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">@@plays = 0         # a class variable<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">MaxPlays = 50       # a class constant variable<br />
</span></p>
<p style="margin-left:54pt;"> <br />
 </p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">def Song.initPlays<br />
</span></p>
<p style="margin-left:81pt;"><span style="font-size:14pt;">@@plays = 0<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">end<br />
</span></p>
<p style="margin-left:27pt;"><span style="font-size:14pt;">end<br />
</span></p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">For class variables, by convention, Ruby puts <em>@@</em> in front of a class variable name.<br />
</span></p>
<p> <br />
 </p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">Singletons and Other Constructors<br />
</span></p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">A singleton is an object that is singly created from a class.<br />
</span></p>
<p> <br />
 </p>
<p style="margin-left:27pt;"><span style="font-size:14pt;">class Logger<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">private_class_method = new<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">@@logger = nil<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">def Logger.create<br />
</span></p>
<p style="margin-left:81pt;"><span style="font-size:14pt;">@@logger = new unless @@logger<br />
</span></p>
<p style="margin-left:81pt;"><span style="font-size:14pt;">@@logger<br />
</span></p>
<p style="margin-left:54pt;"><span style="font-size:14pt;">end<br />
</span></p>
<p style="margin-left:27pt;"><span style="font-size:14pt;">end<br />
</span></p>
<p> <br />
 </p>
<p><span style="font-size:14pt;">The Logger class can not be created by the conventional way using the <em>new</em> method. Also class methods can be used as pseudo-constructors.<br />
</span></p>
<p> <br />
 </p>
<p> <br />
 </p>
<p style="margin-left:21pt;"><span style="color:black;font-size:14pt;"><strong>Access Control<br />
</strong></span></p>
<p style="margin-left:21pt;"> <br />
 </p>
<ul>
<li><span style="color:black;font-size:14pt;"><strong>Public methods</strong> can be called by anyone&#8212;there is no access control. Methods are public by default (except for initialize, which is always private).<br />
</span></li>
<li><span style="color:black;font-size:14pt;"><strong>Protected methods</strong> can be invoked only by objects of the defining class and its subclasses. Access is kept within the family.<br />
</span></li>
<li>
<div><span style="color:black;font-size:14pt;"><strong>Private methods</strong> cannot be called with an explicit receiver. Because you cannot specify an object when using them, private methods can be called only in the defining class and by direct descendents within that same object.<br />
</span></div>
<p> <br />
 </p>
<p><span style="color:black;font-size:14pt;">What does it mean by direct descendents?<br />
</span></p>
<p><span style="font-size:14pt;"><span style="color:black;">If a method is protected, it may be called by <em>any</em> instance of the defining class or its subclasses. If a method is private, it may be called only within the context of the calling object&#8212;it is never possible to access another object&#8217;s private methods directly, even if the object is of the same class as the caller.</span><br />
				</span></p>
<p> <br />
 </p>
<p><span style="color:black;font-size:14pt;">Access control is determined dynamically, as the program runs, not statically.<br />
</span></p>
</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hwalung.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hwalung.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hwalung.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hwalung.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hwalung.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hwalung.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hwalung.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hwalung.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hwalung.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hwalung.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hwalung.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hwalung.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hwalung.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hwalung.wordpress.com/198/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=198&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hwalung.wordpress.com/2010/04/09/programming-in-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7da58497c980210bc790108538ff06fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">husylvan</media:title>
		</media:content>
	</item>
		<item>
		<title>test posting via email</title>
		<link>http://hwalung.wordpress.com/2010/04/09/test-posting-via-email/</link>
		<comments>http://hwalung.wordpress.com/2010/04/09/test-posting-via-email/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 17:35:39 +0000</pubDate>
		<dc:creator>husylvan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hwalung.wordpress.com/?p=196</guid>
		<description><![CDATA[I really need to write out my thoughts.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=196&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I really need to write out my thoughts.</p>
<p><a href="http://hwalung.files.wordpress.com/2010/04/vladstudio_where_snowflakes_are_born_1440x900.jpg"><img src="http://hwalung.files.wordpress.com/2010/04/vladstudio_where_snowflakes_are_born_1440x900.jpg?w=450&#038;h=281" alt="" title="vladstudio where snowflakes are born 1440x900" width="450" height="281" class="alignnone size-full wp-image-197" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hwalung.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hwalung.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hwalung.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hwalung.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hwalung.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hwalung.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hwalung.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hwalung.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hwalung.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hwalung.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hwalung.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hwalung.wordpress.com/196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hwalung.wordpress.com/196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hwalung.wordpress.com/196/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=196&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hwalung.wordpress.com/2010/04/09/test-posting-via-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7da58497c980210bc790108538ff06fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">husylvan</media:title>
		</media:content>

		<media:content url="http://hwalung.files.wordpress.com/2010/04/vladstudio_where_snowflakes_are_born_1440x900.jpg" medium="image">
			<media:title type="html">vladstudio where snowflakes are born 1440x900</media:title>
		</media:content>
	</item>
		<item>
		<title>test posting</title>
		<link>http://hwalung.wordpress.com/2009/09/04/test-posting/</link>
		<comments>http://hwalung.wordpress.com/2009/09/04/test-posting/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 20:49:14 +0000</pubDate>
		<dc:creator>husylvan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hwalung.wordpress.com/2009/09/04/test-posting/</guid>
		<description><![CDATA[writing from windows live writer.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=193&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>writing from windows live writer.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hwalung.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hwalung.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hwalung.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hwalung.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hwalung.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hwalung.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hwalung.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hwalung.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hwalung.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hwalung.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hwalung.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hwalung.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hwalung.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hwalung.wordpress.com/193/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=193&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hwalung.wordpress.com/2009/09/04/test-posting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7da58497c980210bc790108538ff06fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">husylvan</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://hwalung.wordpress.com/2009/08/04/171/</link>
		<comments>http://hwalung.wordpress.com/2009/08/04/171/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 01:39:57 +0000</pubDate>
		<dc:creator>husylvan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hwalung.wordpress.com/2009/08/04/171/</guid>
		<description><![CDATA[Imagine that something good never happened.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=171&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Imagine that something good never happened.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hwalung.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hwalung.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hwalung.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hwalung.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hwalung.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hwalung.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hwalung.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hwalung.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hwalung.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hwalung.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hwalung.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hwalung.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hwalung.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hwalung.wordpress.com/171/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=171&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hwalung.wordpress.com/2009/08/04/171/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7da58497c980210bc790108538ff06fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">husylvan</media:title>
		</media:content>
	</item>
		<item>
		<title>Beauty, 美, 아름다움?</title>
		<link>http://hwalung.wordpress.com/2009/05/03/beauty-%e7%be%8e-%ec%95%84%eb%a6%84%eb%8b%a4%ec%9b%80/</link>
		<comments>http://hwalung.wordpress.com/2009/05/03/beauty-%e7%be%8e-%ec%95%84%eb%a6%84%eb%8b%a4%ec%9b%80/#comments</comments>
		<pubDate>Sun, 03 May 2009 16:02:39 +0000</pubDate>
		<dc:creator>husylvan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hwalung.wordpress.com/?p=167</guid>
		<description><![CDATA[Symphony and Balance 調和, 均衡 조화와 균형<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=167&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Symphony and Balance</p>
<p><span class="Apple-style-span" style="widows:2;text-transform:none;text-indent:0;border-collapse:separate;font:13px 굴림;white-space:normal;orphans:2;letter-spacing:normal;color:#333333;word-spacing:0;">調和, <span class="Apple-style-span" style="widows:2;text-transform:none;text-indent:0;border-collapse:separate;font:13px 굴림;white-space:normal;orphans:2;letter-spacing:normal;color:#333333;word-spacing:0;">均衡</span></span></p>
<p><span class="Apple-style-span" style="widows:2;text-transform:none;text-indent:0;border-collapse:separate;font:13px 굴림;white-space:normal;orphans:2;letter-spacing:normal;color:#333333;word-spacing:0;"><span class="Apple-style-span" style="widows:2;text-transform:none;text-indent:0;border-collapse:separate;font:13px 굴림;white-space:normal;orphans:2;letter-spacing:normal;color:#333333;word-spacing:0;">조화와 균형</span></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hwalung.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hwalung.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hwalung.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hwalung.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hwalung.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hwalung.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hwalung.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hwalung.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hwalung.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hwalung.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hwalung.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hwalung.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hwalung.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hwalung.wordpress.com/167/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=167&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hwalung.wordpress.com/2009/05/03/beauty-%e7%be%8e-%ec%95%84%eb%a6%84%eb%8b%a4%ec%9b%80/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7da58497c980210bc790108538ff06fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">husylvan</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://hwalung.wordpress.com/2009/03/19/158/</link>
		<comments>http://hwalung.wordpress.com/2009/03/19/158/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 16:38:48 +0000</pubDate>
		<dc:creator>husylvan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hwalung.wordpress.com/?p=158</guid>
		<description><![CDATA[쾌락이나 공포. 이런 느낌따위에 언제까지 끌려만 다닐 것인가?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=158&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>쾌락이나 공포.<br />
이런 느낌따위에<br />
언제까지 끌려만 다닐 것인가?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hwalung.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hwalung.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hwalung.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hwalung.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hwalung.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hwalung.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hwalung.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hwalung.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hwalung.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hwalung.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hwalung.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hwalung.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hwalung.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hwalung.wordpress.com/158/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=158&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hwalung.wordpress.com/2009/03/19/158/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7da58497c980210bc790108538ff06fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">husylvan</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://hwalung.wordpress.com/2009/03/19/157/</link>
		<comments>http://hwalung.wordpress.com/2009/03/19/157/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 16:21:12 +0000</pubDate>
		<dc:creator>husylvan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hwalung.wordpress.com/2009/03/19/157/</guid>
		<description><![CDATA[&#8220;배우고 때로 익히면 또한 즐겁지 아니한가.&#8221; 논어<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=157&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8220;배우고 때로 익히면 또한 즐겁지 아니한가.&#8221;</p>
<p>논어</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hwalung.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hwalung.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hwalung.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hwalung.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hwalung.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hwalung.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hwalung.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hwalung.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hwalung.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hwalung.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hwalung.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hwalung.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hwalung.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hwalung.wordpress.com/157/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=157&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hwalung.wordpress.com/2009/03/19/157/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7da58497c980210bc790108538ff06fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">husylvan</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://hwalung.wordpress.com/2009/03/19/156/</link>
		<comments>http://hwalung.wordpress.com/2009/03/19/156/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 16:00:34 +0000</pubDate>
		<dc:creator>husylvan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hwalung.wordpress.com/2009/03/19/156/</guid>
		<description><![CDATA[고통을 통해서만이 깨달음에 이를 수 있다. 그리고, 자유로워질 수 있다.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=156&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>고통을 통해서만이<br />
깨달음에 이를 수 있다.<br />
그리고,<br />
자유로워질 수 있다.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hwalung.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hwalung.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hwalung.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hwalung.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hwalung.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hwalung.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hwalung.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hwalung.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hwalung.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hwalung.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hwalung.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hwalung.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hwalung.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hwalung.wordpress.com/156/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=156&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hwalung.wordpress.com/2009/03/19/156/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7da58497c980210bc790108538ff06fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">husylvan</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://hwalung.wordpress.com/2009/03/18/154/</link>
		<comments>http://hwalung.wordpress.com/2009/03/18/154/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 02:56:57 +0000</pubDate>
		<dc:creator>husylvan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hwalung.wordpress.com/2009/03/18/154/</guid>
		<description><![CDATA[“독서는 사람을 풍요롭게 하고 글쓰기는 사람을 정확하게 한다.”<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=154&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>“독서는 사람을 풍요롭게 하고 글쓰기는 사람을 정확하게 한다.”</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hwalung.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hwalung.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hwalung.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hwalung.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hwalung.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hwalung.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hwalung.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hwalung.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hwalung.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hwalung.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hwalung.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hwalung.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hwalung.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hwalung.wordpress.com/154/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=154&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hwalung.wordpress.com/2009/03/18/154/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7da58497c980210bc790108538ff06fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">husylvan</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://hwalung.wordpress.com/2009/03/05/152/</link>
		<comments>http://hwalung.wordpress.com/2009/03/05/152/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 16:53:52 +0000</pubDate>
		<dc:creator>husylvan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hwalung.wordpress.com/2009/03/05/152/</guid>
		<description><![CDATA[Get things done!!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=152&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Get things done!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hwalung.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hwalung.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hwalung.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hwalung.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hwalung.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hwalung.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hwalung.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hwalung.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hwalung.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hwalung.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hwalung.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hwalung.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hwalung.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hwalung.wordpress.com/152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hwalung.wordpress.com&amp;blog=5840585&amp;post=152&amp;subd=hwalung&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hwalung.wordpress.com/2009/03/05/152/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7da58497c980210bc790108538ff06fe?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">husylvan</media:title>
		</media:content>
	</item>
	</channel>
</rss>
