<?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>Thoughts Unlimited</title>
	<atom:link href="http://maravan.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://maravan.wordpress.com</link>
	<description>Propagating thoughts...</description>
	<lastBuildDate>Wed, 24 Aug 2011 20:12:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='maravan.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Thoughts Unlimited</title>
		<link>http://maravan.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://maravan.wordpress.com/osd.xml" title="Thoughts Unlimited" />
	<atom:link rel='hub' href='http://maravan.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Using Qooxdoo in Rails</title>
		<link>http://maravan.wordpress.com/2006/10/20/using-qooxdoo-in-rails/</link>
		<comments>http://maravan.wordpress.com/2006/10/20/using-qooxdoo-in-rails/#comments</comments>
		<pubDate>Fri, 20 Oct 2006 13:07:42 +0000</pubDate>
		<dc:creator>maravan</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://maravan.wordpress.com/2006/10/20/using-qooxdoo-in-rails/</guid>
		<description><![CDATA[Let us create a simple rails application called namelist with just one model. gg[qtest]$ rails namelist -d sqlite3 I am using my favorite sqlite3 to power the app. Feel free to use the database of your choice. Now create a model called Person gg[namelist]$ ruby script/generate model Person exists app/models/ exists test/unit/ exists test/fixtures/ create [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maravan.wordpress.com&amp;blog=479498&amp;post=8&amp;subd=maravan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Let us create a simple rails application called namelist with just one model.</p>
<pre>gg[qtest]$ rails namelist -d sqlite3</pre>
<p>I am using my favorite sqlite3 to power the app. Feel free to use the database of your choice.</p>
<p>Now create a model called Person</p>
<pre>
gg[namelist]$ ruby script/generate model Person
      exists  app/models/
      exists  test/unit/
      exists  test/fixtures/
      create  app/models/person.rb
      create  test/unit/person_test.rb
      create  test/fixtures/people.yml
      create  db/migrate
      create  db/migrate/001_create_people.rb</pre>
<p>The model person has just one attribute called &#8216;name&#8217;. The migration script for the Person model as below</p>
<pre>  1 class CreatePeople &lt; ActiveRecord::Migration
  2   def self.up
  3     create_table :people do |t|
  4       t.column :name, :string
  5     end
  6   end
  7
  8   def self.down
  9     drop_table :people
 10   end
 11 end</pre>
<p>Run the migration to setup the database tables.</p>
<pre>gg[namelist]$ rake migrate</pre>
<p>Create a new controller called qx</p>
<pre>gg[namelist]$ ruby script/generate controller qx
      exists  app/controllers/
      exists  app/helpers/
      create  app/views/qx
      exists  test/functional/
      create  app/controllers/qx_controller.rb
      create  test/functional/qx_controller_test.rb
      create  app/helpers/qx_helper.rb</pre>
<p>Copy the qoxdoo framework files to our app&#8217;s public directory.</p>
<pre>gg[namelist]$ cp ~/dump/qooxdoo/qooxdoo-0.6.1-build/frontend/framework/script/qx.js public/javascripts/.
gg[namelist]$ cp -rf ~/dump/qooxdoo/qooxdoo-0.6.1-build/frontend/framework/resource public</pre>
<p>Add two actions to the qx controller as follows</p>
<pre> 1 class QxController &lt; ApplicationController
 2   def index
 3   end
 4   def hai
 5     person = Person.new
 6     person.name = params[:name]
 7     person.save
 8     person.reload
 9
 10     @people = Person.find(:all)
 11
 12     respond_to do |res|
 13       res.xml do
 14         render :partial =&gt; 'list'
 15       end
 16     end
 17   end
 18 end</pre>
<p>The partial file is as follows</p>
<pre>
  1 xml.tag!('qx.client.builder.Container') do
  2   @people.each do |person|
  3     xml.tag!('qx.ui.form.ListItem', :label =&gt; person.name, :value =&gt; person.id)
  4   end
  5 end</pre>
<p>Create our main html file as follows</p>
<pre>
  1 &lt;html&gt;
  2   &lt;head&gt;
  3     &lt;title&gt;
  4       NameList Application
  5     &lt;/title&gt;
  6     &lt;script type="text/javascript" src="javascripts/qx.js"&gt;&lt;/script&gt;
  7   &lt;/head&gt;
  8   &lt;body&gt;
  9     &lt;script type="text/javascript"&gt;
 10       qx.core.Init.getInstance().defineMain(main);
 11       function main()
 12       {
 13         var docRoot = qx.ui.core.ClientDocument.getInstance();
 14
 15         var labelField = new qx.ui.basic.Label("name");
 16         labelField.setLeft(160);
 17         labelField.setTop(25);
 18         docRoot.add(labelField);
 19
 20         var textField = new qx.ui.form.TextField();
 21         textField.setLeft(200);
 22         textField.setTop(20);
 23         docRoot.add(textField);
 24
 25         var buttonField = new qx.ui.form.Button("Create");
 26         buttonField.setTop(16);
 27         buttonField.setLeft(370);
 28         buttonField.addEventListener("execute", buttonClick);
 29         docRoot.add(buttonField);
 30
 31         function buttonClick()
 32         {
 33           var remoteRequest = new qx.io.remote.RemoteRequest("/qx/hai","GET");
 34           remoteRequest.setRequestHeader("Accept","text/xml");
 35           remoteRequest.addEventListener("completed", processResponse);
 36           remoteRequest.setParameter("name", textField.getValue());
 37           remoteRequest.send();
 38         }
 39
 40         function processResponse(e)
 41         {
 42           new qx.client.Builder().build(listField,e.getData().getContent());
 43         }
 44
 45         var listField = new qx.ui.form.List();
 46         listField.setTop(50);
 47         listField.setWidth(300);
 48         listField.setHeight(300);
 49         listField.setLeft(160);
 50
 51         docRoot.add(listField);
 52
 53       }
 54
 55     &lt;/script&gt;
 56   &lt;/body&gt;
 57 &lt;/html&gt;</pre>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/maravan.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/maravan.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/maravan.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/maravan.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/maravan.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/maravan.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/maravan.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/maravan.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/maravan.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/maravan.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/maravan.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/maravan.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/maravan.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/maravan.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/maravan.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/maravan.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maravan.wordpress.com&amp;blog=479498&amp;post=8&amp;subd=maravan&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sharedaddy-dark"></div>]]></content:encoded>
			<wfw:commentRss>http://maravan.wordpress.com/2006/10/20/using-qooxdoo-in-rails/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47ba67a85d1a9a0fd8f8bf8396b0cac0?s=96&#38;d=identicon" medium="image">
			<media:title type="html">maravan</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting started with Qooxdoo</title>
		<link>http://maravan.wordpress.com/2006/10/20/getting-started-with-qooxdoo/</link>
		<comments>http://maravan.wordpress.com/2006/10/20/getting-started-with-qooxdoo/#comments</comments>
		<pubDate>Fri, 20 Oct 2006 10:53:12 +0000</pubDate>
		<dc:creator>maravan</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://maravan.wordpress.com/2006/10/20/getting-started-with-qooxdoo/</guid>
		<description><![CDATA[Qooxdoo is an excellent Javascript based GUI framework. It has a rich set of widgets and inbuilt AJAX support. To get started, download the precompiled Qooxdoo from http://qooxdoo.org/download. The framework javascript file and the related widget image files are found under qooxdoo-0.6.1-build/frontend/framework Now let us develop a traditional Hello World program in Qooxdoo. Create a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maravan.wordpress.com&amp;blog=479498&amp;post=7&amp;subd=maravan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://qooxdoo.org/" title="Qooxdoo" target="_blank">Qooxdoo</a> is an excellent Javascript based GUI framework. It has a rich set of widgets and inbuilt AJAX support.</p>
<p>To get started, download the precompiled Qooxdoo from <a href="http://qooxdoo.org/download" title="http://qooxdoo.org/download" target="_blank">http://qooxdoo.org/download</a>. The framework javascript file and the related widget image files are found under qooxdoo-0.6.1-build/frontend/framework</p>
<p>Now let us develop a traditional Hello World program in Qooxdoo.</p>
<p>Create a new directory for your application</p>
<pre>
gg[~]$ mkdir qtest

gg[~]$ cd qtest</pre>
<p>Copy the contents of the framework directory to your application folder</p>
<pre>
gg[qtest]$ cp -rf ../dump/qooxdoo/qooxdoo-0.6.1-build/frontend/framework/* .

gg[qtest]$ ls

resource  script</pre>
<p>Now create your main html file with the following content.</p>
<pre>
1 &lt;html&gt;
2   &lt;head&gt;
3     &lt;title&gt;
4       Qooxdoo Test
5     &lt;/title&gt;
6     &lt;script type="text/javascript" src="script/qx.js"&gt;&lt;/script&gt;
7   &lt;/head&gt;
8   &lt;body&gt;
9     &lt;script type="text/javascript"&gt;
10       qx.core.Init.getInstance().defineMain(function main()
11       {
12         var doc = qx.ui.core.ClientDocument.getInstance();
13         var button1 = new qx.ui.form.Button("Click Me");
14         with(button1)
15         {
16           setTop(20);
17           setLeft(20);
18           addEventListener("execute", buttonExecute);
19         }
20         doc.add(button1);
21
22         function buttonExecute()
23         {
24           alert("Hello World");
25         }
26       });
27
28     &lt;/script&gt;
29   &lt;/body&gt;
30 &lt;/html&gt;</pre>
<p>- In line no 6 the main javascript file qx.js is included.<br />
- In line no 10, an anonymous function is created and is assigned as the main qooxdoo function.<br />
- An ClientDocument object is created in line no 12. ClientDocument is the basic widget of all qooxdoo application. It acts as the parent of all the widgets in your application.<br />
- A new button object is created in line no 13, it&#8217;s top and left attribute are set. We then add an event listener in line no 18. So basically the function buttonExecute will be called whenever any button event occur.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/maravan.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/maravan.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/maravan.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/maravan.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/maravan.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/maravan.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/maravan.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/maravan.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/maravan.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/maravan.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/maravan.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/maravan.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/maravan.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/maravan.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/maravan.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/maravan.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maravan.wordpress.com&amp;blog=479498&amp;post=7&amp;subd=maravan&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sharedaddy-dark"></div>]]></content:encoded>
			<wfw:commentRss>http://maravan.wordpress.com/2006/10/20/getting-started-with-qooxdoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47ba67a85d1a9a0fd8f8bf8396b0cac0?s=96&#38;d=identicon" medium="image">
			<media:title type="html">maravan</media:title>
		</media:content>
	</item>
		<item>
		<title>Rails paginate for collections</title>
		<link>http://maravan.wordpress.com/2006/10/19/rails-paginate-for-collections/</link>
		<comments>http://maravan.wordpress.com/2006/10/19/rails-paginate-for-collections/#comments</comments>
		<pubDate>Thu, 19 Oct 2006 11:30:28 +0000</pubDate>
		<dc:creator>maravan</dc:creator>
				<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://maravan.wordpress.com/2006/10/19/rails-paginate-for-collections/</guid>
		<description><![CDATA[To generate pagination for your collections, add the following action to your controller. def paginate_collection(collection, options = {}) default_options = {:per_page =&#62; 10, :page =&#62; 1} options = default_options.merge options pages = Paginator.new self, collection.size, options[:per_page], options[:page] first = pages.current.offset last = [first + options[:per_page], collection.size].min slice = collection[first...last] return [pages, slice] end Now you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maravan.wordpress.com&amp;blog=479498&amp;post=4&amp;subd=maravan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To generate pagination for your collections, add the following action to your controller.</p>
<pre>
def paginate_collection(collection, options = {})
  default_options = {:per_page =&gt; 10, :page =&gt; 1}
  options = default_options.merge options
  pages = Paginator.new self, collection.size, options[:per_page], options[:page]
  first = pages.current.offset
  last = [first + options[:per_page], collection.size].min
  slice = collection[first...last]
  return [pages, slice]
end</pre>
<p>Now you can call the custom paginate_collection in your controller as follows.</p>
<pre>
@female_students = Student.find(:all).select do |student|
    student.sex == 'female'
end
@student_pages, @students = paginate_collection @female_students, :per_page =&gt; 10
</pre>
</pre>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/maravan.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/maravan.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/maravan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/maravan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/maravan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/maravan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/maravan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/maravan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/maravan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/maravan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/maravan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/maravan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/maravan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/maravan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/maravan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/maravan.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maravan.wordpress.com&amp;blog=479498&amp;post=4&amp;subd=maravan&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sharedaddy-dark"></div>]]></content:encoded>
			<wfw:commentRss>http://maravan.wordpress.com/2006/10/19/rails-paginate-for-collections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47ba67a85d1a9a0fd8f8bf8396b0cac0?s=96&#38;d=identicon" medium="image">
			<media:title type="html">maravan</media:title>
		</media:content>
	</item>
		<item>
		<title>The ruby strip() method</title>
		<link>http://maravan.wordpress.com/2006/10/16/extending-the-ruby-strip-method/</link>
		<comments>http://maravan.wordpress.com/2006/10/16/extending-the-ruby-strip-method/#comments</comments>
		<pubDate>Mon, 16 Oct 2006 12:04:06 +0000</pubDate>
		<dc:creator>maravan</dc:creator>
				<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://maravan.wordpress.com/2006/10/16/extending-the-ruby-strip-method/</guid>
		<description><![CDATA[Ruby&#8217;s strip() method is useful for stripping extra spaces in strings. Unfortunately, you cannot use strip() method to remove non-space characters from a string. The following method can strip non-space characters from a string as well. def strip(str,char) new_str = "" str.each_byte do &#124;byte&#124; new_str &#60;&#60; byte.chr unless byte.chr == char end new_str end Example: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maravan.wordpress.com&amp;blog=479498&amp;post=3&amp;subd=maravan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ruby&#8217;s strip() method is useful for stripping extra spaces in strings. Unfortunately, you cannot use strip() method to remove non-space characters from a string.</p>
<p>The following method can strip non-space characters from a string as well.</p>
<pre>
def strip(str,char)
   new_str = ""
   str.each_byte do |byte|
      new_str &lt;&lt; byte.chr unless byte.chr == char
   end
   new_str
end</pre>
<pre>Example: strip('Hello World','o') #=&gt; Hell Wrld</pre>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/maravan.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/maravan.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/maravan.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/maravan.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/maravan.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/maravan.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/maravan.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/maravan.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/maravan.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/maravan.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/maravan.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/maravan.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/maravan.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/maravan.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/maravan.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/maravan.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maravan.wordpress.com&amp;blog=479498&amp;post=3&amp;subd=maravan&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sharedaddy-dark"></div>]]></content:encoded>
			<wfw:commentRss>http://maravan.wordpress.com/2006/10/16/extending-the-ruby-strip-method/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47ba67a85d1a9a0fd8f8bf8396b0cac0?s=96&#38;d=identicon" medium="image">
			<media:title type="html">maravan</media:title>
		</media:content>
	</item>
	</channel>
</rss>
