<?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>Sid's Weblog</title>
	<atom:link href="http://sidtalk.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sidtalk.wordpress.com</link>
	<description>tracing thoughts through the days</description>
	<lastBuildDate>Sun, 30 Aug 2009 15:14:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sidtalk.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Sid's Weblog</title>
		<link>http://sidtalk.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sidtalk.wordpress.com/osd.xml" title="Sid&#039;s Weblog" />
	<atom:link rel='hub' href='http://sidtalk.wordpress.com/?pushpress=hub'/>
		<item>
		<title>What exactly is Ruby self</title>
		<link>http://sidtalk.wordpress.com/2008/10/06/what-exactly-is-ruby-self/</link>
		<comments>http://sidtalk.wordpress.com/2008/10/06/what-exactly-is-ruby-self/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 03:45:38 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://sidtalk.wordpress.com/?p=90</guid>
		<description><![CDATA[Ruby is an object-oriented langauage, a very powerful one. A Ruby class is an object of class Class. And all method calls in Ruby invoke with a receiver, which is the current object. We can refer to the current object by using keyword self, the same as this in Java in term of meaning but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=90&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ruby is an object-oriented langauage, a very powerful one. A Ruby class is an object of class Class. And all method calls in Ruby invoke with a receiver, which is the current object. We can refer to the current object by using keyword <code>self</code>, the same as <code>this</code> in Java in term of meaning but a slightly different usages.</p>
<p>In case you don&#8217;t know how to define class methods in Ruby, there are <a href="http://pastie.textmate.org/60848">several ways</a> to do it. But the one I prefer is,</p>
<p><pre class="brush: ruby;">
class Book
  def self.title
    true
  end

  def title
    true
  end
end
</pre></p>
<p><code>self</code> refers to the object depends on its context. <code>self.title</code> in the above example will be invoked by the (current) object, <code>Book</code>. While <code>title</code> will be invoked by the object, <code>Book.new</code>. Therefore, to determine the value of <code>self</code>, you need to think around where the self resides. I highly recommended you to read the smart summary by <a href="http://paulbarry.com/articles/2008/04/17/the-rules-of-ruby-self">Paul Barry</a>. And then you should get the idea what the following code is trying to do <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><pre class="brush: ruby;">

class SelfStudy
  attr_accessor :name

  def self
    @name
  end

  def self.name
    @name
  end

  def self.name=(name)
    @name = name
  end

  def self.default_name
    self.name = &quot;ClassName&quot;
  end

  def default_name
    self.name = &quot;InstanceName&quot;
  end
end

puts SelfStudy.name
#=&gt; nil
puts SelfStudy.default_name
#=&gt; ClassName

me = SelfStudy.new
puts me.name
#=&gt; nil
puts me.default_name
#=&gt; InstanceName

puts SelfStudy.name 
#=&gt; ClassName
puts SelfStudy.default_name
#=&gt; ClassName

</pre></p>
<p>Please note the I just want to play up with <code>self</code> in the above example. So instead of defining <code>@name</code> in <code>self</code> method. As you should already know, you may simply replace it with </p>
<p><pre class="brush: ruby;">
@name = nil
</pre></p>
<p>And you&#8217;d get the same output.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidtalk.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidtalk.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidtalk.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidtalk.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidtalk.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidtalk.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidtalk.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidtalk.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidtalk.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidtalk.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidtalk.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidtalk.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidtalk.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidtalk.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=90&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidtalk.wordpress.com/2008/10/06/what-exactly-is-ruby-self/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58afdf93da148f8826d45576def8cda2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manat</media:title>
		</media:content>
	</item>
		<item>
		<title>Specifies when Rails validation should be active</title>
		<link>http://sidtalk.wordpress.com/2008/10/03/specified-when-rails-validation-should-be-active/</link>
		<comments>http://sidtalk.wordpress.com/2008/10/03/specified-when-rails-validation-should-be-active/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 04:20:40 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://sidtalk.wordpress.com/?p=86</guid>
		<description><![CDATA[I just noticed an error caused by a validation on a model as following: There&#8217;s nothing wrong with that except :update_reason. Because :update_reason could actually be empty on creation since its purpose is for modification log only. Thanks to beautiful Rails validation API, the above validation could be fixed as follow: In consequence, :update_reason will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=86&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just noticed an error caused by a validation on a model as following:</p>
<p><pre class="brush: ruby;">
validates_presence_of [:fname, :lname, :email, :update_reason]
</pre></p>
<p>There&#8217;s nothing wrong with that except :update_reason. Because :update_reason could actually be empty on creation since its purpose is for modification log only. Thanks to beautiful <a href="http://api.rubyonrails.org/classes/ActiveRecord/Validations/ClassMethods.html">Rails validation API</a>, the above validation could be fixed as follow:</p>
<p><pre class="brush: ruby;">
validates_presence_of [:fname, :lname, :email]
validates_presence_of :update_reason, :on =&gt; :update
</pre></p>
<p>In consequence, :update_reason will be ignore on create but checking for emptiness on update. Nice and effortless, isn&#8217;t it!?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidtalk.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidtalk.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidtalk.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidtalk.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidtalk.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidtalk.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidtalk.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidtalk.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidtalk.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidtalk.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidtalk.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidtalk.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidtalk.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidtalk.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=86&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidtalk.wordpress.com/2008/10/03/specified-when-rails-validation-should-be-active/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58afdf93da148f8826d45576def8cda2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manat</media:title>
		</media:content>
	</item>
		<item>
		<title>Convert character set in Ruby</title>
		<link>http://sidtalk.wordpress.com/2008/09/15/convert-character-set-in-ruby/</link>
		<comments>http://sidtalk.wordpress.com/2008/09/15/convert-character-set-in-ruby/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 17:51:50 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://sidtalk.wordpress.com/?p=81</guid>
		<description><![CDATA[There was a demand to convert data from Access to MySQL using Ruby in a project responsible by a colleague of mine. One problem he faced, was that he could retrieve data from Access database correctly but not writing into the MySQL database. The log raised that the input data had wrong string values. Although [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=81&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There was a demand to convert data from Access to MySQL using Ruby in a project responsible by a colleague of mine. One problem he faced, was that he could retrieve data from Access database correctly but not writing into the MySQL database. The log raised that the input data had wrong string values. Although he could print the data using puts command properly.</p>
<p>The first idea about this thing would be about character set. Especially, when the source of data came from Access <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  And well, I was right. The character set was TIS-620 and our current MySQL database is (definitely) using UTF-8. The solution is simple. Just use <a href="http://wiki.rubyonrails.org/rails/pages/iconv">iconv</a> to convert between character sets like the following:</p>
<p><pre class="brush: ruby;">
require ‘iconv’

row = Iconv.new(”UTF-8″,”TIS-620”).iconv(row)
</pre></p>
<p>And then you should be good to go now!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sidtalk.wordpress.com/81/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sidtalk.wordpress.com/81/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidtalk.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidtalk.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidtalk.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidtalk.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidtalk.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidtalk.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidtalk.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidtalk.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidtalk.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidtalk.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidtalk.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidtalk.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidtalk.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidtalk.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=81&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidtalk.wordpress.com/2008/09/15/convert-character-set-in-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58afdf93da148f8826d45576def8cda2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manat</media:title>
		</media:content>
	</item>
		<item>
		<title>Region screenshot on Ubuntu</title>
		<link>http://sidtalk.wordpress.com/2008/08/14/region-screenshot-on-ubuntu/</link>
		<comments>http://sidtalk.wordpress.com/2008/08/14/region-screenshot-on-ubuntu/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 07:23:30 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Screenshot]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://sidtalk.wordpress.com/?p=61</guid>
		<description><![CDATA[For Windows users, they can make a screenshot by using Print Scrn button to capture entire screen and copy to the clipboard. The another option is Alt + Print Scrn to capture the active window and copy to the clipboard. Because it&#8217;s in the clipboard, thus they need to paste it somewhere. And for god [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=61&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For Windows users, they can make a screenshot by using Print Scrn button to capture entire screen and copy to the clipboard. The another option is Alt + Print Scrn to capture the active window and copy to the clipboard. Because it&#8217;s in the clipboard, thus they need to paste it somewhere. And for god sake, the easiest choice for them is Microsoft Word. Therefore when you ask a screenshot, you&#8217;ll get a .doc file.</p>
<p>For Ubuntu users, they use the same command with Windows user but save as file instead of clipboard. For Mac users, they have richer options. Either save into the clipboard or save as file. See the table <a href="http://digitalmedia.oreilly.com/2006/01/01/mac-os-x-screenshot-secrets.html">here</a>. </p>
<p>In software development, there&#8217;s a good chance, you want to create a screenshot only in the preferred area. Mac does provide this option with <code>Command+Shift+4</code> but not in Ubuntu (and Windows). Fortunately, there is project <a href="http://data-manager.sourceforge.net/index.html">Desktop Data Manager</a>, which provides features like creating a region screenshot similar to Mac. So you don&#8217;t have to edit it with GIMP as the second step. </p>
<p>Follow the article <a href="http://www.ubuntugeek.com/desktop-data-managerddm-for-your-ubuntu-desktop.html">here</a> for the download instruction and tutorial. Hope this will be helpful <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sidtalk.wordpress.com/61/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sidtalk.wordpress.com/61/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidtalk.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidtalk.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidtalk.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidtalk.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidtalk.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidtalk.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidtalk.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidtalk.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidtalk.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidtalk.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidtalk.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidtalk.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidtalk.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidtalk.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=61&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidtalk.wordpress.com/2008/08/14/region-screenshot-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58afdf93da148f8826d45576def8cda2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manat</media:title>
		</media:content>
	</item>
		<item>
		<title>First thought on ExtJS</title>
		<link>http://sidtalk.wordpress.com/2008/07/07/first-thought-on-extjs/</link>
		<comments>http://sidtalk.wordpress.com/2008/07/07/first-thought-on-extjs/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 23:12:46 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[ExtJS]]></category>

		<guid isPermaLink="false">http://sidtalk.wordpress.com/?p=58</guid>
		<description><![CDATA[I&#8217;ve worked with ExtJS for a while now and feel happy with it. The main reason is that I found some similarities on the API design between ExtJS and Swing. I know this would be weird for some of you. But it does make sense for me because I&#8217;ve worked with Swing before But, don&#8217;t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=58&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve worked with <a href="http://extjs.com/">ExtJS</a> for a while now and feel happy with it. The main reason is that I found some similarities on the API design between ExtJS and Swing. I know this would be weird for some of you. But it does make sense for me because I&#8217;ve worked with Swing before <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  But, don&#8217;t panic, it doesn&#8217;t mean you need to know about Swing before working with ExtJS. There&#8217;s nothing related between them. It just that I feel familiar to how it works (reading the <a href="http://extjs.com/deploy/dev/docs/">API</a>, Grid, GridPanel, CellSelectionModel <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ) and that is a big advantage for me.</p>
<p>Moreover, the ongoing project that I&#8217;m involved seems to have high demands on richness UI (<a href="http://extjs.com/deploy/dev/examples/samples.html">look at their samples</a>). And ExtJS does cover majority of UI controls and has a well designed for extensibility. Besides, the document is good and the community is very active. Another nice thing of ExtJS is it allows you to build the library based on what you need which helps reducing the library size with less effort.</p>
<p>If you&#8217;re working with Rails, you might want to check an example <a href="http://extjs.com/learn/Tutorial:Using_Ext_Grid_with_Ruby_on_Rails">here</a>. Although Rails seems to get along fine with ExtJS but I think there could be a less effort way to work between them. And there is a <a href="http://agilewebdevelopment.com/plugins/search?search=extjs">couple of plugins</a> that might be useful. I&#8217;ll report back soon after I really checked them out <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sidtalk.wordpress.com/58/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sidtalk.wordpress.com/58/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidtalk.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidtalk.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidtalk.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidtalk.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidtalk.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidtalk.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidtalk.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidtalk.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidtalk.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidtalk.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidtalk.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidtalk.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidtalk.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidtalk.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=58&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidtalk.wordpress.com/2008/07/07/first-thought-on-extjs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58afdf93da148f8826d45576def8cda2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manat</media:title>
		</media:content>
	</item>
		<item>
		<title>A problem from corrupt name of Rails migration</title>
		<link>http://sidtalk.wordpress.com/2008/07/05/a-problem-on-rails-migration-filename/</link>
		<comments>http://sidtalk.wordpress.com/2008/07/05/a-problem-on-rails-migration-filename/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 23:11:01 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://sidtalk.wordpress.com/?p=48</guid>
		<description><![CDATA[There&#8217;s a requirement on my current project which is to keep versioning on every model. Any modification made to model should be able to revert back on simply request. As soon as I was briefed for this requirement, I simply said &#8220;Acts As Versioned would do this.&#8221; I spent a little time working with it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=48&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a requirement on my current project which is to keep versioning on every model. Any modification made to model should be able to revert back on simply request. As soon as I was briefed for this requirement, I simply said &#8220;<a href="http://agilewebdevelopment.com/plugins/acts_as_versioned">Acts As Versioned</a> would do this.&#8221;</p>
<p>I spent a little time working with it since I ever used it before. Besides, the usage of this plugin is very simple and straightforward, hail to Rick Olson. Consult the post by Juixe <a href="http://www.juixe.com/techknow/index.php/2006/07/05/acts-as-versioned-plugin/">here</a> if you want some examples.</p>
<p>However the problem happened when I run the migration file. Rails alerted me that there&#8217;s no method named <code>create_versioned_table</code> for Quotation (my model here). I made sure that I already put <code>acts_as_versioned</code> on the Quotation model (which make Quotation now has the abilities of Acts As Versioned) but the problem still exist.</p>
<p>I spent a big while tried to find what caused this problem. I talked with a junior colleague who said he found a similar problem like this before, and fixed it by renaming the migration file. He didn&#8217;t know what caused the problem and why it&#8217;s fixed that way. So I didn&#8217;t buy it at the first because at that moment, I still have no idea what is the relation between the migration&#8217;s filename and this problem. Until I noticed that a migration file was named as <em>005_quotation.rb</em> with class named <code>Quotation</code></p>
<p>OK, I got it now!</p>
<p>The problem was that when I called <code>Quotation.create_versioned_table</code> in the migration file. The Quotation here is not Quotation model as I intended but it&#8217;s migration class named Quotation. Thus it doesn&#8217;t know <code>create_versioned_table method</code>. So fix it by renaming the migration class (and filename) to what is should be, <code>CreateQuotation</code> (<em>005_create_quotation.rb</em>).</p>
<p>Problem solved , I&#8217;m happy now.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sidtalk.wordpress.com/48/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sidtalk.wordpress.com/48/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidtalk.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidtalk.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidtalk.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidtalk.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidtalk.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidtalk.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidtalk.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidtalk.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidtalk.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidtalk.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidtalk.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidtalk.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidtalk.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidtalk.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=48&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidtalk.wordpress.com/2008/07/05/a-problem-on-rails-migration-filename/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58afdf93da148f8826d45576def8cda2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manat</media:title>
		</media:content>
	</item>
		<item>
		<title>Subversion retake</title>
		<link>http://sidtalk.wordpress.com/2008/06/24/subversion-retake/</link>
		<comments>http://sidtalk.wordpress.com/2008/06/24/subversion-retake/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 21:28:09 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[SCM]]></category>
		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://sidtalk.wordpress.com/?p=44</guid>
		<description><![CDATA[I&#8217;ve started a new career for a couple of weeks now. And I&#8217;m now officially working on Ruby on Rails! The diversity of the people in this team is quite interesting. They have various background of programming languages, Ruby, Java, PHP, VB or even none. Furthermore, there is another team working remotely. The choice of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=44&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve started a new career for a couple of weeks now. And I&#8217;m now officially working on Ruby on Rails! The diversity of the people in this team is quite interesting. They have various background of programming languages, Ruby, Java, PHP, VB or even none. Furthermore, there is another team working remotely. The choice of source control here is simply Subversion.</p>
<p>However, it seems they&#8217;ve few problems of using it at the moment. Some people are afraid to face the conflicts. The development line is made solely on trunk although some modifications cause major effects to everyone. In the end, I decided to bring up another talk for subversion as a revisit. At least to make sure everyone is on the same page. The slide is as follow.</p>
<iframe src='http://www.slideshare.net/slideshow/embed_code/553627' width='425' height='348'></iframe>
<p>If I manage to have some free time I might record an audiocast for this one.<br />
Or maybe it&#8217;s time for <a href="http://git.or.cz/">Git</a> <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sidtalk.wordpress.com/44/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sidtalk.wordpress.com/44/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidtalk.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidtalk.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidtalk.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidtalk.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidtalk.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidtalk.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidtalk.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidtalk.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidtalk.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidtalk.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidtalk.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidtalk.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidtalk.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidtalk.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=44&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidtalk.wordpress.com/2008/06/24/subversion-retake/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58afdf93da148f8826d45576def8cda2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manat</media:title>
		</media:content>
	</item>
		<item>
		<title>Bring back the language switcher on Leopard</title>
		<link>http://sidtalk.wordpress.com/2008/06/20/bring-back-the-language-switcher-on-leopard/</link>
		<comments>http://sidtalk.wordpress.com/2008/06/20/bring-back-the-language-switcher-on-leopard/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 22:29:15 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://sidtalk.wordpress.com/?p=63</guid>
		<description><![CDATA[Except no Java 6 (for Intel 32 bit), weird text rendering in TextEdit, lacks of input source state of each window (while it has been supported before), etc. My experienced with Leopard has been great so far&#8230; In trade to get the snappier OS, Quick Look, unnoticeably better Finder and Time Machine that I haven&#8217;t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=63&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Except no Java 6 (for Intel 32 bit), weird text rendering in TextEdit, lacks of input source state of each window (while it has been supported before), etc. My experienced with Leopard has been great so far&#8230;</p>
<p>In trade to get the snappier OS, Quick Look, unnoticeably better Finder and Time Machine that I haven&#8217;t used.</p>
<ul>
<li>For Java 6 I&#8217;ve used <a href="http://landonf.bikemonkey.org/static/soylatte/">SoyLatte</a> (hail to Landon Fuller!</li>
<li>For TextEdit, I went for vi or <a href="http://www.jedit.org/">JEdit</a>.</li>
<li>For lacks of input source state of each window, I&#8217;ve tried to get used to with it!</li>
</ul>
<p>However, the last problem was fine for me until I used Ubuntu during the day and Ubuntu does remember the state like every OS supposed to do! Fortunately, there is <a href="http://limechat.net/inputswitcher/">InputSwitcher</a> which made by Satoshi Nakagawa (I love Japan!). The problem gone, and now I&#8217;m happy again <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sidtalk.wordpress.com/63/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sidtalk.wordpress.com/63/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidtalk.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidtalk.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidtalk.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidtalk.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidtalk.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidtalk.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidtalk.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidtalk.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidtalk.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidtalk.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidtalk.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidtalk.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidtalk.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidtalk.wordpress.com/63/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=63&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidtalk.wordpress.com/2008/06/20/bring-back-the-language-switcher-on-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58afdf93da148f8826d45576def8cda2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manat</media:title>
		</media:content>
	</item>
		<item>
		<title>Recapture</title>
		<link>http://sidtalk.wordpress.com/2008/06/10/recapture/</link>
		<comments>http://sidtalk.wordpress.com/2008/06/10/recapture/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 17:16:09 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://sidtalk.wordpress.com/?p=34</guid>
		<description><![CDATA[I have been with Java for years since I was pursuing a bachelor degree in computer science. Actually I was against it at the first time. Mainly from the numerous speaks of slowness and the steep curve of learning. It turned out those people are partly true. First, Java Swing application or I rather mentioned [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=34&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been with Java for years since I was pursuing a bachelor degree in computer science. Actually I was against it at the first time. Mainly from the numerous speaks of slowness and the steep curve of learning. It turned out those people are partly true. First, Java Swing application or I rather mentioned as Java Applet at the time was slow but still acceptable for me since I could play Yahoo! pool nights and days without crashing it (though I&#8217;m not sure if this is a good benchmark =) Second, the learning curve was actually steep. I started with notepad and command line which very unappealing for me at that time. And Java API looks like a strange collection of commands. However, I sticked with it. because of the single reason. I felt Java was cooler than C at the time! (which I bet there are limited number of people right now who think about Java and cool at the same paragraph). In the end, I passed that steep curve and I have been working with Java ever since.</p>
<p>However, by the time pass by, I paid more attention to more technologies not limited to just Java related. One thing that I paid most attention is Ruby. Again, I felt awkward at the first time I tried to do things with it. But soon I started to understand the way it&#8217;s been designed and how to work with it in a proper way. I&#8217;m impressed. And that might be the reason that lead me to working with Ruby and Rails at the moment.</p>
<p>I have some unpublished posts during the time I worked with Java which is mostly about Swing. It was kept unpublished because most of them are not finished articles. I was a lazy person (and still be!). But I think it was very unfortunate for everyone and particularly myself, to not be able to capture and transfer knowledge I posessed. This is the main reason I&#8217;d like to start afresh at this blog. It would be mainly about but not limited to Ruby, Rails, Java and other related fields. Additionally, I decided to import a few posts from my original blog so it could be kept at a single place and would be more handy for you and myself.</p>
<p>Thanks <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sidtalk.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sidtalk.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidtalk.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidtalk.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidtalk.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidtalk.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidtalk.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidtalk.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidtalk.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidtalk.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidtalk.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidtalk.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidtalk.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidtalk.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidtalk.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidtalk.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=34&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidtalk.wordpress.com/2008/06/10/recapture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58afdf93da148f8826d45576def8cda2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manat</media:title>
		</media:content>
	</item>
		<item>
		<title>Good to be back</title>
		<link>http://sidtalk.wordpress.com/2008/04/27/good-to-be-back/</link>
		<comments>http://sidtalk.wordpress.com/2008/04/27/good-to-be-back/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 17:38:07 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Talk]]></category>

		<guid isPermaLink="false">http://manat.wordpress.com/?p=26</guid>
		<description><![CDATA[It seems I lost my will to recapture my thought on technology related stuffs since I left the motherland. I thought it would be easier to write about this kind of stuffs when I was in the other side of the world. But apparently, I was wrong. It turned out I put this writing behind [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=5&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It seems I lost my will to recapture my thought on technology related stuffs since I left the motherland. I thought it would be easier to write about this kind of stuffs when I was in the other side of the world. But apparently, I was wrong. It turned out I put this writing behind other stuffs.  Although I like the bizarre weather out there but just blame it for obstructing me to get here <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I didn&#8217;t plan to get back here on the summer because I would have a hard time to stand the heat. But eventually I&#8217;m here, in the middle of hot hot summer. The temperature is over the bar as I thought, however it&#8217;s not that bad. Things around here haven&#8217;t changed so much, and neither do I. Except that I feel more mature and really couldn&#8217;t wait to start the new beginning.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sidtalk.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sidtalk.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sidtalk.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sidtalk.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sidtalk.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sidtalk.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sidtalk.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sidtalk.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sidtalk.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sidtalk.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sidtalk.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sidtalk.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sidtalk.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sidtalk.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sidtalk.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sidtalk.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sidtalk.wordpress.com&amp;blog=4340682&amp;post=5&amp;subd=sidtalk&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sidtalk.wordpress.com/2008/04/27/good-to-be-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58afdf93da148f8826d45576def8cda2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manat</media:title>
		</media:content>
	</item>
	</channel>
</rss>
