<?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>Coding with a purpose</title>
	<atom:link href="http://asimilia.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://asimilia.wordpress.com</link>
	<description>And sharing my discoveries</description>
	<lastBuildDate>Sun, 15 Feb 2009 10:16:21 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='asimilia.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/794c0e55f4e073ddc10d7e1d797eb69a?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Coding with a purpose</title>
		<link>http://asimilia.wordpress.com</link>
	</image>
			<item>
		<title>Quick debugger tip in Ruby</title>
		<link>http://asimilia.wordpress.com/2009/01/31/quick-debugger-tip-in-ruby/</link>
		<comments>http://asimilia.wordpress.com/2009/01/31/quick-debugger-tip-in-ruby/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 13:55:32 +0000</pubDate>
		<dc:creator>nachocab</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asimilia.wordpress.com/?p=64</guid>
		<description><![CDATA[The ruby-debug gem is great for debugging but here&#8217;s something you might have missed: you can call it with a condition. That way it only breaks execution when a given condition is met.


[3, 2, 15, nil, 5].collect do &#124;id&#124;

  debugger if id.nil?

  id.to_s

end

That way, it will only stop if one of the array items is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=64&subd=asimilia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The <a href="http://rubyforge.org/projects/ruby-debug/">ruby-debug</a> gem is great for debugging but here&#8217;s something you might have missed: you can call it with a condition. That way it only breaks execution when a given condition is met.</p>
<pre class="brush: ruby;">

[3, 2, 15, nil, 5].collect do |id|

  debugger if id.nil?

  id.to_s

end
</pre>
<p>That way, it will only stop if one of the array items is nil. This is a huge time-saver. Use it frequently.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asimilia.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asimilia.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asimilia.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asimilia.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asimilia.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asimilia.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asimilia.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asimilia.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asimilia.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asimilia.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=64&subd=asimilia&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asimilia.wordpress.com/2009/01/31/quick-debugger-tip-in-ruby/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6dd10772cfa5333c5db924091464ed95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nachocab</media:title>
		</media:content>
	</item>
		<item>
		<title>Netbeans 6.5 Code folding and test files</title>
		<link>http://asimilia.wordpress.com/2009/01/18/netbeans-65-code-folding-and-test-files/</link>
		<comments>http://asimilia.wordpress.com/2009/01/18/netbeans-65-code-folding-and-test-files/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 19:59:40 +0000</pubDate>
		<dc:creator>nachocab</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asimilia.wordpress.com/2009/01/18/netbeans-65-code-folding-and-test-files/</guid>
		<description><![CDATA[I don&#8217;t know how many people will find this useful, but it made me lose some time, so that&#8217;s why I&#8217;m sharing.
I use Netbeans code folding and the Shoulda plugin by Thoughtbot. Today I ran into this strange situation where Netbeans wasn&#8217;t showing the folds for one of my files, but it did for the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=61&subd=asimilia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I don&#8217;t know how many people will find this useful, but it made me lose some time, so that&#8217;s why I&#8217;m sharing.<br />
I use Netbeans code folding and the Shoulda plugin by Thoughtbot. Today I ran into this strange situation where Netbeans wasn&#8217;t showing the folds for one of my files, but it did for the others.<br />
The reason why no folds were appearing in one of the files was that its name didn&#8217;t end in &#8216;_test.rb&#8217;. I changed it and the &#8216;context&#8217; and &#8217;should&#8217; code folds appeared.<br />
That was pretty annoying, but good thing I found out.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asimilia.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asimilia.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asimilia.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asimilia.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asimilia.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asimilia.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asimilia.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asimilia.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asimilia.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asimilia.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=61&subd=asimilia&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asimilia.wordpress.com/2009/01/18/netbeans-65-code-folding-and-test-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6dd10772cfa5333c5db924091464ed95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nachocab</media:title>
		</media:content>
	</item>
		<item>
		<title>5 Mind-blowing firebug secrets</title>
		<link>http://asimilia.wordpress.com/2009/01/13/5-mind-blowing-firebug-tips/</link>
		<comments>http://asimilia.wordpress.com/2009/01/13/5-mind-blowing-firebug-tips/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 21:36:15 +0000</pubDate>
		<dc:creator>nachocab</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asimilia.wordpress.com/?p=40</guid>
		<description><![CDATA[I spent my whole workday using Firebug, so discovering these was a huge productivity improvement for my workflow. Enjoy:
The power of Ctrl-Z
If you use Firebug console with the larger command line and you change tabs, the content of what you had typed gets erased. In the smaller command line you get what you previously entered [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=40&subd=asimilia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I spent my whole workday using Firebug, so discovering these was a huge productivity improvement for my workflow. Enjoy:</p>
<dt><strong>The power of Ctrl-Z</strong></dt>
<dd>If you use Firebug console with the <strong>larger command line</strong> and you change tabs, the content of what you had typed gets erased. In the smaller command line you get what you previously entered by hitting the up arraw. In the larger command line this doesn&#8217;t work, but if you hit Ctrl-Z you&#8217;ll be able to go back through the history of what you typed. Pretty Awesome. You can even close the tab or open the console in a new one and it will still remember.</dd>
<dd><a href="http://asimilia.files.wordpress.com/2009/01/tip1.png"><img class="aligncenter size-full wp-image-50" title="tip1" src="http://asimilia.files.wordpress.com/2009/01/tip1.png?w=500&#038;h=158" alt="tip1" width="500" height="158" /></a> </dd>
<dt><strong>Programmatic Debugger</strong></dt>
<dd>Being able to place breakpoints using the debugger in the script tab is pretty awesome, but if you need more flexibility (say, stop everytime a loop is run) you can use the <code>debugger </code>keyword inside your JS code and it will break every time it&#8217;s called, then you only have to hit play to resume until the next breakpoint</dd>
<dd><a href="http://asimilia.files.wordpress.com/2009/01/tip2.png"><img class="aligncenter size-full wp-image-51" title="tip2" src="http://asimilia.files.wordpress.com/2009/01/tip2.png?w=500&#038;h=158" alt="tip2" width="500" height="158" /></a> </dd>
<dt><strong>Legibility in the Console</strong></dt>
<dd>If, for example, you have a long chunk of HTML code that you are appending to a node, it might be easier to indent it, but because it&#8217;s wraped in quotes you&#8217;ll get an &#8220;<a class="objectLink objectLink-object"><span class="objectTitle">unterminated string literal</span></a>&#8221; error. A solution to this is using backslashes (&#8220;\&#8221;) to indicate a line break. Just be sure to not leave any spaces to the right of the backslash.</p>
<p>Remember also, that you can use regular JS comments (&#8220;//&#8221;, &#8220;/**/&#8221;) in the console. This can be useful for quick toggling of certain lines</p>
<p><a href="http://asimilia.files.wordpress.com/2009/01/tip3.png"><img class="aligncenter size-full wp-image-52" title="tip3" src="http://asimilia.files.wordpress.com/2009/01/tip3.png?w=500&#038;h=158" alt="tip3" width="500" height="158" /></a></p>
</dd>
<dt><strong>Docking to the Right</strong></dt>
<dd>There is a great Firefox addon called <a href="http://www.command-tab.com/2008/01/19/widerbug-widescreen-firebug/">Widerbug</a> which allows you to dock Firebug to the right of your screen. I know it&#8217;s been around for some time, but I only found about it today, so that&#8217;s why I&#8217;m including it. The only problem I have with it is that once you select the Firefox tab where Widerbug is running it squishes the other tabs to the left, and I find it kind of annoying, but it&#8217;s a great way to use your widescreen monitor&#8217;s real estate</dd>
<dd><a href="http://asimilia.files.wordpress.com/2009/01/tip4.png"><img class="aligncenter size-full wp-image-53" title="tip4" src="http://asimilia.files.wordpress.com/2009/01/tip4.png?w=500&#038;h=158" alt="tip4" width="500" height="158" /></a></dd>
<dt><strong>Messages From Your Code</strong></dt>
<dd>Do yourself a favor and stop using the alert() call to debug your app, if you still are. A much more legible way is using console.info(). There are other varieties like console.log(), console.error(), etc., but I like the blue &#8220;i&#8221; this one shows.</p>
<p>Also, remember you can insert as many things as you want in a single message, so instead of doing this</p>
<p><code>console.info("My array has " + arr.length + " items")//notice the spaces<br />
</code></p>
<p>You should be doing this:</p>
<p><code>console.info("My array has", arr.length, "items", "look:", arr)</code></p>
<p><a href="http://asimilia.files.wordpress.com/2009/01/tip51.png"><img class="aligncenter size-full wp-image-55" title="tip51" src="http://asimilia.files.wordpress.com/2009/01/tip51.png?w=500&#038;h=158" alt="tip51" width="500" height="158" /></a></p>
<p style="text-align:center;">
<p>Happy coding, and tell me if you&#8217;ve found these useful.</p>
<p>Note: As of this writing I&#8217;m using Firebug 1.3.0b7</p>
<p>Bonus tip: Install the Monaco font, it&#8217;s so much nicer and Courier New.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asimilia.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asimilia.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asimilia.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asimilia.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asimilia.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asimilia.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asimilia.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asimilia.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asimilia.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asimilia.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=40&subd=asimilia&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asimilia.wordpress.com/2009/01/13/5-mind-blowing-firebug-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6dd10772cfa5333c5db924091464ed95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nachocab</media:title>
		</media:content>

		<media:content url="http://asimilia.files.wordpress.com/2009/01/tip1.png" medium="image">
			<media:title type="html">tip1</media:title>
		</media:content>

		<media:content url="http://asimilia.files.wordpress.com/2009/01/tip2.png" medium="image">
			<media:title type="html">tip2</media:title>
		</media:content>

		<media:content url="http://asimilia.files.wordpress.com/2009/01/tip3.png" medium="image">
			<media:title type="html">tip3</media:title>
		</media:content>

		<media:content url="http://asimilia.files.wordpress.com/2009/01/tip4.png" medium="image">
			<media:title type="html">tip4</media:title>
		</media:content>

		<media:content url="http://asimilia.files.wordpress.com/2009/01/tip51.png" medium="image">
			<media:title type="html">tip51</media:title>
		</media:content>
	</item>
		<item>
		<title>jQuery (QUnit): sharing variables between tests in different modules</title>
		<link>http://asimilia.wordpress.com/2008/12/18/jquery-qunit-sharing-variables-between-tests-in-different-modules/</link>
		<comments>http://asimilia.wordpress.com/2008/12/18/jquery-qunit-sharing-variables-between-tests-in-different-modules/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 16:26:34 +0000</pubDate>
		<dc:creator>nachocab</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asimilia.wordpress.com/?p=36</guid>
		<description><![CDATA[I went crazy for a few days trying to find out how to share variables between my tests in QUnit. If anybody knows of a better way, please share. This is an example of how to share the variable $phrases between two tests in two different modules:

$(document).ready(function () {
  //variables you want to share.
 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=36&subd=asimilia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I went crazy for a few days trying to find out how to share variables between my tests in QUnit. If anybody knows of a better way, please share. This is an example of how to share the variable <strong>$phrases</strong> between two tests in two different modules:</p>
<pre class="brush: jscript;">
$(document).ready(function () {
  //variables you want to share.
  var $phrases = $(&quot;#phrases li&quot;)

  module(&quot;Attributes:&quot;);
  test(&quot;trying out text():&quot;, function() {
    same($phrases.eq(0).text(), &quot;myText&quot;);
  };
  module(&quot;Traversing:&quot;);
  test(&quot;trying out contents()&quot;, function() {
    same($phrases.eq(2).contents(), &quot;&lt;#text&gt;&lt;/#text&gt;&quot;)
  };
});
</pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asimilia.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asimilia.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asimilia.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asimilia.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asimilia.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asimilia.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asimilia.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asimilia.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asimilia.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asimilia.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=36&subd=asimilia&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asimilia.wordpress.com/2008/12/18/jquery-qunit-sharing-variables-between-tests-in-different-modules/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6dd10772cfa5333c5db924091464ed95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nachocab</media:title>
		</media:content>
	</item>
		<item>
		<title>jQuery: $.extend() and $.fn.extend() confusion</title>
		<link>http://asimilia.wordpress.com/2008/12/17/jquery-extend-confusion/</link>
		<comments>http://asimilia.wordpress.com/2008/12/17/jquery-extend-confusion/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 17:36:26 +0000</pubDate>
		<dc:creator>nachocab</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://asimilia.wordpress.com/?p=25</guid>
		<description><![CDATA[There is a significant difference between using .extend() with one argument and doing it with two or more:
When .extend() receives a single object, it adds the methods defined in it to either the jQuery or the jQuery.fn (also called jQuery.prototype and $.fn) objects.
As a general rule, you should extend the jQuery object for functions and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=25&subd=asimilia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>There is a significant difference between using .extend() with one argument and doing it with two or more:</p>
<p><strong>When .extend() receives a single object,</strong> it adds the methods defined in it to either the jQuery or the jQuery.fn (also called jQuery.prototype and $.fn) objects.</p>
<p>As a general rule, you should extend the jQuery object for functions and the jQuery.fn object for methods. A function, as opposed to a method, is not accessed directly from the DOM.</p>
<p>Notice the different way of calling a method when extending the jQuery.fn or jQuery objects. The receiver (what&#8217;s left of the period) changes.</p>
<pre class="brush: jscript;">
$.fn.extend({
    myMethod: function(){...}
});
//jQuery(&quot;div&quot;).myMethod();

$.extend({
    myMethod2: function(){...}
});
//jQuery.myMethod();
</pre>
<p><strong>When .extend() receives two or more objects, </strong>it takes the first object and adds to it the methods and variables defined in the other objects. See an example:</p>
<pre class="brush: jscript;">
defaults = { size: 3 };
options = { height: 6 };
var opts = $.extend(defaults, options)
// 'defaults' receives the methods and variables defined in 'options'
// opts == defaults == { size: 3, height: 6 }
// options == { height: 6 };
</pre>
<p>If the first object is empty, it will add the methods and variables in a new object. This is useful when we want to group the methods defined in several objects without modifying any of them:</p>
<pre class="brush: jscript;">
&lt;pre&gt;var opts = $.extend( {}, defaults, options)
// 'opts' gets all methods and variables defined in 'defaults' and 'options',
// neither of them get modified.
// opts == { size: 3, height: 6 }
// defaults == { size: 3 };
// options == { height: 6 };
</pre>
 Tagged: jQuery <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asimilia.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asimilia.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asimilia.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asimilia.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asimilia.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asimilia.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asimilia.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asimilia.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asimilia.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asimilia.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=25&subd=asimilia&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asimilia.wordpress.com/2008/12/17/jquery-extend-confusion/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6dd10772cfa5333c5db924091464ed95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nachocab</media:title>
		</media:content>
	</item>
		<item>
		<title>Attribute_fu: has_many_without_association_option&#8217;: stack level too deep</title>
		<link>http://asimilia.wordpress.com/2008/10/30/attribute_fu-has_many_without_association_option-stack-level-too-deep/</link>
		<comments>http://asimilia.wordpress.com/2008/10/30/attribute_fu-has_many_without_association_option-stack-level-too-deep/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 07:05:08 +0000</pubDate>
		<dc:creator>nachocab</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asimilia.wordpress.com/?p=22</guid>
		<description><![CDATA[If you&#8217;re getthing this error, it&#8217;s probably because you have a /stable directory that got created while you were trying to install the plugin. So check that you only have /vendor/plugins/attribute_fu and not vendor/plugins/stable.
Also, if you want to install attribute_fu but using piston doesn&#8217;t work, try this:
svn checkout http://svn.jamesgolick.com/attribute_fu/tags/stable vendor/plugins/attribute_fu
Happy nesting!
     [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=22&subd=asimilia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you&#8217;re getthing this error, it&#8217;s probably because you have a /stable directory that got created while you were trying to install the plugin. So check that you only have /vendor/plugins/attribute_fu and not vendor/plugins/stable.</p>
<p>Also, if you want to install attribute_fu but using piston doesn&#8217;t work, try this:</p>
<p>svn checkout http://svn.jamesgolick.com/attribute_fu/tags/stable vendor/plugins/attribute_fu</p>
<p>Happy nesting!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asimilia.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asimilia.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asimilia.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asimilia.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asimilia.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asimilia.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asimilia.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asimilia.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asimilia.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asimilia.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=22&subd=asimilia&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asimilia.wordpress.com/2008/10/30/attribute_fu-has_many_without_association_option-stack-level-too-deep/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6dd10772cfa5333c5db924091464ed95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nachocab</media:title>
		</media:content>
	</item>
		<item>
		<title>RESOLVED: ActiveRecord::StatementInvalid: SQlite3::SQLException: SQL logic error or missing database</title>
		<link>http://asimilia.wordpress.com/2008/06/23/sqlite3sqlexception-sql-logic-error-or-missing-database/</link>
		<comments>http://asimilia.wordpress.com/2008/06/23/sqlite3sqlexception-sql-logic-error-or-missing-database/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 18:30:58 +0000</pubDate>
		<dc:creator>nachocab</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[sqlite3]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://asimilia.wordpress.com/?p=14</guid>
		<description><![CDATA[1) Delete any fixtures located in test/fixtures.
2) Solved.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=14&subd=asimilia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>1) Delete any fixtures located in test/fixtures.<br />
2) Solved.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/asimilia.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/asimilia.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asimilia.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asimilia.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asimilia.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asimilia.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asimilia.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asimilia.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asimilia.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asimilia.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asimilia.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asimilia.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=14&subd=asimilia&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asimilia.wordpress.com/2008/06/23/sqlite3sqlexception-sql-logic-error-or-missing-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6dd10772cfa5333c5db924091464ed95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nachocab</media:title>
		</media:content>
	</item>
		<item>
		<title>The startup</title>
		<link>http://asimilia.wordpress.com/2008/05/15/the-startup/</link>
		<comments>http://asimilia.wordpress.com/2008/05/15/the-startup/#comments</comments>
		<pubDate>Thu, 15 May 2008 21:54:22 +0000</pubDate>
		<dc:creator>nachocab</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[language learning startup]]></category>

		<guid isPermaLink="false">http://asimilia.wordpress.com/?p=11</guid>
		<description><![CDATA[I&#8217;m determined to gracefully quit my job so I can stop working to get paid and start getting paid for doing what I like. My passions right now are languages and web design, so what better way to do it than by launching a startup?
I&#8217;m building an application to see how other people learn a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=11&subd=asimilia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m determined to gracefully quit my job so I can stop working to get paid and start getting paid for doing what I like. My passions right now are languages and web design, so what better way to do it than by launching a startup?</p>
<p>I&#8217;m building an application to see how other people learn a foreign language; this provides a significant advantage because the learner can build on top of what others have already found useful. It is done by allowing each user to write down what they find difficult about the language as well as the information that helps them understand it in a personal notebook. All the notebooks are shared, and instead of finding out how to understand a particular difficulty, a user can just see how another person solved the problem. Moving from difficulty to difficulty is the best way to explore the language, improve motivation and guarantee true learning.</p>
<p>I&#8217;m on the initial stages of the application and in order to do it properly I would need two partners to help me with the design and the coding (Ruby on Rails). If anybody is interested drop me a line at nachocab at) gmail dot com.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/asimilia.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/asimilia.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asimilia.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asimilia.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asimilia.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asimilia.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asimilia.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asimilia.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asimilia.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asimilia.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asimilia.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asimilia.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=11&subd=asimilia&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asimilia.wordpress.com/2008/05/15/the-startup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6dd10772cfa5333c5db924091464ed95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nachocab</media:title>
		</media:content>
	</item>
		<item>
		<title>There is a single place for everything</title>
		<link>http://asimilia.wordpress.com/2008/03/11/there-is-a-single-place-for-everything/</link>
		<comments>http://asimilia.wordpress.com/2008/03/11/there-is-a-single-place-for-everything/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 07:35:48 +0000</pubDate>
		<dc:creator>nachocab</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://asimilia.wordpress.com/?p=9</guid>
		<description><![CDATA[
I just finished watching Merlin Mann&#8217;s Inbox Zero Talk and I realized that the reason why my initial attempt to integrate language learning with my daily to-do list had failed (the picture is just an extract from my 300 item list at todoist. I was mixing the things that I needed to get done (ACTION) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=9&subd=asimilia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://asimilia.files.wordpress.com/2008/03/todoist.png" alt="my old to-do list" /></p>
<p>I just finished watching <a href="http://www.43folders.com/2007/07/25/merlins-inbox-zero-talk">Merlin Mann&#8217;s Inbox Zero Talk</a> and I realized that the reason why my initial attempt to integrate language learning with my daily to-do list had failed (the picture is just an extract from my 300 item list at <a href="http://todoist.com">todoist</a>. I was mixing the things that I needed to get done (ACTION) with the words that I needed to study (LEARN). If there is a single place for everything, acting and learning should never go together. The only moment where action is related to learning is when you actually decide that you have to start studying. But once you have initiated this action, what you need is a proper environment for learning.</p>
<p>This is definitely not a to-do list. I still have to figure out what it will be, but it will probably be called <b>asimilia </b> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/asimilia.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/asimilia.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asimilia.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asimilia.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asimilia.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asimilia.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asimilia.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asimilia.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asimilia.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asimilia.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asimilia.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asimilia.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=9&subd=asimilia&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asimilia.wordpress.com/2008/03/11/there-is-a-single-place-for-everything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6dd10772cfa5333c5db924091464ed95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nachocab</media:title>
		</media:content>

		<media:content url="http://asimilia.files.wordpress.com/2008/03/todoist.png" medium="image">
			<media:title type="html">my old to-do list</media:title>
		</media:content>
	</item>
		<item>
		<title>Balancing my day job, my app and my blog</title>
		<link>http://asimilia.wordpress.com/2008/03/10/balancing-my-day-job-my-app-and-my-blog/</link>
		<comments>http://asimilia.wordpress.com/2008/03/10/balancing-my-day-job-my-app-and-my-blog/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 07:17:13 +0000</pubDate>
		<dc:creator>nachocab</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gtd]]></category>
		<category><![CDATA[time management]]></category>
		<category><![CDATA[vacation]]></category>

		<guid isPermaLink="false">http://asimilia.wordpress.com/?p=6</guid>
		<description><![CDATA[My original resolution of writing 5 times a week is proving to be quite unrealistic  . I work from 9:30 to 18:30, so the only time I have left is 5 hours between 19:00 and midnight. This would appear to be a decent amount of time but, even if I sit down in front [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=6&subd=asimilia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>My <a href="http://asimilia.wordpress.com/2008/03/01/hello-world/" title="My First Post" target="_blank">original resolution</a> of writing 5 times a week is proving to be quite unrealistic <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I work from 9:30 to 18:30, so the only time I have left is 5 hours between 19:00 and midnight. This would appear to be a decent amount of time but, even if I sit down in front of the computer as soon as I get back from work, it never feels like I accomplish much. If on top of this I have to do some other kind of chore (e. g. cooking, laundry, sweeping, mopping and a long etcetera) time literally flies. I doubt it&#8217;s a lack of <a href="http://en.wikipedia.org/wiki/Getting_Things_Done" target="_blank">GTD </a>discipline, but I&#8217;ll keep it in mind.</p>
<p>Yesterday was a very productive day in particular. The electricity in my house went out and, even though I was surprised that anybody worked in France on a Sunday afternoon, somebody from EDF eventually came to fix it. The rest of the day I spent downgrading Rails from 2.0.2 to 1.2.6 because I got tired of not being able to follow <a href="http://railscasts.com/" target="_blank">Ryan&#8217;s Railscasts</a>. A very productive day, indeed.</p>
<p>Anyway, on Thursday I&#8217;m going on vacation to Brazil and that means +7 days to the first release date. Naturally, in this case, I think it&#8217;s worth it.<a href="http://asimilia.files.wordpress.com/2008/03/spaceball1.gif" title="Ipanema"><img src="http://asimilia.files.wordpress.com/2008/03/spaceball1.thumbnail.gif" alt="Ipanema" /></a><img src="http://asimilia.files.wordpress.com/2008/03/spaceball1.gif" alt="Ipanema" /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/asimilia.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/asimilia.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asimilia.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asimilia.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asimilia.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asimilia.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asimilia.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asimilia.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asimilia.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asimilia.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asimilia.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asimilia.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=6&subd=asimilia&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asimilia.wordpress.com/2008/03/10/balancing-my-day-job-my-app-and-my-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6dd10772cfa5333c5db924091464ed95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nachocab</media:title>
		</media:content>

		<media:content url="http://asimilia.files.wordpress.com/2008/03/spaceball1.thumbnail.gif" medium="image">
			<media:title type="html">Ipanema</media:title>
		</media:content>

		<media:content url="http://asimilia.files.wordpress.com/2008/03/spaceball1.gif" medium="image">
			<media:title type="html">Ipanema</media:title>
		</media:content>
	</item>
		<item>
		<title>When learning a language stops being a linear experience</title>
		<link>http://asimilia.wordpress.com/2008/03/06/when-learning-a-language-stops-being-a-linear-experience/</link>
		<comments>http://asimilia.wordpress.com/2008/03/06/when-learning-a-language-stops-being-a-linear-experience/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 06:21:27 +0000</pubDate>
		<dc:creator>nachocab</dc:creator>
				<category><![CDATA[language learning]]></category>

		<guid isPermaLink="false">http://asimilia.wordpress.com/?p=5</guid>
		<description><![CDATA[During the first year of high school Spanish the average student learns around 400 new words and expressions in only a few months. Many of these words are learned without an incredible amount of effort from the student’s part. This is a pretty good number if we consider that classes are an average of 40 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=5&subd=asimilia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>During the first year of high school Spanish the average student learns around 400 new words and expressions in only a few months. Many of these words are learned without an incredible amount of effort from the student’s part. This is a pretty good number if we consider that classes are an average of 40 minutes long and filled with inattentive teenagers. This shows that vocabulary learning at the early stages is a linear process: if you put in an average amount of effort, you will get a decent retention rate in result.After we learn enough words—around 1,000 for Spanish—the learning curve goes up exponentially. The amount of time we put in is no longer proportional to the number of words we can remember. This is because the way most people learn new words is by repeated exposure. We don’t go running to the dictionary every time we hear a word that we are not familiar with. But if we hear it three or four times, we might actually look it up. The same holds true for learning words in a foreign language: the words that get learned first are those that get repeated the most. When the percentage of repetition gets too low–that is, when we don’t get to see or hear the word very often– it keeps getting harder and harder to find the motivation to actually pick up the dictionary and look it up. Especially if the meaning can be guessed from the context.</p>
<p>This means that if we found a way to give more focus to less frequently repeated words, we could still learn them as fast as we did in the beginning. This is what I am currently working on: decreasing the difficulty bump that comes after the initial stages of the learning process.</p>
<p class="MsoNormal">
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/asimilia.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/asimilia.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asimilia.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asimilia.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asimilia.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asimilia.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asimilia.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asimilia.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asimilia.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asimilia.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asimilia.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asimilia.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=5&subd=asimilia&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asimilia.wordpress.com/2008/03/06/when-learning-a-language-stops-being-a-linear-experience/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6dd10772cfa5333c5db924091464ed95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nachocab</media:title>
		</media:content>
	</item>
		<item>
		<title>The first step</title>
		<link>http://asimilia.wordpress.com/2008/03/01/hello-world/</link>
		<comments>http://asimilia.wordpress.com/2008/03/01/hello-world/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 22:18:25 +0000</pubDate>
		<dc:creator>nachocab</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[language learning]]></category>
		<category><![CDATA[motivation]]></category>
		<category><![CDATA[plan]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This is the most important step, so I&#8217;ll make it short but to the point. I love learning languages and I want to share what I know so other people can benefit from it. Eventually, I&#8217;d like to make this my day job. But in order to do that I need to:

Create a revolutionary product [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=1&subd=asimilia&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is the most important step, so I&#8217;ll make it short but to the point. I love learning languages and I want to share what I know so other people can benefit from it. Eventually, I&#8217;d like to make this my day job. But in order to do that I need to:</p>
<ol>
<li>Create a revolutionary product that others can use to learn languages.</li>
<li>Gather a community of people around it.</li>
<li>Quit my current day job.</li>
</ol>
<p>This is the plan (at least I have a plan). Step one: done! The journey has begun <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/asimilia.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/asimilia.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asimilia.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asimilia.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asimilia.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asimilia.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asimilia.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asimilia.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asimilia.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asimilia.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asimilia.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asimilia.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asimilia.wordpress.com&blog=3031867&post=1&subd=asimilia&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://asimilia.wordpress.com/2008/03/01/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6dd10772cfa5333c5db924091464ed95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nachocab</media:title>
		</media:content>
	</item>
	</channel>
</rss>