<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="/assets/rss.xsl" type="text/xsl"?><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/"

>
<channel>
	<title>Sacha Chua - tag - visualization</title>
	<atom:link href="https://sachachua.com/blog/tag/visualization/feed/index.xml" rel="self" type="application/rss+xml" />
	<atom:link href="https://sachachua.com/blog/tag/visualization" rel="alternate" type="text/html" />
	<link>https://sachachua.com/blog/tag/visualization/feed/index.xml</link>
	<description>Emacs, sketches, and life</description>
  
	<lastBuildDate>Wed, 13 May 2026 14:32:18 GMT</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>daily</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>11ty</generator>
  <item>
		<title>Getting R and ggplot2 to work in Emacs Org Mode Babel blocks; also, tracking the number of TODOs</title>
		<link>https://sachachua.com/blog/2014/05/getting-r-ggplot2-work-emacs-org-mode-babel-blocks-also-tracking-number-todos/</link>
		<dc:creator><![CDATA[Sacha Chua]]></dc:creator>
		<pubDate>Fri, 02 May 2014 12:00:00 GMT</pubDate>
    <category>emacs</category>
<category>org</category>
<category>quantified</category>
		<guid isPermaLink="false">https://sachachua.com/blog/?p=27211</guid>
		<description><![CDATA[<p>I started tracking the number of tasks I had in Org Mode so that I could find out if my TODO list tended to shrink or grow. It was easy to write a function in Emacs Lisp to count the number of tasks in different states and summarize them in a table.</p>
<div class="org-src-container">
<pre class="src src-emacs-lisp">(<span class="org-keyword">defun</span> <span class="org-function-name">sacha/org-count-tasks-by-status</span> ()
  (interactive)
  (<span class="org-keyword">let</span> ((counts (make-hash-table <span class="org-builtin">:test</span> 'equal))
        (today (format-time-string <span class="org-string">"%Y-%m-%d"</span> (current-time)))
        values output)
    (org-map-entries
     (<span class="org-keyword">lambda</span> ()
       (<span class="org-keyword">let*</span> ((status (elt (org-heading-components) 2)))
         (<span class="org-keyword">when</span> status
           (puthash status (1+ (or (gethash status counts) 0)) counts))))
     nil
     'agenda)
    (setq values (mapcar (<span class="org-keyword">lambda</span> (x)
                           (or (gethash x counts) 0))
                         '(<span class="org-string">"DONE"</span> <span class="org-string">"STARTED"</span> <span class="org-string">"TODO"</span> <span class="org-string">"WAITING"</span> <span class="org-string">"DELEGATED"</span> <span class="org-string">"CANCELLED"</span> <span class="org-string">"SOMEDAY"</span>)))
    (setq output
          (concat <span class="org-string">"| "</span> today <span class="org-string">" | "</span>
                  (mapconcat 'number-to-string values <span class="org-string">" | "</span>)
                  <span class="org-string">" | "</span>
                  (number-to-string (apply '+ values))
                  <span class="org-string">" | "</span>
                  (number-to-string
                   (round (/ (* 100.0 (car values)) (apply '+ values))))
                  <span class="org-string">"% |"</span>))
    (<span class="org-keyword">if</span> (called-interactively-p 'any)
        (insert output)
      output)))
(sacha/org-count-tasks-by-status)
</pre>
</div>
<p>I ran this code over several days. Here are my results as of 2014-05-01:</p>
<div style="overflow-x: scroll;">
<table id="burndown" border="2" frame="hsides" rules="groups" cellspacing="0" cellpadding="6">
<colgroup>
<col class="right">
<col class="right">
<col class="right">
<col class="right">
<col class="right">
<col class="right">
<col class="right">
<col class="right">
<col class="right">
<col class="right">
<col class="right">
<col class="right">
<col class="right">
<col class="right">
<col class="left"> </colgroup>
<thead>
<tr>
<th class="right" scope="col">Date</th>
<th class="right" scope="col">DONE</th>
<th class="right" scope="col">START.</th>
<th class="right" scope="col">TODO</th>
<th class="right" scope="col">WAIT.</th>
<th class="right" scope="col">DELEG.</th>
<th class="right" scope="col">CANC.</th>
<th class="right" scope="col">SOMEDAY</th>
<th class="right" scope="col">Total</th>
<th class="right" scope="col">% done</th>
<th class="right" scope="col">+ done</th>
<th class="right" scope="col">+canc.</th>
<th class="right" scope="col">+ total</th>
<th class="right" scope="col">+ t &#8211; d &#8211; c</th>
<th class="left" scope="col">Note</th>
</tr>
</thead>
<tbody>
<tr>
<td class="right">2014-04-16</td>
<td class="right">1104</td>
<td class="right">1</td>
<td class="right">403</td>
<td class="right">3</td>
<td class="right">1</td>
<td class="right">104</td>
<td class="right">35</td>
<td class="right">1651</td>
<td class="right">67%</td>
<td class="right"></td>
<td class="right"></td>
<td class="right"></td>
<td class="right"></td>
<td class="left"></td>
</tr>
<tr>
<td class="right">2014-04-17</td>
<td class="right">1257</td>
<td class="right">0</td>
<td class="right">114</td>
<td class="right">4</td>
<td class="right">1</td>
<td class="right">171</td>
<td class="right">107</td>
<td class="right">1654</td>
<td class="right">76%</td>
<td class="right">153</td>
<td class="right">67</td>
<td class="right">3</td>
<td class="right">-217</td>
<td class="left">Lots of trimming</td>
</tr>
<tr>
<td class="right">2014-04-18</td>
<td class="right">1292</td>
<td class="right">0</td>
<td class="right">74</td>
<td class="right">4</td>
<td class="right">5</td>
<td class="right">183</td>
<td class="right">100</td>
<td class="right">1658</td>
<td class="right">78%</td>
<td class="right">35</td>
<td class="right">12</td>
<td class="right">4</td>
<td class="right">-43</td>
<td class="left">A little bit more trimming</td>
</tr>
<tr>
<td class="right">2014-04-20</td>
<td class="right">1305</td>
<td class="right">0</td>
<td class="right">80</td>
<td class="right">4</td>
<td class="right">5</td>
<td class="right">183</td>
<td class="right">100</td>
<td class="right">1677</td>
<td class="right">78%</td>
<td class="right">13</td>
<td class="right">0</td>
<td class="right">19</td>
<td class="right">6</td>
<td class="left"></td>
</tr>
<tr>
<td class="right">2014-04-21</td>
<td class="right">1311</td>
<td class="right">1</td>
<td class="right">78</td>
<td class="right">4</td>
<td class="right">4</td>
<td class="right">184</td>
<td class="right">99</td>
<td class="right">1681</td>
<td class="right">78%</td>
<td class="right">6</td>
<td class="right">1</td>
<td class="right">4</td>
<td class="right">-3</td>
<td class="left"></td>
</tr>
<tr>
<td class="right">2014-04-22</td>
<td class="right">1313</td>
<td class="right">2</td>
<td class="right">75</td>
<td class="right">4</td>
<td class="right">4</td>
<td class="right">184</td>
<td class="right">99</td>
<td class="right">1681</td>
<td class="right">78%</td>
<td class="right">2</td>
<td class="right">0</td>
<td class="right">0</td>
<td class="right">-2</td>
<td class="left"></td>
</tr>
<tr>
<td class="right">2014-04-23</td>
<td class="right">1369</td>
<td class="right">4</td>
<td class="right">66</td>
<td class="right">4</td>
<td class="right">5</td>
<td class="right">186</td>
<td class="right">101</td>
<td class="right">1735</td>
<td class="right">79%</td>
<td class="right">56</td>
<td class="right">2</td>
<td class="right">54</td>
<td class="right">-4</td>
<td class="left">Added sharing/index.org</td>
</tr>
<tr>
<td class="right">2014-04-24</td>
<td class="right">1371</td>
<td class="right">3</td>
<td class="right">69</td>
<td class="right">4</td>
<td class="right">5</td>
<td class="right">186</td>
<td class="right">101</td>
<td class="right">1739</td>
<td class="right">79%</td>
<td class="right">2</td>
<td class="right">0</td>
<td class="right">4</td>
<td class="right">2</td>
<td class="left"></td>
</tr>
<tr>
<td class="right">2014-04-25</td>
<td class="right">1379</td>
<td class="right">3</td>
<td class="right">60</td>
<td class="right">3</td>
<td class="right">5</td>
<td class="right">189</td>
<td class="right">103</td>
<td class="right">1742</td>
<td class="right">79%</td>
<td class="right">8</td>
<td class="right">3</td>
<td class="right">3</td>
<td class="right">-8</td>
<td class="left"></td>
</tr>
<tr>
<td class="right">2014-04-26</td>
<td class="right">1384</td>
<td class="right">3</td>
<td class="right">65</td>
<td class="right">3</td>
<td class="right">5</td>
<td class="right">192</td>
<td class="right">103</td>
<td class="right">1755</td>
<td class="right">79%</td>
<td class="right">5</td>
<td class="right">3</td>
<td class="right">13</td>
<td class="right">5</td>
<td class="left"></td>
</tr>
<tr>
<td class="right">2014-04-27</td>
<td class="right">1389</td>
<td class="right">2</td>
<td class="right">66</td>
<td class="right">3</td>
<td class="right">5</td>
<td class="right">192</td>
<td class="right">103</td>
<td class="right">1760</td>
<td class="right">79%</td>
<td class="right">5</td>
<td class="right">0</td>
<td class="right">5</td>
<td class="right">0</td>
<td class="left"></td>
</tr>
<tr>
<td class="right">2014-04-28</td>
<td class="right">1396</td>
<td class="right">3</td>
<td class="right">67</td>
<td class="right">3</td>
<td class="right">5</td>
<td class="right">192</td>
<td class="right">103</td>
<td class="right">1769</td>
<td class="right">79%</td>
<td class="right">7</td>
<td class="right">0</td>
<td class="right">9</td>
<td class="right">2</td>
<td class="left"></td>
</tr>
<tr>
<td class="right">2014-04-29</td>
<td class="right">1396</td>
<td class="right">3</td>
<td class="right">67</td>
<td class="right">3</td>
<td class="right">5</td>
<td class="right">192</td>
<td class="right">103</td>
<td class="right">1769</td>
<td class="right">79%</td>
<td class="right">0</td>
<td class="right">0</td>
<td class="right">0</td>
<td class="right">0</td>
<td class="left"></td>
</tr>
<tr>
<td class="right">2014-04-30</td>
<td class="right">1404</td>
<td class="right">4</td>
<td class="right">70</td>
<td class="right">4</td>
<td class="right">5</td>
<td class="right">192</td>
<td class="right">103</td>
<td class="right">1782</td>
<td class="right">79%</td>
<td class="right">8</td>
<td class="right">0</td>
<td class="right">13</td>
<td class="right">5</td>
<td class="left"></td>
</tr>
<tr>
<td class="right">2014-05-01</td>
<td class="right">1413</td>
<td class="right">4</td>
<td class="right">80</td>
<td class="right">3</td>
<td class="right">4</td>
<td class="right">193</td>
<td class="right">103</td>
<td class="right">1800</td>
<td class="right">79%</td>
<td class="right">9</td>
<td class="right">1</td>
<td class="right">18</td>
<td class="right">8</td>
<td class="left"></td>
</tr>
</tbody>
</table>
</div>
<p>Here's the source for that table:</p>
<div class="org-src-container">
<pre class="src src-org"><span class="org-org-meta-line">#+NAME: burndown</span>
<span class="org-org-meta-line">#+RESULTS:</span>
<span class="org-org-table">|       Date | DONE | START. | TODO | WAIT. | DELEG. | CANC. | SOMEDAY | Total | % done | + done | +canc. | + total | + t - d - c | Note                       |</span>
<span class="org-org-table">|&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;+&#45;&#45;&#45;&#45;&#45;&#45;+&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;+&#45;&#45;&#45;&#45;&#45;&#45;+&#45;&#45;&#45;&#45;&#45;&#45;-+&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;+&#45;&#45;&#45;&#45;&#45;&#45;-+&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;-+&#45;&#45;&#45;&#45;&#45;&#45;-+&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;+&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;+&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;+&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;-+&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;-+&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;&#45;|</span>
<span class="org-org-table">| 2014-04-16 | 1104 |      1 |  403 |     3 |      1 |   104 |      35 |  1651 |    67% |        |        |         |             |                            |</span>
<span class="org-org-table">| 2014-04-17 | 1257 |      0 |  114 |     4 |      1 |   171 |     107 |  1654 |    76% |    153 |     67 |       3 |        -217 | Lots of trimming           |</span>
<span class="org-org-table">| 2014-04-18 | 1292 |      0 |   74 |     4 |      5 |   183 |     100 |  1658 |    78% |     35 |     12 |       4 |         -43 | A little bit more trimming |</span>
<span class="org-org-table">| 2014-04-20 | 1305 |      0 |   80 |     4 |      5 |   183 |     100 |  1677 |    78% |     13 |      0 |      19 |           6 |                            |</span>
<span class="org-org-table">| 2014-04-21 | 1311 |      1 |   78 |     4 |      4 |   184 |      99 |  1681 |    78% |      6 |      1 |       4 |          -3 |                            |</span>
<span class="org-org-table">| 2014-04-22 | 1313 |      2 |   75 |     4 |      4 |   184 |      99 |  1681 |    78% |      2 |      0 |       0 |          -2 |                            |</span>
<span class="org-org-table">| 2014-04-23 | 1369 |      4 |   66 |     4 |      5 |   186 |     101 |  1735 |    79% |     56 |      2 |      54 |          -4 | Added sharing/index.org    |</span>
<span class="org-org-table">| 2014-04-24 | 1371 |      3 |   69 |     4 |      5 |   186 |     101 |  1739 |    79% |      2 |      0 |       4 |           2 |                            |</span>
<span class="org-org-table">| 2014-04-25 | 1379 |      3 |   60 |     3 |      5 |   189 |     103 |  1742 |    79% |      8 |      3 |       3 |          -8 |                            |</span>
<span class="org-org-table">| 2014-04-26 | 1384 |      3 |   65 |     3 |      5 |   192 |     103 |  1755 |    79% |      5 |      3 |      13 |           5 |                            |</span>
<span class="org-org-table">| 2014-04-27 | 1389 |      2 |   66 |     3 |      5 |   192 |     103 |  1760 |    79% |      5 |      0 |       5 |           0 |                            |</span>
<span class="org-org-table">| 2014-04-28 | 1396 |      3 |   67 |     3 |      5 |   192 |     103 |  1769 |    79% |      7 |      0 |       9 |           2 |                            |</span>
<span class="org-org-table">| 2014-04-29 | 1396 |      3 |   67 |     3 |      5 |   192 |     103 |  1769 |    79% |      0 |      0 |       0 |           0 |                            |</span>
<span class="org-org-table">| 2014-04-30 | 1404 |      4 |   70 |     4 |      5 |   192 |     103 |  1782 |    79% |      8 |      0 |      13 |           5 |                            |</span>
<span class="org-org-table">| 2014-05-01 | 1413 |      4 |   80 |     3 |      4 |   193 |     103 |  1800 |    79% |      9 |      1 |      18 |           8 |                            |</span>
<span class="org-org-meta-line">#+TBLFM: @3$11..@&gt;$11=$2-@-1$2::@3$13..@&gt;$13=$9-@-1$9::@3$14..@&gt;$14=$13-$11-($7-@-1$7)::@3$12..@&gt;$12=$7-@-1$7</span>
</pre>
</div>
<p>I wanted to graph this with Gnuplot, but it turns out that Gnuplot is difficult to integrate with Emacs on Microsoft Windows. I gave up after a half an hour of poking at it, since search results indicated there were long-standing problems with how Gnuplot got input from Emacs. Besides, I'd been meaning to learn more <a href="http://www.r-project.org/">R</a> anyway, and R is more powerful when it comes to statistics and data visualization.</p>
<p>Getting R to work with Org Mode babel blocks in Emacs on Windows was a challenge. Here are some of the things I ran into.</p>
<p>The first step was easy: Add R to the list of languages I could evaluate in a source block (I already had dot and ditaa from previous experiments).</p>
<div class="org-src-container">
<pre class="src src-emacs-lisp">(org-babel-do-load-languages
 'org-babel-load-languages
 '((dot . t)
   (ditaa . t) 
   (R . t)))
</pre>
</div>
<p>But my code didn't execute at all, even when I was trying something that printed out results instead of drawing images. I got a little lost trying to dig into <code>org-babel-execute:R</code> with <code>edebug</code>, eventually ending up in <code>comint.el</code>. The real solution was even easier. I had incorrectly set <code>inferior-R-program-name</code> to the path of R in my configuration, which made <code>M-x R</code> work but which meant that Emacs was looking in the wrong place for the options to pass to R (which Org Babel relied on). The correct way to do this is to leave <code>inferior-R-program-name</code> with the default value (<code>Rterm</code>) and make sure that my system path included <b>both</b> the <code>bin</code> directory and the <code>bin\x64</code> directory.</p>
<p>Then I had to pick up the basics of R again. It took me a little time to figure out that I needed to parse the columns I pulled in from Org, using <code>strptime</code> to convert the date column and <code>as.numeric</code> to convert the numbers. Eventually, I got it to plot some results with the regular <code>plot</code> command.</p>
<div class="org-src-container">
<pre class="src src-R">dates &lt;- strptime(as.character(data$Date), "%Y-%m-%d")
tasks_done &lt;- as.numeric(data$DONE)
tasks_uncancelled &lt;- as.numeric(data$Total) - as.numeric(data$CANC.)
df &lt;- data.frame(dates, tasks_done, tasks_uncancelled)
plot(x=dates, y=tasks_uncancelled, ylim=c(0,max(tasks_uncancelled)))
lines(x=dates, y=tasks_uncancelled, col="blue", type="o")
lines(x=dates, y=tasks_done, col="green", type="o")
</pre>
</div>
<div class="figure">
<p><a href="https://sachachua.com/blog/wp-content/uploads/2014/04/r-plot.png"><img loading="lazy" class="alignnone size-full wp-image-27219" src="https://sachachua.com/blog/wp-content/uploads/2014/04/r-plot.png" alt="r-plot" width="480" height="480" srcset="https://sachachua.com/blog/wp-content/uploads/2014/04/r-plot.png 480w, https://sachachua.com/blog/wp-content/uploads/2014/04/r-plot-200x200.png 200w" sizes="(max-width: 480px) 100vw, 480px"></a></p>
</div>
<p>I wanted prettier graphs, though. I installed the <code>ggplot2</code> package and started figuring it out. No matter what I did, though, I ended up with a blank white image instead of my graph. If I used <code>M-x R</code> instead of evaluating the src block, the code worked. Weird! Eventually I found out that adding <code>print(...)</code> around my <code>ggplot</code> made it display the image correctly. Yay! Now I had what I wanted.</p>
<div class="org-src-container">
<pre class="src src-R">library(ggplot2)
dates &lt;- strptime(as.character(data$Date), "%Y-%m-%d")
tasks_done &lt;- as.numeric(data$DONE)
tasks_uncancelled &lt;- as.numeric(data$Total) - as.numeric(data$CANC.)
df &lt;- data.frame(dates, tasks_done, tasks_uncancelled)
plot = ggplot(data=df, aes(x=dates, y=tasks_done, ymin=0)) + geom_line(color="#009900") + geom_point() + geom_line(aes(y=tasks_uncancelled), color="blue") + geom_point(aes(y=tasks_uncancelled))
print(plot)
</pre>
</div>
<div class="figure">
<p> <img loading="lazy" class="alignnone size-full wp-image-27220" src="https://sachachua.com/blog/wp-content/uploads/2014/04/r-graph.png" alt="r-graph" width="480" height="480" srcset="https://sachachua.com/blog/wp-content/uploads/2014/04/r-graph.png 480w, https://sachachua.com/blog/wp-content/uploads/2014/04/r-graph-200x200.png 200w" sizes="(max-width: 480px) 100vw, 480px"></p>
</div>
<p>The blue line represents the total number of tasks (except for the cancelled ones), and the green line represents tasks that are done.</p>
<p>Here's something that looks a little more like a <a href="http://en.wikipedia.org/wiki/Burn_down_chart">burn down chart</a>, since it shows just the number of things to be done:</p>
<div class="org-src-container">
<pre class="src src-R">library(ggplot2)
dates &lt;- strptime(as.character(data$Date), "%Y-%m-%d")
tasks_remaining &lt;- as.numeric(data$Total) - as.numeric(data$CANC.) - as.numeric(data$DONE)
df &lt;- data.frame(dates, tasks_remaining)
plot = ggplot(data=df, aes(x=dates, y=tasks_remaining, ymin=0)) + geom_line(color="#009900") + geom_point()
print(plot)
</pre>
</div>
<div class="figure">
<p><a href="https://sachachua.com/blog/wp-content/uploads/2014/04/r-graph-2.png"><img loading="lazy" class="alignnone size-full wp-image-27221" src="https://sachachua.com/blog/wp-content/uploads/2014/04/r-graph-2.png" alt="r-graph-2" width="480" height="480" srcset="https://sachachua.com/blog/wp-content/uploads/2014/04/r-graph-2.png 480w, https://sachachua.com/blog/wp-content/uploads/2014/04/r-graph-2-200x200.png 200w" sizes="(max-width: 480px) 100vw, 480px"></a></p>
</div>
<p>The drastic decline there is me realizing that I had lots of tasks that were no longer relevant, not me being super-productive. =)</p>
<p>As it turns out, I tend to add new tasks at about the rate that I finish them (or slightly more). I think this is okay. It means I'm working on things that have next steps, and next steps, and steps beyond that. If I add more tasks, that gives me more variety to choose from. Besides, I have a lot of repetitive tasks, so those never get marked as DONE over here.</p>
<p>Anyway, cool! Now that I've gotten R to work on my system, you'll probably see it in even more of these blog posts. =D Hooray for Org Babel and R!</p>
<div class="update">
Update 2014-05-09: Stephen suggested <a href="http://blogs.neuwirth.priv.at/software/2012/03/28/r-and-emacs-with-org-mode/">http://blogs.neuwirth.priv.at/software/2012/03/28/r-and-emacs-with-org-mode/</a> for more tips on setting up Org Mode with R and Emacs Speaks Statistics (ESS).</div>

<p>You can <a href="https://sachachua.com/blog/2014/05/getting-r-ggplot2-work-emacs-org-mode-babel-blocks-also-tracking-number-todos/#comment">view 9 comments</a> or <a href="mailto:sacha@sachachua.com?subject=Comment%20on%20https%3A%2F%2Fsachachua.com%2Fblog%2F2014%2F05%2Fgetting-r-ggplot2-work-emacs-org-mode-babel-blocks-also-tracking-number-todos%2F&body=Name%20you%20want%20to%20be%20credited%20by%20(if%20any)%3A%20%0AMessage%3A%20%0ACan%20I%20share%20your%20comment%20so%20other%20people%20can%20learn%20from%20it%3F%20Yes%2FNo%0A">e-mail me at sacha@sachachua.com</a>.</p>]]></description>
		</item><item>
		<title>Quantified Awesome: Adding calendar heatmaps to categories</title>
		<link>https://sachachua.com/blog/2013/07/quantified-awesome-adding-calendar-heatmaps-to-categories/</link>
		<dc:creator><![CDATA[Sacha Chua]]></dc:creator>
		<pubDate>Thu, 25 Jul 2013 12:00:00 GMT</pubDate>
    <category>quantified</category>
		<guid isPermaLink="false">https://sachachua.com/blog/?p=25406</guid>
		<description><![CDATA[<p>It’s amazing how little tweaks give you a whole new sense of the data. I’ve been using <a href="http://kamisama.github.io/cal-heatmap/v2">Cal-HeatMap</a> to look at my <a href="https://sachachua.com/blog/2013/05/poll-how-often-would-you-like-to-receive-e-mail-updates-also-quantifying-my-blog-posting-history/">blogging history</a>. I figured I’d build it into <a href="http://quantifiedawesome.com">Quantified Awesome</a> to make it even easier to analyze how I spend my time. 1.9 hours later, here’s what I have. All totals are reported for the past 12-month period by default (as of this writing, July 19 2012 to July 19 2013, including the day’s activities), but it adjusts depending on the filter settings.</p>
<p>Here’s me <a href="http://quantifiedawesome.com/record_categories/2">working on the Quantified Awesome system</a>:</p>
<p><a href="https://sachachua.com/blog/wp-content/uploads/2013/07/image17.png"><img loading="lazy" title="image" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; display: inline; padding-right: 0px; border-top-width: 0px" border="0" alt="image" src="https://sachachua.com/blog/wp-content/uploads/2013/07/image_thumb17.png" width="640" height="284"></a></p>
<p>Instead of just a table of log entries or a summary of numbers, I can <em>see</em> the gaps and sprints in my activity.</p>
<p>Here’s the one for <a href="http://quantifiedawesome.com/record_categories/565">Discretionary – Productive</a>:</p>
<p><a href="https://sachachua.com/blog/wp-content/uploads/2013/07/image18.png"><img loading="lazy" title="image" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; padding-top: 0px; padding-left: 0px; display: inline; padding-right: 0px; border-top-width: 0px" border="0" alt="image" src="https://sachachua.com/blog/wp-content/uploads/2013/07/image_thumb18.png" width="640" height="104"></a></p>
<p>Pretty consistent, actually.</p>
<p>and <a href="http://quantifiedawesome.com/record_categories/57">Discretionary – Play</a>:</p>
<p><a href="https://sachachua.com/blog/wp-content/uploads/2013/07/image19.png"><img loading="lazy" title="image" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; display: inline; padding-right: 0px; border-top-width: 0px" border="0" alt="image" src="https://sachachua.com/blog/wp-content/uploads/2013/07/image_thumb19.png" width="640" height="105"></a></p>
<p>February must’ve been when I had a new video game to tinker around with. Plenty of opportunities to relax.</p>
<p>Here’s my <a href="http://quantifiedawesome.com/record_categories/566">Business – Earn</a> graph:</p>
<p><a href="https://sachachua.com/blog/wp-content/uploads/2013/07/image20.png"><img loading="lazy" title="image" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; display: inline; padding-right: 0px; border-top-width: 0px" border="0" alt="image" src="https://sachachua.com/blog/wp-content/uploads/2013/07/image_thumb20.png" width="640" height="124"></a></p>
<p>and <a href="http://quantifiedawesome.com/record_categories/567">Business – Build</a>:</p>
<p><a href="https://sachachua.com/blog/wp-content/uploads/2013/07/image21.png"><img loading="lazy" title="image" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; display: inline; padding-right: 0px; border-top-width: 0px" border="0" alt="image" src="https://sachachua.com/blog/wp-content/uploads/2013/07/image_thumb21.png" width="640" height="104"></a></p>
<p>I’ve been <a href="http://quantifiedawesome.com/record_categories/135">biking</a> pretty regularly, mostly on Tuesdays and Thursdays…</p>
<p><a href="https://sachachua.com/blog/wp-content/uploads/2013/07/image22.png"><img loading="lazy" title="image" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="image" src="https://sachachua.com/blog/wp-content/uploads/2013/07/image_thumb22.png" width="640" height="104"></a></p>
<p>In contrast, I take the <a href="http://quantifiedawesome.com/record_categories/32">subway</a> only if it’s winter or really rainy, if I’m going somewhere far or steeply uphill, or if my bike is flat (as it was yesterday).</p>
<p><a href="https://sachachua.com/blog/wp-content/uploads/2013/07/image23.png"><img loading="lazy" title="image" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="image" src="https://sachachua.com/blog/wp-content/uploads/2013/07/image_thumb23.png" width="640" height="104"></a></p>
<p>Neato. I should definitely do this for groceries too, now that I’ve loaded my grocery receipts into Quantified Awesome! (No public link yet for that data, sorry. =) ) I also want to figure out how to speed things up enough so that I can do quartile analysis and then use that to colour the scale…</p>
<p>Calendar heatmaps for the win! </p>

<p>You can <a href="https://sachachua.com/blog/2013/07/quantified-awesome-adding-calendar-heatmaps-to-categories/#comment">view 3 comments</a> or <a href="mailto:sacha@sachachua.com?subject=Comment%20on%20https%3A%2F%2Fsachachua.com%2Fblog%2F2013%2F07%2Fquantified-awesome-adding-calendar-heatmaps-to-categories%2F&body=Name%20you%20want%20to%20be%20credited%20by%20(if%20any)%3A%20%0AMessage%3A%20%0ACan%20I%20share%20your%20comment%20so%20other%20people%20can%20learn%20from%20it%3F%20Yes%2FNo%0A">e-mail me at sacha@sachachua.com</a>.</p>]]></description>
		</item><item>
		<title>Mohiomap: A visual way to browse your Evernote notebook</title>
		<link>https://sachachua.com/blog/2013/06/mohiomap-a-visual-way-to-browse-your-evernote-notebook/</link>
		<dc:creator><![CDATA[Sacha Chua]]></dc:creator>
		<pubDate>Tue, 25 Jun 2013 12:00:00 GMT</pubDate>
    <category>geek</category>
		<guid isPermaLink="false">https://sachachua.com/blog/?p=25039</guid>
		<description><![CDATA[<p>Evernote is a great tool for taking notes, but sometimes searching and browsing those notes can get unwieldy if you have thousands of items. For example, searching my notebooks for “evernote” gets me &gt;130 results, which look a little like this in Evernote’s desktop application:</p>
<p><a href="https://sachachua.com/blog/wp-content/uploads/2013/06/image2.png"><img loading="lazy" style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px; display: inline; padding-right: 0px; border: 0px;" title="image" alt="image" src="https://sachachua.com/blog/wp-content/uploads/2013/06/image_thumb3.png" width="640" height="364" border="0"></a></p>
<p>This is great if I can narrow things down with notebooks, keywords, and tags, but wouldn’t it be nice to be able to explore better?</p>
<p>Christian Hirsch (who has been working on quite a few visual interfaces to <a href="http://www.cs.auckland.ac.nz/~chir008/">wikis and knowledgebases</a>) reached out to me about <a href="http://moh.io">Mohiomap</a>, which links up with your Evernote notebook and lets you see it as an interactive map.</p>
<p><a href="https://sachachua.com/blog/wp-content/uploads/2013/06/image3.png"><img loading="lazy" style="background-image: none; padding-top: 0px; padding-left: 0px; display: inline; padding-right: 0px; border: 0px;" title="image" alt="image" src="https://sachachua.com/blog/wp-content/uploads/2013/06/image_thumb4.png" width="640" height="281" border="0"></a></p>
<p>You can click on notes to navigate further and to see a preview in the left sidebar.</p>
<p><a href="https://sachachua.com/blog/wp-content/uploads/2013/06/image4.png"><img loading="lazy" style="background-image: none; padding-top: 0px; padding-left: 0px; margin: 0px; display: inline; padding-right: 0px; border: 0px;" title="image" alt="image" src="https://sachachua.com/blog/wp-content/uploads/2013/06/image_thumb5.png" width="640" height="284" border="0"></a></p>
<p>You can expand items without closing the previous ones, so it’s a handy tool for exploration. I like the way that they indicate number of other entries with both a thicker line as well as a larger circle – the thicker lines are easier to follow when you’re starting from a node.</p>
<p>The trick with new tools is to figure out how you want to fit them into your workflow. Right now, Mohiomap is a visualization and search tool. What new questions can I ask with this interface? How can I use it to learn more?</p>
<ul>
<li><strong>Use Mohiomap to find related notes</strong>: I like the way it displays links to related notes. The notes are determined using the Evernote API, which seems to take the note source and tags into account. Related notes are difficult to find using the desktop application, so this might be a good way to explore when I’m writing blog posts.</li>
<li><strong>Use Mohiomap when searching for something that will have hits in multiple notebooks, if I want to group by notebook: </strong>Mohio’s search interface organizes the first layer of results by notebook. If I used notebooks more, then this might be a good way to browse through my search results. I tend to use tags, though. Oh well!</li>
<li><strong>Use Mohiomap to encourage myself to tag more, and to fix my tags. </strong>Mohiomap shows tags that are connected with each other, so that might be a way to identify overlapping tags. This is slighly less useful with a small result set (30 notes don’t have much overlap), but maybe it will become more useful later. It also lets you draw lines from notes to tags in order to add a tag to a note, and maybe this will evolve into more tagging features.</li>
</ul>
<p>It looks like the first use (browsing through related notes) might be the most relevant for me. Let’s see how well Evernote’s recommendation algorithm works!</p>
<p>Other thoughts: Plus points for making the back button work and keeping graphs individually bookmarkable. =) I’d love to be able to add more search results, like viewing 50 or 100 at a time – or viewing a graph of the tags in my entire Evernote knowledgebase, which would be nifty. Dynamic force-directed networks can be disconcerting because of the motion. It might be great to have different views of it in addition to the current interface – maybe something more constrained like the way <a href="http://freemind.sourceforge.net">FreeMind</a> or <a href="http://www.thebrain.com/">thebrain.com</a> work?</p>
<p><a href="https://mohiomap.uservoice.com/forums/193272-general">UserVoice appears to be the place for suggestions related to Mohiomap.</a> Looking forward to seeing this grow, and any other apps that visualize your data!</p>

<p>You can <a href="https://sachachua.com/blog/2013/06/mohiomap-a-visual-way-to-browse-your-evernote-notebook/#comment">view 1 comment</a> or <a href="mailto:sacha@sachachua.com?subject=Comment%20on%20https%3A%2F%2Fsachachua.com%2Fblog%2F2013%2F06%2Fmohiomap-a-visual-way-to-browse-your-evernote-notebook%2F&body=Name%20you%20want%20to%20be%20credited%20by%20(if%20any)%3A%20%0AMessage%3A%20%0ACan%20I%20share%20your%20comment%20so%20other%20people%20can%20learn%20from%20it%3F%20Yes%2FNo%0A">e-mail me at sacha@sachachua.com</a>.</p>]]></description>
		</item><item>
		<title>Visualization resources</title>
		<link>https://sachachua.com/blog/2011/11/visualization-resources/</link>
		<dc:creator><![CDATA[Sacha Chua]]></dc:creator>
		<pubDate>Tue, 08 Nov 2011 12:00:00 GMT</pubDate>
    
		<guid isPermaLink="false">https://sachachua.com/blog/?p=22612</guid>
		<description><![CDATA[<p>One of my coworkers asked me if I knew interesting examples of visualizations. I mentioned quite a few sites and she found them super-helpful (like, give-Sacha-a-hug helpful! =) ). Just in case you find these handy: (no hugs required)</p>
<p><a href="http://flowingdata.com/">Flowing Data</a> is one of my favourite blogs for data graphics inspiration. <a href="http://datavisualization.ch/">Data Visualization</a> is cool, too.</p>
<p><a href="http://www-958.ibm.com/software/data/cognos/manyeyes/">IBM Many Eyes</a>    <br>This collaborative visualization project makes coming up with charts and graphs so much easier. Lots of data sets and lots of examples to explore, too. Note: don’t upload private data.</p>
<p><a href="https://sachachua.com/blog/wp-content/uploads/2011/11/image3.png"><img loading="lazy" style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="https://sachachua.com/blog/wp-content/uploads/2011/11/image_thumb3.png" width="580" height="384"></a>    <br><a href="http://mbostock.github.com/protovis/">Protovis</a> has a graphing library and a <a href="http://mbostock.github.com/protovis/ex/">gallery of pretty examples</a>. I’d love to play around with graphs like this. <a href="http://raphaeljs.com/">RaphaelJS</a> has a few examples, too. Graphing libraries generally do.</p>
<p><a href="http://www.gapminder.org/">Hans Rosling</a> shows you can do play-by-play commentary for statistics and have people on the edge of their seats.</p>
<p><a href="http://blog.okcupid.com">OKCupid visualizations are fascinating.</a> It turns out that one can get all sorts of insights out of a massive online dating database. The blog posts are cleverly written and often include practical tips, like this one on <a href="http://blog.okcupid.com/index.php/dont-be-ugly-by-accident/">profile picture attractiveness, camera types, flash, depth of field, and time of day</a>. They have mind-boggling data. You may not want to open the blog posts in a school or work context, though.</p>
<p>What are your favourite sources for visualization inspiration?</p>

<p>You can <a href="https://sachachua.com/blog/2011/11/visualization-resources/#comment">view 1 comment</a> or <a href="mailto:sacha@sachachua.com?subject=Comment%20on%20https%3A%2F%2Fsachachua.com%2Fblog%2F2011%2F11%2Fvisualization-resources%2F&body=Name%20you%20want%20to%20be%20credited%20by%20(if%20any)%3A%20%0AMessage%3A%20%0ACan%20I%20share%20your%20comment%20so%20other%20people%20can%20learn%20from%20it%3F%20Yes%2FNo%0A">e-mail me at sacha@sachachua.com</a>.</p>]]></description>
		</item><item>
		<title>Learning from my mood data</title>
		<link>https://sachachua.com/blog/2011/04/learning-from-my-mood-data/</link>
		<dc:creator><![CDATA[Sacha Chua]]></dc:creator>
		<pubDate>Mon, 18 Apr 2011 12:00:00 GMT</pubDate>
    <category>geek</category>
<category>quantified</category>
		<guid isPermaLink="false">https://sachachua.com/blog/?p=22205</guid>
		<description><![CDATA[<p>One of the unexpected benefits of <a href="https://sachachua.com/blog/2011/01/switched-fido-plan/">switching my phone plan</a> to something that includes unlimited international texting is that I can participate in nifty things like <a href="http://experimonth.com/">Experimonth</a>, which is a month-long study about moods. I get regular text messages prompting me to rate my happiness on a scale of 1-10, and it graphs it for me. I can probably come up with similar graphs using KeepTrack and a bit of spreadsheet magic, but the convenience and the social data make this fun and interesting. </p>
<p>Here’s how my mood data stacks up so far:</p>
<p><a href="https://sachachua.com/blog/wp-content/uploads/2011/04/image.png"><img loading="lazy" style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="https://sachachua.com/blog/wp-content/uploads/2011/04/image_thumb.png" width="505" height="225"></a></p>
<p>I stay on a fairly even keel, with awesome happy experiences possibly any day of the week. Hmm, maybe I should track text notes too, so I can get a better handle on what causes the 10s or the 6s. It might also be interesting to combine the happiness ratings with my time analyses to see if there any <a href="https://sachachua.com/blog/2011/03/more-thoughts-on-time-analysis-correlations-and-revealed-preferences/">correlations</a>.</p>
<p>Here are the <a href="http://experimonth.lifeandscience.org/mood/2011/04/10000-mood-data-points">results</a> they’ve collected so far:</p>
<p><img src="http://farm6.static.flickr.com/5146/5623214596_aba2e486f3_o.png"></p>

<p>You can <a href="mailto:sacha@sachachua.com?subject=Comment%20on%20https%3A%2F%2Fsachachua.com%2Fblog%2F2011%2F04%2Flearning-from-my-mood-data%2F&body=Name%20you%20want%20to%20be%20credited%20by%20(if%20any)%3A%20%0AMessage%3A%20%0ACan%20I%20share%20your%20comment%20so%20other%20people%20can%20learn%20from%20it%3F%20Yes%2FNo%0A">e-mail me at sacha@sachachua.com</a>.</p>]]></description>
		</item><item>
		<title>Visualization of my blog categories</title>
		<link>https://sachachua.com/blog/2010/02/visualization-of-my-blog-categories/</link>
		<dc:creator><![CDATA[Sacha Chua]]></dc:creator>
		<pubDate>Sat, 13 Feb 2010 13:00:00 GMT</pubDate>
    <category>visualization</category>
<category>blogging</category>
<category>visual</category>
		<guid isPermaLink="false">https://sachachua.com/blog/?p=7036</guid>
		<description><![CDATA[<p>This visualizes how often I blogged something with a tag in a given year, sorted by all-time popularity. There are more categories, but I skipped them. The height of each block represents how many blog posts I wrote in that category, while the different blocks represent the years, ending with 2010 at the far right. The graph reflects changing interests and recurring themes.</p>
<p><a href="https://sachachua.com/blog/wp-content/uploads/2010/02/image4.png"><img loading="lazy" style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="https://sachachua.com/blog/wp-content/uploads/2010/02/image_thumb4.png" width="285" height="749"></a> </p>
<p>This visualizes some of the things I’ve been writing about in 2010. We’re only a month in, so the last line is pretty small, and in some cases (n &lt; 4) not even visible. </p>
<p><a href="https://sachachua.com/blog/wp-content/uploads/2010/02/image5.png"><img loading="lazy" style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="https://sachachua.com/blog/wp-content/uploads/2010/02/image_thumb5.png" width="219" height="746"></a> </p>
<p>Sparkline bar graphs created with <a href="http://sparklines-excel.blogspot.com/">Sparklines for Excel</a>. Initial categories table created with the following SQL incantation:</p>
<p><code> </code></p>
<p>select p.post_date, p.post_title, terms.name from wp_posts p inner join wp_term_relationships tr on p.id=tr.object_id inner join wp_term_taxonomy tt on tr.term_taxonomy_id=tt.term_taxonomy_id inner join wp_terms terms on tt.term_id=terms.term_id into outfile '/tmp/categories.csv'; </p>
<p> </p>
<p>then imported and tweaked in Microsoft Excel.</p>

<p>You can <a href="https://sachachua.com/blog/2010/02/visualization-of-my-blog-categories/#comment">view 5 comments</a> or <a href="mailto:sacha@sachachua.com?subject=Comment%20on%20https%3A%2F%2Fsachachua.com%2Fblog%2F2010%2F02%2Fvisualization-of-my-blog-categories%2F&body=Name%20you%20want%20to%20be%20credited%20by%20(if%20any)%3A%20%0AMessage%3A%20%0ACan%20I%20share%20your%20comment%20so%20other%20people%20can%20learn%20from%20it%3F%20Yes%2FNo%0A">e-mail me at sacha@sachachua.com</a>.</p>]]></description>
		</item><item>
		<title>Harvesting the backchannel bazaar of insights</title>
		<link>https://sachachua.com/blog/2010/02/harvesting-the-backchannel-bazaar-of-insights/</link>
		<dc:creator><![CDATA[Sacha Chua]]></dc:creator>
		<pubDate>Wed, 10 Feb 2010 13:00:00 GMT</pubDate>
    <category>ibm</category>
<category>presentation</category>
<category>speaking</category>
		<guid isPermaLink="false">https://sachachua.com/blog/?p=7031</guid>
		<description><![CDATA[<p>One of the things I love about virtual presentations is the richness of the backchannel conversation — the chat that accompanies a presentation. When people don’t have to worry about interrupting others and they’re free to discuss things in parallel, the conversation explodes.</p>
<p>It can be overwhelming for speakers and participants alike, but it’s a great way to capture a lot of insights, answer many, many questions, and start an ongoing conversation.</p>
<p>A few weeks ago, I gave a presentation on <a href="https://sachachua.com/blog/2010/01/microblogging-talk/">microblogging</a>. There were 150+ participants. 51 people actively used the chat to share their thoughts during the presentation, typing in 461 messages in total. Topics ranged from beginner questions about getting started to advanced questions involving multiple tools.</p>
<p>I saved the chat transcript and uploaded it along with my session materials. Another participant converted the text transcript into a spreadsheet that also summarized messages by author. The spreadsheet also tagged replies with the ID of the person being replied to.</p>
<p>I reviewed the chat spreadsheet and categorized useful messages, assigning the following keywords: </p>
<ul>
<li><strong>Value</strong>: related to the value of microblogging (13 messages)  </li>
<li><strong>Process</strong>: incorporating it into your day (15 messages)  </li>
<li><strong>Network:</strong> growing your network (12 messages)  </li>
<li><strong>Tools</strong>: discussion of specific tools to make things easier (26 messages)  </li>
<li><strong>Challenges:</strong> what’s difficult and how to deal with it (15 messages)  </li>
<li><strong>Adoption:</strong> meta-conversation about microblogging (10 messages)  </li>
<li><strong>Personas:</strong> managing multiple personas (10 messages)  </li>
<li><strong>Takeaways:</strong> short summary (14 messages)  </li>
<li><strong>Next:</strong> things to explore next (12 messages)</li>
</ul>
<p><a href="https://sachachua.com/blog/wp-content/uploads/2010/02/image1.png"><img loading="lazy" style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="https://sachachua.com/blog/wp-content/uploads/2010/02/image_thumb1.png" width="576" height="322"></a> </p>
<p>There were many messages I didn’t categorize because they repeated information, were related to the teleconference itself, or were part of the general back-and-forth. </p>
<p>As usual, IBMers like talking about tools and sharing tool-related tips. You should’ve seen us during Dan Roam’s presentation on the Back of the Napkin – we were fascinated by the drawing tools he used! ;)</p>
<p>It’s interesting to see how people cluster around topics, too. When I look at the spreadsheet, I can see who cares a lot about adoption, who’s interested in personas, etc. </p>
<p>I’m sure there’s been research on the analysis of conversations. The backchannel is like Internet relay chat (IRC), after all, and IRC has been around for decades. I wonder how the real-time extra channel of speaking influences the flow of the backchannel and vice versa. I wonder how we can get better at picking up ideas and following up on them. I wonder how we can get better at strengthening the newly-formed connections.</p>
<p>In a real-life presentation, it would be difficult to have all these conversations and to get this kind of insight into what people care about. A presentation backchannel where people can chat is an incredibly powerful tool, and I’m looking forward to helping learn more about making the most of it!</p>

<p>You can <a href="mailto:sacha@sachachua.com?subject=Comment%20on%20https%3A%2F%2Fsachachua.com%2Fblog%2F2010%2F02%2Fharvesting-the-backchannel-bazaar-of-insights%2F&body=Name%20you%20want%20to%20be%20credited%20by%20(if%20any)%3A%20%0AMessage%3A%20%0ACan%20I%20share%20your%20comment%20so%20other%20people%20can%20learn%20from%20it%3F%20Yes%2FNo%0A">e-mail me at sacha@sachachua.com</a>.</p>]]></description>
		</item>
	</channel>
</rss>