<?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>Ryan, Debi, and Toren Cragun&#039;s Blog &#187; technology</title>
	<atom:link href="http://www.ryananddebi.com/tag/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ryananddebi.com</link>
	<description>Public journal, toddler tales, travelogue, book reviews, and other stuff... (mostly written by Ryan)</description>
	<lastBuildDate>Wed, 25 Jan 2012 13:00:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>LinuxMint: Automount Server Share</title>
		<link>http://www.ryananddebi.com/2011/10/16/linuxmint-automount-server-share/</link>
		<comments>http://www.ryananddebi.com/2011/10/16/linuxmint-automount-server-share/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 14:28:26 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[LinuxMint]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.ryananddebi.com/?p=6634</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=LinuxMint%3A+Automount+Server+Share&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2011-10-16&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2011/10/16/linuxmint-automount-server-share/&amp;rft.language=English"></span>
Number of Views: 36While I&#8217;m still not 100% sure how I got my file server to share all the files across the network (whatever I did, it worked; when the server dies, I&#8217;ll figure it out and post it here).  Regardless, I recently reformatted my desktop and had to set up the file server share [...]]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=LinuxMint%3A+Automount+Server+Share&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2011-10-16&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2011/10/16/linuxmint-automount-server-share/&amp;rft.language=English"></span>
Number of Views: 36<br/><p>While I&#8217;m still not 100% sure how I got my file server to share all the files across the network (whatever I did, it worked; when the server dies, I&#8217;ll figure it out and post it here).  Regardless, I recently reformatted my desktop and had to set up the file server share to automount on my desktop for easy access to the files (I store all my music, videos, and lots of other files on the file server).  Here are the steps I took to set up my automounting file share on my LinuxMint desktop (courtesy of the <a href="https://wiki.ubuntu.com/MountWindowsSharesPermanently" target="_blank">ubuntu wiki</a>).</p>
<p>1) First you need to install two packages (not sure which actually does the mounting, so I just installed them both: cifs-utils and smbfs. You can install these from the terminal or using synaptic.  Here&#8217;s how you would do it from the terminal:</p>
<blockquote><p>sudo apt-get install cifs-utils smbfs</p></blockquote>
<p><span style="direction: ltr;">2) Once those are installed, you need to create a mount point for your share.  The easiest way to do this is from the terminal as it requires root privileges.  The share, which, in my case, is called &#8220;fileshare&#8221; is mounted in the &#8220;media&#8221; directory, so you use the following:</span></p>
<blockquote><p><span style="direction: ltr;">sudo mkdir /media/fileserver</span></p></blockquote>
<p><span style="direction: ltr;">3) Next you need to edit the fstab file.  This is a file that tells the operating system which drives should be mounted on startup.  To edit it, enter the following at the terminal:</span></p>
<blockquote><p><span style="direction: ltr;">sudo gedit /etc/fstab</span></p></blockquote>
<p>4) The text editor will pop up with your fstab file open for editing.  You need to add a line to the fstab file that tells the operating system what to mount on startup, where to mount it, and what permissions to use.  Here is the line I used</p>
<blockquote><p>//fileserver/server-share  /media/fileserver  cifs  guest,uid=1000,iocharset=utf8,codepage=unicode,unicode  0  0</p></blockquote>
<p>What this tells the operating system is that I want to mount a network share &#8220;//fileserver/server-share/&#8221; into the folder &#8220;/media/fileserver&#8221;.  I do this with the software package &#8220;cifs.&#8221;  Since I set up my fileserver to not require permissions to access the files, I am accessing the fileserver as &#8220;guest.&#8221;  The &#8220;uid&#8221; is my user id.  The remaining information indicates what follows I can read and write across the network share.  Save the fstab file and close it.</p>
<p>5) The last step is to go ahead and mount the share.  This is also done from the terminal using the following command:</p>
<blockquote><p>sudo mount -a</p></blockquote>
<p>This tells the operating system to remount everything in your fstab file.  Your file share should now show up as a drive on your desktop and you should be able to read and write to it directly as if it were a drive on your computer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryananddebi.com/2011/10/16/linuxmint-automount-server-share/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LinuxMint: Keyboard Shortcuts to Move Windows Between Monitors</title>
		<link>http://www.ryananddebi.com/2011/10/16/linuxmint-keyboard-shortcuts-to-move-windows-between-monitors/</link>
		<comments>http://www.ryananddebi.com/2011/10/16/linuxmint-keyboard-shortcuts-to-move-windows-between-monitors/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 13:09:58 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[LinuxMint]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.ryananddebi.com/?p=6624</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=LinuxMint%3A+Keyboard+Shortcuts+to+Move+Windows+Between+Monitors&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2011-10-16&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2011/10/16/linuxmint-keyboard-shortcuts-to-move-windows-between-monitors/&amp;rft.language=English"></span>
