<?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>Ddailygirl&#039;s Blog</title>
	<atom:link href="http://ddailygirl.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ddailygirl.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Mon, 22 Nov 2010 22:18:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ddailygirl.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ddailygirl&#039;s Blog</title>
		<link>http://ddailygirl.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ddailygirl.wordpress.com/osd.xml" title="Ddailygirl&#039;s Blog" />
	<atom:link rel='hub' href='http://ddailygirl.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Big O</title>
		<link>http://ddailygirl.wordpress.com/2010/11/22/big-o/</link>
		<comments>http://ddailygirl.wordpress.com/2010/11/22/big-o/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 22:12:05 +0000</pubDate>
		<dc:creator>Adelein Rodriguez</dc:creator>
				<category><![CDATA[Software & Design]]></category>
		<category><![CDATA[algorithms]]></category>
		<category><![CDATA[big o]]></category>

		<guid isPermaLink="false">http://ddailygirl.wordpress.com/?p=137</guid>
		<description><![CDATA[So this problem came from a discussion with some friends that went on for 3 days. Although this looks like a simple big O analysis it was quite deceiving for me (and apparently for everyone else) when I first saw it and went from guessing it was O(N^8), then guessing again O(N^6) to finally O(N^4) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=137&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So this problem came from a discussion with some friends that went on for 3 days. Although  this looks like a simple big O analysis it was quite deceiving for me (and apparently for everyone else) when I first saw it and went from <em>guessing</em> it was O(N^8), then <em>guessing</em> again O(N^6) to finally O(N^4) with some real analysis.<br />
This is a typical case when your brain wants to make things worse than they are.</p>
<p><strong>The problem is: What is the big O of a piece of code like this given than array.length is O(N)?</strong></p>
<p>for i&#8230; N array.length<br />
&#8212;&gt;for j&#8230; N array.length<br />
&#8212;&#8212;&gt;for k&#8230; N array.length</p>
<p>My approach was to imagine it first for the case we usually know, <strong>when array.length is O(1)</strong>.<br />
If you think of it graphically, the first two loops can be seen as a 2D matrix. Every i,j in the matrix represents the big O of one step.<br />
Then if we &#8220;zoom in&#8221; into any of those steps, we see that every &#8220;1&#8243; unrolls into a O(N) operation because of the third loop. So in total we come up with O(N^3).</p>
<p>for i&#8230; N array.length<br />
&#8212;&gt;for j&#8230; N array.length<br />
&#8212;&#8212;&gt;for k&#8230; N array.length</p>
<pre>
_________N_____

   j0   j1  j2  j3  j4
i0 1   1   1   1   1
i1 1   1   1   1   1 ...    |
i2 1   1   1   1   1        N
i3 1   1   1   1   1        |
i4 1   1   1   1   1                    &lt;--O(N*N ) = O(N^2)
            |
           /\  (exploding a step)
          /  \
              _
      k0 1    |                         &lt;--O(N)
      k1 1    N
      k2 1    |
      k3 1                           So O(N * N^2) = O(N^3)
</pre>
<p>Now I imagined it for the case of our problem, <strong>when array.length takes O(N)</strong>. In the i,j matrix every step now is not  &#8220;1&#8243; but &#8220;2N+1&#8243; because it includes 2 array.length (one for the i loop and another for the j loop). Then if we &#8220;zoom in&#8221; into any of those steps, we see that every &#8220;2N+1&#8243; becomes &#8220;2N+N^2&#8243; since the third loop is now O(N^2). So the total of the i,j matrix is O(N^4).</p>
<p>for i&#8230; N array.length<br />
&#8212;&gt;for j&#8230; N array.length<br />
&#8212;&#8212;&gt;for k&#8230; N array.length</p>
<pre>
________________N______

      j0       j1         j2
i0 ( 2N+1)  ( 2N+1)   ( 2N+1)
i1 ( 2N+1)  ( 2N+1)   ( 2N+1)         |
i2 ( 2N+1)  ( 2N+1)   ( 2N+1)         N
i3 ( 2N+1)  ( 2N+1)   ( 2N+1)         |
i4 ( 2N+1)  ( 2N+1)   ( 2N+1)       &lt;-- O((2N+1)*(N)) = O(N^2)
                  |
                 /\   (exploding a step)
                /  \  

            k0 1+N   |              &lt;--  O(N*(N+1)) = O(N^2)
            k1 1+N   N
            k2 1+N   |
            k3 1+N                

                                        So O(N^2 * N^2) = O(N^4)
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ddailygirl.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ddailygirl.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ddailygirl.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ddailygirl.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ddailygirl.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ddailygirl.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ddailygirl.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ddailygirl.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ddailygirl.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ddailygirl.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ddailygirl.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ddailygirl.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ddailygirl.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ddailygirl.wordpress.com/137/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=137&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ddailygirl.wordpress.com/2010/11/22/big-o/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a18028e3b544ba6922fdfb60114836e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ddailygirl</media:title>
		</media:content>
	</item>
		<item>
		<title>Recovering files after rm in Linux</title>
		<link>http://ddailygirl.wordpress.com/2010/08/17/recovering-files-after-rm-in-linux/</link>
		<comments>http://ddailygirl.wordpress.com/2010/08/17/recovering-files-after-rm-in-linux/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 23:50:59 +0000</pubDate>
		<dc:creator>Adelein Rodriguez</dc:creator>
				<category><![CDATA[Software & Design]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[file recovery]]></category>
		<category><![CDATA[foremost]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://ddailygirl.wordpress.com/?p=119</guid>
		<description><![CDATA[This is in brief how I recovered 20+ files I had lost after an accidental &#8216;rm&#8217;. It was simpler than I expected. My case System: Ubuntu Time I started recovery: 1 hour after having done &#8216;rm&#8217; Files recovered: html, css, .py How to Run `df` to find out which drive the files are in. Eg. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=119&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is in brief how I recovered 20+ files I had lost after an accidental &#8216;rm&#8217;. It was simpler than I expected.</p>
<p><strong>My case</strong></p>
<li>System: Ubuntu</li>
<li>Time I started recovery: 1 hour after having done &#8216;rm&#8217;</li>
<li>Files recovered: html, css, .py</li>
<p>
<strong>How to</strong></p>
<li>Run `<strong>df</strong>` to find out which drive the files are in. Eg. /dev/sda1, or /dev/sd6</li>
<p></p>
<li>`<strong>sudo vim /etc/foremost.conf</strong>` You will see various file formats and need to uncomment the ones you want. In my case I needed to add .py files. For .py files you need to specify how the files usually start, so I used the &#8220;import&#8221; expression as a match. For html files you can use the &#8220;&#8221; tag or something of the sort.</li>
<p></p>
<li>`<strong>sudo foremost -i /dev/sda6 -o recovered_files</strong>` (-o is for the directory to where you want to output the recovered files). This will start running and go on for a while trying to recover as many deleted files as it can find. In the meanwhile you can do the next step</li>
<p></p>
<li><strong>Look inside the recovered_files folde</strong>r. Here there should be a directory for each file extension you are looking for. In my case I find a <strong>py, html, and css folder</strong>. Inside each of those folders you will find hopefully numeric file names with the extensions. (Eg. 2342344.py). These are the recovered files.</li>
<p></p>
<li><strong>`find recovered_files/py/ -type f -print0 | xargs -0 grep &#8220;class UserProfile:&#8221;`</strong> This is so that we can narrow it down to the files we want from the recovered files. We cannot use a regular grep because there might be too many files and you will get: <strong>/bin/grep: arg list too long </strong></li>
<p></p>
<p>For more details checkout the <a href="https://help.ubuntu.com/community/DataRecovery">foremost</a> tool.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ddailygirl.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ddailygirl.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ddailygirl.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ddailygirl.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ddailygirl.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ddailygirl.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ddailygirl.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ddailygirl.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ddailygirl.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ddailygirl.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ddailygirl.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ddailygirl.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ddailygirl.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ddailygirl.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=119&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ddailygirl.wordpress.com/2010/08/17/recovering-files-after-rm-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a18028e3b544ba6922fdfb60114836e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ddailygirl</media:title>
		</media:content>
	</item>
		<item>
		<title>Stupid or Not: A Bubble/Jail Filesystem for Chrome Extensions</title>
		<link>http://ddailygirl.wordpress.com/2009/12/18/stupid-or-not-a-bubblejail-filesystem-for-chrome-extensions/</link>
		<comments>http://ddailygirl.wordpress.com/2009/12/18/stupid-or-not-a-bubblejail-filesystem-for-chrome-extensions/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 23:20:54 +0000</pubDate>
		<dc:creator>Adelein Rodriguez</dc:creator>
				<category><![CDATA[Software & Design]]></category>
		<category><![CDATA[Software Ideas]]></category>

		<guid isPermaLink="false">http://ddailygirl.wordpress.com/?p=103</guid>
		<description><![CDATA[Note: The Stupid or Not posts are simply dumps of ideas that cross my mind and for which I have no time to research into, nor the resources to implement myself. Yet they pass the &#8220;3 days &#8211; rotten or not&#8221; test, so here it is: Context I was at a Google Chrome Extension event [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=103&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Note: The Stupid or Not posts are simply dumps of ideas that cross my mind and for which I have no time to research into, nor the resources to implement myself. Yet they pass the &#8220;3 days &#8211; rotten or not&#8221; test, so here it is:</p>
<p><strong>Context</strong></p>
<p>I was at a <a href="http://blog.chromium.org/2009/12/google-chrome-extensions-quick-recap-of.html">Google Chrome Extension event </a> , and thought of how it would interact with the media that connects to your computer, and <em>would extensions be able to access your filesystem to grab let say, pictures from a USB?</em><br />
The answer is as usual, &#8220;yes and no.&#8221; Since the extensions are javascript, for security reasons extensions are <a href="http://en.wikipedia.org/wiki/Sandbox_(computer_security)">sandboxed</a>, so javascript by itself is not able to access the filesystem but it can load dll&#8217;s that can access it.</p>
<p>I got curious because:</p>
<p>1) Chrome OS does interact with the filesystem to provide all the same access to media(Eg. USBN Drive) that a regular OS provides.<br />
2) Chrome browser extensions will potentially need to expand to interact with the user&#8217;s media.<br />
3) So will this sandbox need to be breached or not?</p>
<p><strong>Idea</strong></p>
<p>A bubble (or jail-like filesystem) where a chunk of the filesystem is assigned to the extension so that it can interact with the media safely, similar to a <a href="http://en.wikipedia.org/wiki/Jail_(computer_security)">jail</a><br />
<div id="attachment_108" class="wp-caption aligncenter" style="width: 310px"><a href="http://ddailygirl.files.wordpress.com/2009/12/bubble-filesystem-adelein-rodriguez.jpg"><img src="http://ddailygirl.files.wordpress.com/2009/12/bubble-filesystem-adelein-rodriguez.jpg?w=300&#038;h=166" alt="Idea for a simple jailed filesystem" title="bubble-filesystem" width="300" height="166" class="size-medium wp-image-108" /></a><p class="wp-caption-text">Idea for a simple jailed filesystem for applications of Google Chrome OS and Chrome Browser Extensions</p></div></p>
<p><strong>Is this idea stupid or not? Feel free to comment!</strong><br />
.</p>
<p>Thanks <a href="http://orlandopozo.com">Orlando</a> for the explanation of current state of affairs of the javascript sandbox!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ddailygirl.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ddailygirl.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ddailygirl.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ddailygirl.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ddailygirl.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ddailygirl.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ddailygirl.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ddailygirl.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ddailygirl.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ddailygirl.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ddailygirl.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ddailygirl.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ddailygirl.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ddailygirl.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=103&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ddailygirl.wordpress.com/2009/12/18/stupid-or-not-a-bubblejail-filesystem-for-chrome-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a18028e3b544ba6922fdfb60114836e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ddailygirl</media:title>
		</media:content>

		<media:content url="http://ddailygirl.files.wordpress.com/2009/12/bubble-filesystem-adelein-rodriguez.jpg?w=300" medium="image">
			<media:title type="html">bubble-filesystem</media:title>
		</media:content>
	</item>
		<item>
		<title>TODO&#8217;ing my life</title>
		<link>http://ddailygirl.wordpress.com/2009/09/13/todoing-my-life/</link>
		<comments>http://ddailygirl.wordpress.com/2009/09/13/todoing-my-life/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 19:08:25 +0000</pubDate>
		<dc:creator>Adelein Rodriguez</dc:creator>
				<category><![CDATA[productivity]]></category>
		<category><![CDATA[blah blah list]]></category>
		<category><![CDATA[gmail tasks]]></category>
		<category><![CDATA[organization]]></category>
		<category><![CDATA[project planning]]></category>
		<category><![CDATA[remember the milk]]></category>
		<category><![CDATA[self improvement]]></category>
		<category><![CDATA[task list]]></category>
		<category><![CDATA[toddle do lists]]></category>
		<category><![CDATA[todo lists]]></category>
		<category><![CDATA[user experience]]></category>

		<guid isPermaLink="false">http://ddailygirl.wordpress.com/?p=98</guid>
		<description><![CDATA[todo lists<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=98&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I went on a quest to find a simple, intuitive and collaborative Todo tool.</p>
<p>Sounds like an easy task right? Not really.</p>
<p>After trying several of the existing tools including some mentioned in <a title="techcrunch" href="http://www.techcrunch.com/2006/05/08/do-more-online-to-do-lists-compared/">techcruch</a> I realized what 4 what I would call &#8220;common sense&#8221; features still lacking in exiting apps.</p>
<p>While I truly appreciate there being free apps at all to use, I would rather use no tool than a handicapped one. Anyone share the same feeling?</p>
<ol>
<li><span style="color:#3366ff;">Task indentation:</span> Yes, this IS important because if we do not split a major task into several more tangible ones that task will probably never get done.</li>
<p></p>
<li><span style="color:#3366ff;">Collaboration</span><span style="color:#3366ff;">:</span> For simple project collaboration this is essential. I want to be able to add and cross out tasks at the same time as someone else working in the project. It shouldn&#8217;t require a full-featured project management software to have todo lists collaboration.</li>
<p></p>
<li><span style="color:#3366ff;">Import and Export</span><span style="color:#3366ff;">:  <span style="color:#000000;">If migrating from some old form of todo list (yes it could be notepad), it is useful to have a way to import these lists. I struggled forever trying to import lists from Gmail&#8217;s task app and failed to import indented tasks. </span></span></li>
<p></p>
<li><span style="color:#3366ff;">Fresh uncluttered feel</span>: Yes this is another overlooked &#8220;feature&#8221; but it is so important. If I am going to have a todo list I dont want it to be yet another tormenting and overwhelming factor in my life. I need a todo list that would say &#8220;yes! life is simple..do one task at a time..see the lots of white space?? see the lack of clutter?? see the tasks how clear they are?? you can do it!.&#8221; =)</li>
</ol>
<p>
<a href="http://mail.google.com/mail/help/tasks/">Gmail Tasks App</a>: This is by far the most intuitive yet simple app I have been able to use for more than a day. Its integration with a product I already use is ever better, less clicks to get things done. Yet it lacks collaboration. I can send an email with my task list but there is no way to update the list simultaneously.</p>
<p><a href="http://www.rememberthemilk.com">Remember the Milk</a> (RTM): Simple and lost of white space, but lacks the ability to indent tasks! You will see RTM recommended even in <a href="http://lifehacker.com/software/geek-to-live/get-organized-with-remember-the-milk-309789.php">lifehacker</a>.</p>
<p><a href="http://www.toodledo.com/views/index.php">Toddledo</a>: Finally found one app that has almost everything  I need yet its looks needs much more improvement.  It makes me feel as if the task generating monster is going to devour me.</p>
<p><a href="http://blablalist.com/">Blah blah List</a>: popups = more clicks. This is a no-no.</p>
<p><a href="http://tadalist.com/">Tada list</a> by 37 signals:  Again, lacks task indentation.</p>
<p>Any suggestions? Right now my best option is Google docs. It is collaborative, integrates with other google apps I already use, and it is easily accessed from igoogle.</p>
<p>Let me know what tools you use!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ddailygirl.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ddailygirl.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ddailygirl.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ddailygirl.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ddailygirl.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ddailygirl.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ddailygirl.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ddailygirl.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ddailygirl.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ddailygirl.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ddailygirl.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ddailygirl.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ddailygirl.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ddailygirl.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=98&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ddailygirl.wordpress.com/2009/09/13/todoing-my-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a18028e3b544ba6922fdfb60114836e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ddailygirl</media:title>
		</media:content>
	</item>
		<item>
		<title>XOR and double linked list</title>
		<link>http://ddailygirl.wordpress.com/2009/03/11/xor-and-double-linked-list/</link>
		<comments>http://ddailygirl.wordpress.com/2009/03/11/xor-and-double-linked-list/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 06:57:45 +0000</pubDate>
		<dc:creator>Adelein Rodriguez</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[programming linkedlist]]></category>

		<guid isPermaLink="false">http://ddailygirl.wordpress.com/?p=57</guid>
		<description><![CDATA[So this is a post about yet more intellectual masturbation yay! HOW TO STORE THE PREV AND NEXT POINTERS OF A NODE IN A DOUBLE LINKTED LIST IN A SINGLE ADDRESS. Intro In a double linked list there is the concept of a pointer to the previous and the next nodes. What we want to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=57&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-60" title="bicho" src="http://ddailygirl.files.wordpress.com/2009/03/bicho.png?w=455" alt="bicho"   /></p>
<p>So this is a post about yet more intellectual masturbation yay! <strong>HOW TO STORE THE PREV AND NEXT POINTERS OF A NODE IN A DOUBLE LINKTED LIST IN A SINGLE ADDRESS.</strong></p>
<p><strong>Intro</strong></p>
<p>In a double linked list there is the concept of a pointer to the previous and the next nodes. What we want to do here is store the addresses to the <strong>previous and next nodes in a single address</strong> using an XOR old trick.  To show you how this works we only need these two pieces of node which I got from a neat little explanation <a href="http://rumkin.com/reference/algorithms/linked_list/" target="_blank">here</a>. This code is meant for counting the nodes of the double linked list but in generally shows how to traverse the list encoding and decoding the previous and next addresses.</p>
<p><strong></strong></p>
<p><strong></p>
<pre><span style="color:#0000ff;">typedef struct node {
   struct node *diff;

   int data;
} node;</span></pre>
<p></strong></p>
<p><span style="color:#000000;"><span style="font-weight:normal;">Here *diff refers to the XOR of the addresses od previous and next pointer.</span></span></p>
<pre><span style="color:#0000ff;">unsigned long countNodes()
{
   unsigned long nodes = 0;
   node *curr, *prev, *temp;

   prev = NULL;
   curr = nodeHead;
   while (curr)
     {
	nodes ++;
	temp = curr;
	curr = XOR(prev, temp-&gt;diff);
	prev = temp;
     }

  return nodes;
}</span>
<span style="color:#0000ff;">
</span>
<span style="color:#0000ff;"><strong><span style="color:#000000;">Example</span></strong></span>
<strong>
</strong></pre>
<p>Lets say you have a linked list with nodes A, B, C.</p>
<ul>
<li>And Node A is at address 100000</li>
<li>And diff has address XOR (prev,next)= XOR (000000, B) = XOR (000000, 101110)  = 101110. <br />
 </li>
</ul>
<ul>
<li>Then we go into the loop inside countNodes() and in the first iteration this is what the state looks like :</li>
</ul>
<p>              temp = A = 100000</p>
<p>              curr = XOR ( prev,  diff )  = XOR ( 000000,  101110) = 101110</p>
<p>              prev = temp = 100000</p>
<p> </p>
<p>So now curr, which is the equivalent of the next node,  is pointing at B&#8217;s address ( 101110) and we have decoded this address using 2 main things:</p>
<ol>
<li>The diff variable in node A that contains the XOR of prev and next of A.</li>
<li>A varibale prev that keeps track of that the previous node&#8217;s address was. </li>
</ol>
<p>Keep in mind that although we are using 2 variables (and thus addresses) for figuring out what next is, we really only store one as part of each node since from these 2 vars one is reused every iterations, and thats the prev var.</p>
<p>cool aint it? : )</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p><strong><br />
</strong></p>
<p> </p>
<p><strong><br />
</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ddailygirl.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ddailygirl.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ddailygirl.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ddailygirl.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ddailygirl.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ddailygirl.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ddailygirl.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ddailygirl.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ddailygirl.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ddailygirl.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ddailygirl.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ddailygirl.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ddailygirl.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ddailygirl.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=57&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ddailygirl.wordpress.com/2009/03/11/xor-and-double-linked-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a18028e3b544ba6922fdfb60114836e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ddailygirl</media:title>
		</media:content>

		<media:content url="http://ddailygirl.files.wordpress.com/2009/03/bicho.png" medium="image">
			<media:title type="html">bicho</media:title>
		</media:content>
	</item>
		<item>
		<title>Bits and Pieces of Adventure</title>
		<link>http://ddailygirl.wordpress.com/2008/10/19/bits-and-pieces-of-adventure/</link>
		<comments>http://ddailygirl.wordpress.com/2008/10/19/bits-and-pieces-of-adventure/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 21:55:15 +0000</pubDate>
		<dc:creator>Adelein Rodriguez</dc:creator>
				<category><![CDATA[Spiritual Musings]]></category>
		<category><![CDATA[adventure]]></category>
		<category><![CDATA[shopping]]></category>
		<category><![CDATA[travel desire]]></category>

		<guid isPermaLink="false">http://ddailygirl.wordpress.com/?p=43</guid>
		<description><![CDATA[How often we go looking for the world and we think we find it in statues from Bombai, or in an African wood figure of features that smell like a foreign land, or earings of metals that are between the cheap and the unknown, or in the generally miscellaneous artifacts we believe are handcrafted. I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=43&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://farm2.static.flickr.com/1296/919064811_f29c0caa52.jpg?v=0"><img style="float:left;cursor:pointer;width:320px;margin:0 10px 10px 0;" src="http://farm2.static.flickr.com/1296/919064811_f29c0caa52.jpg?v=0" border="0" alt="" /></a><br />
How often we go looking for the world and we think we find it in statues from Bombai, or in an African wood figure of features that smell like a foreign land, or earings of metals that are between the cheap and the unknown, or in the generally miscellaneous artifacts we believe are handcrafted. I have always wondered why we pay such high prices for the unknown, for the exotic. If you have ever walked into one of these stores you will notice that prices are far from cheap.<br />
It is like the essence of people and civilizations is contained within these objects and we just want to absorb it, like you would a scent, and let it fill you of life from other cultures. So we buy these things and take them home, with hopes that it will remind us of how interesting the world is, and most of all, reminds us of our desire to explore, desire that has been perhaps buried along with other dreams. But how often it is that we buy these objects, and they just sit on our shelves, or even our ears, inanimate, they deceivingly showed life of their own, but they are just objects after all. The hands that made them, the cultures that nurtured them, sit somewhere across the globe waiting to be discovered.<br />
Today while wandering the streets of San Francisco I just happened to enter one of those stores.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ddailygirl.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ddailygirl.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ddailygirl.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ddailygirl.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ddailygirl.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ddailygirl.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ddailygirl.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ddailygirl.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ddailygirl.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ddailygirl.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ddailygirl.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ddailygirl.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ddailygirl.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ddailygirl.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=43&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ddailygirl.wordpress.com/2008/10/19/bits-and-pieces-of-adventure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a18028e3b544ba6922fdfb60114836e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ddailygirl</media:title>
		</media:content>

		<media:content url="http://farm2.static.flickr.com/1296/919064811_f29c0caa52.jpg?v=0" medium="image" />
	</item>
		<item>
		<title>Why women shop. A lot.</title>
		<link>http://ddailygirl.wordpress.com/2008/10/19/why-women-shop-a-lot/</link>
		<comments>http://ddailygirl.wordpress.com/2008/10/19/why-women-shop-a-lot/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 21:52:51 +0000</pubDate>
		<dc:creator>Adelein Rodriguez</dc:creator>
				<category><![CDATA[Daily Advise]]></category>
		<category><![CDATA[addiction]]></category>
		<category><![CDATA[anxiety]]></category>
		<category><![CDATA[creative women]]></category>
		<category><![CDATA[depression]]></category>
		<category><![CDATA[procastination]]></category>
		<category><![CDATA[shopping addiction]]></category>
		<category><![CDATA[shopping mania]]></category>
		<category><![CDATA[women shop]]></category>

		<guid isPermaLink="false">http://ddailygirl.wordpress.com/?p=5</guid>
		<description><![CDATA[If you are here you were quite possibly looking for ways to end your shopping addiction, or just to understand it? In this first post about this topic, I address the why. Read the how to STOP SHOPPING post. Why do we women shop?. This is a list compiled from my own experience, friends and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=5&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://4.bp.blogspot.com/_DIcYZx09AFs/SMdvUdltRaI/AAAAAAAAGzM/GOzSOfxQhdU/s1600-h/girl.jpg"><img style="float:right;cursor:pointer;margin:0 0 10px 10px;" src="http://4.bp.blogspot.com/_DIcYZx09AFs/SMdvUdltRaI/AAAAAAAAGzM/GOzSOfxQhdU/s320/girl.jpg" border="0" alt="" /></a><br />
If you are here you were quite possibly looking for ways to end your shopping addiction, or just to understand it? In this first post about this topic, I address the why. Read the how to STOP SHOPPING post.</p>
<p>Why do we women shop?. This is a list compiled from my own experience, friends and people I have known through the years. These are what I have considered the key reasons but I am open to suggestions.</p>
<p><span style="font-weight:bold;">Creative need:</span> we crave beauty and beautiful things. We have a &#8220;sweet tooth&#8221; for pretty things, for colors, shapes and contrasts. Our seventh sense is that of aesthetics (since our six is for understanding those from Mars) and this sense must be feed periodically. Jade&#8217;s blog, <a title="cravinganthropologie" href="http://cravinganthropologie.blogspot.com/" target="_blank">cravinganthropologie</a> had me do some serious thinking about this.</p>
<p><a href="http://www.anthropologie.com/">Anthropologie</a> is one of those places that I visit to get my &#8220;fix&#8221; of beauty but buy nothing from, always leaves a void of &#8220;all those pretty things I want but should not buy&#8221;. Yet I keep visiting because something is better than nothing. This store is a trip to my grandmother&#8217;s house, Alice&#8217;s Wonderland, a help-Africa recycling project and a girl at home popurry. Here are a few observations you might identify with:</p>
<p>So Saturday morning we wake up and realize it is time for a &#8220;pimp my ride&#8221; session, and me, myself and I are the ride. This is a case where we consider ourselves the canvas that we can use to get creative about, buying that necklace that matches the blouse&#8230;and the body.</p>
<p>Would we be satisfied simply arranging accessories and not buying them? Although there is certainly a satisfaction to this, buying the item feels like the signature on an oil painting, the culminating event and final touch of the masterpiece we created. You cant just paint and not sign, you must buy.</p>
<p><span style="font-weight:bold;">Anxiety:</span> This is similar to eating when you are anxious about work you are doing, about a personal issue, anything you cannot find an immediate resolution to. This leads to the next point, procrastination. But before let me note that plenty of actresses are compulsive shoppers, among many reasons out of anxiety and possibly work related stress. Also, women from low income families spend great amount of time and money (considering their financial status) shopping. Of course it is not at brand stores they go to shop. Instead they go to Ross, Walmart, Target..you name it. Anxieties of a different kind hit this group, and they find relief on buying a lot of many cheap things.</p>
<p><span style="font-weight:bold;">Procrastination:</span> We all know about procrastination, it is that self deceiving process you undergo when you must do X but instead you find a million tasks to complete before you even attempt doing X. Some of us become such creative procrastinators that we manage to accomplish inhuman amounts of work while on the run from X. It is not surprising that shopping is sometimes another escape for procrastination, surely an effective one since it could extend for hours.</p>
<p><span style="font-weight:bold;">That guilt feeling:</span> How many times you go to the store and pick a few pretty shirts but on the way to the cashier&#8230;.guilt grabs you and makes you put them down and away? We hold them in your hands until the last minute, and hope guilt doesn&#8217;t strike. Guilt to spend more money, guilt to spend on those overpriced jeans we love, guilt to not be able to control ourselves, guilt, guilt. What do we do about guilt? We bring our girl friends over to help dissipate our guilty sensation, &#8220;why not buy if they are buying?,&#8221; &#8220;She just told me to get that purple blouse,&#8221; &#8220;I must treat myself&#8221;.</p>
<p><span style="font-weight:bold;">Just a social thing:</span> Stores are another place to &#8220;hang out&#8221; just like a mall is. You share likes and dislikes about the items you find, or get your friend to tell you how amazing that dress looks on you. It becomes a female bonding experience.</p>
<p>If shopping has become a problem for you, don&#8217;t feel bad, just do something about it, now. Read my post about how to stop for suggestions.</p>
<p>Author&#8217;s notes: This post is a result of me obsessing lately about why we are drawn to buy this or the other. Having been raised in a country (Cuba) where there was no window shopping, little commerce and complete lack of advertisement, shopping is still a constantly evolving theme in my life. I am afraid that my cold eye as an outsider will soon run out so I must make note of this which I see.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ddailygirl.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ddailygirl.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ddailygirl.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ddailygirl.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ddailygirl.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ddailygirl.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ddailygirl.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ddailygirl.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ddailygirl.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ddailygirl.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ddailygirl.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ddailygirl.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ddailygirl.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ddailygirl.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=5&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ddailygirl.wordpress.com/2008/10/19/why-women-shop-a-lot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a18028e3b544ba6922fdfb60114836e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ddailygirl</media:title>
		</media:content>

		<media:content url="http://4.bp.blogspot.com/_DIcYZx09AFs/SMdvUdltRaI/AAAAAAAAGzM/GOzSOfxQhdU/s320/girl.jpg" medium="image" />
	</item>
		<item>
		<title>Musings about the Cuba I remember</title>
		<link>http://ddailygirl.wordpress.com/2008/10/19/musings-about-the-cuba-i-remember/</link>
		<comments>http://ddailygirl.wordpress.com/2008/10/19/musings-about-the-cuba-i-remember/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 21:44:54 +0000</pubDate>
		<dc:creator>Adelein Rodriguez</dc:creator>
				<category><![CDATA[Spiritual Musings]]></category>
		<category><![CDATA[Writings in Spanish]]></category>
		<category><![CDATA[communism]]></category>
		<category><![CDATA[cuba]]></category>
		<category><![CDATA[despretigio cubano]]></category>
		<category><![CDATA[hambre y necesidad]]></category>
		<category><![CDATA[memorias de una cubana]]></category>
		<category><![CDATA[memories]]></category>
		<category><![CDATA[socialism]]></category>

		<guid isPermaLink="false">http://ddailygirl.wordpress.com/?p=39</guid>
		<description><![CDATA[Dedicated to my grandfather, Gregorio Arteaga. Recuerdo la calidez de las calles de la Habana vieja cuando pretendia ser turista en mi propio pais, pero era inutil. La brisa marina me reconocia como hija y despeinaba mis cabellos al caminar sobre las geometricas aguas de adoquines. Buscaba mis raices, respirando la humedad, jugando a adivinar [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=39&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.habanasol.com/images/habana/vistaaerea.jpg"><img style="float:left;cursor:pointer;width:320px;margin:0 10px 10px 0;" src="http://www.habanasol.com/images/habana/vistaaerea.jpg" border="0" alt="" /></a></p>
<p style="margin-bottom:0;">Dedicated to my grandfather, Gregorio Arteaga.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Recuerdo la calidez de las calles de la Habana vieja cuando pretendia ser turista en mi propio pais, pero era inutil. La brisa marina me reconocia como hija y despeinaba mis cabellos al caminar sobre las geometricas aguas de adoquines. Buscaba mis raices, respirando la humedad, jugando a adivinar la proxima flor que creceria entre las grietas de los ladrillos de la vieja catedral. Esa era yo. Un duende perdido entre paredes y brisas de otros tiempos. Muchas cosas me preguntaba; por que las mujeres vestian como en tiempos de la colonizacion para ser retratadas con turistas? Extranarian el tiempo de exclavitud?</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Es una revolucion de artistas sin firma lo que se observa si uno se aventura entre los artesanos de la Catedral. Junto a aromas a madera fresca, vez rostros humildes que acompanan esculpturas con suaves razgos africanos, tal como tallados con los dedos de Dios. Estos rostros de ingenieros, pintores, arquitectos y desocupados tal parece que no saben de su ingenio. Insisten en vender sus creaciones a los visitantes que entre naravillas no saben que escoger. Muchos se han convertido en artistas porque necesitan dinero. Sus manos que antes ojeaban paginas de fisica mecanica ahora entretienen a turistas con artesanias casuales. Sin duda los ideales del ser humano cambian cuando las necesidades basicas no estan satisfechas, cuando sus estomagos crujen como bestias. Despues de sonar con carreras exitosas, un dia despertarorn con la simple necesidad de comer, y vestirse. solo eso y nada mas. Se vieron obligados a descubrir un sin fin de creativas manas en ellos, porque sus estomagos crujian como bestias. Realmente somos criaturas simples.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Todos traen sus tesoros al gran bazar de la plaza de la Catedral para ganarse unos centavos. Algunos traen los libros de sus heroes de infancia, libros sobre el Che y Marti que ya no le dan valor. A otros les bastan sus dotes musicales para impresionar al publico y con guitarras ardientes le cantan a la belleza de su tierra y mujeres.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Al doblar la esquina de la Catedral de La Habana se encuentra la Basilica Menor de un tal santo “Francisco de Asis”, una de mis memorias inolvidables. Se esconde de la multitud y sirve re refugio a pensadores solitarios. Recuerdo que al entrar, hasta mis pies se extendian figuras cubistas coloreadas por los vitrales de fondo y casi alcanzaba a ver las siluetas de monjes disfrutando la paz del silencio entre el viejo claustro de columnas toscanas. En alguna enciclopedia lei que una mantra sutil de cantos religiosos se hospedaba en este lugar, y su eco, atrapado por las columnas ingeniosamante disenadas, permanecia prisionero.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Hoy muchos ya no piensan en historia, arte ni ciencia, pero el aliento a Habana vieja les alimenta el alma. Ahora solo se sientan por doquier a hablar de temas prohibidos, o caminan por las calles roidas con un ojo en el suelo y otro en en cielo, temiendo que un vecino los bautice con agua infernal desde algun balcon. En cambio, los ninos, ajenos a las preocupaciones humanas, corretean por la callejuelas tropezando con los transeuntes y vendiendo Habanos a los turistas como les encargo su madre.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">No es extrano tropezar con un historiador del arte que sufre en ricones la prostitucion de la vieja Habana, o un loco pregonando insensateces. Como explicar que en los balocones de marmol donde antes se sentaban senoras de tercipelo ahora se sientan viejas desdentadas? “Ironia”, se llama esta pagina de la hisotria. No les son utiles los muebles de caoba y cedro or el piso de marmol negro a estas senoras que anoran comida. Con cucharas de plata beben una sopa de agua azucarada en la manana y agua salada en la noche.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Es esta cultura descavellada la que le da la magia a la Habana, donde cada persona es un brochazo de un impresionista llamado Orate. “Gris, que te quiero Gris”, diria Garcia Lorca si visitara mi pais. Siempre te recordare.</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Writer&#8217;s Note: Many like me have had the need to write about the reality of the cuban people. One of the most fascinating yet raw books I have read was El hombre, la hembra y el hambre, by Daina Chaviano. Check it out for an account of the humane and inhumane side of the story.</p>
<p style="margin-bottom:0;"><a href="http://ecx.images-amazon.com/images/I/41PXXK7RJXL._SL500_AA240_.jpg"><img class="alignleft" title="El hombre, el hambre y la hembra" src="http://ecx.images-amazon.com/images/I/41PXXK7RJXL._SL500_AA240_.jpg" alt="" width="240" height="240" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ddailygirl.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ddailygirl.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ddailygirl.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ddailygirl.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ddailygirl.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ddailygirl.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ddailygirl.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ddailygirl.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ddailygirl.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ddailygirl.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ddailygirl.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ddailygirl.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ddailygirl.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ddailygirl.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=39&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ddailygirl.wordpress.com/2008/10/19/musings-about-the-cuba-i-remember/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a18028e3b544ba6922fdfb60114836e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ddailygirl</media:title>
		</media:content>

		<media:content url="http://www.habanasol.com/images/habana/vistaaerea.jpg" medium="image" />

		<media:content url="http://ecx.images-amazon.com/images/I/41PXXK7RJXL._SL500_AA240_.jpg" medium="image">
			<media:title type="html">El hombre, el hambre y la hembra</media:title>
		</media:content>
	</item>
		<item>
		<title>Verbifying the web</title>
		<link>http://ddailygirl.wordpress.com/2008/10/19/verbifying-the-web/</link>
		<comments>http://ddailygirl.wordpress.com/2008/10/19/verbifying-the-web/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 21:33:48 +0000</pubDate>
		<dc:creator>Adelein Rodriguez</dc:creator>
				<category><![CDATA[Software & Design]]></category>
		<category><![CDATA[domain names]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[website names]]></category>

		<guid isPermaLink="false">http://ddailygirl.wordpress.com/?p=37</guid>
		<description><![CDATA[Do you ever wonder how the scarcity of simple available domain names has affected this wave of Web 2.0 technologies? Think about it, years before you could name you site something like NetSolutions.com, BlogSpot, PhotoAlbum.com&#8230;etc. But now we have to be much more creative and resort to strange names like Zazzle, Twitter, even Facebook is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=37&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Do you ever wonder how the scarcity of simple available domain names has affected this wave of Web 2.0 technologies? Think about it, years before you could name you site something like NetSolutions.com, BlogSpot, PhotoAlbum.com&#8230;etc. But now we have to be much more creative and resort to strange names like Zazzle, Twitter, even Facebook is too much of a straightforward name for today&#8217;s reality. These newest names besides being far from ordinary words also have a young and playful sound, they are meant to be catchy and easily &#8220;verbified&#8221; because in the end, they must stick to people&#8217;s mind in some other way.<br />
Perhaps we as users are in such a need to deal with our busy web lives that when a site offers us a simpler way to communicate (alas making their name easily verbified) we <span style="font-weight:bold;">appreciate</span> it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ddailygirl.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ddailygirl.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ddailygirl.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ddailygirl.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ddailygirl.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ddailygirl.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ddailygirl.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ddailygirl.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ddailygirl.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ddailygirl.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ddailygirl.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ddailygirl.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ddailygirl.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ddailygirl.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=37&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ddailygirl.wordpress.com/2008/10/19/verbifying-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a18028e3b544ba6922fdfb60114836e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ddailygirl</media:title>
		</media:content>
	</item>
		<item>
		<title>Roses</title>
		<link>http://ddailygirl.wordpress.com/2008/10/19/roses/</link>
		<comments>http://ddailygirl.wordpress.com/2008/10/19/roses/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 21:31:39 +0000</pubDate>
		<dc:creator>Adelein Rodriguez</dc:creator>
				<category><![CDATA[Spiritual Musings]]></category>

		<guid isPermaLink="false">http://ddailygirl.wordpress.com/?p=33</guid>
		<description><![CDATA[Lately I have come across roses in my path, or perhaps they have always been there and I am just noticing now. They are of as many colors as one can imagine, serene yellows, explosive reds, insightful whites. You witness life as you walk by them, the essence of being without words. My roses are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=33&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Lately I have come across roses in my path, or perhaps they have always been there and I am just noticing now. They are of as many colors as one can imagine, serene yellows, explosive reds, insightful whites. You witness life as you walk by them, the essence of being without words.<br />
My roses are people I know, and others I dont. They blossom around me and I feel Spring unfolding in the most mysterious yet obvious ways. They have fallen in love for a first, second, or third times. Their tears of happiness run down their souls just like dew embraces petals in the mornings, a beauty that cant be contained and explodes to reach every passerby. We are all contagious blossoming selves.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ddailygirl.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ddailygirl.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ddailygirl.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ddailygirl.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ddailygirl.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ddailygirl.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ddailygirl.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ddailygirl.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ddailygirl.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ddailygirl.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ddailygirl.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ddailygirl.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ddailygirl.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ddailygirl.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ddailygirl.wordpress.com&amp;blog=5215759&amp;post=33&amp;subd=ddailygirl&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ddailygirl.wordpress.com/2008/10/19/roses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a18028e3b544ba6922fdfb60114836e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ddailygirl</media:title>
		</media:content>
	</item>
	</channel>
</rss>
