<?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>Richard A. Johnson &#187; Application</title> <atom:link href="http://www.nixternal.com/category/application/feed/" rel="self" type="application/rss+xml" /><link>http://www.nixternal.com</link> <description>Open Source Developer, Advocate,  Author, and Consultant</description> <lastBuildDate>Tue, 07 Feb 2012 16:16:30 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Vim Pathogen Taskwarrior Bundle</title><link>http://www.nixternal.com/vim-pathogen-taskwarrior-bundle/</link> <comments>http://www.nixternal.com/vim-pathogen-taskwarrior-bundle/#comments</comments> <pubDate>Sat, 24 Dec 2011 18:57:29 +0000</pubDate> <dc:creator>Richard A. Johnson</dc:creator> <category><![CDATA[Application]]></category> <category><![CDATA[Pathogen]]></category> <category><![CDATA[Taskwarrior]]></category> <category><![CDATA[Vim]]></category> <guid
isPermaLink="false">http://www.nixternal.com/?p=1122</guid> <description><![CDATA[<p>Just wanted to drop a quick note for those of you who use vim with pathogen.vim and task (taskwarrior.org). I created a quick github repository that you can add to your bundle list to get syntax highlighting for task data in vim. Add the following repository to your bundle: https://github.com/nixternal/taskwarrior-vim.git I want to keep this [...]</p><p><a
href="http://www.nixternal.com/vim-pathogen-taskwarrior-bundle/">Vim Pathogen Taskwarrior Bundle</a> is a post from <a
href="http://www.nixternal.com/about/">Richard A. Johnson</a>'s <a
href="http://www.nixternal.com/blog/">blog</a>.</p>]]></description> <content:encoded><![CDATA[<p>Just wanted to drop a quick note for those of you who use <a
href="http://www.vim.org/">vim</a> with <a
href="https://github.com/tpope/vim-pathogen">pathogen.vim</a> and <a
href="http://www.taskwarrior.org/">task (taskwarrior.org)</a>. I created a quick github repository that you can add to your bundle list to get syntax highlighting for task data in vim. Add the following repository to your bundle:</p><p><code>https://github.com/nixternal/taskwarrior-vim.git</code></p><p>I want to keep this up to date, so if you catch any changes upstream that I do not catch, let me know in the comments and I will get that fixed. Thanks!</p><p><a
href="http://www.nixternal.com/vim-pathogen-taskwarrior-bundle/">Vim Pathogen Taskwarrior Bundle</a> is a post from <a
href="http://www.nixternal.com/about/">Richard A. Johnson</a>'s <a
href="http://www.nixternal.com/blog/">blog</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.nixternal.com/vim-pathogen-taskwarrior-bundle/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Download Photos From Picasa</title><link>http://www.nixternal.com/download-photos-from-picasa/</link> <comments>http://www.nixternal.com/download-photos-from-picasa/#comments</comments> <pubDate>Mon, 10 Oct 2011 00:21:58 +0000</pubDate> <dc:creator>Richard A. Johnson</dc:creator> <category><![CDATA[Application]]></category> <category><![CDATA[Python]]></category> <guid
isPermaLink="false">http://www.nixternal.com/?p=1093</guid> <description><![CDATA[<p>So, I was tasked to download a bunch of images from another person&#8217;s Picasa gallery. At first this looked to be a pain in the rear, but I had noticed that on the right hand side of the person&#8217;s gallery there is an RSS feed. I quickly thought of Python with a bit of feedparser [...]</p><p><a
href="http://www.nixternal.com/download-photos-from-picasa/">Download Photos From Picasa</a> is a post from <a
href="http://www.nixternal.com/about/">Richard A. Johnson</a>'s <a
href="http://www.nixternal.com/blog/">blog</a>.</p>]]></description> <content:encoded><![CDATA[<p>So, I was tasked to download a bunch of images from another person&#8217;s Picasa gallery. At first this looked to be a pain in the rear, but I had noticed that on the right hand side of the person&#8217;s gallery there is an RSS feed. I quickly thought of Python with a bit of feedparser thrown in. And in just a few lines I was able to grab all of the photos from someone else&#8217;s gallery. The code isn&#8217;t clean, isn&#8217;t optimal, but it works.</p><div
class="wp-geshi-highlight-wrap5"><div
class="wp-geshi-highlight-wrap4"><div
class="wp-geshi-highlight-wrap3"><div
class="wp-geshi-highlight-wrap2"><div
class="wp-geshi-highlight-wrap"><div
class="wp-geshi-highlight"><div
class="python"><pre class="de1"><span class="co1">#!/usr/bin/env python</span>
<span class="kw1">import</span> feedparser<span class="sy0">,</span> <span class="kw3">os</span>
items <span class="sy0">=</span> feedparser.<span class="me1">parse</span><span class="br0">&#40;</span><span class="st0">&quot;&lt;remote picasa web rss feed&gt;&quot;</span><span class="br0">&#41;</span><span class="br0">&#91;</span><span class="st0">'items'</span><span class="br0">&#93;</span>
<span class="kw1">for</span> i <span class="kw1">in</span> <span class="kw2">range</span><span class="br0">&#40;</span><span class="nu0">0</span><span class="sy0">,</span> <span class="kw2">len</span><span class="br0">&#40;</span>items<span class="br0">&#41;</span><span class="br0">&#41;</span>:
    <span class="kw3">os</span>.<span class="me1">system</span><span class="br0">&#40;</span><span class="st0">&quot;wget -q %s&quot;</span> % items<span class="br0">&#91;</span>i<span class="br0">&#93;</span><span class="br0">&#91;</span><span class="st0">'media_content'</span><span class="br0">&#93;</span><span class="br0">&#91;</span><span class="nu0">0</span><span class="br0">&#93;</span><span class="br0">&#91;</span><span class="st0">'url'</span><span class="br0">&#93;</span><span class="br0">&#41;</span></pre></div></div></div></div></div></div></div><p>Works good for a quick 4 lines of code.</p><p><a
href="http://www.nixternal.com/download-photos-from-picasa/">Download Photos From Picasa</a> is a post from <a
href="http://www.nixternal.com/about/">Richard A. Johnson</a>'s <a
href="http://www.nixternal.com/blog/">blog</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.nixternal.com/download-photos-from-picasa/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Dropbox for KDE</title><link>http://www.nixternal.com/kde-and-dropbox/</link> <comments>http://www.nixternal.com/kde-and-dropbox/#comments</comments> <pubDate>Tue, 01 Mar 2011 07:08:45 +0000</pubDate> <dc:creator>Richard A. Johnson</dc:creator> <category><![CDATA[Application]]></category> <category><![CDATA[KDE]]></category> <category><![CDATA[Tutorial]]></category> <guid
isPermaLink="false">http://www.nixternal.com/?p=1010</guid> <description><![CDATA[<p>A question I have been coming across a lot lately has been, &#8220;How do I get Dropbox to work with KDE?&#8221; Most have probably noticed that when you go to the Dropbox website and go to download it, it is for GNOME and the Nautilus file manager. Unfortunately for us KDE users, we don&#8217;t use [...]</p><p><a
href="http://www.nixternal.com/kde-and-dropbox/">Dropbox for KDE</a> is a post from <a
href="http://www.nixternal.com/about/">Richard A. Johnson</a>'s <a
href="http://www.nixternal.com/blog/">blog</a>.</p>]]></description> <content:encoded><![CDATA[<p>A question I have been coming across a lot lately has been, &#8220;<cite>How do I get <a
href="http://www.dropbox.com/">Dropbox</a> to work with <a
href="http://www.kde.org/">KDE</a>?&#8221; Most have probably noticed that when you go to the Dropbox website and go to download it, it is for GNOME and the Nautilus file manager. Unfortunately for us KDE users, we don&#8217;t use Nautilus. Or I could say fortunately for us KDE users, but I am sure that will start all kinds of flame wars in the comments. Instead, KDE utilizes <a
href="http://dolphin.kde.org/">Dolphin</a> as its file manager. I will use this post to show you how to quickly get Dropbox installed and up-and-running in KDE, without the use of the terminal or command line.</p><p><strong>NOTE:</strong> In this tutorial I am using the <a
href="http://rekonq.kde.org/">Rekonq</a> web browser for KDE. At the time of this tutorial, it is the default web browser for <a
href="http://www.kubuntu.org/">Kubuntu</a>.</p><p><strong>NOTE:</strong> After completing the <em>Download Dropbox</em> selection below, you can scroll down to the bottom of this post to see how to do all of this via the command line. It is actually really simple and much faster. If you are uncomfortable with the command line, then follow this post completely, minus the end where I show you the command line way of course.</p><h3>Download Dropbox</h3><p>Here are the links to the latest Dropbox downloads. <strong>NOTE:</strong> these links will always be the latest version of Dropbox, so if you come here next year, this simple howto will still be valid. If anything changes, I will make sure to update this page:</p><ul><li><strong><a
href="http://www.getdropbox.com/download?plat=lnx.x86">32-bit Dropbox Linux Client</a></strong></li><li><strong><a
href="http://www.getdropbox.com/download?plat=lnx.x86_64">64-bit Dropbox Linux Client</a></strong></li></ul><p>Clicking on one of the links above will pop up the <em>Save As</em> dialog. Click the <em>Save As</em> button.</p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-0.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-0.png" alt="Rekonq web browser Save As dialog" /></a></p><p>In the <em>Save As</em> dialog, click the <em>Home</em> button and select the <em>Downloads</em> folder to save the file in.</p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-1.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-1.png" alt="Rekonq web browser Save As dialog location selection" /></a></p><h3>Extract the Dropbox archive</h3><p>The file that is downloaded for Dropbox is known as a <a
href="http://en.wikipedia.org/wiki/Tar_(file_format)">tarball</a>. It is similar to a Zip file if you are coming from the Windows world. To extract this file we will use <a
href="http://userbase.kde.org/Ark">Ark</a>, KDE&#8217;s archiving tool. To open <em>Ark</em>, click on the menu button, select the <em>Applications</em> tab, scroll down to the <em>Utilities</em> section and click it, then once that is open you should see <em>Archiving Tool</em> or <em>Ark</em> depending on how your distribution has it in the menu. Once <em>Ark</em> is open, click on the <em>Open</em> button. Here you will be presented with an <em>Open Dialog</em> where you can select the file that you downloaded. Navigate to your <code>Home/Downloads</code> directory and select the Dropbox file.</p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-3.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-3.png" alt="Ark Open Dialog - select Dropbox file" /></a></p><p>Once the file has opened in <em>Ark</em>, the next thing to do is extract it. To do this click the <em>Extract</em> button towards the top. The only option you should have is <em>Extract To&#8230;</em></p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-4.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-4.png" alt="Ark Extract button" /></a></p><p>Select it and you will be presented with the <em>Extract</em> dialog where you can select the location you want to extract it to. Select your username in the folder list, as this is where you want to extract it to.</p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-5.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-5.png" alt="Ark extract to location selection dialog" /></a></p><h3>Configure Dropbox to run at start-up</h3><p>You will definitely want Dropbox to start every time you log into your computer. To do this is really easy. Open <em>System Settings</em> by going to the KDE menu once again. Most distributions stick the <em>System Settings</em> icon in your <em>Favorites</em> tab, so when you click the menu button, you should see it right away. Click it if you do. If you do not see it, don&#8217;t worry. You will need to go to the <em>Applications</em> tab, scroll down to the <em>Settings</em> section, and in there you should see <em>System Settings</em>. Click it to open it. Once it is open at the bottom, in the <em>System Administration</em> section, there should be an icon labeled, <em>Startup and Shutdown</em>. Click it. Once that is open, in the right pane you should see 5 buttons. You want to select the button labeled <em>Add Script&#8230;</em>. This will pop up a small dialog for you to select the Dropbox script we want to run at startup.</p><p><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-6.png" alt="System Settings - Startup and Shutdown - Add Script dialog" /></a></p><p>Click the small folder to the right of the text input box. You should be presented with a <em>System Settings</em> open dialog. In order to see the folder and script that was extracted from the Dropbox download, we need to make sure that <em>Show Hidden Files</em> is selected.</p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-7.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-7.png" alt="System Settings open script dialog show hidden files" /></a></p><p>Once all files are showing, click the <code>.dropbox-dist</code> folder and scroll until you see the file named <code>dropboxd</code>.</p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-9.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-9.png" alt="dropbox-dist hidden folder selection" /></a></p><p><strong>NOTE:</strong> Select <code>dropbox<strong>d</strong></code>, not <code>dropbox</code>, as shown in the above image.</p><p>Once you have selected it click OK if needed, now you should be back at the small popup dialog. Go ahead and click the <em>OK</em> button. You should be back to the main <em>System Settings</em> window now.</p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-10.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-10.png" alt="dropboxd executable selection" /></a></p><p>You can close out of <em>System Settings</em> now.</p><h3>Running Dropbox for the first time</h3><p>Open <em>Dolphin</em>, the file manager, by going to the KDE menu button and under <em>Applications</em>, <em>System</em>, there should be a menu item labeled either <em>File Manager</em> or <em>Dolphin</em>. Click it. Once <em>Dolphin</em> is open and in your <code>Home</code> folder, we will need to view all hidden files again. To do this, click the <em>View</em> menu item and about half way down is the <em>Show Hidden Files</em> item. Click it. Now you should see all hidden files and folders. You will want to find the folder named <code>.dropbox-dist</code> and click it.</p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-11.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-11.png" alt="Dolphin hidden files - dropbox-dist selection" /></a></p><p>Scroll down until you see the file named <code>dropboxd</code>. Note once again that it is <code>dropbox<strong>d</strong></code> that you want.</p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-12.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-12.png" alt="Dolphin hidden files - dropboxd executable selection" /></a></p><p>You will now be presented with the Dropbox application setup dialog. Go through and answer the questions.</p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-13.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-13.png" alt="Dropbox application setup dialog 1" /></a></p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-14.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-14.png" alt="Dropbox application setup dialog 2" /></a></p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-15.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-15.png" alt="Dropbox application setup dialog 3" /></a></p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-16.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-16.png" alt="Dropbox application setup dialog 4" /></a></p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-17.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-17.png" alt="Dropbox application setup dialog 5" /></a></p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-18.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_kde-dropbox-18.png" alt="Dropbox application setup dialog 6" /></a></p><p>That&#8217;s it, Dropbox is up and running and will start every time you log into your desktop. If all went well you should see the Dropbox icon in your <em>System Tray</em>.</p><p><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/kde-dropbox-19.png" alt="Dropbox running in KDE's System Tray" /></a></p><h3>Install the quick way with the command line</h3><p>Now that you have the Dropbox file downloaded to your computer, open up your terminal (<em>Konsole</em> is the default in KDE) and type the following commands, or copy &#038; paste the following (you should see 4 lines total):</p><div
class="wp-geshi-highlight-wrap5"><div
class="wp-geshi-highlight-wrap4"><div
class="wp-geshi-highlight-wrap3"><div
class="wp-geshi-highlight-wrap2"><div
class="wp-geshi-highlight-wrap"><div
class="wp-geshi-highlight"><div
class="bash"><pre class="de1"><span class="kw3">cd</span>
<span class="kw2">tar</span> <span class="re5">-xf</span> Downloads<span class="sy0">/</span>dropbox<span class="sy0">*</span>.gz
<span class="kw2">ln</span> <span class="re5">-s</span> .dropbox-dist<span class="sy0">/</span>dropboxd .kde<span class="sy0">/</span>Autostart<span class="sy0">/</span>dropboxd
.dropbox-dist<span class="sy0">/</span>dropboxd <span class="sy0">&amp;</span></pre></div></div></div></div></div></div></div><p>That&#8217;s all folks, enjoy, and thanks for stopping by!</p><p><a
href="http://www.nixternal.com/kde-and-dropbox/">Dropbox for KDE</a> is a post from <a
href="http://www.nixternal.com/about/">Richard A. Johnson</a>'s <a
href="http://www.nixternal.com/blog/">blog</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.nixternal.com/kde-and-dropbox/feed/</wfw:commentRss> <slash:comments>43</slash:comments> </item> <item><title>Linux and GMail Part III &#8211; Thunderbird</title><link>http://www.nixternal.com/linux-and-gmail-part-iii-thunderbird/</link> <comments>http://www.nixternal.com/linux-and-gmail-part-iii-thunderbird/#comments</comments> <pubDate>Fri, 18 Feb 2011 03:20:43 +0000</pubDate> <dc:creator>Richard A. Johnson</dc:creator> <category><![CDATA[Application]]></category> <category><![CDATA[Linux]]></category> <guid
isPermaLink="false">http://www.nixternal.com/?p=990</guid> <description><![CDATA[<p>OK, as you can probably tell now, I have been wasting a lot of time playing with GUI email clients. Why you ask? Simple, I am nuts, like that wasn&#8217;t obvious! Like I did in Part I and Part II, I am going to do the same this go round, but with Mozilla Thunderbird instead. [...]</p><p><a
href="http://www.nixternal.com/linux-and-gmail-part-iii-thunderbird/">Linux and GMail Part III &#8211; Thunderbird</a> is a post from <a
href="http://www.nixternal.com/about/">Richard A. Johnson</a>'s <a
href="http://www.nixternal.com/blog/">blog</a>.</p>]]></description> <content:encoded><![CDATA[<p>OK, as you can probably tell now, I have been wasting a lot of time playing with GUI email clients. Why you ask? Simple, I am nuts, like that wasn&#8217;t obvious! Like I did in <a
href="http://www.nixternal.com/linux-and-gmail/">Part I</a> and <a
href="http://www.nixternal.com/linux-and-gmail-ii-zimbra-desktop/">Part II</a>, I am going to do the same this go round, but with <a
href="http://www.mozillamessaging.com/en-US/thunderbird/">Mozilla Thunderbird</a> instead.</p><p>First off, I am using version <code>3.1.9~hg20110206r5951</code> from the <a
href="https://launchpad.net/~ubuntu-mozilla-daily/+archive/ppa">Ubuntu Mozilla Team Daily Builds PPA</a>. Forgot I added that PPA to check out Firefox, so because of that, I have the version of Thunderbird that I do.</p><p>First things first, I like Thunderbird. I will even go as far as saying it is by far the best GUI-based email client available for Linux, and Windows for that matter. It integrates as better as the others, if not better actually, when it comes to tying it in to GMail. My complaints at this time are small, damn small. They are:</p><ul><li>Unsubscribing from an IMAP folder does not hide that folder, you can still see it in the list, annoying</li><li>I don&#8217;t use local folders, so I had to download <a
href="http://mailtweak.mozdev.org/">Mail Tweak</a> just to hide it. Mail Tweak has about 50 or so other tweaks built into it, but I am only using one of the tweaks</li><li>You have to try a few shitty extensions until you find the right one</li></ul><p>I have 2 GMail accounts set up, and there are different folder views you can use. I was using the <em>Unified Folders</em> view, which is a really great idea, one I haven&#8217;t seen on any other client out there. So I have 2 accounts, and they both have an Inbox, this will show only 1 inbox with both of them combined, and when you expand that inbox, you can then access each inbox individually. This saves space when you have a ton of folders in view. Another thing I like is the support of <a
href="http://en.wikipedia.org/wiki/IMAP_IDLE">IMAP IDLE</a> which allows damn near real-time communications between GMail and Thunderbird. You can kind of think of it as the PUSH Technology deployed in mobile devices these days. It is funny. An email will show up both on my Android and Thunderbird before it does in the GMail web client. When I get a new email in my inbox, a message pops up, and at the same time my phone makes a noise, and about 15 to 30 seconds later, the message shows up in my GMail web client. Also, it uses its own message indicator and not the Ubuntu or Kubuntu indicator. I kind of prefer the Thunderbird one because it is more out of the way for me. To be honest, I absolutely hate the indicators in Ubuntu and Kubuntu, but that is my personal preference, I just have a different work flow than those who like them.</p><p><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/tbird.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_tbird.png" alt="Thunderbird" title="sm_tbird" width="308" height="191" class="aligncenter size-full wp-image-991" /></a></p><p>It doesn&#8217;t look to bad in KDE. Of course it doesn&#8217;t fit in look wise, but that is easily overlooked when it comes to functionality, speed, and usability. I have installed the <a
href="http://www.zindus.com/">Zindus</a> extension which syncs my calendar and contacts with Google&#8217;s calendar and contacts. It does this better than any other extension out there, so don&#8217;t waste your time trying this or that, just get Zindus, enter your username and password, and in seconds you are up and running. Thanks to <a
href="http://www.nixternal.com/linux-and-gmail/#comment-147329585">Timothy Richardson</a> for leaving a comment telling me about Zindus. As it stands, I don&#8217;t think I am missing anything from any of the other clients that I wish was here. Well maybe a social tab with sex built in like Zimbra Desktop had, out of the box I might add.</p><p>So, are you a Thunderbird user? Am I missing anything? Any extension that is a must have? Any tips or tricks I need to know? Speak up in the comments and let me know.</p><p><strong>NOTE:</strong> Inbox zero!!!</p><p><a
href="http://www.nixternal.com/linux-and-gmail-part-iii-thunderbird/">Linux and GMail Part III &#8211; Thunderbird</a> is a post from <a
href="http://www.nixternal.com/about/">Richard A. Johnson</a>'s <a
href="http://www.nixternal.com/blog/">blog</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.nixternal.com/linux-and-gmail-part-iii-thunderbird/feed/</wfw:commentRss> <slash:comments>18</slash:comments> </item> <item><title>Linux and Gmail II &#8211; Zimbra Desktop</title><link>http://www.nixternal.com/linux-and-gmail-ii-zimbra-desktop/</link> <comments>http://www.nixternal.com/linux-and-gmail-ii-zimbra-desktop/#comments</comments> <pubDate>Thu, 17 Feb 2011 01:35:22 +0000</pubDate> <dc:creator>Richard A. Johnson</dc:creator> <category><![CDATA[Application]]></category> <category><![CDATA[Linux]]></category> <guid
isPermaLink="false">http://www.nixternal.com/?p=987</guid> <description><![CDATA[<p>Just the other day I posted about Linux and Gmail in reference to clients other than a web browser. I had noted trying out Evolution, KMail, Thunderbird, and of course Mutt which I use daily already. Well, one of the comments, by David Fraser, was about the Zimbra Desktop. I don&#8217;t think I have ever [...]</p><p><a
href="http://www.nixternal.com/linux-and-gmail-ii-zimbra-desktop/">Linux and Gmail II &#8211; Zimbra Desktop</a> is a post from <a
href="http://www.nixternal.com/about/">Richard A. Johnson</a>'s <a
href="http://www.nixternal.com/blog/">blog</a>.</p>]]></description> <content:encoded><![CDATA[<p>Just the other day I posted about <a
href="http://www.nixternal.com/linux-and-gmail/">Linux and Gmail</a> in reference to clients other than a web browser. I had noted trying out Evolution, KMail, Thunderbird, and of course Mutt which I use daily already. Well, <a
href="http://www.nixternal.com/linux-and-gmail/#comment-147722635">one of the comments</a>, by <a
href="http://frasergo.org/">David Fraser</a>, was about the Zimbra Desktop. I don&#8217;t think I have ever used a Zimbra client but I am fairly certain I have used their backend products in the past. Anyways, I went ahead and downloaded <a
href="http://www.zimbra.com/products/desktop.html">Zimbra Desktop</a>, and after a fairly simple installation, have it up and running.</p><p>The installation was fairly simple. You extract the tarball, then <code>sudo ./install.pl</code>, answer the questions, and boom it is installed. Fairly quick, less than a minute I would say. After it finished installing I went ahead and run it. I was presented a dialog asking me to create an account, in which I did. I selected GMail, entered a name for that account, my username and password, and my name. I clicked save, said OK, and it was up and running and synchronizing my folders faster than any client out there. Sparrow and Mailplane, which I like for GMail clients, can&#8217;t even compare in speed. Thunderbird? Evolution? Not even close. KMail? Don&#8217;t even ask! OfflineIMAP can&#8217;t even compare to the speed in which I was up and running with all email downloaded.</p><p
style="text-align:center;"><a
href="http://www.nixternal.com/wp-content/uploads/2011/02/zimbra.png"><img
src="http://www.nixternal.com/wp-content/uploads/2011/02/sm_zimbra.png" alt="Zimbra Desktop" title="sm_zimbra" width="308" height="191" class="alignnone size-full wp-image-988" /></a></p><p>Usability? I would say it is pretty much the same as every other GUI client in terms of usability. It may seem a little snappier to me compared to the other GUI clients, but time will only tell. The first thing I did was click on a message, I thought, &#8220;OK, lets reply.&#8221; I am used to the <em>Reply</em> button being over the message I am reading, however Zimbra has it to the left of the message in the top toolbar. I had to actually search for a second to find it. Before I found it, I decided to just do the tried-and-true pressing of the <em>r</em> key, and wouldn&#8217;t you know, my reply was ready to be created.</p><p>So I haven&#8217;t really dug into it deep yet, but first thoughts are not bad, but not great. So, I know my stuff is synchronizing because I can see the little spinner that is up by my account name. What it is synchronizing though I have no clue. Would be nice if it told me. Also, if you look at the image I have included, you will notice a <em>Social</em> tab. This does not belong in an <em>Email</em> client at all. I don&#8217;t need Twitter, Facebook, or Digg in my email client. Also, one of the columns that were displayed to me under the <em>Social</em> tab was a Twitter trending topic, <a
href="http://twitter.com/#!/search/%23verysexy">#verysexy</a>. Nice, just what I need in my email client, sex. Nothing like reading about a nipple in this shape or size, or a girl or guys ass, in your email client. Classy! As of right now Zimbra folks, get rid of that shit, otherwise I will end up chalking your entire client up as nothing more than a joke.</p><p>Oh, and one more thing, it is actually a web client, and uses <a
href="http://prism.mozillalabs.com/">Prism</a>, which Mozilla is discontinuing and rolling the good stuff into Chromeless. So, keep an eye out, and if I think it is worthy of more discussion, I will add more to the comments, update this post, or create a new post in the future.</p><p><a
href="http://www.nixternal.com/linux-and-gmail-ii-zimbra-desktop/">Linux and Gmail II &#8211; Zimbra Desktop</a> is a post from <a
href="http://www.nixternal.com/about/">Richard A. Johnson</a>'s <a
href="http://www.nixternal.com/blog/">blog</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.nixternal.com/linux-and-gmail-ii-zimbra-desktop/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> </channel> </rss>
