<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Elegando</title>
	
	<link>http://elegando.jcg3.org</link>
	<description>elegant » being unusually effective and simple...</description>
	<lastBuildDate>Thu, 30 Jun 2011 01:51:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Elegando" /><feedburner:info uri="elegando" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Dynamic Classpath for Batch File</title>
		<link>http://feedproxy.google.com/~r/Elegando/~3/ZNAuLl_jxVA/</link>
		<comments>http://elegando.jcg3.org/2011/06/dynamic-classpath-for-batch-file/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 01:51:00 +0000</pubDate>
		<dc:creator>Jason G.</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://elegando.jcg3.org/2011/06/dynamic-classpath-for-batch-file/</guid>
		<description><![CDATA[From Hapi, a great way to set the classpath for a batch file: @echo off for %%I IN (..\lib\*.jar) DO SET CP=!CP!;%%I java -cp %CP% com.example.Launcher And also for shell scripts: #! /bin/bash CP="." for i in ../lib/*.jar; do CP=$i:$CP; done java -cp $CP com.example.Launcher]]></description>
			<content:encoded><![CDATA[<p>From <a href="http://hl7api.sourceforge.net/">Hapi</a>, a great way to set the classpath for a batch file:</p>
<pre class="sql" name="code">
@echo off

for %%I IN (..\lib\*.jar) DO SET CP=!CP!;%%I

java -cp %CP% com.example.Launcher
</pre>
<p>And also for shell scripts:</p>
<pre class="sql" name="code">
#! /bin/bash

CP="."
for i in ../lib/*.jar;
do
		  CP=$i:$CP;
done

java -cp $CP com.example.Launcher
</pre>
<img src="http://feeds.feedburner.com/~r/Elegando/~4/ZNAuLl_jxVA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://elegando.jcg3.org/2011/06/dynamic-classpath-for-batch-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://elegando.jcg3.org/2011/06/dynamic-classpath-for-batch-file/</feedburner:origLink></item>
		<item>
		<title>Power Management Settings on a Mac</title>
		<link>http://feedproxy.google.com/~r/Elegando/~3/vMYTLfCNhFs/</link>
		<comments>http://elegando.jcg3.org/2011/05/power-management-settings-on-a-mac/#comments</comments>
		<pubDate>Sun, 01 May 2011 17:47:49 +0000</pubDate>
		<dc:creator>Jason G.</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://elegando.jcg3.org/2011/05/power-management-settings-on-a-mac/</guid>
		<description><![CDATA[There&#8217;s a wonderful command line utility on Macs called pmset. You can run the following command to see a log of what happens when your computer goes to sleep and wakes up&#8230; pmset -g log Using this, I was able to see the following entry that was slowing things down&#8230; * Domain: applicationresponse.timedout - Message: [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a wonderful command line utility on Macs called pmset. You can run the following command to see a log of what happens when your computer goes to sleep and wakes up&#8230;</p>
<pre class="css" name="code">pmset -g log</pre>
<p>Using this, I was able to see the following entry that was slowing things down&#8230;<span id="more-163"></span></p>
<pre class="css" name="code">
* Domain: applicationresponse.timedout
- Message: Kernel cupsd com.apple.powermanagement.applicationresponse.timedout 30000 ms
- Time: 4/4/11 11:52:59 AM EDT
- Signature: cupsd
- UUID: 1D806166-A5FA-498C-A769-8A29FB2A15F3
- Result: Noop
- Response time (ms): 30000
</pre>
<p>That last line &#8220;Response time (ms): 30000&#8243; means that it was waiting 30 seconds for this process to finish!</p>
<p>Thanks to googling, I was able to find that you can access the CUPS Print System from your browser by going to <a href="http://127.0.0.1:631/jobs/">http://127.0.0.1:631/jobs/</a>. I deleted the old print jobs that the power management system was attempting to resolve on standby, and now my laptop goes into standby much more quickly.</p>
<img src="http://feeds.feedburner.com/~r/Elegando/~4/vMYTLfCNhFs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://elegando.jcg3.org/2011/05/power-management-settings-on-a-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://elegando.jcg3.org/2011/05/power-management-settings-on-a-mac/</feedburner:origLink></item>
		<item>
		<title>Turning off SafeSleep</title>
		<link>http://feedproxy.google.com/~r/Elegando/~3/iADBOZyT9hc/</link>
		<comments>http://elegando.jcg3.org/2011/04/turning-off-safesleep-2/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 17:31:13 +0000</pubDate>
		<dc:creator>Jason G.</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://elegando.jcg3.org/2011/04/turning-off-safesleep-2/</guid>
		<description><![CDATA[<p>Quoting completely from <a href="http://remiel.info/post/1601242301/making-the-leap-to-ssd-on-a-macbook">Remiel</a>...<br /></p>
<p>Ever since the PowerBook G4, Apple notebooks use a system called Safe Sleep to restore your computer to working order after being left unattended for a while. With Safe Sleep, the current session is written to both RAM <em>and</em> your hard disk — RAM because waking up is faster that way, and the hard disk so that the system can safely go into hibernation if the battery drains while it’s asleep.</p>
]]></description>
			<content:encoded><![CDATA[<p>Quoting completely from <a href="http://remiel.info/post/1601242301/making-the-leap-to-ssd-on-a-macbook">Remiel</a>&#8230;</p>
<p>Ever since the PowerBook G4, Apple notebooks use a system called Safe Sleep to restore your computer to working order after being left unattended for a while. With Safe Sleep, the current session is written to both RAM <em>and</em> your hard disk — RAM because waking up is faster that way, and the hard disk so that the system can safely go into hibernation if the battery drains while it’s asleep.</p>
<p>Your computer will go into standby faster if you turn this off. You can also save some space on your hard drive by disabling Safe Sleep, and removing the sleep image. You’ll still be able to sleep your computer, but there’s no zero-battery safety net anymore. Your MacBook can go a very long time in RAM-only sleep mode on a full battery, so this should rarely affect your life. But keep in mind that if the battery does run out, you’ll lose any unsaved work.</p>
<p><a href="http://www.macworld.com/article/53471/2006/10/sleepmode.html">This Macworld article</a> goes into greater detail about Safe Sleep, but for our purposes, the short version is this:</p>
<ol>
<li>Open up Terminal.</li>
<li>Type “sudo pmset -a hibernatemode 0” without the quotes, and hit Enter.</li>
<li>Enter your password when prompted.</li>
<li>You are now using RAM-only / “old school” sleep mode.</li>
<li>Now type “cd /var/vm” and hit Enter.</li>
<li>Finally: “sudo rm sleepimage”</li>
<li>This will delete the existing sleep image file on your hard drive, reclaiming that space for future use.</li>
</ol>
<img src="http://feeds.feedburner.com/~r/Elegando/~4/iADBOZyT9hc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://elegando.jcg3.org/2011/04/turning-off-safesleep-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://elegando.jcg3.org/2011/04/turning-off-safesleep-2/</feedburner:origLink></item>
		<item>
		<title>Name Bench</title>
		<link>http://feedproxy.google.com/~r/Elegando/~3/DW9tY4pRL54/</link>
		<comments>http://elegando.jcg3.org/2010/03/name-bench/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 20:15:23 +0000</pubDate>
		<dc:creator>Jason G.</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://elegando.jcg3.org/2010/03/name-bench/</guid>
		<description><![CDATA[Is your internet intermittently slow? It might be your DNS provider&#8230; use Name Bench to see what the best DNS server for you is&#8230;]]></description>
			<content:encoded><![CDATA[<p>Is your internet intermittently slow? It might be your DNS provider&#8230; use <a href="http://code.google.com/p/namebench/">Name Bench</a> to see what the best DNS server for you is&#8230;</p>
<img src="http://feeds.feedburner.com/~r/Elegando/~4/DW9tY4pRL54" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://elegando.jcg3.org/2010/03/name-bench/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://elegando.jcg3.org/2010/03/name-bench/</feedburner:origLink></item>
		<item>
		<title>Calculate Age with SQL</title>
		<link>http://feedproxy.google.com/~r/Elegando/~3/kYxwr9Z7_wU/</link>
		<comments>http://elegando.jcg3.org/2010/03/calculate-age-with-sql/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 19:48:44 +0000</pubDate>
		<dc:creator>Jason G.</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://elegando.jcg3.org/2010/03/calculate-age-with-sql/</guid>
		<description><![CDATA[Here&#8217;s a quickie&#8230; Calculate someone&#8217;s age with SQL: select dob, floor(datediff(day, dob, getDate()) / 365.25) as age from personnel]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quickie&#8230;  Calculate someone&#8217;s age with SQL:</p>
<pre class="sql" name="code">
select dob,
    floor(datediff(day, dob, getDate()) / 365.25) as age
    from personnel
</pre>
<img src="http://feeds.feedburner.com/~r/Elegando/~4/kYxwr9Z7_wU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://elegando.jcg3.org/2010/03/calculate-age-with-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://elegando.jcg3.org/2010/03/calculate-age-with-sql/</feedburner:origLink></item>
		<item>
		<title>Aqua Data Studio 6.5 with Java 1.6</title>
		<link>http://feedproxy.google.com/~r/Elegando/~3/Y1wUYvp3k0w/</link>
		<comments>http://elegando.jcg3.org/2010/02/aqua-data-studio-6-5-with-java-1-6/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 02:25:34 +0000</pubDate>
		<dc:creator>Jason G.</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://elegando.jcg3.org/2010/02/aqua-data-studio-6-5-with-java-1-6/</guid>
		<description><![CDATA[I use an older version (6.5) of Aqua Data Studio (an excellent tool), but it recently broke on the Mac when Java 1.6 came out. There is a quick fix for this, as the problem was a few classes moving outside of the JRE&#8217;s default libs. Download this file and put it in AquaDataStudio.app/Content/Resources/Java. Someone [...]]]></description>
			<content:encoded><![CDATA[<p>I use an older version (6.5) of <a href="http://www.aquafold.com/index.html">Aqua Data Studio</a> (an excellent tool), but it recently broke on the Mac when Java 1.6 came out. There is a quick fix for this, as the problem was a few classes moving outside of the JRE&#8217;s default libs.</p>
<p>Download <a href="/web/2010/02/aqua2.jar">this file</a> and put it in AquaDataStudio.app/Content/Resources/Java.</p>
<p>Someone else came up with this solution, but I have no idea of the original source.</p>
<img src="http://feeds.feedburner.com/~r/Elegando/~4/Y1wUYvp3k0w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://elegando.jcg3.org/2010/02/aqua-data-studio-6-5-with-java-1-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://elegando.jcg3.org/2010/02/aqua-data-studio-6-5-with-java-1-6/</feedburner:origLink></item>
		<item>
		<title>Fix Offscreen Windows (Mac)</title>
		<link>http://feedproxy.google.com/~r/Elegando/~3/79JPbD0Napk/</link>
		<comments>http://elegando.jcg3.org/2010/02/fix-offscreen-windows-mac/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 01:06:21 +0000</pubDate>
		<dc:creator>Jason G.</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://elegando.jcg3.org/2010/02/fix-offscreen-windows-mac/</guid>
		<description><![CDATA[I change screen resolutions on my Mac frequently &#8212; adding or removing external monitors, using external monitors of different sizes&#8230; Every once in a while a window is placed off screen or is too large to be resized within the screen available. Here&#8217;s a script to fix that&#8230; Launch the Apple Script Editor, and create [...]]]></description>
			<content:encoded><![CDATA[<p>I change screen resolutions on my Mac frequently &#8212; adding or removing external monitors, using external monitors of different sizes&#8230; Every once in a while a window is placed off screen or is too large to be resized within the screen available.</p>
<p>Here&#8217;s a script to fix that&#8230;</p>
<p><span id="more-145"></span></p>
<p>Launch the Apple Script Editor, and create a new script.  Enter the following in the script&#8230;</p>
<pre class="java" name="code">
-- Example list of processes to ignore: {"xGestures"} or {"xGestures", "OtherApp", ...}
property processesToIgnore : {"GeekTool"}

-- Get the size of the Display(s), only useful if there is one display
-- otherwise it will grab the total size of both displays
tell application "Finder"
	set _b to bounds of window of desktop
	set screen_width to item 3 of _b
	set screen_height to item 4 of _b
end tell

tell application "System Events"
	set allProcesses to application processes
	set _results to ""
	repeat with i from 1 to count allProcesses
		set doIt to 1
		repeat with z from 1 to count processesToIgnore
			if process i = process (item z of processesToIgnore) then
				set doIt to 0
			end if
		end repeat

		if doIt = 1 then
			tell process i
				repeat with x from 1 to (count windows)
					set winPos to position of window x
					set _x to item 1 of winPos
					set _y to item 2 of winPos
					set winPos to size of window x
					set _width to item 1 of winPos
					set _height to item 2 of winPos

					if (_x < 0 or _y < 0 or _x > screen_width or _y > screen_height) then
						set position of window x to {0, 22}
					end if
					if (_width > screen_width or _height > screen_height) then
						set size of window x to {screen_width - 100, screen_height - 100}
					end if
				end repeat

			end tell
		end if
	end repeat
end tell
</pre>
<p>Save the file, and then export as an application.  Do File &#8211;&gt; Save As, and change the File Format to be Application.  Once completed, you now have an executable (double-clickable) program that will run the script.</p>
<p>Note that I got this code from somewhere like <a href="http://www.leonamarant.com/2008/04/02/how-to-get-off-screen-windows-back-on-your-mac-os-x-v105/">this</a>, modified slightly for my use.</p>
<p>It&#8217;s also worth mentioning that someone else has already fixed this problem with a free app named <a href="http://www.macupdate.com/info.php/id/22709/forget-me-not">Forget-Me-Not</a>.</p>
<img src="http://feeds.feedburner.com/~r/Elegando/~4/79JPbD0Napk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://elegando.jcg3.org/2010/02/fix-offscreen-windows-mac/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://elegando.jcg3.org/2010/02/fix-offscreen-windows-mac/</feedburner:origLink></item>
		<item>
		<title>Google Voice Dialer for iPhone</title>
		<link>http://feedproxy.google.com/~r/Elegando/~3/C1LGM7J7sXo/</link>
		<comments>http://elegando.jcg3.org/2009/12/google-voice-dialer-for-iphone/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 01:58:11 +0000</pubDate>
		<dc:creator>Jason G.</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://elegando.jcg3.org/2009/12/google-voice-dialer-for-iphone/</guid>
		<description><![CDATA[Got Google Voice? Want caller-id to show that number when you call someone instead of your iPhone&#8217;s actual mobile number? It appears there is no &#8220;app for that&#8221; as Apple, AT&#38;T and Google don&#8217;t want to play nice&#8230; Here&#8217;s a workaround&#8230; This is a more thorough explanation of a previous post. In lieu of an [...]]]></description>
			<content:encoded><![CDATA[<p>Got Google Voice? Want caller-id to show that number when you call someone instead of your iPhone&#8217;s actual mobile number? It appears there is no &#8220;app for that&#8221; as Apple, AT&amp;T and Google don&#8217;t want to play nice&#8230;</p>
<p>Here&#8217;s <a href="http://www.google.com/support/forum/p/voice/thread?tid=0b93243b9cd4288a&amp;hl=en">a workaround</a>&#8230;</p>
<p><span id="more-142"></span></p>
<blockquote>
<p>This is a more thorough explanation of a previous post. In lieu of an GV app, I figured out a quick and easy way to dial your most frequent contacts using no more than 2 clicks. All we&#8217;re doing is adding a bookmark to your iPhone home page that links to a contact&#8217;s unique URL in your GV address book. Ready?</p>
<p>  1. Load up the mobile GV site (https://www.google.com/voice/<wbr />m). It works fine in Firefox &#8212; it doesn&#8217;t redirect to the non-mobile version like other Google sites.</p>
<p>  2. Find your desired favorite in your contact list. Let&#8217;s use &#8220;Mom&#8221; for our example. Each contact has its own unique URL &#8211; something like https://www.google.com/voice/<wbr />m/contact/793238491687864. Copy this link to your clipboard.</p>
<p>  3. Use your favorite photo editing software to find the perfect headshot of mom. Crop it so it&#8217;s EXACTLY a square (I use Picasa).</p>
<p>  4. Resize mom&#8217;s picture so it&#8217;s 57 x 57, and save as a PNG to your desktop. (I used http://www.resize2mail.com/<wbr />advanced.php)</p>
<p>  5. Fire up http://webclipicons.info/ Upload your 57 x 57 PNG, give it the shortcut name &#8220;mom&#8221; and paste the GV unique contact URL from step 2 into the &#8220;shortcut URL&#8221; prompt. Put in your email address, and uncheck &#8220;make public.&#8221; Hit &#8220;create shortcut.&#8221;</p>
<p>  6. Check your iPhone email. You should receive a message with link &#8212; click on it. Safari should launch. Bookmark that page to your home screen. Your mom&#8217;s smiling face should appear along with your fart and other useless apps.</p>
<p>  7. When it&#8217;s time to call mom, click on her face. Her contact page in your GV account will load in Safari. You can then call or SMS any number that you have stored for her.</p>
</blockquote>
<p>via <a href="http://nyquil.org/archives/1226-Two-Work-arounds-for-Dialing-Google-Voice-on-iPhone.html">NyQuil.org</a>.</p>
<img src="http://feeds.feedburner.com/~r/Elegando/~4/C1LGM7J7sXo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://elegando.jcg3.org/2009/12/google-voice-dialer-for-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://elegando.jcg3.org/2009/12/google-voice-dialer-for-iphone/</feedburner:origLink></item>
		<item>
		<title>Mac Keyboard Hacks</title>
		<link>http://feedproxy.google.com/~r/Elegando/~3/qW5XVPAsFyg/</link>
		<comments>http://elegando.jcg3.org/2009/11/mac-keyboard-hacks/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 06:09:26 +0000</pubDate>
		<dc:creator>Jason G.</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://elegando.jcg3.org/2009/11/mac-keyboard-hacks/</guid>
		<description><![CDATA[Want to change your control key and caps lock key on your Mac (or just disable your caps lock key)? Use the built-in settings (System Preferences -&#62; Keyboard -&#62; Modifier Keys). Want to change your fn key? Use DoubleCommand.]]></description>
			<content:encoded><![CDATA[<p>Want to change your control key and caps lock key on your Mac (or just disable your caps lock key)? Use the built-in settings (System Preferences -&gt; Keyboard -&gt; Modifier Keys).</p>
<p>Want to change your fn key? Use <a href="http://doublecommand.sourceforge.net/features.html">DoubleCommand</a>.</p>
<img src="http://feeds.feedburner.com/~r/Elegando/~4/qW5XVPAsFyg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://elegando.jcg3.org/2009/11/mac-keyboard-hacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://elegando.jcg3.org/2009/11/mac-keyboard-hacks/</feedburner:origLink></item>
		<item>
		<title>Firefox Gestures</title>
		<link>http://feedproxy.google.com/~r/Elegando/~3/WIlflfU7FcI/</link>
		<comments>http://elegando.jcg3.org/2009/11/firefox-gestures/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 04:50:42 +0000</pubDate>
		<dc:creator>Jason G.</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://elegando.jcg3.org/2009/11/firefox-gestures/</guid>
		<description><![CDATA[I was just playing around with some of the Firefox Gestures that are available on a Mac, and went looking for a list of commands that you can have the gestures trigger&#8230; since it wasn&#8217;t easy to find, here&#8217;s the scoop. First, go to Firefox&#8217;s about:config page&#8230; enter &#8220;about:config&#8221; in the location bar: Click past [...]]]></description>
			<content:encoded><![CDATA[<p>I was just playing around with some of the <a href="http://www.macosxhints.com/article.php?story=20090630172400412">Firefox Gestures that are available on a Mac</a>, and went looking for a list of commands that you can have the gestures trigger&#8230; since it wasn&#8217;t easy to find, here&#8217;s the scoop.</p>
<p><span id="more-140"></span>
<p>First, go to Firefox&#8217;s about:config page&#8230; enter &#8220;about:config&#8221; in the location bar:</p>
<p><img src="http://elegando.jcg3.org/web/2009/11/Screen-shot-2009-11-01-at-1.30.06-AM.png" width="155" height="34" alt="Screen shot 2009-11-01 at 1.30.06 AM.png" /></p>
<p>Click past the warning, and enter a filter-text of &#8220;gesture&#8221; to see the various multi-finger gestures and their commands.</p>
<p><img src="http://elegando.jcg3.org/wordpress/../web/2009/11/Screen-shot-2009-11-01-at-1.30.20-AM2.png" width="400" height="185" alt="Screen shot 2009-11-01 at 1.30.20 AM.png" rel="lightbox" /></p>
<p>Here are the possible values you can put in the Value, and thus which action you will trigger with the gesture.</p>
<ul>
<li>cmd_copy</li>
<li>cmd_cut</li>
<li>cmd_paste</li>
<li>cmd_selectAll</li>
<li>cmd_selectNone</li>
<li>cmd_copyLink</li>
<li>cmd_copyImageLocation</li>
<li>cmd_copyImageContents</li>
<li>cmd_scrollTop</li>
<li>cmd_scrollBottom</li>
<li>cmd_scrollPageUp</li>
<li>cmd_scrollPageDown</li>
<li>cmd_scrollLineUp</li>
<li>cmd_scrollLineDown</li>
<li>cmd_scrollLeft</li>
<li>cmd_scrollRight</li>
<li>cmd_selectCharPrevious</li>
<li>cmd_selectCharNext</li>
<li>cmd_wordPrevious</li>
<li>cmd_wordNext</li>
<li>cmd_selectWordPrevious</li>
<li>cmd_selectWordNext</li>
<li>cmd_beginLine</li>
<li>cmd_endLine</li>
<li>cmd_selectBeginLine</li>
<li>cmd_selectEndLine</li>
<li>cmd_selectLinePrevious</li>
<li>cmd_selectLineNext</li>
<li>cmd_selectPagePrevious</li>
<li>cmd_selectPageNext</li>
<li>cmd_selectMoveTop</li>
<li>cmd_selectMoveBottom</li>
</ul>
<ul>
<li>cmd_paste</li>
<li>cmd_pasteQuote</li>
<li>cmd_delete</li>
<li>cmd_deleteCharBackward</li>
<li>cmd_deleteCharForward</li>
<li>cmd_deleteWordBackward</li>
<li>cmd_deleteWordForward</li>
<li>cmd_deleteToBeginningOfLine</li>
<li>cmd_deleteToEndOfLine</li>
<li>cmd_delete</li>
<li>cmd_deleteCharBackward</li>
<li>cmd_deleteCharForward</li>
<li>cmd_deleteWordBackward</li>
<li>cmd_deleteWordForward</li>
<li>cmd_deleteToBeginningOfLine</li>
<li>cmd_deleteToEndOfLine</li>
<li>cmd_scrollTop</li>
<li>cmd_scrollBottom</li>
<li>cmd_moveTop</li>
<li>cmd_moveBottom</li>
<li>cmd_selectTop</li>
<li>cmd_selectBottom</li>
<li>cmd_lineNext</li>
<li>cmd_linePrevious</li>
<li>cmd_selectLineNext</li>
<li>cmd_selectLinePrevious</li>
<li>cmd_charPrevious</li>
<li>cmd_charNext</li>
<li>cmd_selectCharPrevious</li>
<li>cmd_selectCharNext</li>
<li>cmd_beginLine</li>
<li>cmd_endLine</li>
<li>cmd_selectBeginLine</li>
<li>cmd_selectEndLine</li>
<li>cmd_wordPrevious</li>
<li>cmd_wordNext</li>
<li>cmd_selectWordPrevious</li>
<li>cmd_selectWordNext</li>
<li>cmd_scrollPageUp</li>
<li>cmd_scrollPageDown</li>
<li>cmd_scrollLineUp</li>
<li>cmd_scrollLineDown</li>
<li>cmd_movePageUp</li>
<li>cmd_movePageDown</li>
<li>cmd_selectPageUp</li>
<li>cmd_selectPageDown</li>
</ul>
<p>The list is from <a href="http://www.mozilla.org/unix/customizing.html">Mozilla&#8217;s Website</a>.</p>
<p>You can also use these commands, which I figured out from trial and error:</p>
<ul>
<li>Browser:Home &#8211; takes you to your home page</li>
<li>Browser:PrevTab</li>
<li>Browser:NextTab</li>
<li>Browser:BackOrBackDuplicate &#8211; equivalent to back button</li>
<li>Browser:ForwardOrForwardDuplicate</li>
<li>Browser:Reload</li>
</ul>
<p>If you make a mistake, you can right-click on the setting and &#8220;reset&#8221; to the original configuration value.</p>
<p></p>
<img src="http://feeds.feedburner.com/~r/Elegando/~4/WIlflfU7FcI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://elegando.jcg3.org/2009/11/firefox-gestures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://elegando.jcg3.org/2009/11/firefox-gestures/</feedburner:origLink></item>
	</channel>
</rss>