Number of Views: 21If you don&#8217;t have multiple monitors hooked up to your desktop computer, you&#8217;re really missing out.  Having dual monitors is a delight when it comes to being able to see more than one window and work even faster.  And to make the experience even more enjoyable, Ubuntu variants of Linux, including LinuxMint, [...]]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=LinuxMint%3A+Keyboard+Shortcuts+to+Move+Windows+Between+Monitors&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2011-10-16&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2011/10/16/linuxmint-keyboard-shortcuts-to-move-windows-between-monitors/&amp;rft.language=English"></span>
Number of Views: 21<br/><p>If you don&#8217;t have multiple monitors hooked up to your desktop computer, you&#8217;re really missing out.  Having dual monitors is a delight when it comes to being able to see more than one window and work even faster.  And to make the experience even more enjoyable, Ubuntu variants of Linux, including LinuxMint, my new Linux distribution of choice, come pre-installed with CompizConfig Settings Manager, which has a nice windows management utility built in that allows you to use keyboard shortcuts to move windows between monitors.  So, for instance, let&#8217;s say you&#8217;ve got your browser up on the left monitor, but you want to move it to the right monitor so you can have it open at the same time as you work on a spreadsheet.  You could shrink the browser window then drag it to the other monitor.  But that would require several several clicks and dragging your mouse.  Wouldn&#8217;t it be nice if you could simply hit a keyboard combination that moved your entire window from one monitor to the other, while still maximized?  The &#8220;Put&#8221; utility in CompizConfig allows you to do this.  Here&#8217;s how:</p>
<p>1) Open CompizConfig Settings Manager (it&#8217;s pre-installed in LinuxMint).  If you&#8217;re running Ubuntu, you may have to install it using the software center or synaptic:</p>
<div id="attachment_6625" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ryananddebi.com/wp-content/uploads/2011/10/put01.png"><img class="size-medium wp-image-6625" title="put01" src="http://www.ryananddebi.com/wp-content/uploads/2011/10/put01-300x217.png" alt="" width="300" height="217" /></a><p class="wp-caption-text">opening CompizConfig Settings Manager in LinuxMint (click to enlarge)</p></div>
<p>2) With the settings manager open, scroll down to the section labeled &#8220;Window Management.&#8221;  You should see &#8220;Put&#8221; as an option.  Select the box next to it, then click on &#8220;Put&#8221; to enter the settings:</p>
<div id="attachment_6626" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ryananddebi.com/wp-content/uploads/2011/10/put02.png"><img class="size-medium wp-image-6626" title="put02" src="http://www.ryananddebi.com/wp-content/uploads/2011/10/put02-300x182.png" alt="" width="300" height="182" /></a><p class="wp-caption-text">find &quot;Put&quot; in the CompizConfig Settings Manager window (click to enlarge)</p></div>
<p>3) Inside the &#8220;Put&#8221; submenu you&#8217;ll see several options.  The one you want to move windows between monitors is &#8220;Put within viewport,&#8221; which is the fourth from the top.  Select the + sign next to it to see the options.  While you can &#8220;Put&#8221; your windows in lots of locations, I primarily just use two: &#8220;Put Left&#8221; and &#8220;Put Right&#8221;.</p>
<div id="attachment_6627" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.ryananddebi.com/wp-content/uploads/2011/10/put03.png"><img class="size-medium wp-image-6627" title="put03" src="http://www.ryananddebi.com/wp-content/uploads/2011/10/put03-300x198.png" alt="" width="300" height="198" /></a><p class="wp-caption-text">the &quot;Put&quot; settings submenu (click to enlarge)</p></div>
<p>(In the above image I had already set up my key combinations.)</p>
<p>4) To set up a key combination to use the &#8220;Put&#8221; utility, simply click on the button labeled &#8220;Disabled&#8221; across from the relevant command that shows a small keyboard (you can create key combinations using mice as well, which are just below the keyboards).  That brings up this option:</p>
<div id="attachment_6628" class="wp-caption aligncenter" style="width: 208px"><a href="http://www.ryananddebi.com/wp-content/uploads/2011/10/put04.png"><img class="size-full wp-image-6628" title="put04" src="http://www.ryananddebi.com/wp-content/uploads/2011/10/put04.png" alt="" width="198" height="110" /></a><p class="wp-caption-text">click &quot;enabled&quot; to tell CompizConfig to use the keyboard combinations</p></div>
<p>5) Select &#8220;enabled&#8221; and you&#8217;ll see this:</p>
<div id="attachment_6629" class="wp-caption aligncenter" style="width: 238px"><a href="http://www.ryananddebi.com/wp-content/uploads/2011/10/put05.png"><img class="size-full wp-image-6629" title="put05" src="http://www.ryananddebi.com/wp-content/uploads/2011/10/put05.png" alt="" width="228" height="286" /></a><p class="wp-caption-text">set your keyboard combination here</p></div>
<p>6) Click on &#8220;Grab key combination&#8221; and another window will pop up that will detect the keyboard combination shortcut you want to use to put your windows across monitors.  I use &#8220;Alt+Super+left&#8221; for moving windows to my left monitor and &#8220;Alt+Super+right&#8221; to move windows to my right monitor (as shown in the image above).  Once you enter your keyboard combination, hit &#8220;OK&#8221; in the prompt, set up any others you want to use, and then click on &#8220;Back&#8221;.  Make sure you&#8217;ve selected the checkbox next to &#8220;Put&#8221; then close CompizConfig Settings Manager.</p>
<p>7) You can now try out your keyboard combination by selecting a window and using your combination to move it across monitors.  FYI, if your window is maximized, you&#8217;ll have to hit the combination twice.  When you hit it the first time, the window will move just a little bit to indicate to you that the software knows you&#8217;re trying to move the window but that the window is maximized.  Hit it again quickly and the window will jump to your other monitor and maximize itself on that monitor as well, beautifully taking into account panels and monitor size.  I show the actions in the video below:</p>
<p><a href="http://www.youtube.com/watch?v=YZfdjN57SO0">www.youtube.com/watch?v=YZfdjN57SO0</a></p>
<p>Note: Another very useful keyboard combination utility that comes built in with CompizConfig Settings Manager is the &#8220;Grid&#8221; utility which allows you to move a window to different areas of your monitors as well.  This utility is located in the same area as the &#8220;Put&#8221; utility.  It is activated by default.  The keyboard combinations are &#8220;Ctrl+Alt+keypad numbers&#8221;.  So, for instance, to move a window to the center of a monitor, hit &#8220;Ctrl+Alt+KP5,&#8221; which is the center key in your keypad.  To move it to the right, use KP6, etc.  Grid has several levels of alignment built in, which you can see by hitting the combination repeatedly until you get the window to the size you want, as shown in the video below.</p>
<p><a href="http://www.youtube.com/watch?v=KvYlxAGMu9Y">www.youtube.com/watch?v=KvYlxAGMu9Y</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryananddebi.com/2011/10/16/linuxmint-keyboard-shortcuts-to-move-windows-between-monitors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Utah Trip &#8211; December 29th</title>
		<link>http://www.ryananddebi.com/2010/12/29/utah-trip-december-29th/</link>
		<comments>http://www.ryananddebi.com/2010/12/29/utah-trip-december-29th/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 13:00:27 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[travel]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.ryananddebi.com/?p=5527</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Utah+Trip+%26%238211%3B+December+29th&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=travel&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-12-29&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/12/29/utah-trip-december-29th/&amp;rft.language=English"></span>
Number of Views: 5We were supposed to go up to Ogden to meet with some of my childhood friends, but a massive afternoon snow storm that dumped about 10 inches of snow on West Jordan postponed that trip.  Instead I spent the day working on Rosemary&#8217;s computer and otherwise not getting much done. As far [...]]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Utah+Trip+%26%238211%3B+December+29th&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=travel&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-12-29&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/12/29/utah-trip-december-29th/&amp;rft.language=English"></span>
Number of Views: 5<br/><p>We were supposed to go up to Ogden to meet with some of my childhood friends, but a massive afternoon snow storm that dumped about 10 inches of snow on West Jordan postponed that trip.  Instead I spent the day working on Rosemary&#8217;s computer and otherwise not getting much done.</p>
<p>As far as Rosemary&#8217;s computer goes, she is the perfect candidate for running Linux.  She uses a browser and occasionally Word and Excel.  Linux has all of that covered. She also does genealogy, which can easily be done in <a href="http://gramps-project.org/cgi-sys/suspendedpage.cgi" target="_blank" class="broken_link" rel="nofollow">Gramps</a>.  So, Rosemary is now running <a href="http://www.ubuntu.com/" target="_blank">Ubuntu 10.10</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryananddebi.com/2010/12/29/utah-trip-december-29th/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu: two versions of Firefox at once</title>
		<link>http://www.ryananddebi.com/2010/11/13/ubuntu-two-versions-of-firefox-at-once/</link>
		<comments>http://www.ryananddebi.com/2010/11/13/ubuntu-two-versions-of-firefox-at-once/#comments</comments>
		<pubDate>Sun, 14 Nov 2010 02:42:41 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.ryananddebi.com/?p=5373</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Ubuntu%3A+two+versions+of+Firefox+at+once&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-11-13&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/11/13/ubuntu-two-versions-of-firefox-at-once/&amp;rft.language=English"></span>
