<?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>Digitivity &#187; HowTo</title>
	<atom:link href="http://digitivity.org/category/how-to/feed" rel="self" type="application/rss+xml" />
	<link>http://digitivity.org</link>
	<description>The Digital Productivity Blog</description>
	<lastBuildDate>Sat, 24 Dec 2011 17:34:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Manually Add Hosts in Windows, Linux, and OS/X</title>
		<link>http://digitivity.org/964/how-to-manually-add-etc-host-ip-address-in-windows-linux-and-osx</link>
		<comments>http://digitivity.org/964/how-to-manually-add-etc-host-ip-address-in-windows-linux-and-osx#comments</comments>
		<pubDate>Mon, 24 May 2010 17:50:53 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[etc/hosts]]></category>
		<category><![CDATA[hostname]]></category>
		<category><![CDATA[hosts]]></category>
		<category><![CDATA[IP address]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS/X]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=964</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/how-to" title="HowTo">HowTo</a></p>Normally when you want to access a server on the Internet, you specify its name, like "www.google.com". What actually happens behind the scenes is that your computer finds out the "IP address" of where you want to go. The IP address is like the "telephone number" of a server. The IP address for Google is <a href="http://64.233.181.104/">64.233.181.104</a> .

Read on to find out how to set IP address manually.


Related posts:<ol><li><a href='http://digitivity.org/965/microsoft-finally-wants-you-to-ditch-ie6-upgrade-message' rel='bookmark' title='Permanent Link: Microsoft (Finally) Wants You to Ditch IE6'>Microsoft (Finally) Wants You to Ditch IE6</a></li>
<li><a href='http://digitivity.org/321/my-windows-xp-gets-virus-infected-conficker-mem-sasser' rel='bookmark' title='Permanent Link: My Windows XP Gets Virus Infected'>My Windows XP Gets Virus Infected</a></li>
<li><a href='http://digitivity.org/641/how-to-install-miro-podcast-viewer-on-windows' rel='bookmark' title='Permanent Link: How to Install Miro Podcast Viewer on Windows'>How to Install Miro Podcast Viewer on Windows</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Normally when you want to access a server on the Internet, you specify its name, like &#8220;www.google.com&#8221;. What actually happens behind the scenes is that your computer finds out the &#8220;IP address&#8221; of where you want to go. The IP address is like the &#8220;telephone number&#8221; of a server. The IP address for Google is <a href="http://64.233.181.104/">64.233.181.104</a> .</p>
<p>Go ahead and try it, you&#8217;ll end up at Google.</p>
<p>If the IP address is a &#8220;telephone number&#8221;, then the name (like the name you enter for a number in your cell phone) is called a host name. &#8220;Host&#8221; is just another word for server or computer.</p>
<p>Anyway, normally all of this works automagically, and you don&#8217;t even notice it. Once in a while it may not, for example, in a home network, thus forcing you to type in numbers instead of names.</p>
<p>There&#8217;s a way to set hostnames to IP addresses manually.</p>
<h3>The hosts file</h3>
<p>It&#8217;s called a &#8220;hosts&#8221; file, and it works generally the same on Windows, Linux/Unix, and Mac OS/X.</p>
<p>The hosts file is a list of IP addresses followed by hostnames, separated by a space, like this:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">64.233.181.104 www.google.com
192.168.0.4 myhomecomputer</pre></div></div>

<p>By the way, there&#8217;s a neat little trick you can use to block ads by setting the address of adservers, like Double Click&#8217;s, to your local computer:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">127.0.0.1 ad.doubleclick.net</pre></div></div>

<p>Note: 127.0.0.1 is a special address that always refers to your own computer.</p>
<p>The hosts file&#8217;s location differs from system to system:</p>
<h3>Setting hosts/IP address on Windows</h3>
<p>On Windows 95, 98, and ME, the host file is at <tt>c:\windows\hosts</tt> .</p>
<p>On Windows NT, 2000, XP, Vista, and 7, it&#8217;s at <tt>C:\windows\system32\drivers\etc\hosts</tt> .</p>
<p><a href="C:\windows\system32\drivers\etc\hosts">View your hosts file</a></p>
<p>You can modify it with Notepad (Accessories menu).</p>
<h3>Setting hosts/IP address on Mac OS/X</h3>
<p>In Mac OS X 10.2 or later, hosts is at <tt>/private/etc/hosts</tt></p>
<p>To edit it, type this into a <a href="http://macapper.com/2007/03/08/the-terminal-an-introduction/">terminal</a> (Applications > Utilities > Terminal)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">nano</span></pre></div></div>

