<?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>notes from the mousepad &#187; jim</title>
	<atom:link href="http://j1m.net/author/jim/feed/" rel="self" type="application/rss+xml" />
	<link>http://j1m.net</link>
	<description>user help, free and open source</description>
	<lastBuildDate>Mon, 30 Aug 2010 00:34:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Duck, Duck, Gnu: Mallard and DocBook 5 support in Emacs</title>
		<link>http://j1m.net/2010/08/29/duck-duck-gnu-mallard-and-docbook-5-support-in-emacs/</link>
		<comments>http://j1m.net/2010/08/29/duck-duck-gnu-mallard-and-docbook-5-support-in-emacs/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 20:31:30 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[DocBook]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Mallard]]></category>
		<category><![CDATA[RelaxNG]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[nXML-mode]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=223</guid>
		<description><![CDATA[I&#8217;ve been doing some documentation work with Mallard and DocBook 5 recently, and have been looking for software that supports them well.  The trick is that both Mallard and DocBook 5 are based on RelaxNG schemas, and while there are many XML tools out there, there are few that are open source, and fewer still [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>I&#8217;ve been doing some documentation work with Mallard and DocBook 5 recently, and have been looking for software that supports them well.  The trick is that both Mallard and DocBook 5 are based on RelaxNG schemas, and while there are many XML tools out there, there are few that  are open source, and fewer still that support RelaxNG.</p>
<div id="attachment_300" class="wp-caption alignleft" style="width: 202px"><a href="http://j1m.net/wp-content/uploads/2010/08/emacs.jpg"><img class="size-full wp-image-300 " title="emacs" src="http://j1m.net/wp-content/uploads/2010/08/emacs.jpg" alt="http://www.flickr.com/photos/tsmall/4226883729/sizes/s/" width="192" height="128" /></a><p class="wp-caption-text">From flickr user tsmall. Attribution-ShareAlike 2.0 Generic license</p></div>
<p>After perusing my options, I decided to try Emacs with nXML-mode.  Emacs&#8217; nXML-mode provides real-time validation for RelaxNG-based documents, something which no other  open source authoring tool provides. But while nXML-mode can validate XML documents on-the-fly, the default installation is not set up to validate  against the recently-developed Mallard and DocBook 5 schemas.</p>
<p>Thus, to take full advantage of the latest in <a href="http://www.projectmallard.org" target="_blank">duck</a>-<a href="http://www.docbook.org/tdg5/en/html/docbook.html" target="_blank">based</a> documentation technologies, I needed to modify my .emacs file and the nxml-mode files themselves.  What follows is an overview of exactly what I did in the hopes that others can make use of the same changes, too.</p>
<p><span style="text-decoration: underline;"><strong>An nXML-mode foundation</strong></span></p>
<p>Before we get started, though, you should know that much of what follows is derived from information on <a href="http://infohost.nmt.edu/tcc/help/pubs/nxml/" target="_blank">this website</a>.  I encourage you to visit the site, as it provides an introduction to how nXML-mode is configured, and enough of an  introduction to using nXML-mode to make you at least modestly  productive right away.</p>
<p><strong><span style="text-decoration: underline;">Part One: Setting up your .emacs file</span></strong></p>
<p>The first step in setting up nXML-mode for Mallard and DocBook 5 is to make a few changes to your .emacs file.  If you are new to Emacs, your .emacs  file sits in your home directory, and serves as a personalized Emacs  configuration file.  You may need to create the .emacs file if it  doesn&#8217;t already exist.</p>
<p><pre class="brush: xml">;; /usr/share/emacs/site-lisp/tcc-nxml-emacs:  Add these lines
;;      to your .emacs to use nxml-mode.  For documentation of
;;      this mode, see http://www.nmt.edu/tcc/help/pubs/nxml/
;;--
;; Add the nxml files to emacs's search path for loading:
;;--
(setq load-path
      (append load-path
              '(&quot;/usr/share/emacs/site-lisp/nxml/&quot;)))
;;--
;; Make sure nxml-mode can autoload
;;--
(load &quot;/usr/share/emacs/site-lisp/nxml/rng-auto.el&quot;)

;;--
;; Load nxml-mode for files ending in .xml, .xsl, .rng, .xhtml .page
;;--
(setq auto-mode-alist
      (cons '(&quot;\\.\\(xml\\|xsl\\|rng\\|xhtml\\|page\\)\\'&quot; . nxml-mode)
            auto-mode-alist))</pre></p>
<p>The above .emacs configuration tells Emacs where  to look for detailed XML processing instructions, and also causes Emacs to automatically use nXML-mode for XML-related  files.  (Did I tell you that Emacs might have a bit of a learning curve?  Yeah, that&#8217;s true.)</p>
<p><span style="text-decoration: underline;"><strong>Part Two: Modifying the nXML-mode configuration files</strong></span></p>
<p>The second step is to modify the nXML-mode configuration files themselves. This will add the appropriate nXML-mode secret sauce to handle Mallard and DocBook 5 documents.</p>
<p>Fortunately for you, I grabbed the latest nXML-mode source files  from the <a href="http://www.thaiopensource.com/nxml-mode/" target="_blank">nXML-mode website</a>, and made the appropriate modifications myself.  You can download my customized nXML-mode files <a title="nxml-mode files" href="http://j1m.net/wp-content/uploads/2010/08/nxml.zip" target="_blank">from this archive</a>.</p>
<p>Here&#8217;s what I changed from the default setup:</p>
<ul>
<li>I added the docbookxi.rnc and mallard-1.0.rnc schemas to the schemas directory</li>
<li>I modified the schemas.xml file, thus including the docbookxi.rnc and mallard-1.0.rnc schemas as part of the XML-validation process.</li>
</ul>
<p>Note that I have used the DocBook 5 &#8220;docbookxi.rnc&#8221; schema which allows for <a href="http://www.xml.com/pub/a/2002/07/31/xinclude.html" target="_blank"> xinclude</a> functionality.  If you want to use the schema that does not   allow for use of xinclude features, you&#8217;ll need to adjust the files   accordingly.  The current DocBook 5 schemas are <a href="http://www.docbook.org/xml/5.0/rng/" target="_blank">available   here</a>.</p>
<p><strong><span style="text-decoration: underline;">Part Three: Copy your nXML-mode files to the proper location<br />
</span> </strong>The final step is to copy the nXML-mode files to the proper location on your  file system.  As indicated in our .emacs file, that location is:  /usr/share/emacs/site-lisp/nxml/.  Thus, you should copy all of the files in the downloaded &#8220;nxml&#8221; folder into that directory.  You will need administrative privileges (using root or sudo) to do this.</p>
<p><span style="text-decoration: underline;"><strong>Wrapping up</strong></span></p>
<p>That&#8217;s it, though.  You should now have a functioning nXML-mode environment that will allow you to fire-up Emacs and start writing Relax-NG-based documents, getting all of the real-time-validation features that Emacs provides. If you can think of any ways in which I could improve my approach, please let me know.  Otherwise, I encourage you to head-on over to the <a href="http://www.thaiopensource.com/nxml-mode/" target="_blank">nXML-mode website</a>, and view some of the nXML-mode information and resources that are available as you get started.</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2010/08/29/duck-duck-gnu-mallard-and-docbook-5-support-in-emacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upcoming FLOSS-related Events in the Midwest</title>
		<link>http://j1m.net/2010/08/21/upcoming-floss-related-events-in-the-midwest/</link>
		<comments>http://j1m.net/2010/08/21/upcoming-floss-related-events-in-the-midwest/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 15:35:02 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=236</guid>
		<description><![CDATA[Here&#8217;s a quick rundown of some upcoming Free and Open-Source software events in the Chicagoland / greater-midwest area. Saturday and Sunday, August 21 and 22, 2010: Barcamp Chicago Running all day and night this Saturday and Sunday 215 E. Ohio Street in downtown Chicago Numerous presentations, and a &#8220;BarCompany&#8221; startup hackathon Sunday, August 29: Ubuntu [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>Here&#8217;s a quick rundown of some upcoming Free and Open-Source software events in the Chicagoland / greater-midwest area.</p>
<p><strong>Saturday and Sunday, August 21 and 22, 2010</strong>: <a title="Barcamp Chicago" href="http://barcampchicago.com/home/" target="_blank">Barcamp Chicago</a></p>
<ul>
<li>Running all day and night this Saturday and Sunday</li>
<li>215 E. Ohio Street in downtown Chicago</li>
<li>Numerous presentations, and a &#8220;BarCompany&#8221; startup hackathon</li>
</ul>
<p><strong>Sunday, August 29</strong>: Ubuntu Chicago&#8217;s <a href="http://loco.ubuntu.com/events/team/263/detail/" target="_blank">Ubuntu Global Jam</a></p>
<ul>
<li>Socialize and work with the team on bug-triaging and fixing, documentation, and more!</li>
</ul>
<p><strong>Friday through Sunday, September 10th through 12th</strong>: <a href="http://www.ohiolinux.org/" target="_blank">Ohio Linux Fest</a></p>
<ul>
<li> Keynote presentations by Stormy Peters, Executive Director of the GNOME Foundation, and Christopher &#8220;Monty&#8221; Montgomery, creator of the open-source audio format Ogg Vorbis</li>
<li>Tracks dedicated to getting started in Free and Open-Source software, Linux security, and so much more.</li>
<li>For Ubuntu users, there will be an &#8220;Ubucon&#8221; during the morning and mid-afternoon hours on Friday.</li>
</ul>
<p><strong>Saturday and Sunday, October 2nd and 3rd</strong>: <a href="http://barcampmilwaukee.com/" target="_self">Barcamp Milwaukee</a></p>
<ul>
<li>A wide range of sessions relating to Free and Open Source software and general geekery.</li>
<li>Like Barcamp Chicago, this event will run throughout the entire weekend, including overnight activities between Saturday and Sunday.</li>
</ul>
<p><strong>Saturday and Sunday, October 22nd and 23rd</strong>: <a href="http://erlangcamp.com/" target="_blank">Erlang Camp</a>, Chicago</p>
<ul>
<li>A weekend devoted to learning how to confidently put Erlang code into production for your company, group, or individual project.</li>
</ul>
<p><strong>Events at the Chicago hacker space</strong>, <a href="http://pumpingstationone.org/" target="_blank">Pumping Station One</a></p>
<ul>
<li>Check their <a href="http://pumpingstationone.org/events/" target="_blank">calendar</a> for their ongoing list of events and activities</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2010/08/21/upcoming-floss-related-events-in-the-midwest/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Thanks, Debian!</title>
		<link>http://j1m.net/2010/08/16/thanks-debian/</link>
		<comments>http://j1m.net/2010/08/16/thanks-debian/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 19:11:33 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Distros]]></category>
		<category><![CDATA[Posts on the Planet]]></category>
		<category><![CDATA[Software Freedom]]></category>
		<category><![CDATA[Teamwork]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=217</guid>
		<description><![CDATA[Today is Debian&#8217;s 17th birthday*, and with that comes Debian Appreciation day!  Do you want to give them some thanks for the super work that they do?  Just head over to thank.debian.net, and leave them a few words to express your gratitude. You can even search for your favorite package, team, or packaging team, and [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>Today is Debian&#8217;s 17th birthday*, and with that comes Debian Appreciation day!  Do you want to give them some thanks for the super work that they do?  Just head over to <a href="http://thank.debian.net/" target="_blank">thank.debian.net</a>, and leave them a few words to express your gratitude.</p>
<p>You can even search for your favorite package, team, or packaging team, and thank them directly!   (Don&#8217;t we all want to thank the XML/SGML Group, though?)</p>
<p>*I&#8217;m sure that Debian is looking forward to next year when it will turn 18, and (at least in the U.S.) be able to vote and smoke cigarettes.</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2010/08/16/thanks-debian/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Updating the Ubuntu Packaging Guide</title>
		<link>http://j1m.net/2010/07/13/updating-the-ubuntu-packaging-guide/</link>
		<comments>http://j1m.net/2010/07/13/updating-the-ubuntu-packaging-guide/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 01:16:34 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Licensing]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[packaging_guide]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=166</guid>
		<description><![CDATA[We’d like to get your input on where to focus documentation efforts on the Ubuntu Packaging Guide. There are all kinds of topics that need to be written, updated, or improved — so where should we start? What do you need most? Give your input via the this Google Docs Survey. I’ve provided some direction [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>We’d like to get your input on where to focus documentation efforts on the <a href="https://wiki.ubuntu.com/PackagingGuide" target="_blank">Ubuntu Packaging Guide</a>. There are all kinds of topics that need to be written, updated, or improved — so where should we start? What do you need most?</p>
<p>Give your input via the this <a href="http://spreadsheets.google.com/viewform?formkey=dHZEVGFLNkROMnROQ2FBVUdjRGlTYnc6MA" target="_blank">Google Docs Survey</a>. I’ve provided some direction by asking you to focus on tasks, concepts, and terminology that can be best documented in the Packaging Guide, but you&#8217;ll no doubt have other ideas.</p>
<p>If you’re interested in writing on a particular topic, please be sure to note that in the survey comments (and include your name and email address!).  I&#8217;ll be sure to ping you once we get the new guide outlined and stubbed out.</p>
<p>Also, if you have any suggestions for the packaging guide that aren&#8217;t encompassed in the survey, please feel free to leave a comment here.</p>
<p>Thanks!</p>
<p>P.S.  Oh, and wouldn&#8217;t you know that the Mozilla documentation team is updating their <a href="https://developer.mozilla.org/En" target="_blank">Mozilla Developer Network</a> documentation, too? Janet Swisher from their docs team <a href="http://www.janetswisher.com/index.php?itemid=251" target="_blank">published a note</a> seeking developer input on how their docs can be improved.  She publishes her blog content under a CC by SA 3.0 license, so I&#8217;ve &#8220;borrowed&#8221; some of her phrasing.  Hi, Janet!</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2010/07/13/updating-the-ubuntu-packaging-guide/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Dear Yahoo!</title>
		<link>http://j1m.net/2010/01/28/dear-yahoo/</link>
		<comments>http://j1m.net/2010/01/28/dear-yahoo/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 04:22:21 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Desktop Linux]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[yahoo!]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=156</guid>
		<description><![CDATA[Dear Yahoo! Welcome to Ubuntu! As a regular contributor to the Ubuntu project, I think it&#8217;s great that you are partnering with Canonical.  Because of the agreement you signed, Canonical will be able to hire more people to work on Free software.  Also, your contributions will help Ubuntu continue offering their OS at no cost [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>Dear Yahoo!</p>
<p>Welcome to Ubuntu! As a regular contributor to the Ubuntu project, I think it&#8217;s great that you are partnering with Canonical.  Because of the agreement you signed, Canonical will be able to hire more people to work on Free software.  Also, your contributions will help Ubuntu continue offering their OS at no cost to users.  These are great things.</p>
<p>As things get going, though, there is one big thing (or a set of big things centered around one request) that you need to do to make the Ubuntu-Yahoo! user experience better.  In short, you need to index the crap out of Ubuntu- and Linux-related sites.  For example, if I do a Yahoo! search for <a title="launchpad bug 387765" href="http://search.yahoo.com/search?p=launchpad+bug+387765&amp;ei=UTF-8&amp;fr=moz35" target="_blank">launchpad bug 387765</a>, I need the first link that comes up to be a link to the actual bug page for Launchpad bug #387765.  As it stands now, a Yahoo! search for that phrase brings up two results, neither of which are relevant.  The first of the two results is a link to the <a title="Debian Bugs page on Launchpad" href="https://bugs.launchpad.net/debian/" target="_self">Debian Bugs page on Launchpad</a>.  As a contributor, this is not what I need.</p>
<p>For comparison, the same search on Google brings up 273 results, with the first result being a direct link to the bug report on Launchpad (which is now closed, thanks to the efforts of Fabien Tassin and the other Chromium packagers and hackers)).  Google&#8217;s results not only link me directly to the bug that I am inquiring about, but also link me to a large number of pages that may be relevant to that bug report.</p>
<p>The example that I provide above concerns search results that are beneficial for contributors and developers, but what about regular users?  When I search Yahoo! for &#8220;Dual boot Windows 7 and Ubuntu,&#8221; the first page in the search results is for the Ubuntu 8.04 &#8220;Dual Booting,&#8221; official documentation page.  This page is out of date, especially given our migration to Grub2 in the 9.10 release.</p>
<p>These are just two examples, and my searches are likely not representative of the multitudes of search requests made daily on your site for Ubuntu-related tasks.  Moreover, I won&#8217;t pretend to understand how incredibly complex indexing the web can be.  I&#8217;m just writing to note that there is room for improvement, and I would like to see improvement so that our users can use your service to get relevant search results.</p>
<p>After all, improving Linux-related searches would be a win-win for us and for you.  Ubuntu developers and users would get their work done, and problems solved, more quickly and effectively, and you would get more regular users performing their searches on Yahoo!  This sounds pretty good to me.  Here&#8217;s to hoping it can happen.</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2010/01/28/dear-yahoo/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Thunar 1.1.0 – Native support for remote filesystems</title>
		<link>http://j1m.net/2010/01/09/thunar-1-1-0-native-support-for-remote-filesystems/</link>
		<comments>http://j1m.net/2010/01/09/thunar-1-1-0-native-support-for-remote-filesystems/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 17:18:07 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Desktop Linux]]></category>
		<category><![CDATA[Xfce]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=145</guid>
		<description><![CDATA[Congratulations to Jannis Pohlmann on the release of Thunar 1.1.0!  For those who don&#8217;t know, Thunar is the Xfce file manager, and this release marks a major milestone for Thunar and for the Xfce project.  Why is this release so noteworthy?  With this new version of Thunar, users will be able to access networked file [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>Congratulations to <a title="Jannis Pohlmann's blog" href="http://gezeiten.org/" target="_blank">Jannis Pohlmann</a> on the release of <a title="Thunar home page" href="http://thunar.xfce.org/index.html" target="_blank">Thunar 1.1.0</a>!  For those who don&#8217;t know, Thunar is the <a title="the Xfce website" href="http://www.xfce.org" target="_blank">Xfce</a> file manager, and this release marks a major milestone for Thunar and for the Xfce project.  Why is this release so noteworthy?  With this new version of Thunar, users will be able to access networked file systems (SFTP shares, FTP shares, Samba shares, etc.) from within the file manager itself.</p>
<p>This means that desktop users will be able to access their networked files and folders via a couple of clicks.   Users of previous versions of Thunar who wanted to access network folders would have to hack around with FUSE file systems, or use a separate application altogether.  Configuring a special file system, or having to open a different file manager application to get files and folders on a network do not represent user-friendly approaches to networked computing.  Thus, providing network-share support from within the file manager represents a major improvement to the Xfce user experience.</p>
<p>Admittedly, for long-time GNOME and KDE users (or even for Windows or Mac users), adding network-share support to the file manager may not seem like a big deal. The respective GNOME and KDE file managers, <a title="the Nautilus file manager" href="http://live.gnome.org/Nautilus/Screenshots" target="_blank">Nautilus</a> and <a title="Konqueror, the KDE file manager" href="http://www.konqueror.org/" target="_blank">Konqueror</a> (or <a title="Dolphin, the KDE file manager" href="http://dolphin.kde.org/" target="_blank">Dolphin</a>), have provided network-share support for some time.  However, Xfce is a much smaller project than GNOME or KDE, so I&#8217;m sure that people can appreciate the effort of a small group of developers working to add important end-user functionality such as this.</p>
<p>For long-time Xfce users who don&#8217;t want or need the new network share support, and would prefer that things stay as simple and lightweight as possible, there is good news for you, too.  Jannis will be issuing a maintenance release of Thunar that includes several of the improvements from the 1.1.0 release, but uses the previous back-end of Thunar, called Thunar-VFS.  Thunar-VFS does not support native access to network shares.  Thus, individuals who package Thunar for their Linux/BSD distributions will be able to choose whether or not they want to incorporate the new network-share features into their packaged version of Thunar.</p>
<p>While the network-share support is the most prominent improvement that comes with this release of Thunar, several other improvements are also included.  Have a look at the <a title="Thunar 1.1.0" href="http://releases.xfce.org/feeds/project/thunar" target="_blank">release notes</a> (best viewed in Firefox) if you want the full-scoop on the improvements and new features that come with this new release of Thunar.</p>
<p>[edit] as John Carr indicated in the comments, the GIO/GVfs back-end is the result of the hard work of GNOME developers, so credit is due to them, as well.  Also, the performance of the GIO/GVfs back-end has not been tested in comparisons against the Thunar-VFS back-end.  Thank you for the comment, John.</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2010/01/09/thunar-1-1-0-native-support-for-remote-filesystems/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Xubuntu team meeting – Sunday, January 10 at 20:00 UTC</title>
		<link>http://j1m.net/2010/01/08/xubuntu-team-meeting-sunday-january-10-at-2000-utc/</link>
		<comments>http://j1m.net/2010/01/08/xubuntu-team-meeting-sunday-january-10-at-2000-utc/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 14:52:08 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Xubuntu]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=142</guid>
		<description><![CDATA[The Xubuntu team will be holding a meeting this Sunday, January 10th, at 20:00 UTC, and all are welcome to attend. The primary focus of this meeting will be on team governance, as Cody Somerville is transitioning out of his role as primary project leader.  With that, we&#8217;ll be discussing changes to the Xubuntu Strategy [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>The Xubuntu team will be holding a meeting this Sunday, <a title="view the meeting time in your time zone" href="http://www.timeanddate.com/worldclock/fixedtime.html?month=1&amp;day=10&amp;year=2010&amp;hour=20&amp;min=0&amp;sec=0&amp;p1=0" target="_blank">January 10th, at 20:00</a> UTC, and all are welcome to attend.</p>
<p>The primary focus of this meeting will be on team governance, as Cody Somerville is transitioning out of his role as primary project leader.  With that, we&#8217;ll be discussing changes to the <a title="Xubuntu Strategy Document" href="https://wiki.ubuntu.com/Xubuntu/StrategyDocument" target="_blank">Xubuntu Strategy Document</a>.  However, there are still a few other topics to be discussed, and you can add topics <a href="https://wiki.ubuntu.com/Xubuntu/Meetings" target="_blank">to the agenda</a>.</p>
<p>Hope to see you there!</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2010/01/08/xubuntu-team-meeting-sunday-january-10-at-2000-utc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writing a good dent (or tweet) while at a conference</title>
		<link>http://j1m.net/2009/11/15/writing-a-good-dent-or-tweet-while-at-a-conference/</link>
		<comments>http://j1m.net/2009/11/15/writing-a-good-dent-or-tweet-while-at-a-conference/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 01:29:20 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=134</guid>
		<description><![CDATA[The next Ubuntu Developer Summit will be starting up tomorrow, and although not everyone can attend the event, there are a number of ways to participate remotely. Among other things, I like to follow the &#8216;dents (from Identi.ca) and tweets (from Twitter) from the event.  Typically, people will use Identi.ca and Twitter to share snippets [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>The next <a title="Ubuntu Developer Summit" href="https://wiki.ubuntu.com/UDS-L" target="_blank">Ubuntu Developer Summit </a>will be starting up tomorrow, and although not everyone can attend the event, there are a number of ways to <a title="participate remotely" href="https://wiki.ubuntu.com/UDS-L/RemoteParticipation" target="_blank">participate remotely</a>.</p>
<p>Among other things, I like to follow the &#8216;dents (from <a title="Identi.ca" href="http://identi.ca/search/notice?q=uds&amp;search=Search" target="_blank">Identi.ca</a>) and tweets (from <a title="Twitter" href="http://twitter.com/#search?q=%23uds" target="_blank">Twitter</a>) from the event.  Typically, people will use Identi.ca and Twitter to share snippets about some particular topic that has come up during the conference, but I&#8217;ve found that some notices can be more helpful than others.</p>
<p>For example, here&#8217;s a fictitious example of what I think is an unhelpful dent/tweet:  &#8220;I&#8217;m going to attend the virtualization session! #UDS&#8221;</p>
<p>I saw a lot notices like this posted during the last developer summit.  Notices like these show that you&#8217;re excited (cool), and they can also help other attendees to know your location at the conference (pretty cool), but they don&#8217;t actually tell us much of anything (not very cool).  I know that sometimes you just can&#8217;t help it . . . you&#8217;re at this great event, and just want to share a bit of what is going on with the outside world.  I&#8217;m sure that this is not a big deal in the grandiose scheme of things.</p>
<p>With that, though, let&#8217;s take a look at some more interesting ways to make use of these social networking tools.</p>
<ul>
<li><strong>Seek feedback from conference participants</strong>: &#8220;Experimenting with <a rel="external" href="http://blip.tv/">blip.tv</a> for <strong>UDS</strong> videos: <a rel="external" href="http://is.gd/1Fv5g">http://is.gd/1Fv5g</a> what do you guys think?<span>&#8220;  Notices like these can be used both during and after an event.<br />
</span></li>
<li><strong>Share </strong><span><strong>information about a social event that will be going on after conference hours</strong>: </span>&#8220;I&#8217;ve created a sign up page for Monday night @ the firing range. Everyone welcome  <a rel="external" href="https://wiki.ubuntu.com/UDS-L/FiringRangeNight">https://wiki.ubuntu.com/<strong>UDS</strong>-L/FiringRangeNight</a> #<span><a rel="tag" href="http://identi.ca/tag/uds"><strong>uds</strong></a></span> !<span><a title="Ubuntu Developer Summit (uds)" href="http://identi.ca/group/157/id"><span><strong>uds</strong></span></a>&#8221; </span></li>
<li><span><strong>Let others know about room or schedule changes</strong>: &#8220;Due to overflow crowds, remaining Xubuntu sessions have been moved to Big Texas Conference Hall B. #UDS&#8221;  (Ok, I made up that dent.  I can dream, though, can&#8217;t I?)<br />
</span></li>
<li><span><strong>Inform others (okay . . . complain) about conditions at the conference</strong>: &#8220;</span>Hmmm, my laptop kept me nice and warm during the pleniary sessions, but it&#8217;s still cold in the rooms. Anyone want to max my CPU? !<span><a title="Ubuntu Developer Summit (uds)" href="http://identi.ca/group/157/id"><span><strong>uds</strong></span></a>&#8220;  After all, the conference organizers pay good money to an event site to host their event there, so rooms should be comfortable for attendees.</span></li>
<li><span><strong>Share technical information from a session</strong> (aka &#8220;live-tweeting&#8221; a session): &#8220;</span>#<span><a rel="tag" href="http://identi.ca/tag/uds"><strong>uds</strong></a></span> &#8220;package-branches&#8221; is the tag used for bugs (in #<span><a rel="tag" href="http://identi.ca/tag/launchpad">launchpad</a></span>) related to source package branches.&#8221; Notices like these may not make sense to everyone, but they will likely make sense to those interested in the topic.</li>
<li>Presenters can use identi.ca or twitter as a presentation tool, too.  For example, Tom Johnson recently wrote an article <a href="http://www.idratherbewriting.com/2009/11/15/using-twitter-in-your-presentation/" target="_blank">noting that presenters can<strong> pose questions to their audience</strong>, and let the audience respond via Twitter</a>.  This can provide for real-time feedback to the presenter about a particular topic, and can help to break down some of the barriers between the audience and the presenter.</li>
</ul>
<p>Of course, I expect that people will use microblogging for fun, too.  I wouldn&#8217;t want for people to feel uptight about their tweets.  I just wanted to share a couple of thoughts for how people can better use microblogging at a conference, thus making things more enjoyable for those in attendance, and for those who are participating remotely.  If you have any other suggestions, feel free to share them in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2009/11/15/writing-a-good-dent-or-tweet-while-at-a-conference/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Call for Testing &#8211; Xubuntu 9.10 Release Candidate</title>
		<link>http://j1m.net/2009/10/20/call-for-testing-xubuntu-910/</link>
		<comments>http://j1m.net/2009/10/20/call-for-testing-xubuntu-910/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 15:42:57 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Testing]]></category>
		<category><![CDATA[Xubuntu]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=128</guid>
		<description><![CDATA[Ara Pulido sent this message out to the Xubuntu-Users mailing list the other day, and I thought it was worth passing along to the greater Ubuntu community.  Testing for the Xubuntu 9.10 release candidate is going on now, so please read the email below and help out if you can.  Thanks! Hello Xubuntu users! As [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>Ara Pulido sent this message out to the Xubuntu-Users mailing list the other day, and I thought it was worth passing along to the greater Ubuntu community.  Testing for the Xubuntu 9.10 release candidate is going on now, so please read the email below and help out if you can.  Thanks!</p>
<p><span id="more-128"></span> Hello Xubuntu users!</p>
<p>As you may know, Thursday 22nd October we are releasing Xubuntu 9.10 Release Candidate. This is a very important milestone, as it will be very similar to final Xubuntu 9.10 (between them, only very critical fixes will be accepted).</p>
<p>For the 9.10 release we are having very little coverage of Xubuntu images and we would need a harder effort for the RC milestone.</p>
<p>To help, you will need an account in the ISO tracker [1]. This blog post is useful as starting guide:</p>
<p><a href="http://tinyurl.com/yjujh6c" target="_blank">http://tinyurl.com/yjujh6c</a></p>
<p>Also, one of the common complains about ISO testing is that, when the call for testing is done, it takes too long to download the ISOs for that candidate image.</p>
<p>Preparing today for that moment couldn&#8217;t be easier:</p>
<p>dl-ubuntu-test-iso is a script, available as part of the ubuntu-qa-tools, that downloads Ubuntu (+ Kubuntu, Xubuntu, etc) ISO images for testing purposes. The script uses rsync, which means that the second time you run it, it only downloads the changes to each ISO. So, if you use it today, and keep running it every day (or every couple of days), you will be already set up to help when the candidates images for RC start appearing.</p>
<p>You will need a configuration file to tell the script which images your interested in. I have prepared a configuration file for Xubuntu, and it is attached. You will only need to edit it to select which architecture you&#8217;re interested in. Save it in you home folder as .dl-ubuntu-test-iso</p>
<p>Once you have save the configuration file:</p>
<p>* If you&#8217;re running Karmic, you can install the ubuntu-qa-tools package directly.</p>
<p>$ sudo apt-get install ubuntu-qa-tools<br />
$ dl-ubuntu-test-iso</p>
<p>* If you&#8217;re not running Karmic, get the ubuntu-qa-tools from its bazaar repository:</p>
<p>$ bzr branch lp:ubuntu-qa-tools<br />
$ ./ubuntu-qa-tools/dl-ubuntu-</p>
<div id=":176">test-iso/dl-ubuntu-test-iso</p>
<p>That will save your Xubuntu testing images at ~/iso. And they will get updated every time you run the scripts (only if the images have changed).</p>
<p>Testing will be coordinated from Tuesday in #ubuntu-testing and you can start subscribing to the ISO tracker page, so you can be informed when the new images start to appear. Any doubts, please, contact me directly.</p>
<p>Thanks and happy testing!<br />
Ara.</p>
<p>[1] <a href="http://iso.qa.ubuntu.com/" target="_blank">http://iso.qa.ubuntu.com</a></p>
<p>&#8211;<br />
xubuntu-users mailing list</p></div>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2009/10/20/call-for-testing-xubuntu-910/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 50 technical writers on the web + Xfce and Xubuntu doc updates</title>
		<link>http://j1m.net/2009/10/12/top-50-technical-writers-on-the-web-xfce-and-xubuntu-doc-updates/</link>
		<comments>http://j1m.net/2009/10/12/top-50-technical-writers-on-the-web-xfce-and-xubuntu-doc-updates/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 02:22:29 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Documentation]]></category>

		<guid isPermaLink="false">http://j1m.net/?p=123</guid>
		<description><![CDATA[This site lists who they&#8217;ve identified as the top 50 technical writers on the web, which I stumbled upon via a link from Scott Nesbitt&#8217;s blog.  While this list will certainly provide me with additional documentation resources, I notice a dearth of open-source documentation names in that list.  No Shaun McCance, no Emma Jane Hogbin, [...]]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://j1m.net/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p><a href="http://www.ivanwalsh.com/2009/10/top-50-technical-writers-on-the-web/" target="_blank">This site</a> lists who they&#8217;ve identified as the top 50 technical writers on the web, which I stumbled upon via a link from <a href="http://www.dmncommunications.com/weblog/">Scott Nesbitt&#8217;s blog</a>.  While this list will certainly provide me with additional documentation resources, I notice a dearth of open-source documentation names in that list.  No Shaun McCance, no Emma Jane Hogbin, no Matthew East, and certainly no one with a name as cool as Milo Casagrande.</p>
<p><a href="http://www.silwenae.org/blog/" target="_blank">Paul Cutler</a>, a member of the GNOME documentation team, has said that he wants to make documentation cool again.  He used some different phrasing (ok, he actually said, he wants to make it &#8220;sexy,&#8221; again, but I don&#8217;t really feel like going there), but what I take his comment to mean is that he wants to make documentation something that people see as technically innovative and relevant to users, even if most users instinctively turn to Google as their first line of support.  After all, Google&#8217;s search results don&#8217;t just grow on trees &#8211; the content that comes up in all of those search results has to come from somewhere.  Why shouldn&#8217;t the answers to user questions come from carefully prepared and researched documentation?</p>
<p>I don&#8217;t say this to denigrate blog posts, forums, or IRC support networks &#8211; that&#8217;s where users get most of their support these days.  Comprehensive documentation has its place, though.</p>
<p>With that in mind, I&#8217;m making initial, but steady progress on the Xfce 4.8 documentation, and really want to improve the Xubuntu documentation.  (I&#8217;m actually a bit ashamed of its current state given the beauty that is the rest of Xubuntu 9.10.)  I will be at UDS (though, unfortunately, only for the last two days), and look forward to meeting with fellow doc-team members, and anyone else who would like to discuss documentation and translations.</p>
]]></content:encoded>
			<wfw:commentRss>http://j1m.net/2009/10/12/top-50-technical-writers-on-the-web-xfce-and-xubuntu-doc-updates/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.349 seconds -->
