<?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>Kurifuri &#187; Software</title>
	<atom:link href="http://kurifuri.com/category/computers/software/feed" rel="self" type="application/rss+xml" />
	<link>http://kurifuri.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Fri, 04 Nov 2011 02:29:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>OpenXml Spreadsheet Fills</title>
		<link>http://kurifuri.com/2011/11/04/openxml-spreadsheet-fills</link>
		<comments>http://kurifuri.com/2011/11/04/openxml-spreadsheet-fills#comments</comments>
		<pubDate>Fri, 04 Nov 2011 02:28:14 +0000</pubDate>
		<dc:creator>Christopher Fritz</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[OpenXML]]></category>

		<guid isPermaLink="false">http://kurifuri.com/?p=473</guid>
		<description><![CDATA[When creating an OpenXml Spreadsheet, the first two fills are reserved. &#60;fills count="2"> &#60;fill> &#60;patternFill patternType="none"/> &#60;/fill> &#60;fill> &#60;patternFill patternType="gray125"/> &#60;/fill> &#60;/fills> If you create three custom fills, and do not include the &#8220;none&#8221; and &#8220;gray125&#8243; as the first two fills, Excel 2007 will ignore the first two fills and treat them as &#8220;none&#8221; and [...]]]></description>
			<content:encoded><![CDATA[<p>When creating an OpenXml Spreadsheet, the first two fills are reserved.</p>
<p><span id="more-473"></span></p>
<pre>&lt;fills count="2">
  &lt;fill>
    &lt;patternFill patternType="none"/>
  &lt;/fill>
  &lt;fill>
    &lt;patternFill patternType="gray125"/>
  &lt;/fill>
&lt;/fills></pre>
<p>If you create three custom fills, and do not include the &#8220;none&#8221; and &#8220;gray125&#8243; as the first two fills, Excel 2007 will ignore the first two fills and treat them as &#8220;none&#8221; and &#8220;gray125&#8243;.</p>
<p>It only took me about two and a half hours and playing with why my two custom styles were either coming out with a no background or a gray125 background before I added a third style and that one worked.  I should have been clued in when documents saved by Excel 2007 always inserted the &#8220;none&#8221; and &#8220;gray125&#8243; fills.</p>
]]></content:encoded>
			<wfw:commentRss>http://kurifuri.com/2011/11/04/openxml-spreadsheet-fills/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MediaWiki PassThroughFile Extension Version 1</title>
		<link>http://kurifuri.com/2011/08/07/mediawiki-passthroughfile-extension-version-1</link>
		<comments>http://kurifuri.com/2011/08/07/mediawiki-passthroughfile-extension-version-1#comments</comments>
		<pubDate>Sun, 07 Aug 2011 19:08:43 +0000</pubDate>
		<dc:creator>Christopher Fritz</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://kurifuri.com/?p=436</guid>
		<description><![CDATA[MediaWiki recommends against using the top level of a domain to load wiki pages from. If only a section of the site contains a wiki, http://example.com/wiki/Main_Page makes sense. MediaWiki supports this. If the entire site is a wiki, then http://example.com/Main_Page makes sense. MediaWiki does not support this, and recommends against it. The problem with the [...]]]></description>
			<content:encoded><![CDATA[<p>MediaWiki recommends against using the top level of a domain to load wiki pages from.  If only a section of the site contains a wiki, http://example.com/wiki/Main_Page makes sense.  MediaWiki supports this.  If the entire site is a wiki, then http://example.com/Main_Page makes sense.  MediaWiki does <em>not</em> support this, and recommends against it.</p>
<p>The problem with the latter is that it renders files such as robots.txt as a wiki page at http://example.com/Robots.txt.  This can be avoided by using MediaWiki&#8217;s extensions capability.</p>
<p>To get around this issue, I wrote an extension.</p>
<p><span id="more-436"></span></p>
<p>Note: This license is released under the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution License</a>.</p>
<blockquote>
<pre>&lt;?php

if( !defined( 'MEDIAWIKI' ) ){
    die( "This is not a valid entry point.\n" );
}

#################################
## ADD FILES TO PASS THRU HERE ##
#################################

// A list of files MediaWiki should load from file.  These must be in the same
// folder as MediaWiki executes from.
$passThroughFiles = array(
    'robots.txt',
    'favicon.ico'
);

#################################
## DO NOT EDIT ANYTHING BELOW  ##
#################################

$wgExtensionCredits['parserhook'][] = array(
    'path' => __FILE__,
    'name' => "Pass File Through",
    'description' => "Passes specified files through, rather than trying to render an article.",
    'version' => 1.1,
    'author' => "Christopher Fritz",
    'url' => "http://kurifuri.com/mediawiki-passthroughfile-extention",
);

$wgHooks['BeforeInitialize'][] = 'passFileThrough';

function passFileThrough( &#038;$title, &#038;$article, &#038;$output, &#038;$user, $request, $mediaWiki ) {

    global $passThroughFiles;
    define( 'NonPassReturnValue', false ); // should this be true or false?

    $file = $title->mUserCaseDBKey;

    // Skip this page if we didn't specify to load a file for it.
    if ( !in_array($file, $passThroughFiles) ) {
        return NonPassReturnValue;
    }

    // Don't try loading this file if it doesn't exist.
    if ( !file_exists($file) ) {
        return NonPassReturnValue;
    }

    include($file);
    exit;
}

?&gt;</pre>
</blockquote>
<p>Copy this text and save it in the <var>extensions</var> folder as <var>pass_file_through.php</var>.</p>
<p>Add the following to the bottom of <var>LocalSettings.php</var>:</p>
<blockquote><p>
require_once( &#8220;$IP/extensions/pass_file_through.php&#8221; );
</p></blockquote>
<p>By default, the extension only supports <var>robots.txt</var> and <var>favicon.ico</var>, but others can be added.</p>
<p>My PHP is rusty, and I&#8217;m not read up on MediaWiki&#8217;s programming guidelines for whitespace and layout.  If you see anywhere that this extension can improve, feel free to leave a comment and let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://kurifuri.com/2011/08/07/mediawiki-passthroughfile-extension-version-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KMail 2 on Arch Linux</title>
		<link>http://kurifuri.com/2011/07/28/kmail-2-on-arch-linux</link>
		<comments>http://kurifuri.com/2011/07/28/kmail-2-on-arch-linux#comments</comments>
		<pubDate>Thu, 28 Jul 2011 11:25:19 +0000</pubDate>
		<dc:creator>Christopher Fritz</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[KMail KMail2 KDE ArchLinux]]></category>

		<guid isPermaLink="false">http://kurifuri.com/?p=415</guid>
		<description><![CDATA[Last night I did an upgrade of my Arch Linux system. Today I opened my e-mail to find all my e-mail missing except my inbox&#8230;! The e-mail was still on in my ~/Mail folder, but not in KMail. I was able to find it again by going into &#8220;Settings&#8221; > &#8220;Configure KMail&#8221;, and to the [...]]]></description>
			<content:encoded><![CDATA[<p>Last night I did an upgrade of my Arch Linux system.  Today I opened my e-mail to find all my e-mail missing except my inbox&#8230;!</p>
<p><span id="more-415"></span></p>
<p>The e-mail was still on in my ~/Mail folder, but not in KMail.  I was able to find it again by going into &#8220;Settings&#8221; > &#8220;Configure KMail&#8221;, and to the &#8220;Accounts&#8221; section.</p>
<p>Here, under &#8220;Receiving&#8221;, I had &#8220;Gmail&#8221; with all three &#8220;Retrieval Options&#8221; checked, but &#8220;Local Folders&#8221; had only &#8220;Include in Manual Mail Check&#8221; and &#8220;KMail Folders&#8221; had nothing checked.  I checked &#8220;Include in Manual Mail Check&#8221; on the latter, and &#8220;Check Mail on Startup&#8221; on both, then closed and re-opened KMail.  All my missing e-mails are back!</p>
<p>I&#8217;m sure I could have just clicked on &#8220;Check Mail&#8221; rather than restarting KMail, and I might want to uncheck some of those options I checked (for better performance), but for now I&#8217;m glad to just have my missing e-mails accessible again.</p>
]]></content:encoded>
			<wfw:commentRss>http://kurifuri.com/2011/07/28/kmail-2-on-arch-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oxygen: Drag windows from all empty spaces</title>
		<link>http://kurifuri.com/2011/05/21/oxygen-drag-windows-from-all-empty-spaces</link>
		<comments>http://kurifuri.com/2011/05/21/oxygen-drag-windows-from-all-empty-spaces#comments</comments>
		<pubDate>Sat, 21 May 2011 21:59:43 +0000</pubDate>
		<dc:creator>Christopher Fritz</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Oxygen]]></category>

		<guid isPermaLink="false">http://kurifuri.com/?p=3</guid>
		<description><![CDATA[Note to self: When installing KDE and using Oxygen as the widget style, run &#8220;oxygen-settings&#8221; to find the &#8220;Windows&#8217; drag mode&#8221; option. Set to &#8220;Drag windows from titlebar only&#8221;.]]></description>
			<content:encoded><![CDATA[<p>Note to self: When installing KDE and using Oxygen as the widget style, run &#8220;oxygen-settings&#8221; to find the &#8220;Windows&#8217; drag mode&#8221; option.  Set to &#8220;Drag windows from titlebar only&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://kurifuri.com/2011/05/21/oxygen-drag-windows-from-all-empty-spaces/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Still no tagging&#8230;</title>
		<link>http://kurifuri.com/2010/09/12/still-no-tagging</link>
		<comments>http://kurifuri.com/2010/09/12/still-no-tagging#comments</comments>
		<pubDate>Sun, 12 Sep 2010 17:50:39 +0000</pubDate>
		<dc:creator>Christopher Fritz</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[tagging]]></category>

		<guid isPermaLink="false">http://kurifuri.com/?p=305</guid>
		<description><![CDATA[A couple of weeks back, I had to rename ~/.kde and ~/.local to fix a whole bunch of issues that had been building up for a long time. Can&#8217;t remember specifically what they were by now, but it was necessary. I decided today to try the whole tagging thing again. I added &#8220;Strawberry Marshmallow&#8221; as [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks back, I had to rename ~/.kde and ~/.local to fix a whole bunch of issues that had been building up for a long time.  Can&#8217;t remember specifically what they were by now, but it was necessary.</p>
<p><span id="more-305"></span></p>
<p>I decided today to try the whole tagging thing again.  I added &#8220;Strawberry Marshmallow&#8221; as a tag to some images.  After closing the tag window, the files were not tagged.  Opening the tag window again shows the following:</p>
<p><a href="http://www.flickr.com/photos/chris-fritz/4982966499/" title="Tagging Error by Chris Fritz, on Flickr"><img src="http://farm5.static.flickr.com/4148/4982966499_d03b665b02.jpg" width="500" height="386" alt="Tagging Error" /></a></p>
<p>Closing Dolphin and reopening it removes this &#8220;resource&#8221; tag.</p>
<p>I wish I could go in and investigate the problem and fix it.  I&#8217;ve tried at least five times in the past six years to get a KDE build environment together, and I&#8217;ve failed every time.  Came close once on my PC while trying it simultaneously on my PC and laptop (doing the same steps on both, and failing miserably on the laptop).</p>
<p>As the situation is right now, I can&#8217;t even get enough information on the problem to write up a usable bug report&#8230;  I can&#8217;t just leave a bug report that says, &#8220;When I tag a file in KDE SC 4.4.5., it doesn&#8217;t work.&#8221;</p>
<p>The information I <em>have</em> gathered is:</p>
<ul>
<li>KDE SC 4.4.5 on Kubunutu</li>
<li>Tags added in Dolphin become &#8220;resource&#8221; tags as seen above.</li>
<li>Tags added with Dolphin do not remain associate with image.</li>
<li>Closing and opening Dolphin removes the tags from the list of known tags.</li>
<li>Tags added in Gwenview become &#8220;blank&#8221; tags.</li>
<li>Tags added with Gwenview do remain associate with image.</li>
<li>Closing and opening Gwenview removes the tag from the image and from the list of known tags.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kurifuri.com/2010/09/12/still-no-tagging/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tagging On Hold Again</title>
		<link>http://kurifuri.com/2010/05/20/tagging-on-hold-again</link>
		<comments>http://kurifuri.com/2010/05/20/tagging-on-hold-again#comments</comments>
		<pubDate>Fri, 21 May 2010 03:10:48 +0000</pubDate>
		<dc:creator>Christopher Fritz</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[tagging]]></category>

		<guid isPermaLink="false">http://kurifuri.com/?p=237</guid>
		<description><![CDATA[When I was running Kubuntu Karmic, I tagged a bunch of images. I&#8217;m currently on Kubuntu Lucid. None of my images are tagged. I wonder if the upgrade killed the tags. The tags are still recognized (if I go to tag an image, the old tags are still listed), but no images are tagged. I [...]]]></description>
			<content:encoded><![CDATA[<p>When I was running Kubuntu Karmic, I tagged a bunch of images.  I&#8217;m currently on Kubuntu Lucid.  None of my images are tagged.  I wonder if the upgrade killed the tags.  The tags are still recognized (if I go to tag an image, the old tags are still listed), but no images are tagged.  I guess I&#8217;ll continue to not tag files.</p>
<p>It&#8217;s just as well.  Some other images I hadn&#8217;t tagged yet, I mass-renamed them from the command line, and that would have wiped out the tags if they had any.</p>
]]></content:encoded>
			<wfw:commentRss>http://kurifuri.com/2010/05/20/tagging-on-hold-again/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My First E-Book Adventure</title>
		<link>http://kurifuri.com/2010/05/15/my-first-e-book-adventure</link>
		<comments>http://kurifuri.com/2010/05/15/my-first-e-book-adventure#comments</comments>
		<pubDate>Sat, 15 May 2010 23:13:40 +0000</pubDate>
		<dc:creator>Christopher Fritz</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://kurifuri.com/?p=228</guid>
		<description><![CDATA[I have a fair number of books on my shelves. Enough that I can&#8217;t buy many more without running out of room. My Japanese comics collections already resides in my food cabinet (which is fine, as it isn&#8217;t used much for food these days). I bought an Onyx Boox reader which arrived recently, and I&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p>I have a fair number of books on my shelves.  Enough that I can&#8217;t buy many more without running out of room.  My Japanese comics collections already resides in my food cabinet (which is fine, as it isn&#8217;t used much for food these days).  I bought an Onyx Boox reader which arrived recently, and I&#8217;d read some free (out of copyright) books from <a href="http://www.gutenberg.org/">Project Gutenberg</a>.<span id="more-228"></span></p>
<p>The reason for going the electronic book reader route is to decrease the amount of Stuff I&#8217;m accumulating.  I&#8217;ve even started looking into getting rid of part of my anime DVD collection (listed on my <a href="http://kurifuri.com/for-sale">for sale</a> page, and available to anyone in my area who can buy in person).</p>
<p>Going digital is something I&#8217;ve only started recently with music.  I&#8217;ve bought a handful of music online, but until recently had been buying CDs.  It started with some Japanese music, where a one dollar song was a lot cheaper than importing a $25 CD containing two songs and their two karaoke versions.  With CDs cheaply available in the US, it&#8217;s harder to justify the cost for digital download versus what the CD offers.  Digital means instant MP3s.  CD means a few days way, but the ability to copy music as FLAC (my preferred format), and a contribution to the Stuff filling my bedroom (which I&#8217;m trying to cut back on).  If the CD is cheaper, then buying digital means I&#8217;m essentially paying for getting music without the Stuff.</p>
<p>Back to books, I&#8217;ve wanted an e-reader since around 2003 or 2004 for this same reason.  There are many older books (out of copyright) I&#8217;d like to read, but reading them on the computer simply isn&#8217;t comfortable for me.  Computers are fine for short reading sessions, or skimming, but to really get into a story (or non-fiction reading material), the computer screen just doesn&#8217;t work out for me.  The &#8220;e-ink&#8221; technology solves this problem, and as a bonus I can store a library of books in only the space taken by the e-reader.</p>
<p>Not all books I would like to read are out of copyright.  Unfortunately, most of those that are copyrighted are not available electronically.  I&#8217;m hoping that this turns around, with more new publications being available electronically.  And like with music in its digital infancy, those books that <em>are</em> being published electronically happen to be DRM-encumbered (which I do not expect to ever go away, so here&#8217;s hoping I&#8217;m wrong).  Before making a purchase, I had to make certain (like with the songs I bought from iTunes some years back) that I would be able to strip off that DRM, and read it on my reader (which does not support DRM).</p>
<p>Today I decided to buy my first e-book.  I went with Barnes &#038; Noble because I wanted to go with the Epub format, and <a href="http://i-u2665-cabbages.blogspot.com/2009/12/circumventing-barnes-noble-drm-for-epub.html">I found tools for circumventing it</a>.  Signing up for an account requires creating a password requiring one to &#8220;Use 6-15 letters, numbers, or numeric symbols. CaSe SeNsItIvE. No spaces.&#8221; which means I can&#8217;t use my normal type of password (often over 30 characters long), which isn&#8217;t any fun, especially when my designed password could only be compressed from 34 characters to 16.  Luckily it turned out that a period isn&#8217;t allowed, so that took it down to 15.</p>
<p>This particular book I planned on buying is listed at about $25.00 (or $20 bought online) for hardcover, $15.00 (or $10.00 bought online) for paperback, and $10.00 for e-book.  I am one of those people who feels the e-book version should be cheaper than paperback, and the online price of the paperback makes it feel as if the e-book and paperback are the same price.  I am not one of those people who feels every creation that can be copied at no cost should be free.  I also feel that, based on reviews of this book on Amazon.com, that $10 is a justifiable price.  I also expect that I will finish this book if I own an electronic copy, whereas paperback books I buy I sometimes finish and sometimes do not finish (due to various inconveniences of paperback books for me).</p>
<p>Other than the password issues, creating an account and buying the book was easily enough.  The &#8220;thank you for purchasing&#8221; page has link, &#8220;Go to Your eBooks Library&#8221;, at the bottom of the page, which would take me to a place to download my purchase.  This area included some free books (Dracula; Pride and Prejudice; Merriam-Webster&#8217;s Dictionary; Little Women), with my purchase down at the bottom of the list.  At first I thought I was looking at a listing of books available to buy, wondering where my book was, but I figured it out.</p>
<p>Left-clicking on a &#8220;Download&#8221; link left Opera (my web browser of choice) thinking (with the mouse pointer showing the &#8220;waiting&#8221; icon), and after a minute of this, I resorted to middle-clicking the link instead, to open it in a new tab.  The new tab prompted me with a save/open dialog.  I don&#8217;t know why simply left-clicking wasn&#8217;t working out, but I was able to download the book (and the four freebies, just in case I need something to read and don&#8217;t have anything else new with me).</p>
<p>Ten dollars down, book downloaded, DRM removed, and onto the reader it goes, and the book is accessible.  (The free books were not DRMed, which makes sense as they&#8217;re likely all out of copyright.)  It feels weird not owning a physical copy of the book, but the digital copy isn&#8217;t any worse (I wouldn&#8217;t be lending or selling it), so I&#8217;m certain I&#8217;ll adjust easily.</p>
]]></content:encoded>
			<wfw:commentRss>http://kurifuri.com/2010/05/15/my-first-e-book-adventure/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amarok 2</title>
		<link>http://kurifuri.com/2010/03/12/amarok-2</link>
		<comments>http://kurifuri.com/2010/03/12/amarok-2#comments</comments>
		<pubDate>Sat, 13 Mar 2010 04:01:49 +0000</pubDate>
		<dc:creator>Christopher Fritz</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Amarok]]></category>

		<guid isPermaLink="false">http://kurifuri.com/?p=174</guid>
		<description><![CDATA[While I have my eye on Clementine, an alpha-release Qt 4 port of Amarok 1.4, I&#8217;ve been using Amarok 2 since it became Amarok install of Kubuntu. Amarok 2 seems to have been a more dividing release than KDE 4 was after the stability and expanse of KDE 3. While the KDE Software Compilation 4 [...]]]></description>
			<content:encoded><![CDATA[<p>While I have my eye on <a href="http://code.google.com/p/clementine-player/">Clementine</a>, an alpha-release Qt 4 port of Amarok 1.4, I&#8217;ve been using Amarok 2 since it became Amarok install of Kubuntu.<span id="more-174"></span></p>
<p>Amarok 2 seems to have been a more dividing release than KDE 4 was after the stability and expanse of KDE 3.  While the KDE Software Compilation 4 has grown into a fairly stable system (with Plasma a strong part of the workspace, and tagging/search improving quickly), Amarok has staggered around a bit.</p>
<p>With a recent release of Amarok, perhaps Amarok 2.2, I noticed two things missing.  First was that I could no longer modify the design of the playlist.  The icon for it was no longer below the play list.  Second, I could no longer set whether to play tracks randomly, or otherwise.</p>
<div style="text-align: center;"><a href="http://www.flickr.com/photos/chris-fritz/4428717824/" title="Amarok 2.2.2 by Chris Fritz, on Flickr"><img src="http://farm5.static.flickr.com/4015/4428717824_49510bf033.jpg" width="500" height="305" alt="Amarok 2.2.2" /></a></div>
<p>After playing around for a long time, I finally found that a weird icon at the bottom of the playlist, with the tooltip &#8220;Track Progression&#8221;, had nothing to do with the progression of a single track, but actually was the missing method of setting the playlist to play random tracks or albums, and to repeat a track, album, or playlist.  Apparently a good amount of discussion and consulting with usability experts determined that modifying how the playlist progresses from one song to the next should be in the play list area.  This makes sense.  But why remove it from the menu?  I haven&#8217;t yet figured out how to access this icon using they keyboard, nor do I see anything for it in the shortcuts setting.</p>
<p>Looking over the <a href="http://userbase.kde.org/Amarok">Amarok Userbase article</a> (which is overly fanboyish at the time of this writing), I found where the icon for editing the playlist&#8217;s appearance went.  It&#8217;s a menu now.  I can only determine that a usability expert pointed out that because this relates to the playlist, it should be removed from the playlist, and placed under a menu item.  I&#8217;m not complaining, though.  I have easy keyboard access to it now.</p>
<p>I&#8217;m still looking for options such as &#8220;Overwrite a saved playlist file with the current playlist,&#8221; and perhaps, &#8220;Remember that I loaded this set of tracks from a saved playlist, so when I add and remove tracks, and save the playlist, you can either overwrite the one I loaded it from, or ask me whether I want to save or save as.&#8221;  Might just require a feature request if they&#8217;re not there already.</p>
<p>I&#8217;m going to keep an eye on Clementine, and hopefully Clementine and Amarok can even share some common libraries, but maybe Amarok 2 isn&#8217;t so bad anymore.  Almost.  Now if only I knew why setting it to &#8220;random tracks&#8221; stops playing after every track on the playlist has played once&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://kurifuri.com/2010/03/12/amarok-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thoughts on Tagging in KDE SC 4</title>
		<link>http://kurifuri.com/2010/02/20/thoughts-on-tagging-in-kde-sc-4</link>
		<comments>http://kurifuri.com/2010/02/20/thoughts-on-tagging-in-kde-sc-4#comments</comments>
		<pubDate>Sun, 21 Feb 2010 06:30:09 +0000</pubDate>
		<dc:creator>Christopher Fritz</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Dolphin]]></category>
		<category><![CDATA[KDE SC 4]]></category>

		<guid isPermaLink="false">http://kurifuri.com/?p=158</guid>
		<description><![CDATA[No screenshots because I&#8217;m lazy, but I&#8217;m trying to figure out searching in Dolphin in KDE SC 4. It&#8217;s&#8230;interesting. I&#8217;ve in the past put a lot of time and effort into tagging photos and images only to have my Digikam database die on an upgrade. As long as the data doesn&#8217;t stay with the files, [...]]]></description>
			<content:encoded><![CDATA[<p>No screenshots because I&#8217;m lazy, but I&#8217;m trying to figure out searching in Dolphin in KDE SC 4.  It&#8217;s&#8230;interesting.<span id="more-158"></span></p>
<p>I&#8217;ve in the past put a lot of time and effort into tagging photos and images only to have my Digikam database die on an upgrade.  As long as the data doesn&#8217;t stay with the files, I don&#8217;t know if I&#8217;ll ever trust tagging, even though I really want to use it.</p>
<p>I keep images in ~/Images/, and my desktop wallpapers in ~/Images/Desktop/.  I may have an image such as ~/Images/Sailormoon/Ami.jpg and a wallpaper such as ~/Images/Desktop/Sailormoon/Sailormercury.jpg.  I would love to see the say where I can remove ~/Images/Desktop/, relocating the images inside to their subfolders in ~/Images/, then use tagging to tag desktop images for easy locating.  (Actually, if I could set images with specific heights and width to be auto-tagged with &#8220;wallpaper&#8221;, that would be most excellent; I wonder if that Dropbox plugin I&#8217;ve heard about would have this implemented if submitted as a feature request&#8230;)</p>
<p>I decided I&#8217;d try tagging some files in Dolphin to play around with it.  I went into ~/Images/Petite Princess Yucie/ and tagged everything with &#8220;Petite Princess Yucie&#8221;.  Then I did a Dolphin search for &#8220;yucie&#8221; and it returned&#8230;a bunch of random files.  Likewise with &#8220;petite princess yucie&#8221; (without and with quotes).  I followed this with a search for &#8220;petiteprincessyucie&#8221;, and after quite a lengthy wait &#8230; after twenty minutes of waiting for results, I gave up on it.  It turns out, the key to searching by tag is to search for &#8220;hasTag:&#8217;Petite Princess Yucie&#8217;&#8221;.</p>
<p>Something I would love to see is to give my tags a key/value association, similar to EXIF data.  Sure, I can tag an image as &#8220;Strawberry Marshmallow&#8221; and &#8220;BARASUI&#8221; and &#8220;Matsuri&#8221;, but I would like to be able to tag it as &#8220;Series:Strawberry Marshmallow&#8221; and &#8220;Artist:BARASUI&#8221; and &#8220;Character:Matsuri&#8221;.  This should allow finding the file when searching for the value, but the key could be used to filter the search, much like filtering &#8220;artist:name&#8221; in Amarok.  (Edit: Apparently <a href="https://bugs.kde.org/show_bug.cgi?id=160144#c4">this is in the works</a>, or at least <em>planned</em>.)</p>
<p>I&#8217;ve actually decided to go with tagging such as &#8220;Character:Matsuri&#8221;, and I notice that it&#8217;s adding blank tags into the tag list that opens when adding/changing tags.  That is worrisome, making me think I&#8217;m on the path to having so many tag problems that I&#8217;ll have to delete the entire database file which stores this information later down the line&#8230;</p>
<p>Final thought for now: Don&#8217;t try to tag 1,000+ images at once.  Dolphin&#8217;s been frozen for a while just from my clicking on the text to bring up the &#8220;add tag&#8221; window.</p>
<p>Update: I killed the Dolphin process.  I re-ran Dolphin, went to tag other images, and found that nothing is tagged.  Either the hour of tagging I just did was already in vain, or something crashed so that I can&#8217;t access those tags.  Maybe in SC 4.5&#8230;</p>
<p>Giving a minimal, very limited re-try, tagging with &#8220;Artist:Barasui&#8221; left me with only a blank tag in the tag list.  Re-tagging with it left me with the blank tag and the &#8220;Artist:Barasui&#8221; tag in the tag list.  Adding &#8220;Series:Strawberry Marshmallow&#8221; left me with &#8220;Artist:Barasui&#8221; and a blank tag in the tag list.  Adding &#8220;Artist:Barasui&#8221; again leaves me with a blank tag, &#8220;Artist:Barasui&#8221;, and Artist:Barasui in the tag list.  I think Nepomuk doesn&#8217;t like a colon in a tag.</p>
<p>Further update: Closing Dolphin and re-opening Dolphin has wiped out my tags again.</p>
<p>Update 20100302: I updated KDE from the Kubuntu repositories, and everything is looking good now.  I had filed a bug report one <a href="https://bugs.kde.org/show_bug.cgi?id=227898">using colons in tags</a>, and <a href="http://www.behindkde.org/people/trueg/">Sebastian Trüg</a> logged in a bug fix.  Others may have fixed unrelated fixes, as well.</p>
<p>I&#8217;m going to remain cautious, as I don&#8217;t know what other bugs may wipe out all my tags.  I&#8217;ll keep Digikam using its own tagging system for quite some time yet to come.  But things have taken a delightful positive turn, so I&#8217;m looking forward to tagging files!  (In moderation, to begin with.)</p>
]]></content:encoded>
			<wfw:commentRss>http://kurifuri.com/2010/02/20/thoughts-on-tagging-in-kde-sc-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DVD-Playing in Windows 7</title>
		<link>http://kurifuri.com/2009/11/26/dvd-playing-in-windows-7</link>
		<comments>http://kurifuri.com/2009/11/26/dvd-playing-in-windows-7#comments</comments>
		<pubDate>Fri, 27 Nov 2009 04:43:47 +0000</pubDate>
		<dc:creator>Christopher Fritz</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://kurifuri.com/?p=134</guid>
		<description><![CDATA[Continuing trying out software for Windows, I decided to try out the Media Center and playing a DVD. The first thing I found with the Media Center is that DVD playback is slow (video is slow and skips, although audio is fine). The second thing I found is that I couldn&#8217;t get subtitles to show. [...]]]></description>
			<content:encoded><![CDATA[<p>Continuing trying out software for Windows, I decided to try out the Media Center and playing a DVD.<br />
<span id="more-134"></span></p>
<p>The first thing I found with the Media Center is that DVD playback is slow (video is slow and skips, although audio is fine).  The second thing I found is that I couldn&#8217;t get subtitles to show.  The third was that I couldn&#8217;t figure out how to enable full screen.</p>
<p><a href="http://www.flickr.com/photos/chris-fritz/4137753710/" title="DVD Player by Chris Fritz, on Flickr"><img src="http://farm3.static.flickr.com/2576/4137753710_f71b3947aa.jpg" width="500" height="395" alt="DVD Player" /></a></p>
<p>My next attempt to play the DVD seemed to open it in lone DVD player, without the rest of the media player.  This was able to play smoothly and with subtitles, and even full screen.  However, playing full screen causes the monitor display to &#8220;blink&#8221; every four seconds, leaving the screen black for a split second.  If the right-click menu is visible, this &#8220;blink&#8221; closes it.</p>
<p>Trying non-full screen, there&#8217;s no blinking of the display, but maximizing the window gives the blinking at three-second intervals.</p>
<p>At least the quality of the video looks better than in Linux, but maybe that&#8217;s because I watch DVDs in Linux full screen, and this I&#8217;m viewing at not-full screen?</p>
<p>The extra controls seen in the screenshot above disappear after a few seconds of not moving the mouse over the window.</p>
]]></content:encoded>
			<wfw:commentRss>http://kurifuri.com/2009/11/26/dvd-playing-in-windows-7/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