<p>Enter your own password if prompted, add a hostname entry, then press Ctrl+x to exit the editor, and save the modified file by pressing &#8220;y&#8221;.</p>
<p>You have to then flush the DNS cache (OS/X doesn&#8217;t do that automatically):</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> dscacheutil <span style="color: #660033;">-flushcache</span></pre></div></div>

<p>More info: <a href="http://support.apple.com/kb/TA27291">http://support.apple.com/kb/TA27291</a><br />
<a href="http://www.leftcolumn.net/2009/07/04/adding-an-entry-to-etchosts-on-os-x/">http://www.leftcolumn.net/2009/07/04/adding-an-entry-to-etchosts-on-os-x/</a></p>
<h3>Setting hosts/IP address on Linux/Ubuntu/Unix</h3>
<p>On Linux and all other Unixes, hosts is at<br />
<tt>/etc/hosts</tt> . </p>
<p><a href="/etc/hosts">View your hosts file</a></p>
<p>You have to have either sudo or root privileges to edit it.</p>


<p>Related posts:<ol><li><a href='http://digitivity.org/965/microsoft-finally-wants-you-to-ditch-ie6-upgrade-message' rel='bookmark' title='Permanent Link: Microsoft (Finally) Wants You to Ditch IE6'>Microsoft (Finally) Wants You to Ditch IE6</a></li>
<li><a href='http://digitivity.org/321/my-windows-xp-gets-virus-infected-conficker-mem-sasser' rel='bookmark' title='Permanent Link: My Windows XP Gets Virus Infected'>My Windows XP Gets Virus Infected</a></li>
<li><a href='http://digitivity.org/641/how-to-install-miro-podcast-viewer-on-windows' rel='bookmark' title='Permanent Link: How to Install Miro Podcast Viewer on Windows'>How to Install Miro Podcast Viewer on Windows</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/964/how-to-manually-add-etc-host-ip-address-in-windows-linux-and-osx/feed</wfw:commentRss>
		<slash:comments>114</slash:comments>
		</item>
		<item>
		<title>How to Download Movies with BitTorrent Using Miro</title>
		<link>http://digitivity.org/737/how-to-download-movies-with-bittorrent-using-miro</link>
		<comments>http://digitivity.org/737/how-to-download-movies-with-bittorrent-using-miro#comments</comments>
		<pubDate>Wed, 27 Jan 2010 16:48:52 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[BitTorrent]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[Miro]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[torrent]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=737</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/how-to" title="HowTo">HowTo</a></p>I covered <a href="http://digitivity.org/641/how-to-install-miro-podcast-viewer-on-windows">installing Miro on Windows</a> the other day.

<a href="http://www.getmiro.com/download/">Miro</a> is a free and open source <strong>podcast downloader and viewer</strong>. But did you know you can also download and view <strong>torrents</strong> in Miro?



Related posts:<ol><li><a href='http://digitivity.org/641/how-to-install-miro-podcast-viewer-on-windows' rel='bookmark' title='Permanent Link: How to Install Miro Podcast Viewer on Windows'>How to Install Miro Podcast Viewer on Windows</a></li>
<li><a href='http://digitivity.org/908/download-install-multiple-free-apps-with-ninite-for-windows' rel='bookmark' title='Permanent Link: Download &#038; Install Multiple Free Apps with Ninite for Windows'>Download &#038; Install Multiple Free Apps with Ninite for Windows</a></li>
<li><a href='http://digitivity.org/8/how-to-play-a-quicktime-movie-that-isnt-playing-in-your-browser' rel='bookmark' title='Permanent Link: How to Play a Quicktime Movie That Isn&#8217;t Playing in Your Browser'>How to Play a Quicktime Movie That Isn&#8217;t Playing in Your Browser</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I covered <a href="http://digitivity.org/641/how-to-install-miro-podcast-viewer-on-windows">installing Miro on Windows</a> the other day.</p>
<p><a href="http://www.getmiro.com/download/">Miro</a> is a free and open source <strong>podcast downloader and viewer</strong>. You can also download and view <strong>torrents</strong> in Miro.</p>
<p><strong>BitTorrent</strong> is a <strong>peer-to-peer</strong> media sharing network. </p>
<p>I wrote a guest post for the What&#8217;s Good Blog about BitTorrent and <strong>Miro</strong>.</p>
<p>Read about how to <a href="http://www.whatsgoodblog.com/2010/01/how-to-use-bittorrent-to-download-movies-a-guest-post-by-digitivity-org/">download movies with BitTorrent using Miro</a> on the What&#8217;s Good Blog.</p>


<p>Related posts:<ol><li><a href='http://digitivity.org/641/how-to-install-miro-podcast-viewer-on-windows' rel='bookmark' title='Permanent Link: How to Install Miro Podcast Viewer on Windows'>How to Install Miro Podcast Viewer on Windows</a></li>
<li><a href='http://digitivity.org/908/download-install-multiple-free-apps-with-ninite-for-windows' rel='bookmark' title='Permanent Link: Download &#038; Install Multiple Free Apps with Ninite for Windows'>Download &#038; Install Multiple Free Apps with Ninite for Windows</a></li>
<li><a href='http://digitivity.org/8/how-to-play-a-quicktime-movie-that-isnt-playing-in-your-browser' rel='bookmark' title='Permanent Link: How to Play a Quicktime Movie That Isn&#8217;t Playing in Your Browser'>How to Play a Quicktime Movie That Isn&#8217;t Playing in Your Browser</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/737/how-to-download-movies-with-bittorrent-using-miro/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>How to Claim Your Blog on Technorati</title>
		<link>http://digitivity.org/699/how-to-claim-your-blog-in-technorati</link>
		<comments>http://digitivity.org/699/how-to-claim-your-blog-in-technorati#comments</comments>
		<pubDate>Fri, 22 Jan 2010 17:29:14 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[claim]]></category>
		<category><![CDATA[Technorati]]></category>
		<category><![CDATA[Technorati account]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[website promotion]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=699</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/how-to" title="HowTo">HowTo</a></p>Once you&#8217;ve signed up for a Technorati account, you should claim your blog. Claiming your blog allows you to use Technorati tags to drive traffic to your blog from Technorati, which is the biggest blog search engine and aggregation site on the Internet. Before Technorati associates a given blog on the Internet with your Technorati [...]


Related posts:<ol><li><a href='http://digitivity.org/811/check-if-your-blog-is-working-with-ismyblogworking-com' rel='bookmark' title='Permanent Link: Check If Your Blog Is Working with ismyblogworking.com'>Check If Your Blog Is Working with ismyblogworking.com</a></li>
<li><a href='http://digitivity.org/10/how-to-serve-your-wordpress-blog-from-the-root-directory-if-its-installed-in-a-subdirectory' rel='bookmark' title='Permanent Link: How to Serve Your WordPress Blog from the Root Directory If It&#8217;s Installed in a Subdirectory'>How to Serve Your WordPress Blog from the Root Directory If It&#8217;s Installed in a Subdirectory</a></li>
<li><a href='http://digitivity.org/781/dreamhost-server-problems-status-rss' rel='bookmark' title='Permanent Link: Dreamhost Problems Status RSS'>Dreamhost Problems Status RSS</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Once you&#8217;ve signed up for a <strong>Technorati</strong> account, you should <strong>claim your blog</strong>.</p>
<p>Claiming your blog allows you to use Technorati tags to <strong>drive traffic</strong> to your blog from Technorati, which is the <strong>biggest blog search engine</strong> and aggregation site on the Internet.</p>
<p>Before Technorati associates a given blog on the Internet with your Technorati account, it needs to <strong>verify</strong> that that blog is under your control. It does this by giving you a <strong>unique code</strong>, and asking you to use that code within a blog post.</p>
<p>Once you post the code, you tell Technorati to check your blog.</p>
<h2>Claiming Your Blog</h2>
<p>After you&#8217;ve signed up for an account at <a href="http://technorati.com/account/signup/">http://technorati.com/account/signup/</a> , go to your Technorati account profile at <a href="http://technorati.com/account/">http://technorati.com/account/</a> and</p>
<p>Click on &#8220;<strong>Claim a blog</strong>&#8221; and enter your blog address (with the http://).</p>
<p>Technorati tells you that it&#8217;ll send you an <strong>e-mail</strong> with blog claim instructions:</p>
<div id="attachment_701" class="wp-caption alignnone" style="width: 522px"><a href="http://digitivity.org/blog/wp-content/uploads/2010/01/technorati-claim-blog-claim-status.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/01/technorati-claim-blog-claim-status-512x186.png" alt="Claim Technorati Blog: Claim Status" title="Claim Technorati Blog: Claim Status" width="512" height="186" class="size-medium wp-image-701" /></a><p class="wp-caption-text">Claim Technorati Blog: Claim Status</p></div>
<p>In my case it was about 15 minutes before I received the e-mail.</p>
<p>The e-mail tells you to use a specific code and also check your account profile for more info:</p>
<div id="attachment_702" class="wp-caption alignnone" style="width: 522px"><a href="http://digitivity.org/blog/wp-content/uploads/2010/01/technorati-claim-blog-email.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/01/technorati-claim-blog-email-512x152.png" alt="Claim Technorati Blog: Claim E-mail" title="Claim Technorati Blog: Claim E-mail" width="512" height="152" class="size-medium wp-image-702" /></a><p class="wp-caption-text">Claim Technorati Blog: Claim E-mail</p></div>
<p>When you go to your Technorati <strong>account profile</strong> for more information, click on &#8220;<strong>Check Claim</strong>&#8220;.</p>
<p>You&#8217;re shown your blog&#8217;s claim status:</p>
<div id="attachment_705" class="wp-caption alignnone" style="width: 522px"><a href="http://digitivity.org/blog/wp-content/uploads/2010/01/technorati-claim-blog-claim-status-2.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/01/technorati-claim-blog-claim-status-2-512x322.png" alt="Claim Technorati Blog: Blog Claim Status (2)" title="Claim Technorati Blog: Blog Claim Status (2)" width="512" height="322" class="size-medium wp-image-705" /></a><p class="wp-caption-text">Claim Technorati Blog: Blog Claim Status (2)</p></div>
<p>Here&#8217;s what it says</p>
<blockquote><p>Technorati will need to verify that you are an author of the blog by looking for a unique code. Please put the following <strong>short code</strong> MFD767KGRM88 within a new blog post and publish it
</p></blockquote>
<p>All this means is that you need need to have the claim code in the text of your blog entry. For me, I&#8217;ve already done that since the code is quoted above.</p>
<p>After you&#8217;ve published the blog entry with the claim code, go back to the claim status page and click the Verify Claim Token button.</p>
<div id="attachment_706" class="wp-caption alignnone" style="width: 522px"><a href="http://digitivity.org/blog/wp-content/uploads/2010/01/technorati-claim-blog-verify-claim1.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/01/technorati-claim-blog-verify-claim1-512x127.png" alt="Claim Technorati Blog: Verify Claim" title="Claim Technorati Blog: Verify Claim" width="512" height="127" class="size-medium wp-image-706" /></a><p class="wp-caption-text">Claim Technorati Blog: Verify Claim</p></div>
<p>Technorati then goes to your web site and verifies your claim token.</p>


<p>Related posts:<ol><li><a href='http://digitivity.org/811/check-if-your-blog-is-working-with-ismyblogworking-com' rel='bookmark' title='Permanent Link: Check If Your Blog Is Working with ismyblogworking.com'>Check If Your Blog Is Working with ismyblogworking.com</a></li>
<li><a href='http://digitivity.org/10/how-to-serve-your-wordpress-blog-from-the-root-directory-if-its-installed-in-a-subdirectory' rel='bookmark' title='Permanent Link: How to Serve Your WordPress Blog from the Root Directory If It&#8217;s Installed in a Subdirectory'>How to Serve Your WordPress Blog from the Root Directory If It&#8217;s Installed in a Subdirectory</a></li>
<li><a href='http://digitivity.org/781/dreamhost-server-problems-status-rss' rel='bookmark' title='Permanent Link: Dreamhost Problems Status RSS'>Dreamhost Problems Status RSS</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/699/how-to-claim-your-blog-in-technorati/feed</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME</title>
		<link>http://digitivity.org/602/enabling-ctrlaltbackspace-to-kill-x-in-linux-and-ubuntu-gnome</link>
		<comments>http://digitivity.org/602/enabling-ctrlaltbackspace-to-kill-x-in-linux-and-ubuntu-gnome#comments</comments>
		<pubDate>Sat, 16 Jan 2010 13:11:07 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Alt+SysRq+R]]></category>
		<category><![CDATA[Ctrl+Alt+Backspace]]></category>
		<category><![CDATA[Ctrl+Alt+F1]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[kill]]></category>
		<category><![CDATA[killall]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[X]]></category>
		<category><![CDATA[X server]]></category>
		<category><![CDATA[X.org]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=602</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/how-to" title="HowTo">HowTo</a></p>Earlier this year, X.org made a boneheaded move to drop the Ctrl+Alt+Backspace key combination as a default for killing the X Server. Huh? The X Server is the part of a Linux operating environment that provides graphics. Once in a while it may lock up, usually due to bad drivers. Other times programs just happen [...]


Related posts:<ol><li><a href='http://digitivity.org/848/ubuntu-gnome-panel-doesnt-autohide-solution' rel='bookmark' title='Permanent Link: Ubuntu GNOME Panel Doesn&#8217;t AutoHide [SOLUTION]'>Ubuntu GNOME Panel Doesn&#8217;t AutoHide [SOLUTION]</a></li>
<li><a href='http://digitivity.org/546/ubuntu-release-schedule-explained' rel='bookmark' title='Permanent Link: Ubuntu Release Schedule Explained'>Ubuntu Release Schedule Explained</a></li>
<li><a href='http://digitivity.org/976/gnome-3-no-minimize-maximize-buttons' rel='bookmark' title='Permanent Link: GNOME 3: No Minimize, Maximize Buttons'>GNOME 3: No Minimize, Maximize Buttons</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Earlier this year, X.org made a boneheaded move to drop the <strong>Ctrl+Alt+Backspace</strong> key combination as a default for killing the X Server.</p>
<h2>Huh?</h2>
<p>The <strong>X Server</strong> is the part of a Linux operating environment that provides graphics. Once in a while it may lock up, usually due to bad drivers. Other times programs just happen to be taking up all memory, or other problems that you don&#8217;t want to wait for ever to resolve by themselves. A quick fix is to just <strong>kill X</strong> (which also kills graphical applications), and restart it. (You don&#8217;t have to restart it, even, in distributions that are set up that way. In Ubuntu, X starts up again automatically.)</p>
<p><a href="http://digitivity.org/blog/wp-content/uploads/2010/01/another-explosion-in-space.jpg"><img src="http://digitivity.org/blog/wp-content/uploads/2010/01/another-explosion-in-space.jpg" alt="" title="Beginning of time" width="300" height="212" class="alignnone size-full wp-image-605" style="float: left; margin-right: 7px; margin-bottom: 7px; margin-top: 0px; " /></a>OK, ever since the beginning the time or of Linux, or something like that, <strong>Ctrl+Alt+Backspace</strong> has been the key combination to kill X. Earlier, this year, though, somebody (who shall remain nameless to prevent the ire of countless old Linux hands) changed X.org (the X server most often used with Linux) to not respond to Ctrl+Alt+Backspace.</p>
<p>I thought that the reasoning behind the move was ridiculous. It had something to do with Windows users accidentally hitting Ctrl+Alt+Backspace (does anybody do that?) and with a conflict with some Emacs key combinations.</p>
<p>Here&#8217;s what one upset user <a href="http://lists.x.org/archives/xorg-devel/2009-March/000522.html">said</a>:</p>
<blockquote><p>I will tell you that this argument about<br />
confusion is totally bogus from an entire Linux community standpoint. The Emacs community is miniscule in size comparison to the overall Linux community.  In over thirty years of working with *nix systems and thousands of users and machines not once has a user ever complained about confusion or problems involving the Ctrl-Alt-Backspace key combination.  I am concerned because it appears that a tiny minority of Emac users have managed to lobby for a very significant change in default behavior for X server control to the detriment of the majority of users and administrators in the Linux  community.</p></blockquote>
<h2>Disabling X&#8217;s DontZap to reenable Ctrl+Alt+Backspace</h2>
<p>The response was that you can reenable <strong>Ctrl+Alt+Backspace</strong> by making an entry in <strong>/etc/xorg.conf</strong>, the X configuration file:</p>

<div class="wp_syntax"><div class="code"><pre class="xorg_conf" style="font-family:monospace;"><span style="color: #b1b100;">Section</span> <span style="color: #0000ff;">&quot;ServerFlags&quot;</span>
<span style="color: #990000;">Option</span> <span style="color: #0000ff;">&quot;DontZap&quot;</span> <span style="color: #0000ff;">&quot;false&quot;</span>
<span style="color: #b1b100;">EndSection</span></pre></div></div>

<p>Well, OK, but the point was about the defaults. By default it would be handy to have Ctrl+Alt+Backspace already enabled so you can use it when you have a crash. Or when someone else does so you can tell them what to do about it.</p>
<p>Anyway, there&#8217;s one small problem: there&#8217;s no DontZap option anymore! They took that one away too!</p>
<p>Actually, they put the option into XKB (keyboard manager).</p>
<h2>Reenable Ctrl+Alt+Backspace in GNOME/Ubuntu</h2>
<p>In Ubuntu Karmic 9.10 (and probably other distributions running the GNOME desktop environment), it&#8217;s very easy to reenable <strong>Ctrl+Alt+Backspace</strong>. Just open the keyboard preferences dialog from the System: Preferences menu:</p>
<div id="attachment_606" class="wp-caption alignnone" style="width: 438px"><a href="http://digitivity.org/blog/wp-content/uploads/2010/01/ubuntu-karmic-opening-keyboard-preferences.jpg"><img src="http://digitivity.org/blog/wp-content/uploads/2010/01/ubuntu-karmic-opening-keyboard-preferences.jpg" alt="Ubuntu Karmic: Opening Keyboard Preferences" title="Ubuntu Karmic: Opening Keyboard Preferences" width="428" height="388" class="size-full wp-image-606" /></a><p class="wp-caption-text">Ubuntu Karmic: Opening Keyboard Preferences</p></div>
<p>On the Layouts tab, hit Layout Options:</p>
<div id="attachment_610" class="wp-caption alignnone" style="width: 491px"><a href="http://digitivity.org/blog/wp-content/uploads/2010/01/ubuntu-karmic-keyboard-preferences.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/01/ubuntu-karmic-keyboard-preferences.png" alt="Ubuntu Karmic: Keyboard Preferences" title="Ubuntu Karmic: Keyboard Preferences" width="481" height="521" class="size-full wp-image-610" /></a><p class="wp-caption-text">Ubuntu Karmic: Keyboard Preferences</p></div>
<p>This brings up the Keyboard Layout Options dialog.</p>
<div id="attachment_608" class="wp-caption alignnone" style="width: 522px"><a href="http://digitivity.org/blog/wp-content/uploads/2010/01/keyboard-layout-options-ctrl-alt-backspace-x-server.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/01/keyboard-layout-options-ctrl-alt-backspace-x-server-512x392.png" alt="Ubuntu Karmic: Keyboard Layout Options: Ctrl-Alt-Backspace" title="Ubuntu Karmic: Keyboard Layout Options: Ctrl-Alt-Backspace" width="512" height="392" class="size-medium wp-image-608" /></a><p class="wp-caption-text">Ubuntu Karmic: Keyboard Layout Options: Ctrl-Alt-Backspace</p></div>
<p>Open up the option for &#8220;Key sequence to <strong>kill the X server</strong>&#8220;. Check the box next to &#8220;Ctrl+Alt+Backspace&#8221;.</p>
<p>That&#8217;s it.</p>
<h3>Reenable Ctrl+Alt+Backspace in KDE and the command line</h3>
<p>You can do the same thing in KDE and the command line. See here for details:<br />
<a href="https://wiki.ubuntu.com/X/Config/DontZap"> https://wiki.ubuntu.com/X/Config/DontZap</a></p>
<h2>Other ways to regain control without killing the X server</h2>
<p>It&#8217;s much handier to have enabled this before a hang. But, if you haven&#8217;t, there are still a few options other than turning the computer on and off.</p>
<p>The first thing I often do if there&#8217;s a problem with X is to switch into a <strong>virtual console</strong>. That&#8217;s a text-based console where you can run a Bash shell. To do this press <strong>Ctrl+Alt+F1</strong> (hold down Control, then also Alt, then also F1). Then you can log in with username and password.</p>
<p>From there, you can run top to find out the offending program. I usually run htop, which is a nicer and easier program list than top and kill the program from there or exit and run kill -9 or <strong>killall</strong> from the command line. For example, let&#8217;s say VLC is hogging memory. I&#8217;ll do:</p>

<div class="wp_syntax"><div class="code"><pre class="sh" style="font-family:monospace;">killall vlc</pre></div></div>

<p><a href="http://digitivity.org/blog/wp-content/uploads/2010/01/cannon.jpg"><img src="http://digitivity.org/blog/wp-content/uploads/2010/01/cannon.jpg" alt="" title="cannon" width="75" height="100" class="alignnone size-full wp-image-604" style="float: left; margin-right: 7px; margin-bottom: 7px; margin-top: 0px; " /></a>This kills all vlc instances. This is often all that is required to return X back to normal, and so I don&#8217;t have kill X as well. After all, why use a cannon when a fly swatter will do?</p>
<p>Note: another key combination to be aware of is <strong>Alt+SysRq+R</strong>. This puts the keyboard into raw mode, meaning the hung X server won&#8217;t be processing key input. Then do <strong>Ctrl+Alt+F1</strong>. You&#8217;ll probably want to hold down the <strong>right Alt</strong> because the left one in combination with SysRq gives you a screenshot.</p>


<p>Related posts:<ol><li><a href='http://digitivity.org/848/ubuntu-gnome-panel-doesnt-autohide-solution' rel='bookmark' title='Permanent Link: Ubuntu GNOME Panel Doesn&#8217;t AutoHide [SOLUTION]'>Ubuntu GNOME Panel Doesn&#8217;t AutoHide [SOLUTION]</a></li>
<li><a href='http://digitivity.org/546/ubuntu-release-schedule-explained' rel='bookmark' title='Permanent Link: Ubuntu Release Schedule Explained'>Ubuntu Release Schedule Explained</a></li>
<li><a href='http://digitivity.org/976/gnome-3-no-minimize-maximize-buttons' rel='bookmark' title='Permanent Link: GNOME 3: No Minimize, Maximize Buttons'>GNOME 3: No Minimize, Maximize Buttons</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/602/enabling-ctrlaltbackspace-to-kill-x-in-linux-and-ubuntu-gnome/feed</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Showing Excerpts Instead of Full Posts on the Home Page in WordPress</title>
		<link>http://digitivity.org/422/showing-excerpts-instead-of-full-posts-on-the-home-page-in-wordpress-vs-single-page</link>
		<comments>http://digitivity.org/422/showing-excerpts-instead-of-full-posts-on-the-home-page-in-wordpress-vs-single-page#comments</comments>
		<pubDate>Tue, 29 Dec 2009 17:46:47 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[excerpt]]></category>
		<category><![CDATA[full post]]></category>
		<category><![CDATA[home page]]></category>
		<category><![CDATA[index.php]]></category>
		<category><![CDATA[single.php]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=422</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/blogging" title="Blogging">Blogging</a><a href="http://digitivity.org/category/how-to" title="HowTo">HowTo</a></p>Some of my posts have been getting longer and longer, especially how-to&#8217;s. It&#8217;s hard to scan the front page for articles, and I thought it was time to switch from full posts to excerpts on the home page. Why have excerpts instead of full posts on your home page Some reasons you might want to [...]


Related posts:<ol><li><a href='http://digitivity.org/425/showing-related-posts-in-wordpress-with-the-yarpp-plugin-to-increase-pageviews' rel='bookmark' title='Permanent Link: Showing Related Posts in WordPress with the YARPP Plugin to Increase Pageviews'>Showing Related Posts in WordPress with the YARPP Plugin to Increase Pageviews</a></li>
<li><a href='http://digitivity.org/43/updating-old-posts-or-posting-new-ones' rel='bookmark' title='Permanent Link: Updating Old Posts or Posting New Ones'>Updating Old Posts or Posting New Ones</a></li>
<li><a href='http://digitivity.org/236/making-minor-changes-in-wordpress-without-updating-the-last-updated-date-with-the-minor-edit-plugin' rel='bookmark' title='Permanent Link: Making Minor Changes in WordPress Without Updating the Last-Updated Date with the Minor Edit Plugin'>Making Minor Changes in WordPress Without Updating the Last-Updated Date with the Minor Edit Plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Some of my posts have been getting longer and longer, especially how-to&#8217;s. It&#8217;s hard to scan the front page for articles, and I thought it was time to switch from full posts to excerpts on the home page.</p>
<h2>Why have excerpts instead of full posts on your home page</h2>
<p>Some reasons you might want to show excerpts instead of full posts on the home page include:</p>
<ul>
<li>It can be difficult for readers (new and old) to get a quick overview of your latest articles when they have to page down a couple of times to get to the next article headline.</li>
<li>Search engines don&#8217;t like duplicate content on your website. So it&#8217;s better to have your content on single pages as opposed to both home and single pages.</li>
<li>The fact that a user has to click on an article to read it means that you get feedback on which articles your readers like. If they read the entire article off the front page, you don&#8217;t know if they read the article, or closed their browser immediately after loading your homepage.</li>
</ul>
<h2>Why have full posts instead of excerpts on your home page</h2>
<p>On the other hand,</p>
<ul>
<li>Some people believe the &#8220;no duplicate content&#8221; rule to be overblown.</li>
<li>Having full content on the home page makes it easier for people to read without constant clicking.</li>
<li>Having full content on your home page instead of excerpts means you get full content in your RSS feeds as well, which many of your readers may find handy.</li>
<li>Having full content on your home page means more text which often results in some combination of keywords which can be a match for a user&#8217;s Google query. I don&#8217;t know if that&#8217;s the kind of random traffic you want, though.</li>
</ul>
<h2>Before you switch</h2>
<p>In the end, I decided to go with excerpts because my digital how-to&#8217;s were getting to be longer than 6 pages (i.e., six times pressing the Page Down key in a typical-sized browser window). Having to page down six times just to see what the next article&#8217;s title is seemed to me to be too much to ask readers to do. With excerpts, you can now page down just five times to see all the latest articles.</p>
<p>But before you do anything, be sure to make a full backup of your WordPress installation, including the MySQL database.</p>
<h2>Creating single.php and editing index.php to show excerpts</h2>
<p>OK, the file that WordPress uses to generate the home page is called <tt>index.php</tt>. You can also have a file called <tt>single.php</tt> that generates the &#8220;single pages&#8221; which display a single blog post per page. If you don&#8217;t have a single.php, WordPress uses index.php for double duty.</p>
<p>But since we want the home page to look different from single pages, we have to have a separate single.php. Just copy the index.php file as-is to a new file called single.php.</p>
<p>Now, we have to edit index.php. Do this with a text editor, or from WordPress administration (Appearance: Editor). If you use the WordPress Editor, look for Main Index Template.</p>
<p>Look for text that says <tt>the_content()</tt>:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Replace it with:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> the_excerpt<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>That&#8217;s it!</p>
<h2>Click here to read this entry</h2>
<p>OK, but now after reading the excerpt, the reader has to now go back to click your blog post title to actually read your full post.</p>
<p>Let&#8217;s make it easy by adding a link that reads &#8220;Read the rest of this entry&#8221;:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;h3&gt;&lt;a class=&quot;more-link&quot; title=&quot;Read the rest of <span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;Read the rest of this entry ...&lt;/a&gt;&lt;/h3&gt;</pre></div></div>

<p>Note that I wrapped the link in h3 tags to make the link larger, more visible, and easier to click. This is what it looks like:</p>
<h3><a class="more-link" title="Read the rest of this entry" href="">Read the rest of this entry &#8230;</a></h3>
<p>Save the file and reload your homepage to verify the changes.</p>
<p>Thanks to <a href="http://www.problogdesign.com/how-to/the-2-methods-of-showing-excerpts/">Pro Blog Design</a> for this excellent tip.</p>
<h2>Excerpts in RSS feeds, and tags, categories, and archive pages</h2>
<p>Note that by making these changes, your RSS feeds, and tags, categories, and archive pages will show excerpts as opposed to full posts.</p>
<p>You can get fancy by coming up with various combinations of having or not having full posts vs. excerpts on the front page, RSS feeds, tag pages, etc. with various other edits or plugins, but that&#8217;s the basics.</p>
<p>You can also show your entire latest post (or latest x number of posts) in full with the rest as excerpts. Again, that&#8217;s for later.</p>
<h2>Default excerpts</h2>
<p>By default, WordPress shows the first 55 words of your article as an excerpt. It also strips all tags and formatting and just shows plain text.</p>
<p>Some people use plugins to show full sentences and not break in the middle of an excerpt.</p>
<p>But I actually prefer the default which does break sentences. Think about it: if your phone conversation gets cut off, don&#8217;t you call back to listen to what the other party was saying? A break in a sentence actually makes me want to click the link just to complete the sentence.</p>
<h2>Excerpt word count</h2>
<p>If you want to check what 55 words amounts to, you can (among other methods), use the wc command in Linux (which is most likely what your web host provider is using). At the command prompt,</p>
<ul>
<li>type <tt>wc -w</tt>:</li>
<li>paste your first paragraph or so right into the command shell</li>
<li>press Enter</li>
<li>press Ctrl+d</li>
</ul>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">js<span style="color: #000000; font-weight: bold;">@</span>webhost:~<span style="color: #000000; font-weight: bold;">/</span>$ <span style="color: #c20cb9; font-weight: bold;">wc</span> <span style="color: #660033;">-w</span></pre></div></div>

<p>wc responds with the word count:</p>

<div class="wp_syntax"><div class="code"><pre class="en" style="font-family:monospace;">Some of my posts have been getting longer and longer, especially how-to's. It's hard to scan the front page for articles, and I thought it was time to switch from full posts to excerpts on the home page.
&nbsp;
Why have excerpts instead of full posts on your home page
&nbsp;
Some reasons you might want to show excerpts instead of full posts on the home page include:
66</pre></div></div>

<p>66 is the word count.</p>
<h2>Resources</h2>
<p><a href="http://lorelle.wordpress.com/2006/07/19/display-post-excerpts-only-in-wordpress/">Display Post Excerpts Only in WordPress</a></p>
<p><a href="http://codex.wordpress.org/Template_Tags/the_excerpt">Template Tags/the excerpt « WordPress Codex</a></p>


<p>Related posts:<ol><li><a href='http://digitivity.org/425/showing-related-posts-in-wordpress-with-the-yarpp-plugin-to-increase-pageviews' rel='bookmark' title='Permanent Link: Showing Related Posts in WordPress with the YARPP Plugin to Increase Pageviews'>Showing Related Posts in WordPress with the YARPP Plugin to Increase Pageviews</a></li>
<li><a href='http://digitivity.org/43/updating-old-posts-or-posting-new-ones' rel='bookmark' title='Permanent Link: Updating Old Posts or Posting New Ones'>Updating Old Posts or Posting New Ones</a></li>
<li><a href='http://digitivity.org/236/making-minor-changes-in-wordpress-without-updating-the-last-updated-date-with-the-minor-edit-plugin' rel='bookmark' title='Permanent Link: Making Minor Changes in WordPress Without Updating the Last-Updated Date with the Minor Edit Plugin'>Making Minor Changes in WordPress Without Updating the Last-Updated Date with the Minor Edit Plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/422/showing-excerpts-instead-of-full-posts-on-the-home-page-in-wordpress-vs-single-page/feed</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>How to Rename Files as Lowercase in Ubuntu Linux Recursively</title>
		<link>http://digitivity.org/420/how-to-rename-files-as-lowercase-in-ubuntu-linux-recursively</link>
		<comments>http://digitivity.org/420/how-to-rename-files-as-lowercase-in-ubuntu-linux-recursively#comments</comments>
		<pubDate>Sun, 27 Dec 2009 21:08:38 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Power User]]></category>
		<category><![CDATA[filenames]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[lowercase]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[recursive]]></category>
		<category><![CDATA[rename]]></category>
		<category><![CDATA[subdirectories]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[xargs]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=420</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/how-to" title="HowTo">HowTo</a><a href="http://digitivity.org/category/linuxunix" title="Linux/Unix">Linux/Unix</a><a href="http://digitivity.org/category/audience/power-user" title="Power User">Power User</a></p>Some reasons you might want to lowercase your filenames include: 1. Most webservers are case-sensitive. Because of this, most websites stick to the rule of having all files in a single case, namely lower. 2. If you&#8217;re using the command line to manipulate files, it&#8217;s easier when all the files are lower case. It&#8217;s a [...]


Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/938/updating-ubuntu-boot-cd-iso-images-with-zsync-incremental-download' rel='bookmark' title='Permanent Link: Updating Ubuntu Boot CD Images with zsync'>Updating Ubuntu Boot CD Images with zsync</a></li>
<li><a href='http://digitivity.org/602/enabling-ctrlaltbackspace-to-kill-x-in-linux-and-ubuntu-gnome' rel='bookmark' title='Permanent Link: Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME'>Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Some reasons you might want to lowercase your filenames include:</p>
<p>1. Most webservers are case-sensitive. Because of this, most websites stick to the rule of having all files in a single case, namely lower.</p>
<p>2. If you&#8217;re using the command line to manipulate files, it&#8217;s easier when all the files are lower case. It&#8217;s a lot faster to type in all one case.</p>
<p>But it&#8217;s too time consuming to rename each file individually, so here are a few ways to rename. These are adapted from the <a href="http://www.commandlinefu.com/commands/view/864/recursively-change-file-name-from-uppercase-to-lowercase-or-viceversa">commandlinefu</a> website. (But the commands there have some bugs, so keep reading here.)</p>
<h2>Renaming all the files in the current directory from uppercase to lowercase</h2>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">rename <span style="color: #ff0000;">'y/A-Z/a-z/'</span> <span style="color: #000000; font-weight: bold;">*</span></pre></div></div>

<p>This uses the <tt>rename</tt> script which is included with Perl, which in turn uses Perl&#8217;s <tt>rename</tt> function.</p>
<p>Most Linuxes and Unixes include Perl these days, including most web hosts. It&#8217;s easier and more succint than the alternatives.</p>
<h2>Renaming all files from uppercase to lowercase in the current and subdirectories recursively</h2>
<p>The way to do this is to feed <tt>rename</tt> a list of all files in the current directory and its subdirectories:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-type</span> f <span style="color: #660033;">-print0</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">xargs</span> <span style="color: #660033;">-0</span> rename <span style="color: #ff0000;">'y/A-Z/a-z/'</span></pre></div></div>

<p>Here&#8217;s what it means:</p>
<p><tt>find</tt> prints a list of all files in the current and all subdirectories, recursively. <tt>-type f</tt> means only print the names of files, and not directories.</p>
<p>The <tt>|</tt> takes the output of the first command and sends it as input to the second command.</p>
<p><tt>xargs</tt> takes the input (which is a list of files) and executes rename once for every filename, while appending the filename to the end of the rename command.</p>
<p>Normally, <tt>find</tt> puts a newline between each filename. But since a file&#8217;s name can also contain newlines, you make find delimit the filenames with a null character (ASCII 0). You do this by specifying the <tt>-print0</tt> option. But you also have to tell <tt>xargs</tt> not to view newlines or spaces as filename delimiters, but rather only the null character. You do that with the <tt>-0</tt> option.</p>
<h2>Renaming files to lowercase without using Perl</h2>
<p>Occasionally, you might not have access to Perl.</p>
<p>In such cases, you can use straight POSIX shell commands:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-type</span> f<span style="color: #000000; font-weight: bold;">|</span><span style="color: #000000; font-weight: bold;">while</span> <span style="color: #c20cb9; font-weight: bold;">read</span> f; <span style="color: #000000; font-weight: bold;">do</span> <span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$f</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$(echo $f|tr '[:upper:]' '[:lower:]')</span>&quot;</span>; <span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<p>This is an alernative that&#8217;s faster:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-type</span> f <span style="color: #660033;">-execdir</span> <span style="color: #c20cb9; font-weight: bold;">sh</span> <span style="color: #660033;">-c</span> <span style="color: #ff0000;">'mv &quot;'</span><span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span><span style="color: #ff0000;">'&quot; &quot;$(echo '</span><span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span><span style="color: #ff0000;">'|tr '</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>:upper:<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #ff0000;">' '</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>:lower:<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #ff0000;">')&quot;'</span> \;</pre></div></div>



<p>Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/938/updating-ubuntu-boot-cd-iso-images-with-zsync-incremental-download' rel='bookmark' title='Permanent Link: Updating Ubuntu Boot CD Images with zsync'>Updating Ubuntu Boot CD Images with zsync</a></li>
<li><a href='http://digitivity.org/602/enabling-ctrlaltbackspace-to-kill-x-in-linux-and-ubuntu-gnome' rel='bookmark' title='Permanent Link: Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME'>Enabling Ctrl+Alt+Backspace to Kill X in Linux and Ubuntu GNOME</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/420/how-to-rename-files-as-lowercase-in-ubuntu-linux-recursively/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to Add an E-mail to a Gravatar Account</title>
		<link>http://digitivity.org/405/how-to-add-multiple-email-to-a-gravatar-account-use-more-than-one</link>
		<comments>http://digitivity.org/405/how-to-add-multiple-email-to-a-gravatar-account-use-more-than-one#comments</comments>
		<pubDate>Thu, 24 Dec 2009 19:56:31 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Gravatar]]></category>
		<category><![CDATA[multiple]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=405</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/blogging" title="Blogging">Blogging</a><a href="http://digitivity.org/category/how-to" title="HowTo">HowTo</a></p>Your Gravatar account can have more than one e-mail associated with it. Gravatars are so-called &#8220;Globally Recognized Avatars&#8221; which allow you to show your choice of image (photo, drawing, whatever) alongside the comments you make on your own or others&#8217; WordPress blogs. You might find it handy to have multiple e-mails associated with your Gravatar [...]


Related posts:<ol><li><a href='http://digitivity.org/699/how-to-claim-your-blog-in-technorati' rel='bookmark' title='Permanent Link: How to Claim Your Blog on Technorati'>How to Claim Your Blog on Technorati</a></li>
<li><a href='http://digitivity.org/187/the-e-mail-sign-wasnt-invented-yesterday' rel='bookmark' title='Permanent Link: The E-mail @ Sign Wasn&#8217;t Invented Yesterday'>The E-mail @ Sign Wasn&#8217;t Invented Yesterday</a></li>
<li><a href='http://digitivity.org/266/dreamvue-a-desktop-app-to-manage-your-dreamhost-account' rel='bookmark' title='Permanent Link: Dreamvue: A Desktop App to Manage Your Dreamhost Account'>Dreamvue: A Desktop App to Manage Your Dreamhost Account</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Your Gravatar account can have more than one e-mail associated with it.</p>
<p><a href="http://www.gravatar.com/">Gravatars</a> are so-called &#8220;Globally Recognized Avatars&#8221; which allow you to show your choice of image (photo, drawing, whatever) alongside the comments you make on your own or others&#8217; WordPress blogs.</p>
<p>You might find it handy to have multiple e-mails associated with your Gravatar account:</p>
<ul>
<li>to avoid every blog out there from knowing your main e-mail (remember, WordPress is often hacked).</li>
<li>to avoid allow you to section off the damage if one of your e-mail addresses becomes compromised. If you get spam addressed to a given address, you can block just that one e-mail.</li>
<li>to post to different categories of blogs with different pictures. For example, a dignified picture for responding to work-related blogs, and a fun one for personal comments on various blogs.</li>
</ul>
<p>To start, go to <a href="http://www.gravatar.com/">gravatar.com</a>, log in and select &#8220;Add an Email Address&#8221; from the &#8220;My Account&#8221; menu.</p>
<div id="attachment_406" class="wp-caption alignnone" style="width: 522px"><a href="http://digitivity.org/blog/wp-content/uploads/2009/12/gravatar-add-email-01.png"><img class="size-medium wp-image-406 " title="gravatar-add-email-01" src="http://digitivity.org/blog/wp-content/uploads/2009/12/gravatar-add-email-01-512x363.png" alt="Gravatar Add Email: Start" width="512" height="363" /></a><p class="wp-caption-text">Gravatar Add Email: Start</p></div>
<p>Gravatar asks you for the e-mail to add:</p>
<div id="attachment_407" class="wp-caption alignnone" style="width: 522px"><a href="http://digitivity.org/blog/wp-content/uploads/2009/12/gravatar-add-email-02-specify-email.png"><img class="size-medium wp-image-407 " title="gravatar-add-email-02-specify-email" src="http://digitivity.org/blog/wp-content/uploads/2009/12/gravatar-add-email-02-specify-email-512x363.png" alt="Gravatar Add Email: Specify Email" width="512" height="363" /></a><p class="wp-caption-text">Gravatar Add Email: Specify Email</p></div>
<p>Enter the e-mail address you want to add, and hit Enter. Gravatar doesn&#8217;t add the e-mail automatically, but rather sends a confirmation e-mail to the address you entered. This is to prevent people from associated e-mail addresses that they don&#8217;t own:</p>
<div id="attachment_408" class="wp-caption alignnone" style="width: 522px"><a href="http://digitivity.org/blog/wp-content/uploads/2009/12/gravatar-add-email-03-confirmation-email-sent.png"><img class="size-medium wp-image-408 " title="gravatar-add-email-03-confirmation-email-sent" src="http://digitivity.org/blog/wp-content/uploads/2009/12/gravatar-add-email-03-confirmation-email-sent-512x363.png" alt="Gravatar Add Email: Confirmation Email Sent" width="512" height="363" /></a><p class="wp-caption-text">Gravatar Add Email: Confirmation Email Sent</p></div>
<p>Go to your e-mail account, and go to the confirmation link in the  e-mail that Gravatar sent you:</p>
<div id="attachment_409" class="wp-caption alignnone" style="width: 522px"><a href="http://digitivity.org/blog/wp-content/uploads/2009/12/gravatar-add-email-04-confirm-email-address.png"><img class="size-medium wp-image-409 " title="gravatar-add-email-04-confirm-email-address" src="http://digitivity.org/blog/wp-content/uploads/2009/12/gravatar-add-email-04-confirm-email-address-512x326.png" alt="Gravatar Add Email: Confirm Email Address" width="512" height="326" /></a><p class="wp-caption-text">Gravatar Add Email: Confirm Email Address</p></div>
<p>Gravatar will activate the e-mail for use with Gravatar and then ask you to select an image to use with that e-mail (if you have more than one image):</p>
<div id="attachment_410" class="wp-caption alignnone" style="width: 522px"><a href="http://digitivity.org/blog/wp-content/uploads/2009/12/gravatar-add-email-06-email-confirmed-choose-image.png"><img class="size-medium wp-image-410 " title="gravatar-add-email-06-email-confirmed-choose-image" src="http://digitivity.org/blog/wp-content/uploads/2009/12/gravatar-add-email-06-email-confirmed-choose-image-512x363.png" alt="Gravatar Add Email: Email Confirmed, Choose Image" width="512" height="363" /></a><p class="wp-caption-text">Gravatar Add Email: Email Confirmed, Choose Image</p></div>
<p>Select an image, and confirm it:</p>
<div id="attachment_411" class="wp-caption alignnone" style="width: 463px"><a href="http://digitivity.org/blog/wp-content/uploads/2009/12/gravatar-add-email-07-confirm-image.png"><img class="size-full wp-image-411 " title="gravatar-add-email-07-confirm-image" src="http://digitivity.org/blog/wp-content/uploads/2009/12/gravatar-add-email-07-confirm-image.png" alt="Gravatar Add Email: Confirm Image" width="453" height="293" /></a><p class="wp-caption-text">Gravatar Add Email: Confirm Image</p></div>
<p>OK, now you&#8217;ve added another e-mail to use with your Gravatar account. And you can keep your main e-mail (that you used to sign up with Gravatar) private.</p>
<h2>Resources</h2>
<p>Blogs covering adding multiple e-mail addresses to a Gravatar account include the <a href="http://en.blog.wordpress.com/2009/07/23/gravatar-widget/">WordPress blog</a> and <a href="http://mamchenkov.net/wordpress/2009/06/22/gravatar-your-face-on-the-web/">Leonid Mamchenkov</a>.</p>


<p>Related posts:<ol><li><a href='http://digitivity.org/699/how-to-claim-your-blog-in-technorati' rel='bookmark' title='Permanent Link: How to Claim Your Blog on Technorati'>How to Claim Your Blog on Technorati</a></li>
<li><a href='http://digitivity.org/187/the-e-mail-sign-wasnt-invented-yesterday' rel='bookmark' title='Permanent Link: The E-mail @ Sign Wasn&#8217;t Invented Yesterday'>The E-mail @ Sign Wasn&#8217;t Invented Yesterday</a></li>
<li><a href='http://digitivity.org/266/dreamvue-a-desktop-app-to-manage-your-dreamhost-account' rel='bookmark' title='Permanent Link: Dreamvue: A Desktop App to Manage Your Dreamhost Account'>Dreamvue: A Desktop App to Manage Your Dreamhost Account</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/405/how-to-add-multiple-email-to-a-gravatar-account-use-more-than-one/feed</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>How to Show a MessageBox in Java Swing</title>
		<link>http://digitivity.org/235/how-to-show-a-messagebox-in-java-swing</link>
		<comments>http://digitivity.org/235/how-to-show-a-messagebox-in-java-swing#comments</comments>
		<pubDate>Sat, 23 May 2009 13:11:23 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[message box]]></category>
		<category><![CDATA[Swing]]></category>

		<guid isPermaLink="false">http://www.digitivity.org/?p=235</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/audience/developer" title="Developer">Developer</a><a href="http://digitivity.org/category/how-to" title="HowTo">HowTo</a></p>VisualBasic and a lot of other languages have a handy function to show a message box to the user. In typical Java fashion, Java&#8217;s equivalent has a lot more power, but also complex. To get simple message box functionality, you have to specify a number of options: JOptionPane.showMessageDialog&#40;parent, &#34;Message&#34;, &#34;Title&#34;, JOptionPane.INFORMATION_MESSAGE, icon&#41;; This shows a [...]