Number of Views: 22Ever since I switched to Linux I&#8217;ve been toying with running two versions of Firefox simultaneously, even though I now use Google Chrome as my primary browser.  Why two versions of Firefox, you ask?  It&#8217;s kind of complicated, but it boils down to: I use Zotero for my bibliographic management software but [...]]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Ubuntu%3A+two+versions+of+Firefox+at+once&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-11-13&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/11/13/ubuntu-two-versions-of-firefox-at-once/&amp;rft.language=English"></span>
Number of Views: 22<br/><p>Ever since I switched to Linux I&#8217;ve been toying with running two versions of Firefox simultaneously, even though I now use Google Chrome as my primary browser.  Why two versions of Firefox, you ask?  It&#8217;s kind of complicated, but it boils down to: I use <a href="http://www.zotero.org/" target="_blank">Zotero</a> for my bibliographic management software but I have too many references to put them all in one database.  I have about 10 Zotero databases, and I periodically need to move references from one database to another.  With only one copy of Firefox on my computer, I can only open one copy of Zotero at a time.  And given how you switch between Zotero databases (restarting Firefox), it can be quite cumbersome to move references between databases.  The solution: Two (or more) versions of Firefox, each of which can be opened independently and is compatible with Zotero.</p>
<p>I was getting ready to move some references around today when I thought I&#8217;d look into running two versions of Firefox simultaneously just to see what is available.  Turns out, there is a Firefox add-on, specific to Ubuntu, just for this: <a href="https://addons.mozilla.org/en-US/firefox/addon/foxtester/" target="_blank">FoxTester</a> (here&#8217;s the <a href="http://foxtester-extension.blogspot.com/" target="_blank">extension&#8217;s homepage</a>).  Basically how this works is, in the default Firefox install, you install the FoxTester addon.  Then, once you restart, you can right-click in Firefox and you&#8217;ll see a context menu:</p>
<p><a href="http://www.ryananddebi.com/wp-content/uploads/2010/11/foxtester-01.png"><img class="alignnone size-medium wp-image-5374" title="foxtester-01" src="http://www.ryananddebi.com/wp-content/uploads/2010/11/foxtester-01-166x300.png" alt="" width="166" height="300" /></a></p>
<p>The top item in the context menu is &#8220;Browse FTP Directory.&#8221;  This takes you to a repository of Firefox releases, which you can navigate to find the version you want:</p>
<p><a href="http://www.ryananddebi.com/wp-content/uploads/2010/11/foxtester-02.png"><img class="alignnone size-medium wp-image-5375" title="foxtester-02" src="http://www.ryananddebi.com/wp-content/uploads/2010/11/foxtester-02-300x163.png" alt="" width="300" height="163" /></a></p>
<p>Once you find the one you want, click through to the appropriate files for your platform (in my case: 3.6.9/linux-i686/en-US/).  You&#8217;re looking for the &#8220;tar.bz2&#8243; file, which is basically a zip file:</p>
<p><a href="http://www.ryananddebi.com/wp-content/uploads/2010/11/foxtester-03.png"><img class="alignnone size-medium wp-image-5376" title="foxtester-03" src="http://www.ryananddebi.com/wp-content/uploads/2010/11/foxtester-03-300x91.png" alt="" width="300" height="91" /></a></p>
<p>Right click on the tar.bz2 file, and save it to a specific folder (you will probably need to create a folder where you can keep it around as it needs to be static).  Once you&#8217;ve downloaded the file to the right folder, go back to your current install of Firefox, right-click again, and go to the context menu for FoxTester.  Select &#8220;Preferences&#8221; and you&#8217;ll get this window:</p>
<p><a href="http://www.ryananddebi.com/wp-content/uploads/2010/11/foxtester-04.png"><img class="alignnone size-medium wp-image-5377" title="foxtester-04" src="http://www.ryananddebi.com/wp-content/uploads/2010/11/foxtester-04-300x190.png" alt="" width="300" height="190" /></a></p>
<p>Here you simply need to set the &#8220;Watched Folder&#8221; to the folder where you just saved the tar.bz2 file.  Once you&#8217;ve done that, you&#8217;re two clicks away from running.  Close the Preferences window and right-click to bring back up the context menu.  Assuming you&#8217;ve done everything correctly, you should now be able to choose &#8220;Install&#8221; and select the tar.bz2 file you downloaded.  It will take a minute or two, then you&#8217;ll get a note saying that your version of Firefox installed.  You can then go back to the context menu and select &#8220;Launch&#8221; and choose the version you just installed.  It should start right up:</p>
<p><a href="http://www.ryananddebi.com/wp-content/uploads/2010/11/foxtester-05.png"><img class="alignnone size-medium wp-image-5378" title="foxtester-05" src="http://www.ryananddebi.com/wp-content/uploads/2010/11/foxtester-05-300x242.png" alt="" width="300" height="242" /></a></p>
<p>If you&#8217;re doing what I am, which is running two instances of Zotero, you&#8217;ll need to download the Zotero extension in the new version, but then you should be good to go.</p>
<p>(Note: The extension&#8217;s website has a video tutorial showing this and more.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryananddebi.com/2010/11/13/ubuntu-two-versions-of-firefox-at-once/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu: keyboard shortcut to switch mouse orientation</title>
		<link>http://www.ryananddebi.com/2010/10/03/ubuntu-keyboard-shortcut-to-switch-mouse-orientation/</link>
		<comments>http://www.ryananddebi.com/2010/10/03/ubuntu-keyboard-shortcut-to-switch-mouse-orientation/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 15:10:55 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.ryananddebi.com/?p=5228</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Ubuntu%3A+keyboard+shortcut+to+switch+mouse+orientation&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-10-03&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/10/03/ubuntu-keyboard-shortcut-to-switch-mouse-orientation/&amp;rft.language=English"></span>
Number of Views: 14In order to minimize the risk of repetitive stress injuries, I have learned to use computer mice ambidextrously &#8211; I can do it either right or left-handed without any problems.  However, it&#8217;s a little more difficult to do it left-handed on my laptop.  And since I dock my laptop in my office [...]]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Ubuntu%3A+keyboard+shortcut+to+switch+mouse+orientation&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-10-03&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/10/03/ubuntu-keyboard-shortcut-to-switch-mouse-orientation/&amp;rft.language=English"></span>
Number of Views: 14<br/><p>In order to minimize the risk of repetitive stress injuries, I have learned to use computer mice ambidextrously &#8211; I can do it either right or left-handed without any problems.  However, it&#8217;s a little more difficult to do it left-handed on my laptop.  And since I dock my laptop in my office to use an external keyboard and left-handed mouse but undock it to teach my classes and use the touchpad right-handed, I find I&#8217;m constantly changing the orientation of the mouse, from right-handed to left-handed and back again.  I figured there had to be a way to make this easier, so I asked on<a href="http://ubuntuforums.org/showthread.php?t=1410231" target="_blank"> the Ubuntu forums and here&#8217;s the answer I received</a> that works.</p>
<p>First, open a terminal and type:</p>
<blockquote><p>sudo gedit /usr/bin/mouse_switch</p></blockquote>
<p>When the text file opens, add the following to the file then save it:</p>
<blockquote><p>current_setting=$(gconftool -g /desktop/gnome/peripherals/mouse/left_handed)<br />
$current_setting &amp;&amp; new_setting=false || new_setting=true<br />
gconftool -s /desktop/gnome/peripherals/mouse/left_handed -t bool $new_setting</p></blockquote>
<p>Close the file.  Then in the terminal type:</p>
<blockquote><p>cd /usr/bin</p></blockquote>
<p>Then type:</p>
<blockquote><p>sudo chown &#8220;user&#8221; mouse_switch</p></blockquote>
<p>(Of course, you need to replace &#8220;user&#8221; with your username in Ubuntu.)</p>
<p>You may also have to change the properties on the file (mouse_switch in /usr/bin) by right-clicking it, selecting the permissions tab, and selecting the option that it can be executed.</p>
<p>Then, using the menus at the top of the screen, go to System-&gt;Preferences-&gt;Keyboard Shortcuts.  In the window that comes up, select &#8221;Add&#8221;.  Then fill out the new window with the following:</p>
<blockquote><p>Name: mouse_switch<br />
Command: /usr/bin/mouse_switch</p></blockquote>
<p>Finally, select the keyboard combination you want (CTRL+SHIFT+M is what I use).  Voila, you should now have a keyboard combination that will switch between left-handed and right-handed mouse orientations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryananddebi.com/2010/10/03/ubuntu-keyboard-shortcut-to-switch-mouse-orientation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu: Adequate OCR for free on Linux</title>
		<link>http://www.ryananddebi.com/2010/07/18/ubuntu-adequate-ocr-for-free-on-linux/</link>
		<comments>http://www.ryananddebi.com/2010/07/18/ubuntu-adequate-ocr-for-free-on-linux/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 15:13:03 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OCR]]></category>

		<guid isPermaLink="false">http://www.ryananddebi.com/?p=4830</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Ubuntu%3A+Adequate+OCR+for+free+on+Linux&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-07-18&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/07/18/ubuntu-adequate-ocr-for-free-on-linux/&amp;rft.language=English"></span>
Number of Views: 12Even though I have mostly switched from Windows to Linux, I do have to emulate Windows for a few things just because the software for Linux either isn&#8217;t very good, doesn&#8217;t work, or in one case I haven&#8217;t learned it (R rather than SPSS).  One of the reasons I would run Windows [...]]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Ubuntu%3A+Adequate+OCR+for+free+on+Linux&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-07-18&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/07/18/ubuntu-adequate-ocr-for-free-on-linux/&amp;rft.language=English"></span>
Number of Views: 12<br/><p>Even though I have mostly switched from Windows to Linux, I do have to emulate Windows for a few things just because the software for Linux either isn&#8217;t very good, doesn&#8217;t work, or in one case I haven&#8217;t learned it (R rather than SPSS).  One of the reasons I would run Windows over Linux was for &#8220;optical character recognition&#8221; or OCR.  This is what the process is called for converting scanned text into actual text.  On Windows there are a number of good, relatively cheap software packages that do this.  The one I regularly used was Omnipage, which is really good.  I&#8217;ve looked for open source Linux alternatives and would even be willing to pay for one that wasn&#8217;t too expensive (i.e., less than $100), but have had no luck with finding something in my price range that works.  However, with a recent development in Google Documents, it&#8217;s possible to bypass standalone OCR software completely and simply allow Google to convert your scanned documents into text for you.</p>
<p>As of June 21st, you can upload scanned files (e.g., jpg, pdf) to Google Docs and it will run it through OCR (<a href="http://googlesystem.blogspot.com/2010/06/google-adds-ocr-for-pdf-files-and.html" target="_blank">directions here</a>).  The character recognition is mediocre compared to Omnipage, but it works fairly well for simple text.  It doesn&#8217;t deskew text before converting it, so if your scanned text is skewed at all, it will have a hard time converting it.  Also, the Google Docs OCR software doesn&#8217;t retain formatting at all.  But it works.  And it&#8217;s adequate for what I do (mostly scanning paragraphs from books to help with my book reviews).  However, one thing that is not mentioned with this free service is that it is limited to scans that are 10 pages in length or shorter.  I found this out the hard way by uploading a scan that was about 30 pages and realizing it wasn&#8217;t recognizing 20 pages of the document.  So, if you need lots of long documents converted, you&#8217;re probably still better off using some other software.  But if you just need a few pages of text converted, Google Docs will do it for you and do it fairly well.</p>
<p>So, how do you get all of this to work on Linux?  Assuming you already have a scanner (that would be the only cost, aside from your computer, of course), you can use the built in scanning software &#8220;Simple Scan&#8221; (as of 10.04) to scan your document.  Select &#8220;text&#8221; scan as you don&#8217;t need color.  Simple Scan is quite easy to use and allows for quick and easy cropping, which I would recommend (you have to do this in Omnipage as well, so it&#8217;s not any more time consuming).  Once you&#8217;ve scanned and cropped your text selection, save it as a PDF.  Then follow the directions <a href="http://googlesystem.blogspot.com/2010/06/google-adds-ocr-for-pdf-files-and.html" target="_blank">here</a> on how to upload it to Google Docs and tell Google Docs to convert it to OCR.  Et voila, you have OCR on Linux.</p>
<p>If you do happen to have a longer document you need converted, you can easily break it into 10 page chunks using another piece of free software, <a href="http://www.pdfsam.org/" target="_blank">pdfSam</a>, which automates breaking the PDF into 10 page chunks.  You can then upload all the pieces of the document to Google Docs simultaneously.  So long as they are less than 10 pages long, each will be converted in turn.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryananddebi.com/2010/07/18/ubuntu-adequate-ocr-for-free-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android: An e-book reader that copies, pastes, and highlights text</title>
		<link>http://www.ryananddebi.com/2010/07/13/android-an-e-book-reader-that-copies-pastes-and-highlights-text/</link>
		<comments>http://www.ryananddebi.com/2010/07/13/android-an-e-book-reader-that-copies-pastes-and-highlights-text/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 14:24:10 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.ryananddebi.com/?p=4828</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Android%3A+An+e-book+reader+that+copies%2C+pastes%2C+and+highlights+text&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-07-13&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/07/13/android-an-e-book-reader-that-copies-pastes-and-highlights-text/&amp;rft.language=English"></span>
Number of Views: 40As my regular readers know, Debi and I recently bought new cellphones that run the Android operating system. For about three years before that, we were running an old Windows Mobile OS (I think version 5). On our old phones, I had installed an ebook reader that allowed me to copy and [...]]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Android%3A+An+e-book+reader+that+copies%2C+pastes%2C+and+highlights+text&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-07-13&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/07/13/android-an-e-book-reader-that-copies-pastes-and-highlights-text/&amp;rft.language=English"></span>
Number of Views: 40<br/><p>As my regular readers know, Debi and I recently bought new cellphones that run the Android operating system.  For about three years before that, we were running an old Windows Mobile OS (I think version 5).  On our old phones, I had installed an ebook reader that allowed me to copy and paste text from the books I was reading (no DRM, of course) to a word file.  The ebooks that would allow that were ebooks I had created myself.  This was a necessary feature for me because of how I read books &#8211; I copy and paste or highlight text then use that text when I&#8217;m done reading the book to write the book review.  So, imagine my disappointment when the two most highly rated ebook reading applications in the Android store &#8211; <a href="http://www.aldiko.com/" target="_blank">Aldiko</a> and <a href="http://www.appbrain.com/app/v00032.com.wordplayer" target="_blank">Wordplayer</a> &#8211; turned out not to have the ability to copy, paste, or highlight an ebook.  Wordplayer had the ability to add a bookmark, but that&#8217;s as close as I could get.  After some lengthy searching, I ended up right back at the application I used to use on my old Windows Mobile phone &#8211; <a href="http://www.ereader.com/ereader/home.htm" target="_blank">eReader</a>.  It turns out the free ebook reading app from eReader.com does have the ability to copy, paste, and highlight text in non-DRM books.  So, here are instructions on how to put an ebook on an Android phone in eReader.</p>
<ol>
<li>Create an account at <a href="http://www.ereader.com/ereader/home.htm" target="_blank">eReader.com</a>.  This is free and easy to do.</li>
<li>On your Android phone, click on &#8220;Settings&#8221; then &#8220;Applications&#8221;.  At the top of the list should be a checkbox for &#8220;Unknown sources: Allow installation of non-Market applications.&#8221;  Select that checkbox.  This is necessary because the eReader software is not in the Android Marketplace but downloadable directly from their website.</li>
<li>Using your phone&#8217;s browser, go to: <a href="http://www.ereader.com/android/" target="_blank">ereader.com/android</a></li>
<li>On that page you&#8217;ll see a link to download the software.  Select it.  The software will download.</li>
<li>Once it&#8217;s complete, select it and it will try to install and ask for your permission to install.  Give your permission and it should install.</li>
<li>You can now open the application on your phone, but in order to get your custom ebook into the eReader library you need to do a few more things.</li>
<li>Before you can import your ebook, you need to make sure it is in the PDB format (not sure why ebook producers haven&#8217;t decided on a universal format at this point, but eReader requires PDB format).</li>
<li>Luckily, there is an amazing piece of software I&#8217;ve recently discovered that allows you to convert pretty much any document into any ebook format: <a href="http://calibre-ebook.com/" target="_blank">Calibre</a>.  I&#8217;m really not trying to advertise for either eReader.com or Calibre, but if I were going to advertise for one of them, it would definitely be Calibre.  It&#8217;s free and amazing.  It&#8217;s a little tricky to use, but basically you can import any ebook format or document (in Word, RTF, PDF, etc.) and convert it into any other ebook format.  It&#8217;s really amazing.</li>
<li>So, import your document into Calibre and convert it into the PDB format. (I&#8217;m not going to provide directions on how to do this as you can see how on the Calibre website.)</li>
<li>You&#8217;ll then need to export your document to a specific location in the PDB format: right-click the book and select &#8220;Save to disk&#8221; -&gt; &#8220;Save single format to disk&#8221; -&gt; &#8220;PDB&#8221;</li>
<li>Calibre will allow you to choose your location.  Once you do, it will export the book to that location.</li>
<li>Now, go back to eReader.com and open your account.  Click on the link at the upper right for &#8220;Bookshelf&#8221;.</li>
<li>Inside your Bookshelf you&#8217;ll see a little box at the upper right that says &#8220;Personal Content for iPhone and iPod touch&#8221;.  Click on it.  (FYI, this works on the Android, so the &#8220;iPhone and iPod touch&#8221; line is irrelevant.)</li>
<li>On the new page it will give you directions for uploading a PDB file.  You just have to choose the file that you just exported from Calibre and upload it.  It takes a few minutes, but once it&#8217;s uploaded, it is added to your list of files. (This information came from this <a href="http://www.ereader.com/personal-content" target="_blank">page</a>.)</li>
<li>Now, how to get these files onto your Android device?  Open up the eReader application.  Select &#8220;Menu&#8221; then &#8220;Online Bookshelf.&#8221;  You should see your newly uploaded book on your Online Bookshelf.  Select it and it will download.  Et voila, you now have a custom made ebook on your Android device that you can highlight and copy and paste text from.</li>
</ol>
<p>For the average user, of course, you&#8217;re probably just going to buy books from various online marketplaces, like Amazon (using the Kindle app) or from eReader.com.  So, the above will likely be unnecessary.  But given the specific requirement of someone creating their own ebook that can be annotated, this is the way to do it on Android devices.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryananddebi.com/2010/07/13/android-an-e-book-reader-that-copies-pastes-and-highlights-text/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Google Chrome doesn&#8217;t work with YouTube?</title>
		<link>http://www.ryananddebi.com/2010/06/30/google-chrome-doesnt-work-with-youtube/</link>
		<comments>http://www.ryananddebi.com/2010/06/30/google-chrome-doesnt-work-with-youtube/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 14:24:34 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.ryananddebi.com/?p=4769</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Google+Chrome+doesn%26%238217%3Bt+work+with+YouTube%3F&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-06-30&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/06/30/google-chrome-doesnt-work-with-youtube/&amp;rft.language=English"></span>
Number of Views: 21I just received an email from YouTube inviting me to apply for &#8220;revenue sharing&#8221; for one of the videos I posted on that has quite a few views (about 15,000).  I followed the link to apply for revenue sharing and clicked through as much of the process as I could.  But I [...]]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Google+Chrome+doesn%26%238217%3Bt+work+with+YouTube%3F&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-06-30&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/06/30/google-chrome-doesnt-work-with-youtube/&amp;rft.language=English"></span>
Number of Views: 21<br/><p>I just received an email from YouTube inviting me to apply for &#8220;revenue sharing&#8221; for <a href="http://www.youtube.com/watch?v=sXRJA_bLPhU" target="_blank">one of the videos I posted on</a> that has quite a few views (about 15,000).  I followed the link to apply for revenue sharing and clicked through as much of the process as I could.  But I got to one screen that wouldn&#8217;t let me continue.  Basically, you need to select a radio button that will trigger another box to pop up for you to enter additional information (probably javascript).  I clicked on the radio button and nothing happened.  I figured it was a browser issue (despite the fact that I was using Google Chrome), so I fired up Firefox and tried the same application process with Firefox.  Still no luck.  My last recourse for browsers is always Internet Explorer.  Since I run Linux, I had to start up Virtualbox and then launch Internet Explorer in a virtual machine.  The result &#8211; it worked.  You can see the side-by-side photos of the two browsers here:</p>
<div id="attachment_4770" class="wp-caption alignnone" style="width: 310px"><a href="http://www.ryananddebi.com/wp-content/uploads/2010/06/Screenshot.png"><img class="size-medium wp-image-4770" title="Screenshot" src="http://www.ryananddebi.com/wp-content/uploads/2010/06/Screenshot-300x84.png" alt="" width="300" height="84" /></a><p class="wp-caption-text">Google Chrome is on the left; Internet Explorer is on the right (in Virtualbox)</p></div>
<p>Why is this funny?  Well, Google owns YouTube.  Google makes Google Chrome.  Ergo, one of Google&#8217;s websites doesn&#8217;t work with Google&#8217;s browser.  Instead, you have to use Internet Explorer, from Microsoft.  Ooops!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryananddebi.com/2010/06/30/google-chrome-doesnt-work-with-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu: xbindkeys to replace Firefox&#8217;s clippings extension</title>
		<link>http://www.ryananddebi.com/2010/06/04/ubuntu-xbindkeys-to-replace-firefoxs-clippings-extension/</link>
		<comments>http://www.ryananddebi.com/2010/06/04/ubuntu-xbindkeys-to-replace-firefoxs-clippings-extension/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 15:15:06 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.ryananddebi.com/?p=4538</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Ubuntu%3A+xbindkeys+to+replace+Firefox%26%238217%3Bs+clippings+extension&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-06-04&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/06/04/ubuntu-xbindkeys-to-replace-firefoxs-clippings-extension/&amp;rft.language=English"></span>
Number of Views: 28I&#8217;ve been a loyal user of Firefox for years and plan to still use it as my secondary browser (and will use it regularly for Zotero).  But Google&#8217;s new browser, Chrome, has really impressed me and I&#8217;m going to start using it as my primary browser for email, surfing the web, and [...]]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Ubuntu%3A+xbindkeys+to+replace+Firefox%26%238217%3Bs+clippings+extension&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-06-04&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/06/04/ubuntu-xbindkeys-to-replace-firefoxs-clippings-extension/&amp;rft.language=English"></span>
Number of Views: 28<br/><p>I&#8217;ve been a loyal user of Firefox for years and plan to still use it as my secondary browser (and will use it regularly for Zotero).  But Google&#8217;s new browser, <a href="http://www.google.com/chrome/intl/en/make/download.html?brand=CHKZ" target="_blank">Chrome</a>, has really impressed me and I&#8217;m going to start using it as my primary browser for email, surfing the web, and every day online activities.  Why is it better?  It&#8217;s faster, does a better job rendering flash on Linux, doesn&#8217;t require restarts to install extensions, and isolates tabs, so if one crashes it doesn&#8217;t kill all of your other tabs.  In short, Chrome has become a better browser than Firefox for everyday browsing.</p>
<p>I had held off switching to Chrome for several months because I was hoping someone would create a Chrome extension similar to <a href="https://addons.mozilla.org/en-US/firefox/addon/clippings/" target="_blank">clippings</a> for Firefox.  I&#8217;m still hoping someone will, but I figured out a way to work around it on Ubuntu Linux.  It&#8217;s not for the faint-of-heart or novice computer user, but it does work, and works quite well.  Basically, what I&#8217;ve done is installed some software that allows me to paste text into any window, unlike clippings, which only let me paste text into Firefox.</p>
<p>Here&#8217;s how you do it:</p>
<p>Ubuntu comes with some <a href="https://help.ubuntu.com/community/KeyboardShortcuts" target="_blank">cool keyboard shortcuts built in</a>, and includes the ability to customize a lot of those shortcuts.  But it doesn&#8217;t come with the ability to paste text as a keyboard shortcut with the default install (<a href="https://help.ubuntu.com/community/KeyboardShortcuts#Text%20Entry%20Shortcuts" target="_blank">learned this here</a>).  In order to do that, you need to install a program called &#8220;<a href="http://www.nongnu.org/xbindkeys/xbindkeys.html" target="_blank">xbindkeys</a>.&#8221;  While you&#8217;re at it, you may as well install the GUI for setting the keybindings &#8220;xbindkeys-config&#8221; and the program you&#8217;ll use to generate the text &#8220;<a href="http://homepage3.nifty.com/tsato/xvkbd/">xvkbd</a>&#8220;.  You can install them all at once from the terminal (or find them in the Synaptic Package Manager and install them there):</p>
<blockquote><p>$  sudo apt-get install xbindkeys xbindkeys-config xvkbd</p></blockquote>
<p>Once you&#8217;ve installed &#8220;xbindkeys,&#8221; the first thing you need to do is create a default configuration file for it from the terminal:</p>
<blockquote><p>$  xbindkeys -d &gt; /home/<em><strong>your-user-name</strong></em>/.xbindkeysrc</p></blockquote>
<p>Once that&#8217;s done, go ahead and open the xbindkeys GUI by typing the following at the terminal:</p>
<blockquote><p>$  xbindkeys-config</p></blockquote>
<p>This will pull up the xbindkeys GUI:</p>
<p><a href="http://www.ryananddebi.com/wp-content/uploads/2010/06/xbindkeys1.png"><img class="alignnone size-medium wp-image-4539" title="xbindkeys1" src="http://www.ryananddebi.com/wp-content/uploads/2010/06/xbindkeys1-300x246.png" alt="" width="300" height="246" /></a></p>
<p>In here, you can create the key bindings to generate the text you want.  This involves 6 steps.</p>
<p>1) At the bottom of the GUI, select &#8220;New&#8221;:</p>
<p><a href="http://www.ryananddebi.com/wp-content/uploads/2010/06/xbindkeys2.png"><img class="alignnone size-medium wp-image-4540" title="xbindkeys2" src="http://www.ryananddebi.com/wp-content/uploads/2010/06/xbindkeys2-300x37.png" alt="" width="300" height="37" /></a></p>
<p>A new line in the list of keybindings will appear.  Select it.</p>
<p>2) At the top right, choose a name for the keybinding and put it in the field labeled &#8220;Name:&#8221;</p>
<p><a href="http://www.ryananddebi.com/wp-content/uploads/2010/06/xbindkeys3.png"><img class="alignnone size-medium wp-image-4541" title="xbindkeys3" src="http://www.ryananddebi.com/wp-content/uploads/2010/06/xbindkeys3-300x106.png" alt="" width="300" height="106" /></a></p>
<p>I don&#8217;t know that the name you choose here is particularly important, but you should probably make it something you&#8217;ll recognize.</p>
<p>3) Set the key binding.  the xbindkeys GUI includes the ability to capture key combinations.  All you have to do is press the &#8220;Get Key&#8221; button, wait a second for a small window to pop up, then press the desired key combination (e.g., Control+Mod2+Mod4+1).  The GUI should capture everything for you correctly.  The key combination will be coded into the language xbindkeys understands and will be put in the &#8220;Key:&#8221; field (e.g., Control+Mod2+Mod4+1 | m:Ox54 + c:10).  What all of the code in the &#8220;Key:&#8221; field means, I&#8217;m not sure, but some of it is explained in the actual configuration file (which you created above; it&#8217;s located here: /home/<em><strong>your-user-name</strong></em>/.xbindkeysrc).</p>
<p>4) You then need to tell xbindkeys what to do when you press the key combination you just set up (this is called the &#8220;Action&#8221;).  In order to paste text into a window, you have to actually call up a different program, which is why we installed it earlier.  That program is xvkbd, an on-screen keyboard program.  You won&#8217;t see the keyboard when you press the key combination, but it does generate the text for you.  Here&#8217;s the command you use in the &#8220;Action:&#8221; field to generate text:</p>
<blockquote><p>xvkbd -xsendevent -text &#8220;<strong><em>your text here</em></strong>&#8220;</p></blockquote>
<p>The first part &#8220;xvkbd&#8221; opens the xvkbd program.  The second part &#8220;-xsendevent&#8221; tells it to send an event to the X window. The third part &#8220;-text&#8221; tells it what type of event &#8211; text.</p>
<p>A couple of notes on the text you can include using this command are in order.  First, you can put pretty much anything you want inside the quotes, except additional quotes, which the program doesn&#8217;t seem to recognize are quotes inside the quotes.  So, don&#8217;t try quotes inside quotes.  You can also include things like &#8220;Return&#8221; and &#8220;Tab.&#8221;  I couldn&#8217;t figure out how to do that initially, which is why I ended up writing this tutorial.  What I wanted to include in the text I was pasting was the text I usually include in my email signature:</p>
<blockquote><p>Best,</p>
<p>Ryan</p></blockquote>
<p>I was able to include the text, but couldn&#8217;t figure out how to include the line break.  So, what I was initially getting when I pressed my key combination was:</p>
<blockquote><p>Best,Ryan</p></blockquote>
<p>I initially thought, erroneously, that the command for &#8220;Return&#8221; would be included in xbindkeys list of commands.  Nope.  The command for &#8220;Return&#8221; is part of xvkbd.  I eventually found it on <a href="http://homepage3.nifty.com/tsato/xvkbd/#quick-modifiers" target="_blank">that software&#8217;s website</a>: \r.  So, if you want to create something like an email signature with a line break, here&#8217;s how it would look:</p>
<blockquote><p>xvkbd -xsendevent -text &#8220;Best,\r\rRyan&#8221;</p></blockquote>
<p>Note I&#8217;ve included two Return commands (i.e., &#8220;\r\r&#8221;) as one will just return me to the next line.  I needed 2 for a blank line between &#8220;Best,&#8221; and &#8220;Ryan.&#8221;</p>
<p>5) You&#8217;re not quite done at this point.  I found the GUI for xbindkeys to be a bit buggy.  Before you do anything else, you should hit the buttons &#8220;Apply&#8221; and &#8220;Save &amp; Apply &amp; Exit&#8221;:</p>
<p><a href="http://www.ryananddebi.com/wp-content/uploads/2010/06/xbindkeys4.png"><img class="alignnone size-medium wp-image-4542" title="xbindkeys4" src="http://www.ryananddebi.com/wp-content/uploads/2010/06/xbindkeys4-300x44.png" alt="" width="300" height="44" /></a></p>
<p>This will close the program, but it will also make sure that everything you just typed in will be saved in the configuration file.  I have 5 different keyboard bindings for text I use regularly, 3 email signatures and 2 other text snippets.  I created the first email signature, then started on the second and the GUI crashed, losing all my work.  So, just hit the &#8220;Apply&#8221; and &#8220;Save &amp; Apply &amp; Exit&#8221; button after every keyboard binding you create just to be safe.</p>
<p>6) Test it.  Open up a file or browser and try your keyboard combinations.  If the text is pasted in &#8211; voila, you&#8217;re done.  If not, well, you did something wrong or, well, who knows.  The nice thing about this approach is that it is browser agnostic &#8211; it will paste your text into any browser or any other text input box for that matter.</p>
<p><strong>Notes:</strong></p>
<p>There are a couple of additional things you should do with xbindkeys before you&#8217;re done.  First, a nifty keybinding that is included in the default configuration file is &#8220;CONTROL+SHIFT+q&#8221;, which opens up a list of all of your current keybindings:</p>
<p><a href="http://www.ryananddebi.com/wp-content/uploads/2010/06/xbindkeys5.png"><img class="alignnone size-full wp-image-4543" title="xbindkeys5" src="http://www.ryananddebi.com/wp-content/uploads/2010/06/xbindkeys5.png" alt="" width="418" height="479" /></a></p>
<p>This isn&#8217;t all that important to know, but it is a nice little feature.</p>
<p>You should also know that you can edit your configuration file by hand, though doing so is a bit tricky as the code for the key combinations isn&#8217;t all that intuitive.  To do so, use the following command at the terminal:</p>
<blockquote><p>$ gedit /home/<em><strong>your-user-name</strong></em>/.xbindkeysrc</p></blockquote>
<p>Finally, once you&#8217;ve gotten everything working, if you want to make sure xbindkeys starts when you boot your computer, add it to the Startup Applications: &#8220;System -&gt; Preferences -&gt; Startup Applications&#8221;</p>
<p><a href="http://www.ryananddebi.com/wp-content/uploads/2010/06/xbindkeys6.png"><img class="alignnone size-medium wp-image-4544" title="xbindkeys6" src="http://www.ryananddebi.com/wp-content/uploads/2010/06/xbindkeys6-300x243.png" alt="" width="300" height="243" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryananddebi.com/2010/06/04/ubuntu-xbindkeys-to-replace-firefoxs-clippings-extension/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>HTC Droid Incredible &#8211; additional thoughts</title>
		<link>http://www.ryananddebi.com/2010/05/31/htc-droid-incredible-additional-thoughts/</link>
		<comments>http://www.ryananddebi.com/2010/05/31/htc-droid-incredible-additional-thoughts/#comments</comments>
		<pubDate>Mon, 31 May 2010 13:00:12 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.ryananddebi.com/?p=4517</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=HTC+Droid+Incredible+%26%238211%3B+additional+thoughts&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-05-31&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/05/31/htc-droid-incredible-additional-thoughts/&amp;rft.language=English"></span>
