<?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/"
	>

<channel>
	<title>Avaktavyam &#187; Software</title>
	<atom:link href="http://lddubeau.com/avaktavyam/category/software/feed" rel="self" type="application/rss+xml" />
	<link>http://lddubeau.com/avaktavyam</link>
	<description>Some things just can't be expressed...</description>
	<lastBuildDate>Sat, 23 Apr 2011 00:36:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>OOHanzi 0.8 released</title>
		<link>http://lddubeau.com/avaktavyam/2011/04/22/oohanzi-0-8-released</link>
		<comments>http://lddubeau.com/avaktavyam/2011/04/22/oohanzi-0-8-released#comments</comments>
		<pubDate>Sat, 23 Apr 2011 00:36:14 +0000</pubDate>
		<dc:creator>Louis-Dominique</dc:creator>
				<category><![CDATA[OOHanzi]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://lddubeau.com/avaktavyam/?p=696</guid>
		<description><![CDATA[OOHanzi 0.8 has been released.
As usual please refer to the documentation to know how to use it.
List of changes:
* Updated packaging dependencies for Ubuntu 10.10.
* New functionality: &#8220;Quick Lookup In&#8230;&#8221;
* Fixed bugs in Unmark Words and Unmark Words Forcibly
]]></description>
			<content:encoded><![CDATA[<p>OOHanzi 0.8 has been <a href="http://lddubeau.com/downloads/openoffice/extensions/">released</a>.</p>
<p>As usual please refer to the <a href="http://lddubeau.com/downloads/openoffice/extensions/oohanzi-0.8-doc.odt">documentation</a> to know how to use it.</p>
<p>List of changes:</p>
<p>* Updated packaging dependencies for Ubuntu 10.10.</p>
<p>* New functionality: &#8220;Quick Lookup In&#8230;&#8221;</p>
<p>* Fixed bugs in Unmark Words and Unmark Words Forcibly</p>
]]></content:encoded>
			<wfw:commentRss>http://lddubeau.com/avaktavyam/2011/04/22/oohanzi-0-8-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A note about security in the cloud</title>
		<link>http://lddubeau.com/avaktavyam/2009/09/26/a-note-about-security-in-the-cloud</link>
		<comments>http://lddubeau.com/avaktavyam/2009/09/26/a-note-about-security-in-the-cloud#comments</comments>
		<pubDate>Sat, 26 Sep 2009 15:48:23 +0000</pubDate>
		<dc:creator>Louis-Dominique</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://lddubeau.com/avaktavyam/?p=628</guid>
		<description><![CDATA[People who know me well know that I do not easily entrust my data to the cloud.  I find that even with the best of intentions, the risk of accidental data leakage is just to great.  There has been a recent case proving that my fears are founded.
A bug in Gmail allowed students [...]]]></description>
			<content:encoded><![CDATA[<p>People who know me well know that I do not easily entrust my data to the cloud.  I find that even with the best of intentions, the risk of accidental data leakage is just to great.  There has been a recent case proving that my fears are founded.</p>
<p>A <a href="http://yro.slashdot.org/story/09/09/21/0139203/Going-Google-Exposes-Students-Email?from=rss">bug in Gmail</a> allowed students at some schools to read each other&#8217;s emails.  I don&#8217;t know about you but I&#8217;d rather not have other people read my emails.  (Yes, I know the vast majority of emails are transfered in plain text.  I does not entail that it is okay for my colleagues to be able to access my mail folders.)</p>
]]></content:encoded>
			<wfw:commentRss>http://lddubeau.com/avaktavyam/2009/09/26/a-note-about-security-in-the-cloud/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coders without shame</title>
		<link>http://lddubeau.com/avaktavyam/2009/04/29/coders-without-shame</link>
		<comments>http://lddubeau.com/avaktavyam/2009/04/29/coders-without-shame#comments</comments>
		<pubDate>Thu, 30 Apr 2009 01:59:50 +0000</pubDate>
		<dc:creator>Louis-Dominique</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://lddubeau.com/avaktavyam/?p=563</guid>
		<description><![CDATA[I&#8217;ve been running into a good deal of bad computer code lately.  Here&#8217;s an example from an actual tutorial.  I&#8217;ve renamed the variable to protect the shameless:
 if (count == 0) return false;
return true;
Why not this:
return (count != 0);
There are some god-forsaken languages in which returning the evaluation of a boolean expression is not valid [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been running into a good deal of bad computer code lately.  Here&#8217;s an example from an actual tutorial.  I&#8217;ve renamed the variable to protect the shameless:</p>
<p><code> if (count == 0) return false;<br />
return true;</code></p>
<p>Why not this:</p>
<p><code>return (count != 0);</code></p>
<p>There <strong>are</strong> some <strong>god-forsaken languages</strong> in which returning the evaluation of a boolean expression is not valid (e.g. the creeping horror which goes by the name Open Office Basic).  C and C++ are not among these.   Yet, I&#8217;ve been running across a good dozen cases where the coders did not realize that.</p>
<p>In case someone would like to object: I know it is possible to just return count and let the compiler do an implicit conversion to bool but an explicit test makes the code clearer.  The additional &#8220;if &#8230; then&#8221; does not.</p>
]]></content:encoded>
			<wfw:commentRss>http://lddubeau.com/avaktavyam/2009/04/29/coders-without-shame/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OOHanzi 0.7 released</title>
		<link>http://lddubeau.com/avaktavyam/2009/04/25/oohanzi-07-released</link>
		<comments>http://lddubeau.com/avaktavyam/2009/04/25/oohanzi-07-released#comments</comments>
		<pubDate>Sat, 25 Apr 2009 11:35:21 +0000</pubDate>
		<dc:creator>Louis-Dominique</dc:creator>
				<category><![CDATA[Chinese]]></category>
		<category><![CDATA[OOHanzi]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://lddubeau.com/avaktavyam/?p=559</guid>
		<description><![CDATA[OOHanzi 0.7 has been released.
As usual please refer to the documentation to know how to use it.
I have not been able to work on getting OOHanzi to work on OS X so I presume it still does not work.
List of changes:
* Updated packaging dependencies for Ubuntu 9.04.
* Performance improvements in &#8220;Mark Words Present In&#8230;&#8221;.
* Added [...]]]></description>
			<content:encoded><![CDATA[<p>OOHanzi 0.7 has been released.</p>
<p>As usual please refer to the <a href="http://lddubeau.com/downloads/openoffice/extensions/oohanzi-0.7-doc.odt">documentation</a> to know how to use it.</p>
<p>I have not been able to work on getting OOHanzi to work on OS X so I presume it still does not work.</p>
<p>List of changes:</p>
<p>* Updated packaging dependencies for Ubuntu 9.04.</p>
<p>* Performance improvements in &#8220;Mark Words Present In&#8230;&#8221;.</p>
<p>* Added support for variant readings when using &#8220;Mark Words Present In&#8230;/DDB&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://lddubeau.com/avaktavyam/2009/04/25/oohanzi-07-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Going from Revelation to KeePassX</title>
		<link>http://lddubeau.com/avaktavyam/2009/02/07/going-from-revelation-to-keepassx</link>
		<comments>http://lddubeau.com/avaktavyam/2009/02/07/going-from-revelation-to-keepassx#comments</comments>
		<pubDate>Sat, 07 Feb 2009 07:11:43 +0000</pubDate>
		<dc:creator>Louis-Dominique</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://lddubeau.com/avaktavyam/?p=474</guid>
		<description><![CDATA[I&#8217;ve decided to ditch revelation.  I&#8217;ve used it for several years to manage my passwords but development seems to have stalled.  The author&#8217;s website is currently inaccessible.  So it is over for me.  Read on for the method I used to convert my database of passwords.

I&#8217;ve switched to KeePassX because it [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve decided to ditch revelation.  I&#8217;ve used it for several years to manage my passwords but development seems to have stalled.  The author&#8217;s website is currently inaccessible.  So it is over for me.  Read on for the method I used to convert my database of passwords.<br />
<span id="more-474"></span></p>
<p>I&#8217;ve switched to <a href="http://www.keepassx.org/">KeePassX</a> because it seems better supported and has the features I want.  Wzzrd <a href="http://www.wzzrd.com/2008/10/migrating-from-revelation-to-keepassx.html">produced a script</a> to perform the conversion.  His script is in Ruby, a language I&#8217;m not particularly interested in.  Moreover, his script did not quite do what I wanted so I converted his script to python and adapted it to my needs.  I&#8217;m attaching the script to this post: <a href='http://lddubeau.com/avaktavyam/wp-content/uploads/2009/02/revelation-to-keepassx'>revelation-to-keepassx</a>  Anybody wanting to use this script should be warned that it is <strong>throwaway code</strong> and that I implemented just as much as I needed.</p>
<p>The way I converted my data was:</p>
<p>1. Export the data from revelation into an unencrypted XML file.  (It is advisable to export it to a file in volatile memory like /dev/shm.  This minimizes the risk of leaving unencrypted data in free blocks after the conversion is done.)</p>
<p>2. I ran my script without options:</p>
<p><code>$ revelation-to-keepassx /dev/shm/revelation-export.xml > /dev/shm/keepassx.xml</code></p>
<p>(Note that I save the result in /dev/shm again.)</p>
<p>This resulted in the output:</p>
<p><code>revelation-to-keepassx: ERROR: stripped following ids: generic-keyfile, generic-location, generic-certificate, creditcard-cardtype</code></p>
<p>I checked my input file to verify that I would not lose anything important if &lt;field&gt; elements with the above ids were to be stripped from the output instead of converted.</p>
<p>3.  I reran the script as above but with the &#8220;-i&#8221; option which tells the script to ignore the stripped ids.</p>
<p>4. I imported the resulting file into KeePassX.</p>
<p>I&#8217;ve inspected the final database and found no evident problem.  To be on the safe side I used gpg to encrypt the XML file I exported from revelation so that even if I eventually run into trouble and revelation is not easily installable, I can visually inspect the XML file.</p>
]]></content:encoded>
			<wfw:commentRss>http://lddubeau.com/avaktavyam/2009/02/07/going-from-revelation-to-keepassx/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>HOWTO: Import from Anki to Pleco</title>
		<link>http://lddubeau.com/avaktavyam/2009/01/27/howto-import-from-anki-to-pleco</link>
		<comments>http://lddubeau.com/avaktavyam/2009/01/27/howto-import-from-anki-to-pleco#comments</comments>
		<pubDate>Tue, 27 Jan 2009 11:07:06 +0000</pubDate>
		<dc:creator>Louis-Dominique</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://lddubeau.com/avaktavyam/?p=436</guid>
		<description><![CDATA[A quick and dirty note about how to export flashcards from Anki and import them in Pleco.  I&#8217;m assuming some familiarity with both Anki and Pleco.


Open your deck in Anki.
Go to File->Export.
Set the export format to &#8220;Facts in tab-separated text file&#8221;.
(Optional:) Limit by tags.
Click &#8220;Export to&#8230;&#8221;.  You will have to select a file [...]]]></description>
			<content:encoded><![CDATA[<p>A quick and dirty note about how to export flashcards from Anki and import them in Pleco.  I&#8217;m assuming some familiarity with both Anki and Pleco.<br />
<span id="more-436"></span></p>
<ol>
<li>Open your deck in Anki.</li>
<li>Go to File->Export.</li>
<li>Set the export format to &#8220;Facts in tab-separated text file&#8221;.</li>
<li>(Optional:) Limit by tags.</li>
<li>Click &#8220;Export to&#8230;&#8221;.  You will have to select a file to save to.</li>
<li>You then need to rearrange the output of Anki.  Anki outputs its data as: Chinese TAB English TAB Pinyin.  Pleco wants Chinese TAB Pinyin TAB Chinese.  Any macro or script which reorders the second and third field will do the trick.  I use the following:<br />
<code><br />
$ gawk -F '\t' -- '{print $1"\t"$3"\t"$2}' [exported file] > [fixed file]<br />
</code></p>
<p>&#8220;[exported file]&#8221; is the file previously exported from Anki.  &#8220;[fixed file]&#8221; is where to save the output.
</li>
<li>Shove &#8220;[fixed file]&#8221; onto a flash card or transmit it to the device running Pleco.</li>
<li>In Pleco, select &#8220;Modules->Open Flashcards&#8230;&#8221;.</li>
<li>9. Click the &#8220;Import&#8221; button.</li>
<li>10. Set the following:
<ul>
<li>Source: the file you want to import.</li>
<li>Card Language: Chinese-English</li>
<li>Text Encoding: UTF-8</li>
<li>Missing Entries: Create Blank</li>
<li>Ambiguous Entries: Prompt</li>
<li>Duplicate Entries: Prompt</li>
<li>Store imported defns in user dict: unchecked</li>
</ul>
</li>
<li>Hit start.  Make sure the sample data looks good.  Hit yes if it does look good.</li>
<li>Exercise left to the reader: check that your cards look good after importing.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://lddubeau.com/avaktavyam/2009/01/27/howto-import-from-anki-to-pleco/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OOHanzi 0.6 released</title>
		<link>http://lddubeau.com/avaktavyam/2008/11/28/oohanzi-06-released</link>
		<comments>http://lddubeau.com/avaktavyam/2008/11/28/oohanzi-06-released#comments</comments>
		<pubDate>Fri, 28 Nov 2008 05:38:13 +0000</pubDate>
		<dc:creator>Louis-Dominique</dc:creator>
				<category><![CDATA[Chinese]]></category>
		<category><![CDATA[OOHanzi]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://lddubeau.com/avaktavyam/?p=333</guid>
		<description><![CDATA[Warning: OOHanzi 0.6 does not seem to be installable on Mac OS X.  I have tried this week to install it on a Mac without success.  I do not know whether previous versions would work or not.
OOHanzi 0.6 has been released.
Of all the releases of OOHanzi so far this is the one which [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Warning:</strong> OOHanzi 0.6 does not seem to be installable on Mac OS X.  I have tried this week to install it on a Mac without success.  I do not know whether previous versions would work or not.</p>
<p>OOHanzi 0.6 has been released.</p>
<p>Of all the releases of OOHanzi so far this is the one which has required the most work and which contains the most substantial changes.  There are significant visible improvements but the bulk of the work happened under the hood and is invisible to regular users.<br />
<span id="more-333"></span></p>
<p>There is one <strong>major usability improvement</strong>: OOHanzi can now be installed by downloading and installing a <strong>single package</strong> instead of 5 packages.   Please refer to the <a href="http://lddubeau.com/downloads/openoffice/extensions/oohanzi-0.6-doc.odt">documentation</a> to learn how to use this new method.</p>
<p>List of changes:</p>
<ul>
<li>The user documentation is now stored in an <strong>OpenOffice document</strong> rather than in an XML document.  This will allow for nicer, more friendly formatting of the documentation in the future.</li>
<li>OOHanzi now uses the officially recommended method to set preferences. </li>
<li>OOHanzi now checks whether strings passed for lookups are bigger than defined size and warns the user if it is the case. </li>
<li>OOHanzi now checks whether strings passed for lookups are Chinese and warns the user if the string does now look Chinese. </li>
<li>When performing a lookup, OOHanzi now sets the system clipboard to the selected text.</li>
<li>Major restructuring of the selection logic.  This allowed the next two changes.</li>
<li><strong>It now is possible to use OOHanzi in oobase</strong>. </li>
<li>OOHanzi would crash on any operation having to do with text in <strong>footnotes</strong>.  This has been fixed. </li>
<li>Fixed a bug which caused &#8220;Mark Words Present In&#8230;&#8221;->&#8221;DDB&#8221; to fail to scan the last character of a selection.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://lddubeau.com/avaktavyam/2008/11/28/oohanzi-06-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Office 3.0: Meh&#8230;</title>
		<link>http://lddubeau.com/avaktavyam/2008/11/10/open-office-30-meh</link>
		<comments>http://lddubeau.com/avaktavyam/2008/11/10/open-office-30-meh#comments</comments>
		<pubDate>Tue, 11 Nov 2008 01:59:21 +0000</pubDate>
		<dc:creator>Louis-Dominique</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://lddubeau.com/avaktavyam/?p=311</guid>
		<description><![CDATA[I'm reporting my impression on Open Office 3.0.  It is very much meh...]]></description>
			<content:encoded><![CDATA[<p><strong>Be warned that this is not a thorough evaluation of Open Office.</strong>  I use it mainly during the initial phases of translating from Chinese or Tibetan.  (I still use Emacs for Sanskrit.)  I produce all my final documents in LaTeX.  So there is a lot of the functionality of Open Office I do not use.  I&#8217;m putting my impressions here mainly because I told some people I would tell them what I think of Open Office 3.0 and I figured I might as well post my <strong>impression</strong> to my blog.  It is likely that I am going to ignore features that other people would find crucial.  So there you have it.<br />
<span id="more-311"></span></p>
<p>The good:</p>
<ol>
<li>
<p>Open Office 3.0 feels snappier than 2.4.  I don&#8217;t have hard statistics but it feels like it starts faster and various operations are faster.</p>
</li>
<li>
<p>Extensions designed for 2.4 work in 3.0 without modification.</p>
</li>
<li>
<p>A window bug in 2.4 which was triggered by compiz has been fixed in 3.0</p>
</li>
<li>
<p>In text documents, it is now possible to see the content of notes on the right side of the document.  <strong>I would go as far as asserting that before 3.0, Open Office&#8217;s support for notes in text documents was so badly broken as to be unusable</strong>.  In 3.0 it is possible to put notes to good use.  And I would say that this feature alone is what made the move to 3.0 worthwhile for me.</p>
</li>
</ol>
<p>However all of the positive above is undermined by long-standing problems in Open Office which still have not been fixed in 3.0: </p>
<ol>
<li>
<p>Open Office&#8217;s support for notes is still deficient.  It is not possible to associate a note with a <strong>span of text</strong>.  I find this very annoying because I usually think of notes as comments on spans of text.  It is currently not possible to select part of a paragraph for instance and add a note saying &#8220;this passage is incorrect&#8221; which would clearly be associated with the selected passage.  If you select a passage and add a note, <strong>the note will be inserted at the start or end of the passage</strong> without any indication of what exactly it applies to.  So you have to write in the note &#8220;The passage from A to B is incorrect.&#8221;</p>
</li>
<li>
<p>It is still not possible to get a split-screen view in Open Office.  This may be due to just how abysmally ill-designed the underlying architecture of Open Office is.  I often find myself wishing for such functionality.  Sigh&#8230;</p>
</li>
<li>
<p>Open Office is just as likely to crash as before.</p>
</li>
<li>
<p>As I intimated above, the underlying architecture of Open Office is just as horrible as it ever was.  If you have never tried to write extensions for Open Office you have no idea just how bad it is.</p>
</li>
<li>
<p>The documentation is just as inadequate as before.  I&#8217;m talking not only about the documentation available to people writing extensions but also the documentation for end users.</p>
</li>
</ol>
<p>Lately I&#8217;ve found asking myself why I&#8217;m putting up with Open Office and why I&#8217;m writing extensions for it.  I keep having to remind myself that although Emacs would be more pleasant to work with, it is not a likely tool for most of my colleagues.  Word would sit at the top of the list of most popular tool but due to ideological reasons (Word is not open source software) I&#8217;m not going to develop for Word.  This leaves Open Office.  I&#8217;ve checked again this morning what was available in the open source world and as bad as Open Office is, there is really no other contender.  In my opinion, other office suites are either incomplete or not supported well enough on other platforms.  I&#8217;m not fond of Windows but I&#8217;d rather develop extensions for an open source suite which is fully ported to Windows rather than an open source suite which is only half-ported or badly ported.  Ditto for OS X.</p>
]]></content:encoded>
			<wfw:commentRss>http://lddubeau.com/avaktavyam/2008/11/10/open-office-30-meh/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Intrepid: Growing Pains</title>
		<link>http://lddubeau.com/avaktavyam/2008/10/31/intrepid-growing-pains</link>
		<comments>http://lddubeau.com/avaktavyam/2008/10/31/intrepid-growing-pains#comments</comments>
		<pubDate>Fri, 31 Oct 2008 07:46:13 +0000</pubDate>
		<dc:creator>Louis-Dominique</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://lddubeau.com/avaktavyam/?p=313</guid>
		<description><![CDATA[I'm recording here problems with upgrading to Ubuntu 8.10 Intrepid Ibex.]]></description>
			<content:encoded><![CDATA[<p><strong>Updated again Nov 1st 9:00pm, Taiwan time.</strong></p>
<p>I&#8217;ve upgraded from Hardy to Intrepid and found a slew of problems.  First the problems which are not fixed:</p>
<ol>
<li>
<p>Gnome does not want to start the gnome-terminal which is saved in the session configuration. After further investigation I found that <strong>session saving in gnome 2.24.1 does not <a href="http://bugzilla.gnome.org/show_bug.cgi?id=552387">work at all</a></strong>.  This is a regression bug and a major one at that.</p>
</li>
<li>
<p><strong>Update</strong>: I can&#8217;t sync to my cell phone using bluetooth.  The bluetooth driver is there and working but to be able to sync there need to be some configuration performed.  The configuration of the bluetooth tools has significantly changed since Hardy so this is not a trivial thing to fix.  And the documentation seems nonexistent.  One step forward, two steps back.</p>
</li>
<li>
<p>Evolution displays negative total number of emails.</p>
</li>
</ol>
<p>Then the problems which I have been able to fix:</p>
<ol>
<li>
<p>The guys working on compiz have decided to go from 0-based indexing of viewports to 1-based indexing.  Of course, user settings are not automatically upgraded so I had to go into my configuration and fix that manually.  I think the <strong>change is good</strong> because 0-based indexing makes sense only to programmers.  <strong>However, not providing for an automatic upgrade of the configuration data is asinine.</strong></p>
</li>
<li>
<p>scim initially refused to start.  It turns out that skim was preventing it to run.  Not skim directly but there was a session script which checked whether skim is present or not and if present would refuse to run scim.</p>
</li>
<li>
<p>Evolution at first did not want to connect to my mail server.  I fixed this by switching from TLS to SSL for the connection protocol.</p>
</li>
<li>
<p><strong>Update</strong>: Hardy and Intrepid run different versions of rsync.  Unfortunately, the two versions do not speak the exact same protocol.  There is some degree of compatibility so not all uses of rsync between an Intrepid and Hardy machine are doomed to fail.  However, I use rsync in such a way that Intrepid&#8217;s rsync cannot talk to Hardy&#8217;s rsync.  I&#8217;ve backported Intrepid&#8217;s rsync to Hardy to take care of that problem.</p>
</li>
<li>
<p><strong>Update</strong>: Skype initially was not able to produce audio.  Changing my sound out and ringing devices in the &#8220;Sound Device&#8221; tab of the &#8220;Options&#8221; dialog to the value &#8220;pulse&#8221; fixed the problem.</p>
</li>
<li>
<p><strong>Update</strong>: Spamassassin&#8217;s cron job fails.  A <a href="https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/257405">workaround</a> exists.</p>
<li>
<p><strong>Update</strong>: The Eclipse version bundled with Intrepid is both ancient and buggy.  To be fair that is also a problem with Hardy.  The problem has been <a href="https://bugs.launchpad.net/ubuntu/+source/eclipse/+bug/123064">reported</a> and a newer version of Eclipse exists in one of the PPAs.</p>
</li>
<li>
<p><strong>Update</strong>: Evolution displays a huge &#8220;Show:&#8221; button.  I fixed this by going into the gconf registry and removing the key at /apps/evolution/mail/labels.</p>
</li>
</ol>
<p>I will update this page as I find more.</p>
]]></content:encoded>
			<wfw:commentRss>http://lddubeau.com/avaktavyam/2008/10/31/intrepid-growing-pains/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>OOHanzi and Open Office 3</title>
		<link>http://lddubeau.com/avaktavyam/2008/10/12/oohanzi-and-open-office-3</link>
		<comments>http://lddubeau.com/avaktavyam/2008/10/12/oohanzi-and-open-office-3#comments</comments>
		<pubDate>Sun, 12 Oct 2008 06:29:43 +0000</pubDate>
		<dc:creator>Louis-Dominique</dc:creator>
				<category><![CDATA[Chinese]]></category>
		<category><![CDATA[OOHanzi]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://lddubeau.com/avaktavyam/?p=296</guid>
		<description><![CDATA[I&#8217;ve tested OOHanzi in Open Office 3 and have good news to report:

OOHanzi will work with Open Office 3 without modification.
There was a bug in Open Office 2.x which affected only people using compiz.  If compiz was running, all dialog boxes which were created by the Java virtual machine running in Open Office would [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve tested OOHanzi in Open Office 3 and have good news to report:</p>
<ol>
<li>OOHanzi will work with Open Office 3 without modification.</li>
<li>There was a bug in Open Office 2.x which affected only people using compiz.  If compiz was running, all dialog boxes which were created by the Java virtual machine running in Open Office would be displayed smaller than they should have been.  This bug crippled OOHanzi pretty badly.  After testing Open Office 3, I found the bug has been fixed.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://lddubeau.com/avaktavyam/2008/10/12/oohanzi-and-open-office-3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