Related posts:<ol><li><a href='http://digitivity.org/405/how-to-add-multiple-email-to-a-gravatar-account-use-more-than-one' rel='bookmark' title='Permanent Link: How to Add an E-mail to a Gravatar Account'>How to Add an E-mail to a Gravatar Account</a></li>
<li><a href='http://digitivity.org/821/how-to-install-java-on-windows' rel='bookmark' title='Permanent Link: How to Install Java on Windows'>How to Install Java on Windows</a></li>
<li><a href='http://digitivity.org/433/vlc-reverts-to-normal-without-the-christmas-santa-hat-icon-after-new-year' rel='bookmark' title='Permanent Link: VLC Reverts to Normal Without the Santa Hat After New Year'>VLC Reverts to Normal Without the Santa Hat After New Year</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>VisualBasic and a lot of other languages have a handy function to show a message box to the user. In typical Java fashion, Java&#8217;s equivalent has a lot more power, but also complex.</p>
<p>To get simple message box functionality, you have to specify a number of options:</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #003399;">JOptionPane</span>.<span style="color: #006633;">showMessageDialog</span><span style="color: #009900;">&#40;</span>parent,
    <span style="color: #0000ff;">&quot;Message&quot;</span>,
    <span style="color: #0000ff;">&quot;Title&quot;</span>,
    <span style="color: #003399;">JOptionPane</span>.<span style="color: #006633;">INFORMATION_MESSAGE</span>,
    icon<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>This shows a dialog with your message plus a look-and-feel defined icon which varies depending on the option selected. For example, a question mark icon is shown for <span style="font-family: monospace;">JOptionPane.QUESTION_MESSAGE</span>. The various message types are shown below for the default Swing Metal look-and-feel:</p>