Number of Views: 7I posted before about our new phones &#8211; HTC Droid Incredibles.  Perhaps I&#8217;m just trying to justify the purchase to myself, but I&#8217;ve figured out a few new tricks with the phone that are worth mentioning. Perhaps the coolest feature I&#8217;ve found recently, which really makes this a smart phone, is what [...]]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=HTC+Droid+Incredible+%26%238211%3B+additional+thoughts&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=technology&amp;rft.source=Ryan%2C+Debi%2C+and+Toren+Cragun%26%23039%3Bs+Blog&amp;rft.date=2010-05-31&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://www.ryananddebi.com/2010/05/31/htc-droid-incredible-additional-thoughts/&amp;rft.language=English"></span>
Number of Views: 7<br/><p>I posted before about our new phones &#8211; <a href="http://www.ryananddebi.com/2010/05/15/one-phone-to-rule-them-all/" target="_blank">HTC Droid Incredibles</a>.  Perhaps I&#8217;m just trying to justify the purchase to myself, but I&#8217;ve figured out a few new tricks with the phone that are worth mentioning.</p>
<p>Perhaps the coolest feature I&#8217;ve found recently, which really makes this a smart phone, is what it does when you connect it via the USB cable to a computer.  By default, the phone just starts charging.  But it also includes in the message bar a note saying that you can change the mode.  What does that mean, you ask?  Well, it gives you several optional things you can do.  One, of course, is just to charge the phone via USB.  Another is to sync your contacts and calendar (I&#8217;m guessing that is probably Windows only, but I don&#8217;t know &#8211; I use the Gmail contacts and Google Calendar, which are always synced, so I didn&#8217;t bother).</p>
<p>Another option is to have your phone appear as an external hard drive to your computer.  That&#8217;s the option I went with as I wanted to drag some music onto my phone.  I was thinking it was going to be a pain in the butt to get the music on &#8211; nope.  Once I clicked that option, Ubuntu (my Linux operating system), instantly recognized two external hard drives &#8211; the built in 8gb of memory for the phone and the 16gb of additional memory I have since added.  I then created a folder on the SD card called &#8220;Music&#8221; and drug about 4gb of music into the folder.  When I finished, I opened up the &#8220;Music&#8221; app and it started scanning my memory for music.  It took a bit of time, but it eventually indexed all 4gb of music I added (without me having to tell it where to find it), and organized it all by Artist/Genre/Album/Song, etc.  Slick!</p>
<p>Another option that is available when you plug the phone into your computer is to tether your computer to your phone.  For those not in the know, what that means is that you can have your computer use your 3G wireless internet access through your phone.  So, say, you&#8217;re in the airport and you want to do some surfing but you&#8217;re not in a cool airport like TPA (Tampa&#8217;s airport rocks &#8211; free wi-fi) and you don&#8217;t want to shell out $XX.XX for 10 minutes of internet browsing.  No problem.  Plug your phone into your computer via the USB cable, select the tether option, and surf away.  I haven&#8217;t tried it, but my guess is that it would work just fine.  How fracking cool is that!?!  Eat that iPhone users!</p>
<p>Other stuff I&#8217;ve tried on the phone lately&#8230;  I&#8217;ve taken a few pictures.  The picture quality is okay, not great, but uploading and sharing the photos is a snap.  Click on any photo and say &#8220;share&#8221; and it gives you a list of options, including emailing it to yourself.  The same goes for videos.  The last few videos I&#8217;ve posted have all been taken on my HTC Droid Incredible as it was the closest video camera when I saw Toren doing something cool.  The best part about sharing the videos and pictures: you can choose multiple videos/pics and share them at the same time.  I did have some hiccups trying to upload multiple videos to youtube &#8211; it stopped after each video and needed me to re-prompt it.  But they all still uploaded fine.</p>
<p>I&#8217;m also not sure if I&#8217;ve raved enough about the Google Navigation feature and its tie-in to Google Maps.  Search for something in Google Maps, find it, click on it and then you have every option you could want: contact information, directions, navigation, web pages, etc.  And the transition from maps to navigation is seamless.</p>
<p>Finally, the multi-tasking feature is really impressive.  I can listen to podcasts while letting Google Navigation give me directions.  The only problem: Once the Google Navigation voice kicks in to give me directions, it doesn&#8217;t pause the music/podcast, it just mutes the other and takes precedent.  That it takes precedent is great, but adding a quick pause so I don&#8217;t miss anything in my other audio program would be a nice feature.</p>
<p>Okay, enough raving about my new phone&#8230;  I&#8217;ll probably have more to say on this, but that&#8217;s plenty for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryananddebi.com/2010/05/31/htc-droid-incredible-additional-thoughts/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