<div id="attachment_289" class="wp-caption alignnone" style="width: 278px"><a href="http://www.digitivity.org/blog/wp-content/uploads/2009/05/java-swing-message-box-09-plain-message.png"><img class="size-full wp-image-289" title="Java Swing MessageBox: PLAIN_MESSAGE" src="http://www.digitivity.org/blog/wp-content/uploads/2009/05/java-swing-message-box-09-plain-message.png" alt="Java Swing MessageBox: PLAIN_MESSAGE" width="268" height="130" /></a><p class="wp-caption-text">Java Swing MessageBox: PLAIN_MESSAGE</p></div>
<div id="attachment_293" class="wp-caption alignnone" style="width: 278px"><a href="http://www.digitivity.org/blog/wp-content/uploads/2009/05/java-swing-message-box-08-information-message.png"><img class="size-full wp-image-293" title="Java Swing MessageBox: INFORMATION_MESSAGE" src="http://www.digitivity.org/blog/wp-content/uploads/2009/05/java-swing-message-box-08-information-message.png" alt="Java Swing MessageBox: INFORMATION_MESSAGE" width="268" height="130" /></a><p class="wp-caption-text">Java Swing MessageBox: INFORMATION_MESSAGE</p></div>
<div id="attachment_290" class="wp-caption alignnone" style="width: 278px"><a href="http://www.digitivity.org/blog/wp-content/uploads/2009/05/java-swing-message-box-01-question-message.png"><img class="size-full wp-image-290" title="Java Swing MessageBox: QUESTION_MESSAGE" src="http://www.digitivity.org/blog/wp-content/uploads/2009/05/java-swing-message-box-01-question-message.png" alt="Java Swing MessageBox: QUESTION_MESSAGE" width="268" height="130" /></a><p class="wp-caption-text">Java Swing MessageBox: QUESTION_MESSAGE</p></div>
<div id="attachment_291" class="wp-caption alignnone" style="width: 278px"><a href="http://www.digitivity.org/blog/wp-content/uploads/2009/05/java-swing-message-box-03-warning-message.png"><img class="size-full wp-image-291" title="Java Swing MessageBox: WARNING_MESSAGE" src="http://www.digitivity.org/blog/wp-content/uploads/2009/05/java-swing-message-box-03-warning-message.png" alt="Java Swing MessageBox: WARNING_MESSAGE" width="268" height="130" /></a><p class="wp-caption-text">Java Swing MessageBox: WARNING_MESSAGE</p></div>
<div id="attachment_292" class="wp-caption alignnone" style="width: 278px"><a href="http://www.digitivity.org/blog/wp-content/uploads/2009/05/java-swing-message-box-04-error-message.png"><img class="size-full wp-image-292" title="Java Swing MessageBox: ERROR_MESSAGE" src="http://www.digitivity.org/blog/wp-content/uploads/2009/05/java-swing-message-box-04-error-message.png" alt="Java Swing MessageBox: ERROR_MESSAGE" width="268" height="130" /></a><p class="wp-caption-text">Java Swing MessageBox: ERROR_MESSAGE</p></div>
<p>Note: the icon can be null if you don&#8217;t want or need an icon. You should specify a parent component (such as a JFrame) if you want the dialog to be modal with respect to that component. If you don&#8217;t mind that the user can click on something else and ignore your dialog message, leave it null.</p>
<p>If you want to get a response from the user as opposed to simply having him click OK, use the JOptionPane.showConfirmDialog() series of methods.</p>
<p><a class="performancingtags" rel="tag" href="http://technorati.com/tag/how%20to"><br />
</a></p>


<p>Related posts:<ol><li><a href='http://digitivity.org/405/how-to-add-multiple-email-to-a-gravatar-account-use-more-than-one' rel='bookmark' title='Permanent Link: How to Add an E-mail to a Gravatar Account'>How to Add an E-mail to a Gravatar Account</a></li>
<li><a href='http://digitivity.org/821/how-to-install-java-on-windows' rel='bookmark' title='Permanent Link: How to Install Java on Windows'>How to Install Java on Windows</a></li>
<li><a href='http://digitivity.org/433/vlc-reverts-to-normal-without-the-christmas-santa-hat-icon-after-new-year' rel='bookmark' title='Permanent Link: VLC Reverts to Normal Without the Santa Hat After New Year'>VLC Reverts to Normal Without the Santa Hat After New Year</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/235/how-to-show-a-messagebox-in-java-swing/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to synchronize audio and video in VLC</title>
		<link>http://digitivity.org/12/how-to-synchronize-audio-and-video-in-vlc</link>
		<comments>http://digitivity.org/12/how-to-synchronize-audio-and-video-in-vlc#comments</comments>
		<pubDate>Mon, 08 Sep 2008 17:15:46 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Power User]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[VLC]]></category>

		<guid isPermaLink="false">http://www.digitivity.org/?p=12</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/how-to" title="HowTo">HowTo</a><a href="http://digitivity.org/category/audience/power-user" title="Power User">Power User</a></p>Sometimes, a video&#8217;s audio isn&#8217;t synchronized with video for some reason or another. To sync audio and video on the fly in VLC: In VLC 0.9.4: press Ctrl+k to increase delay, and Ctrl+l to decrease delay. In VLC 0.8.6: press k to increase delay, and j to decrease delay. That&#8217;s without holding Ctrl. If you [...]


Related posts:<ol><li><a href='http://digitivity.org/388/vlc-puts-on-a-santa-hat-icon-for-christmas-easter-egg' rel='bookmark' title='Permanent Link: VLC Puts on a Santa Hat for Christmas'>VLC Puts on a Santa Hat for Christmas</a></li>
<li><a href='http://digitivity.org/8/how-to-play-a-quicktime-movie-that-isnt-playing-in-your-browser' rel='bookmark' title='Permanent Link: How to Play a Quicktime Movie That Isn&#8217;t Playing in Your Browser'>How to Play a Quicktime Movie That Isn&#8217;t Playing in Your Browser</a></li>
<li><a href='http://digitivity.org/433/vlc-reverts-to-normal-without-the-christmas-santa-hat-icon-after-new-year' rel='bookmark' title='Permanent Link: VLC Reverts to Normal Without the Santa Hat After New Year'>VLC Reverts to Normal Without the Santa Hat After New Year</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Sometimes, a video&#8217;s audio isn&#8217;t synchronized with video for some reason or another.  To sync audio and video on the fly in VLC:</p>
<ul>
<li>In VLC 0.9.4: press Ctrl+k to increase delay, and Ctrl+l to decrease delay.</li>
<li>In VLC 0.8.6: press k to increase delay, and j to decrease delay. That&#8217;s without holding Ctrl.</li>
</ul>
<p>If you decrease delay below 0, you will then be, in effect, delaying the video.</p>
<p>Each press of the key combinations changes delay by 50 ms.</p>


<p>Related posts:<ol><li><a href='http://digitivity.org/388/vlc-puts-on-a-santa-hat-icon-for-christmas-easter-egg' rel='bookmark' title='Permanent Link: VLC Puts on a Santa Hat for Christmas'>VLC Puts on a Santa Hat for Christmas</a></li>
<li><a href='http://digitivity.org/8/how-to-play-a-quicktime-movie-that-isnt-playing-in-your-browser' rel='bookmark' title='Permanent Link: How to Play a Quicktime Movie That Isn&#8217;t Playing in Your Browser'>How to Play a Quicktime Movie That Isn&#8217;t Playing in Your Browser</a></li>
<li><a href='http://digitivity.org/433/vlc-reverts-to-normal-without-the-christmas-santa-hat-icon-after-new-year' rel='bookmark' title='Permanent Link: VLC Reverts to Normal Without the Santa Hat After New Year'>VLC Reverts to Normal Without the Santa Hat After New Year</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/12/how-to-synchronize-audio-and-video-in-vlc/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Play a Quicktime Movie That Isn&#8217;t Playing in Your Browser</title>
		<link>http://digitivity.org/8/how-to-play-a-quicktime-movie-that-isnt-playing-in-your-browser</link>
		<comments>http://digitivity.org/8/how-to-play-a-quicktime-movie-that-isnt-playing-in-your-browser#comments</comments>
		<pubDate>Mon, 07 Jul 2008 16:08:25 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Power User]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Quicktime]]></category>
		<category><![CDATA[VLC]]></category>

		<guid isPermaLink="false">http://www.digitivity.org/blog/?p=8</guid>
		<description><![CDATA[<p>Posted in <a href="http://digitivity.org/category/how-to" title="HowTo">HowTo</a><a href="http://digitivity.org/category/audience/power-user" title="Power User">Power User</a></p>Even though Flash FLV movies have become something of an Internet standard, some sites persist in presenting movies in Quicktime format. Here&#8217;s how to view them if you have trouble playing them in your browser. Reasons Quicktime movies might not play in your browser might include: You don&#8217;t have the latest Quicktime plugin installed. You [...]


Related posts:<ol><li><a href='http://digitivity.org/441/google-chrome-browser-third-place-behind-internet-explorer-and-firefox' rel='bookmark' title='Permanent Link: Google Chrome Browser Third Place Behind Internet Explorer and Firefox'>Google Chrome Browser Third Place Behind Internet Explorer and Firefox</a></li>
<li><a href='http://digitivity.org/1046/diginotar-ssl-certificate-hack-threatens-browser-security' rel='bookmark' title='Permanent Link: DigiNotar SSL Hack Threatens Browser Security'>DigiNotar SSL Hack Threatens Browser Security</a></li>
<li><a href='http://digitivity.org/70/firefox-and-chrome-complicate-mozilla-and-google-ties' rel='bookmark' title='Permanent Link: Firefox and Chrome Complicate Mozilla and Google Ties'>Firefox and Chrome Complicate Mozilla and Google Ties</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Even though Flash FLV movies have become something of an Internet standard, some sites persist in presenting movies in Quicktime format. Here&#8217;s how to view them if you have trouble playing them in your browser.</p>
<p>Reasons Quicktime movies might not play in your browser might include:</p>
<ul>
<li>You don&#8217;t have the latest Quicktime plugin installed.</li>
<li>You don&#8217;t care to launch the Quicktime plugin.</li>
</ul>
<p>I usually skip embedded Quicktime movies just because the plugin is so heavy. It takes a while to start up, and it takes up additional memory after it&#8217;s done.  This is unlike the Flash plugin, which is always loaded since it&#8217;s needed for so many websites.</p>
<p>So what I do is just do a &#8220;View Source&#8221; on the page (View: Page Source in Firefox).  Then I search for the Quicktime movie URL.  You can do this by searching for the text string &#8220;.mov&#8221;.  An example would be:</p>
<pre>
&lt;param name="src" value="http://www.colorguides.net/movies/pantone_solid_colors_movie.mov"&gt; &lt;/param&gt;&lt;br /&gt;</pre>
<p>Just get the URL:</p>
<pre>http://www.colorguides.net/movies/pantone_solid_colors_movie.mov</pre>
<p>Take it and paste it into VLC at the File: Open dialog.<br />
Of course, this means that you need to have VLC installed, but you should already have it installed.</p>


<p>Related posts:<ol><li><a href='http://digitivity.org/441/google-chrome-browser-third-place-behind-internet-explorer-and-firefox' rel='bookmark' title='Permanent Link: Google Chrome Browser Third Place Behind Internet Explorer and Firefox'>Google Chrome Browser Third Place Behind Internet Explorer and Firefox</a></li>
<li><a href='http://digitivity.org/1046/diginotar-ssl-certificate-hack-threatens-browser-security' rel='bookmark' title='Permanent Link: DigiNotar SSL Hack Threatens Browser Security'>DigiNotar SSL Hack Threatens Browser Security</a></li>
<li><a href='http://digitivity.org/70/firefox-and-chrome-complicate-mozilla-and-google-ties' rel='bookmark' title='Permanent Link: Firefox and Chrome Complicate Mozilla and Google Ties'>Firefox and Chrome Complicate Mozilla and Google Ties</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/8/how-to-play-a-quicktime-movie-that-isnt-playing-in-your-browser/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
<enclosure url="http://www.colorguides.net/movies/pantone_solid_colors_movie.mov" length="3257510" type="video/quicktime" />
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: digitivity.org @ 2012-02-04 13:18:43 -->
