<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:ymaps="http://api.maps.yahoo.com/Maps/V2/AnnotatedMaps.xsd">

<channel>
	<title>austenconstable.com</title>
	<atom:link href="http://www.austenconstable.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.austenconstable.com</link>
	<description>a year in the merde</description>
	<lastBuildDate>Thu, 15 Oct 2009 16:19:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Analysing email addresses with Hibernate Search &amp; Solr</title>
		<link>http://www.austenconstable.com/2009/10/15/analyzing-email-addresses-with-hibernate-search-solr/</link>
		<comments>http://www.austenconstable.com/2009/10/15/analyzing-email-addresses-with-hibernate-search-solr/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 16:02:25 +0000</pubDate>
		<dc:creator>Austen</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[Lucene]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Solr]]></category>

		<guid isPermaLink="false">http://www.austenconstable.com/?p=229</guid>
		<description><![CDATA[On first appearance WordDelimiterFilterFactory seems like the most appropriate solution to the problem. It splits words into sub words on intra-word delimiters. So: &#8220;email@someserver.com&#8221; -&#62; &#8220;email&#8221;, &#8220;someserver&#8221;, &#8220;com&#8221; This works well except for the fact that it splits on all &#8230; <a href="http://www.austenconstable.com/2009/10/15/analyzing-email-addresses-with-hibernate-search-solr/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>On first appearance WordDelimiterFilterFactory seems like the most appropriate solution to the problem. It splits words into sub words on intra-word delimiters.</p>
<p>So:</p>
<ul>
<li>&#8220;email@someserver.com&#8221; -&gt; &#8220;email&#8221;, &#8220;someserver&#8221;, &#8220;com&#8221;</li>
</ul>
<p>This works well except for the fact that it splits on <em>all</em> intra-word delimiters, and when combined with the StandardAnalyzer splits on letter-number transitions.</p>
<p>So:</p>
<ul>
<li>&#8220;email@some-server.com&#8221; -&gt; &#8220;email&#8221;, &#8220;some&#8221;, &#8220;server&#8221;, &#8220;com&#8221;</li>
<li>&#8220;email@server5.com&#8221;  -&gt; &#8220;email&#8221;, &#8220;server&#8221;, &#8220;5&#8243;, &#8220;com&#8221;</li>
</ul>
<p>Which is fine unless your users want to search for &#8220;server5&#8243; say or &#8220;some-server&#8221; (without analysing the search query itself).</p>
<p>And so the strategy I&#8217;ve taken is as follows,</p>
<ol>
<li>Use the PatternTokenizerFactory and split on &#8220;.&#8221; and &#8220;@&#8221;</li>
<li>Filter to lower case using LowerCaseFilterFactory</li>
<li>Store the full email address in a separate field</li>
</ol>
<p>Which now means that:</p>
<ul>
<li>&#8220;email@some-server.com&#8221; -&gt; &#8220;email&#8221;, &#8220;some-server&#8221;, &#8220;com&#8221;</li>
<li>&#8220;email@server5.com&#8221;  -&gt; &#8220;email&#8221;, &#8220;server5&#8243;, &#8220;com&#8221;</li>
</ul>
<p>Searches for &#8220;server5&#8243; and &#8220;some-server&#8221; are now found.</p>
<p>There is naturally some room for improvement for example what if the user searches for &#8220;server&#8221; and &#8220;5&#8243;,  they would reasonably expect anything that matched &#8220;server5&#8243; to be returned. At the moment I&#8217;m handling this by allowing wildcard searches so &#8220;server*&#8221; does the trick. It may need revisiting, but only time will tell&#8230;</p>
<p>In case you&#8217;re wondering how that gets put together here&#8217;s a source snippet:</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">@<span style="color: #003399;">Entity</span>
@Indexed
@Table<span style="color: #009900;">&#40;</span>name <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;user&quot;</span>, catalog <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;somedb&quot;</span><span style="color: #009900;">&#41;</span>
@AnalyzerDef<span style="color: #009900;">&#40;</span>
  name <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;email&quot;</span>,
  tokenizer <span style="color: #339933;">=</span> @TokenizerDef<span style="color: #009900;">&#40;</span>
    factory <span style="color: #339933;">=</span> PatternTokenizerFactory.<span style="color: #000000; font-weight: bold;">class</span>, params <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span>
      @Parameter<span style="color: #009900;">&#40;</span>name <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;pattern&quot;</span>, value <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\\</span>.|<span style="color: #000099; font-weight: bold;">\\</span>@&quot;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>,
    filters <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span>
      @TokenFilterDef<span style="color: #009900;">&#40;</span>factory <span style="color: #339933;">=</span> LowerCaseFilterFactory.<span style="color: #000000; font-weight: bold;">class</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> User <span style="color: #000000; font-weight: bold;">implements</span> java.<span style="color: #006633;">io</span>.<span style="color: #003399;">Serializable</span> <span style="color: #009900;">&#123;</span>
...
    @Column<span style="color: #009900;">&#40;</span>name <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;email&quot;</span>, nullable <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">false</span>, unique <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span>
    @Fields<span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#123;</span>
      @<span style="color: #003399;">Field</span><span style="color: #009900;">&#40;</span>name <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;fullEmail&quot;</span>, index <span style="color: #339933;">=</span> Index.<span style="color: #006633;">UN_TOKENIZED</span>, store <span style="color: #339933;">=</span> Store.<span style="color: #006633;">YES</span><span style="color: #009900;">&#41;</span>,
      @<span style="color: #003399;">Field</span><span style="color: #009900;">&#40;</span>index <span style="color: #339933;">=</span> Index.<span style="color: #006633;">TOKENIZED</span>, analyzer <span style="color: #339933;">=</span> @Analyzer<span style="color: #009900;">&#40;</span>definition <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;email&quot;</span><span style="color: #009900;">&#41;</span>, store <span style="color: #339933;">=</span> Store.<span style="color: #006633;">YES</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #003399;">String</span> getEmail<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000000; font-weight: bold;">return</span> <span style="color: #000000; font-weight: bold;">this</span>.<span style="color: #006633;">email</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
...
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Additional resources :</p>
<p><a href="http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters" onclick="pageTracker._trackPageview('/outgoing/wiki.apache.org/solr/AnalyzersTokenizersTokenFilters?referer=');">http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.austenconstable.com/2009/10/15/analyzing-email-addresses-with-hibernate-search-solr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO: Remove GWT package from url when using gwt-maven</title>
		<link>http://www.austenconstable.com/2009/03/13/howto-remove-gwt-package-from-url-when-using-gwt-maven/</link>
		<comments>http://www.austenconstable.com/2009/03/13/howto-remove-gwt-package-from-url-when-using-gwt-maven/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 14:49:05 +0000</pubDate>
		<dc:creator>Austen</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[GWT]]></category>
		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://www.austenconstable.com/?p=193</guid>
		<description><![CDATA[Seriously, who wants a url like /my.long.package.name.Application/Application.html To remedy this use the following steps: Make the webapp directory the same as the output for your gwt code. ... &#60;plugin&#62; &#60;groupId&#62;org.apache.maven.plugins&#60;/groupId&#62; &#60;artifactId&#62;maven-war-plugin&#60;/artifactId&#62; &#60;configuration&#62; &#60;webappDirectory&#62;${project.build.directory}/${project.build.finalName}/my.long.package.name.Application &#60;/webappDirectory&#62; &#60;/configuration&#62; &#60;/plugin&#62; ... Ensure that your &#8230; <a href="http://www.austenconstable.com/2009/03/13/howto-remove-gwt-package-from-url-when-using-gwt-maven/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Seriously, who wants a url like /my.long.package.name.Application/Application.html</p>
<p>To remedy this use the following steps:</p>
<ol>
<li>Make the webapp directory the same as the output for your gwt code.

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">...
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;plugin<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;groupId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>org.apache.maven.plugins<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/groupId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;artifactId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>maven-war-plugin<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/artifactId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;configuration<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;webappDirectory<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>${project.build.directory}/${project.build.finalName}/my.long.package.name.Application	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/webappDirectory<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/configuration<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/plugin<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
...</pre></div></div>

</li>
<li>Ensure that your rpc servlets don&#8217;t have the package as a prefix.

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">...
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;plugin<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;groupId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>com.totsp.gwt<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/groupId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;artifactId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>maven-googlewebtoolkit2-plugin<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/artifactId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	...
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;configuration<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		...
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;webXmlServletPathAsIs<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/webXmlServletPathAsIs<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/configuration<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	...
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/plugin<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
...</pre></div></div>

</li>
<li>Change your index.html file to point to your app.<br />
From:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">meta</span> <span style="color: #000066;">http-equiv</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;REFRESH&quot;</span> <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;0;url=my.long.package.name.Application/Application.html&quot;</span>&gt;</span></pre></div></div>

<p>To:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">meta</span> <span style="color: #000066;">http-equiv</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;REFRESH&quot;</span> <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;0;url=Application.html&quot;</span>&gt;</span></pre></div></div>

</li>
<li>Your done.</li>
</ol>
<p>Additional resources:<br />
<a href="http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/f8b06676098b8cc6" onclick="pageTracker._trackPageview('/outgoing/groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/f8b06676098b8cc6?referer=');">http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/f8b06676098b8cc6</a></p>
<p><a href="http://groups.google.com/group/gwt-maven/browse_thread/thread/a46f540ca823e3d3/7d5febf0776958db?lnk=gst&amp;q=rename#7d5febf0776958db" onclick="pageTracker._trackPageview('/outgoing/groups.google.com/group/gwt-maven/browse_thread/thread/a46f540ca823e3d3/7d5febf0776958db?lnk=gst_amp_q=rename_7d5febf0776958db&amp;referer=');">http://groups.google.com/group/gwt-maven/browse_thread/thread/a46f540ca823e3d3/7d5febf0776958db?lnk=gst&amp;q=rename#7d5febf0776958db</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.austenconstable.com/2009/03/13/howto-remove-gwt-package-from-url-when-using-gwt-maven/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO: Run your java web app as the root context on Tomcat</title>
		<link>http://www.austenconstable.com/2009/03/13/howto-run-your-java-web-app-as-the-root-context-on-tomcat/</link>
		<comments>http://www.austenconstable.com/2009/03/13/howto-run-your-java-web-app-as-the-root-context-on-tomcat/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 10:21:30 +0000</pubDate>
		<dc:creator>Austen</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[Tomcat]]></category>

		<guid isPermaLink="false">http://www.austenconstable.com/?p=186</guid>
		<description><![CDATA[If you have a context XML fragment in your war (META-INF/context.xml) then it&#8217;s as easy as renaming your war file to ROOT.war If you&#8217;re using the maven build system then just alter your pom to have: &#60;build&#62; &#60;finalName&#62;ROOT&#60;/finalName&#62; ... &#60;/build&#62; &#8230; <a href="http://www.austenconstable.com/2009/03/13/howto-run-your-java-web-app-as-the-root-context-on-tomcat/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you have a context XML fragment in your war (<code>META-INF/context.xml</code>) then it&#8217;s as easy as renaming your war file to <code>ROOT.war</code></p>
<p>If you&#8217;re using the maven build system then just alter your pom to have:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;build<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;finalName<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>ROOT<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/finalName<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	...
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/build<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>Simple when you know how&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.austenconstable.com/2009/03/13/howto-run-your-java-web-app-as-the-root-context-on-tomcat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO: Setup a shell Java Struts 2 web app using Maven 2 &amp; Eclipse 3.4</title>
		<link>http://www.austenconstable.com/2008/11/26/howto-setup-a-shell-java-struts-2-web-app-using-maven-2-eclipse-34/</link>
		<comments>http://www.austenconstable.com/2008/11/26/howto-setup-a-shell-java-struts-2-web-app-using-maven-2-eclipse-34/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 16:17:16 +0000</pubDate>
		<dc:creator>Austen</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[struts2]]></category>

		<guid isPermaLink="false">http://www.austenconstable.com/?p=180</guid>
		<description><![CDATA[The latest project I&#8217;m working on is a Java web app using Struts 2. I wanted to use the eclipse IDE since it&#8217;s industry standard and the Maven 2 build system for compatibility with other company projects. I did plenty &#8230; <a href="http://www.austenconstable.com/2008/11/26/howto-setup-a-shell-java-struts-2-web-app-using-maven-2-eclipse-34/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The latest project I&#8217;m working on is a Java web app using Struts 2. I wanted to use the eclipse IDE since it&#8217;s industry standard and the Maven 2 build system for compatibility with other company projects.</p>
<p>I did plenty of reading (<a href="http://books.sonatype.com/maven-book/" onclick="pageTracker._trackPageview('/outgoing/books.sonatype.com/maven-book/?referer=');">Maven: The Definitive Guide</a> is a good place to start), but nowhere did I find an easy step-by-step quickstart for this combination of tools.</p>
<p>So I&#8217;ve pieced my reading and research together and here it is:</p>
<h3>Prerequisites</h3>
<p>Java<br />
maven 2<br />
eclipse 3.4.1</p>
<h3>Create a new skeleton project:</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> ~<span style="color: #000000; font-weight: bold;">/</span>workspace<span style="color: #000000; font-weight: bold;">/&lt;/</span>br<span style="color: #000000; font-weight: bold;">&gt;</span>
mvn archetype:generate <span style="color: #660033;">-DgroupId</span>=<span style="color: #7a0874; font-weight: bold;">&#123;</span>name of your group e.g. com.austenconstable<span style="color: #7a0874; font-weight: bold;">&#125;</span> \
<span style="color: #660033;">-DartifactId</span>=<span style="color: #7a0874; font-weight: bold;">&#123;</span>name of your app<span style="color: #7a0874; font-weight: bold;">&#125;</span> \
<span style="color: #660033;">-DarchetypeGroupId</span>=org.apache.struts \
<span style="color: #660033;">-DarchetypeArtifactId</span>=struts2-archetype-starter \
<span style="color: #660033;">-DarchetypeVersion</span>=2.0.11.2</pre></td></tr></table></div>

<p>If you&#8217;re not sure on the latest struts 2 archetype release version check <a href="http://repo1.maven.org/maven2/org/apache/struts/struts2-archetype-starter/" onclick="pageTracker._trackPageview('/outgoing/repo1.maven.org/maven2/org/apache/struts/struts2-archetype-starter/?referer=');">here</a>.</p>
<h3>Generate the eclipse project files:</h3>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mvn eclipse:eclipse</pre></div></div>

<h3>Configure eclipse:</h3>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mvn eclipse:configure-workspace -Declipse.workspace=<span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>your<span style="color: #000000; font-weight: bold;">/</span>workspace<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<h3>Import the project into eclipse:</h3>
<p>Fire up eclipse and use File>Import&#8230;</p>
<p>And now all you need to do is build your app!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.austenconstable.com/2008/11/26/howto-setup-a-shell-java-struts-2-web-app-using-maven-2-eclipse-34/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>West Coast USA &#8211; Day 9 &#8211; Last Day</title>
		<link>http://www.austenconstable.com/2008/10/19/west-coast-usa-day-9/</link>
		<comments>http://www.austenconstable.com/2008/10/19/west-coast-usa-day-9/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 16:17:31 +0000</pubDate>
		<dc:creator>Austen</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[road trip]]></category>

		<guid isPermaLink="false">http://www.austenconstable.com/?p=137</guid>
		<description><![CDATA[Breakfast in the hotel again of bagels and coffee. Mad French-Canadian woman is still there chatting away in &#8216;French&#8217; to strangers. We checkout and drive along Haight Street to the park and try to drive through the park. It&#8217;s mostly &#8230; <a href="http://www.austenconstable.com/2008/10/19/west-coast-usa-day-9/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Breakfast in the hotel again of bagels and coffee. Mad French-Canadian woman is still there chatting away in &#8216;French&#8217; to strangers.</p>
<p>We checkout and drive along Haight Street to the park and try to drive through the park. It&#8217;s mostly closed because of the women&#8217;s marathon today and so we head down to the water front but that&#8217;s closed off too! We drive back up the park and cross over it on the main road and down the other side. This time we still can&#8217;t get right up to the front but we can drive south next to the sea which is the direction we want to head.</p>
<p>After finding a parking space we cross the path of the runners and walk along the promenade. The beach looks like there&#8217;s been an oil spill or something as it&#8217;s very dark and doesn&#8217;t look very nice. Not how I remember it. Decide to walk on the promenade instead of the beach itself.</p>
<p>After the walk we drive down to West Portal, as I used to go there when I was studying over here, for some lunch. We find a nice pizza place and order a mini and a small plus salads to start. The small pizza is huge and we see a whole family order just one between them! We soldier on and finish as much as we can.</p>
<p>After lunch we drive to the airport and drop the car off with plenty of time. Once we check it we take a beer while writing post cards. Ordering the beer turns into a complete saga as the bar maid is deaf! I feel very sorry for her as it&#8217;s obviously difficult for her, but at the same time just want a beer! In the end I resort to writing down the order on a post-it pad.</p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=d&amp;saddr=1590+Sutter+St+San+Francisco,+CA+94109&amp;daddr=Laguna+St+to:Haight+St+to:Haight+St+to:Oak+St+to:Kezar+Dr+to:Martin+Luther+King+Jr+Dr%2FSouth+Dr+to:Martin+Luther+King+Jr+Dr%2FSouth+Dr+to:CA-1%2FCrossover+Dr+to:25th+Ave+to:Balboa+St+to:Upper+Great+Hwy+%26+Balboa+St,+San+Francisco,+San+Francisco,+California+94121+to:Fulton+St+to:Lower+Great+Hwy+%26+Rivera+St,+San+Francisco,+San+Francisco,+California+94116+to:Ulloa+St+to:Ulloa+St+to:Ulloa+St+to:Vicente+St+to:SFO&amp;hl=en&amp;geocode=%3BFYSJQAIdQOaz-A%3BFcJcQAIdveaz-A%3BFddPQAIdAYKz-A%3BFf9ZQAIdd5az-A%3BFYFTQAIdyHqz-A%3BFbxGQAId0Fyz-A%3BFfpPQAId4D2z-A%3BFVZPQAIdCiGz-A%3BFcBrQAId4giz-A%3BFRhpQAIdSs6y-A%3B%3BFS5dQAId5gmz-A%3B%3BFSTgPwIdDvGy-A%3BFa7iPwIddCuz-A%3BFRjiPwIdmlCz-A%3BFfDcPwIdFk2z-A%3B&amp;mra=ls&amp;via=1,2,3,4,5,6,7,8,9,10,12,14,15,16&amp;sll=37.737666,-122.473011&amp;sspn=0.051383,0.089264&amp;ie=UTF8&amp;s=AARTsJqqtBMhW4TOHyq8bj8N5aYoHo8X_w&amp;ll=37.706097,-122.433014&amp;spn=0.190136,0.291824&amp;z=11&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=d&amp;saddr=1590+Sutter+St+San+Francisco,+CA+94109&amp;daddr=Laguna+St+to:Haight+St+to:Haight+St+to:Oak+St+to:Kezar+Dr+to:Martin+Luther+King+Jr+Dr%2FSouth+Dr+to:Martin+Luther+King+Jr+Dr%2FSouth+Dr+to:CA-1%2FCrossover+Dr+to:25th+Ave+to:Balboa+St+to:Upper+Great+Hwy+%26+Balboa+St,+San+Francisco,+San+Francisco,+California+94121+to:Fulton+St+to:Lower+Great+Hwy+%26+Rivera+St,+San+Francisco,+San+Francisco,+California+94116+to:Ulloa+St+to:Ulloa+St+to:Ulloa+St+to:Vicente+St+to:SFO&amp;hl=en&amp;geocode=%3BFYSJQAIdQOaz-A%3BFcJcQAIdveaz-A%3BFddPQAIdAYKz-A%3BFf9ZQAIdd5az-A%3BFYFTQAIdyHqz-A%3BFbxGQAId0Fyz-A%3BFfpPQAId4D2z-A%3BFVZPQAIdCiGz-A%3BFcBrQAId4giz-A%3BFRhpQAIdSs6y-A%3B%3BFS5dQAId5gmz-A%3B%3BFSTgPwIdDvGy-A%3BFa7iPwIddCuz-A%3BFRjiPwIdmlCz-A%3BFfDcPwIdFk2z-A%3B&amp;mra=ls&amp;via=1,2,3,4,5,6,7,8,9,10,12,14,15,16&amp;sll=37.737666,-122.473011&amp;sspn=0.051383,0.089264&amp;ie=UTF8&amp;ll=37.706097,-122.433014&amp;spn=0.190136,0.291824&amp;z=11&amp;source=embed" style="color:#0000FF;text-align:left" onclick="pageTracker._trackPageview('/outgoing/maps.google.com/maps?f=d_amp_saddr=1590+Sutter+St+San+Francisco_+CA+94109_amp_daddr=Laguna+St+to_Haight+St+to_Haight+St+to_Oak+St+to_Kezar+Dr+to_Martin+Luther+King+Jr+Dr_2FSouth+Dr+to_Martin+Luther+King+Jr+Dr_2FSouth+Dr+to_CA-1_2FCrossover+Dr+to_25th+Ave+to_Balboa+St+to_Upper+Great+Hwy+_26+Balboa+St_+San+Francisco_+San+Francisco_+California+94121+to_Fulton+St+to_Lower+Great+Hwy+_26+Rivera+St_+San+Francisco_+San+Francisco_+California+94116+to_Ulloa+St+to_Ulloa+St+to_Ulloa+St+to_Vicente+St+to_SFO_amp_hl=en_amp_geocode=_3BFYSJQAIdQOaz-A_3BFcJcQAIdveaz-A_3BFddPQAIdAYKz-A_3BFf9ZQAIdd5az-A_3BFYFTQAIdyHqz-A_3BFbxGQAId0Fyz-A_3BFfpPQAId4D2z-A_3BFVZPQAIdCiGz-A_3BFcBrQAId4giz-A_3BFRhpQAIdSs6y-A_3B_3BFS5dQAId5gmz-A_3B_3BFSTgPwIdDvGy-A_3BFa7iPwIddCuz-A_3BFRjiPwIdmlCz-A_3BFfDcPwIdFk2z-A_3B_amp_mra=ls_amp_via=1_2_3_4_5_6_7_8_9_10_12_14_15_16_amp_sll=37.737666_-122.473011_amp_sspn=0.051383_0.089264_amp_ie=UTF8_amp_ll=37.706097_-122.433014_amp_spn=0.190136_0.291824_amp_z=11_amp_source=embed&amp;referer=');">View Larger Map</a></small></p>
<p>It&#8217;s been a superb if not intensive holiday and we&#8217;ve enjoyed it immensely. Hopefully we&#8217;ll come back again at some point and spend some more time at the Evergreen Lodge.</p>
<p>The total scores are:<br />
Days : 9<br />
Distance : 1671.8 Miles<br />
Gas bill : $365.50 (£244.70)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.austenconstable.com/2008/10/19/west-coast-usa-day-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>West Coast USA &#8211; Day 8 &#8211; Golden Gate</title>
		<link>http://www.austenconstable.com/2008/10/18/west-coast-usa-day-8/</link>
		<comments>http://www.austenconstable.com/2008/10/18/west-coast-usa-day-8/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 16:14:31 +0000</pubDate>
		<dc:creator>Austen</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[Golden Gate]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[road trip]]></category>
		<category><![CDATA[San Francisco]]></category>

		<guid isPermaLink="false">http://www.austenconstable.com/?p=135</guid>
		<description><![CDATA[Breakfast in the hotel of bagels and coffee. Strange French-Canadian woman lurking about and talking to people in French. (Except Di tells me, that her French is terrible, so no idea what&#8217;s going on there&#8230;) Over breakfast we decide to &#8230; <a href="http://www.austenconstable.com/2008/10/18/west-coast-usa-day-8/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Breakfast in the hotel of bagels and coffee. Strange French-Canadian woman lurking about and talking to people in French. (Except Di tells me, that her French is terrible, so no idea what&#8217;s going on there&#8230;)</p>
<p>Over breakfast we decide to walk into downtown as it;s only 10 blocks away. We end up walking and talking for 10 blocks in the wrong direction! Thankfully it&#8217;s a nice day so we turn around and had 20 blocks in the other direction.</p>
<div class="wp-caption aligncenter" style="width: 203px"><a href="http://lh3.ggpht.com/_9ikV2I29FeI/SRsPtdl2p4I/AAAAAAAACcw/aeEDcseIwUc/s800/IMG_3190.JPG" rel="lightbox[135]" onclick="pageTracker._trackPageview('/outgoing/lh3.ggpht.com/_9ikV2I29FeI/SRsPtdl2p4I/AAAAAAAACcw/aeEDcseIwUc/s800/IMG_3190.JPG?referer=');"><img src="http://lh3.ggpht.com/_9ikV2I29FeI/SRsPtdl2p4I/AAAAAAAACcw/aeEDcseIwUc/s288/IMG_3190.JPG" /></a><p class="wp-caption-text">Waiting for the tram</p></div>
<p>When we finally get downtown we join the long queue for the cable car from Market Street. I purchase tickets and a MUNI map from the ticket booth and after 30 minutes or so waiting we ride the PH line to Fisherman&#8217;s wharf.</p>
<p>We walk along the front and stop to buy the mandatory fridge magnet and head towards the seafood restaurants for lunch. Decide on Alioto&#8217;s as it looks nice and is apparently quite famous. We have both have clam chowder to start with, Di has the New York style (tomato based) and I have the New England style (cream based). We agree that the New York style chowder is the best. Afterwards Di has a Creole scallop dish with rice while I have crab ciotto which was crab legs, muscles, clams and shrimps in a delicious tomato sauce.</p>
<div class="wp-caption aligncenter" style="width: 310px"><a href="http://lh3.ggpht.com/_9ikV2I29FeI/SRsPzY9uZEI/AAAAAAAACdQ/faWApU1Gy38/s800/IMG_3196.JPG" rel="lightbox[135]" onclick="pageTracker._trackPageview('/outgoing/lh3.ggpht.com/_9ikV2I29FeI/SRsPzY9uZEI/AAAAAAAACdQ/faWApU1Gy38/s800/IMG_3196.JPG?referer=');"><img src="http://lh3.ggpht.com/_9ikV2I29FeI/SRsPzY9uZEI/AAAAAAAACdQ/faWApU1Gy38/s288/IMG_3196.JPG" /></a><p class="wp-caption-text">On the bike ride</p></div>
<p>After lunch we take a walk to see the seals and check out boat tours. We end up hiring two mountain bikes and ride them along the sea front and over the golden gate bridge! Once we get to the other side we decide not to take the ferry back and to ride instead. Di is a lot faster on her bike and makes it look effortless, I can&#8217;t keep up!</p>
<div class="wp-caption aligncenter" style="width: 310px"><a href="http://lh5.ggpht.com/_9ikV2I29FeI/SRsP7xNCABI/AAAAAAAACd4/jyz1q497x-s/s800/IMG_3210.JPG" rel="lightbox[135]" onclick="pageTracker._trackPageview('/outgoing/lh5.ggpht.com/_9ikV2I29FeI/SRsP7xNCABI/AAAAAAAACd4/jyz1q497x-s/s800/IMG_3210.JPG?referer=');"><img src="http://lh5.ggpht.com/_9ikV2I29FeI/SRsP7xNCABI/AAAAAAAACd4/jyz1q497x-s/s288/IMG_3210.JPG" /></a><p class="wp-caption-text">On the bike ride</p></div>
<p>We get back to Fisherman&#8217;s Wharf around 5pm and stop into a lot bar for pints of Bud Light and a fried calamari snack. On the way to the bus stop we drop into a Walgreens to buy stamps and Twinkies (For Spencer) and take the 47 bus back to the hotel.</p>
<p>Once back at the hotel we make a reservation at Alfred&#8217;s (a famous steak house), shower and change and head out to catch another bus. </p>
<p>We arrive slightly early at Alfred&#8217;s to be seated in a plush red booth. We share a bottle of local red with our steaks. Di has steak and shrimp I have the Fillet Mignon with garlic mash, which is delicious.</p>
<p>Afterwards it&#8217;s another bus ride back to the hotel and to bed.</p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=d&amp;saddr=1590+Sutter+St+San+Francisco,+CA+94109&amp;daddr=Sutter+St+%26+Presidio+Ave,+San+Francisco,+San+Francisco,+California+94115+to:Sutter+St+to:Powell+St+%26+Hallidie+Plaza,+San+Francisco,+San+Francisco,+California+94102+to:Powell+St+to:Union+St+to:Hyde+St+to:Pier+39+to:Jefferson+St+to:Beach+St+to:McDowell+Rd+to:Unknown+road+to:Marina+Green+Dr+to:Marine+Dr+to:Marina+Green+Dr+to:Unknown+road+to:Unknown+road+to:Pier+39,+San+Francisco,+CA+to:37.807614,-122.420783+to:Beach+St+to:1590+Sutter+St,+San+Francisco,+CA+94109+to:659+Merchant+St+San+Francisco,+CA+94111&amp;hl=en&amp;geocode=%3B%3BFXqdQAId4iq0-A%3B%3BFTrJQAIdqCi0-A%3BFVLFQAIdpQi0-A%3BFfrlQAId8gG0-A%3B%3BFSTmQAIdPQO0-A%3BFcDgQAIdC_az-A%3BFePnQAId3eWz-A%3BFVziQAId4syz-A%3BFQLlQAIdDsaz-A%3BFYXwQAIdSyez-A%3BFQHlQAIdB8az-A%3BFSXiQAId98yz-A%3BFZnjQAId3t-z-A%3B%3B%3BFcLgQAIdIfaz-A%3B%3B&amp;mra=dpe&amp;mrcr=6&amp;mrsp=18&amp;sz=16&amp;via=2,4,5,8,9,10,11,12,14,15,16,18,19&amp;dirflg=w&amp;sll=37.805563,-122.418702&amp;sspn=0.012834,0.022316&amp;ie=UTF8&amp;s=AARTsJop-egx8_Zzdrh14nexuX19Pr7YhA&amp;ll=37.805444,-122.434387&amp;spn=0.09494,0.145912&amp;z=12&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=d&amp;saddr=1590+Sutter+St+San+Francisco,+CA+94109&amp;daddr=Sutter+St+%26+Presidio+Ave,+San+Francisco,+San+Francisco,+California+94115+to:Sutter+St+to:Powell+St+%26+Hallidie+Plaza,+San+Francisco,+San+Francisco,+California+94102+to:Powell+St+to:Union+St+to:Hyde+St+to:Pier+39+to:Jefferson+St+to:Beach+St+to:McDowell+Rd+to:Unknown+road+to:Marina+Green+Dr+to:Marine+Dr+to:Marina+Green+Dr+to:Unknown+road+to:Unknown+road+to:Pier+39,+San+Francisco,+CA+to:37.807614,-122.420783+to:Beach+St+to:1590+Sutter+St,+San+Francisco,+CA+94109+to:659+Merchant+St+San+Francisco,+CA+94111&amp;hl=en&amp;geocode=%3B%3BFXqdQAId4iq0-A%3B%3BFTrJQAIdqCi0-A%3BFVLFQAIdpQi0-A%3BFfrlQAId8gG0-A%3B%3BFSTmQAIdPQO0-A%3BFcDgQAIdC_az-A%3BFePnQAId3eWz-A%3BFVziQAId4syz-A%3BFQLlQAIdDsaz-A%3BFYXwQAIdSyez-A%3BFQHlQAIdB8az-A%3BFSXiQAId98yz-A%3BFZnjQAId3t-z-A%3B%3B%3BFcLgQAIdIfaz-A%3B%3B&amp;mra=dpe&amp;mrcr=6&amp;mrsp=18&amp;sz=16&amp;via=2,4,5,8,9,10,11,12,14,15,16,18,19&amp;dirflg=w&amp;sll=37.805563,-122.418702&amp;sspn=0.012834,0.022316&amp;ie=UTF8&amp;ll=37.805444,-122.434387&amp;spn=0.09494,0.145912&amp;z=12&amp;source=embed" style="color:#0000FF;text-align:left" onclick="pageTracker._trackPageview('/outgoing/maps.google.com/maps?f=d_amp_saddr=1590+Sutter+St+San+Francisco_+CA+94109_amp_daddr=Sutter+St+_26+Presidio+Ave_+San+Francisco_+San+Francisco_+California+94115+to_Sutter+St+to_Powell+St+_26+Hallidie+Plaza_+San+Francisco_+San+Francisco_+California+94102+to_Powell+St+to_Union+St+to_Hyde+St+to_Pier+39+to_Jefferson+St+to_Beach+St+to_McDowell+Rd+to_Unknown+road+to_Marina+Green+Dr+to_Marine+Dr+to_Marina+Green+Dr+to_Unknown+road+to_Unknown+road+to_Pier+39_+San+Francisco_+CA+to_37.807614_-122.420783+to_Beach+St+to_1590+Sutter+St_+San+Francisco_+CA+94109+to_659+Merchant+St+San+Francisco_+CA+94111_amp_hl=en_amp_geocode=_3B_3BFXqdQAId4iq0-A_3B_3BFTrJQAIdqCi0-A_3BFVLFQAIdpQi0-A_3BFfrlQAId8gG0-A_3B_3BFSTmQAIdPQO0-A_3BFcDgQAIdC_az-A_3BFePnQAId3eWz-A_3BFVziQAId4syz-A_3BFQLlQAIdDsaz-A_3BFYXwQAIdSyez-A_3BFQHlQAIdB8az-A_3BFSXiQAId98yz-A_3BFZnjQAId3t-z-A_3B_3B_3BFcLgQAIdIfaz-A_3B_3B_amp_mra=dpe_amp_mrcr=6_amp_mrsp=18_amp_sz=16_amp_via=2_4_5_8_9_10_11_12_14_15_16_18_19_amp_dirflg=w_amp_sll=37.805563_-122.418702_amp_sspn=0.012834_0.022316_amp_ie=UTF8_amp_ll=37.805444_-122.434387_amp_spn=0.09494_0.145912_amp_z=12_amp_source=embed&amp;referer=');">View Larger Map</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.austenconstable.com/2008/10/18/west-coast-usa-day-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>West Coast USA &#8211; Day 7 &#8211; Hetch Hetchy Valley</title>
		<link>http://www.austenconstable.com/2008/10/17/west-coast-usa-day-7/</link>
		<comments>http://www.austenconstable.com/2008/10/17/west-coast-usa-day-7/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 18:03:15 +0000</pubDate>
		<dc:creator>Austen</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[road trip]]></category>
		<category><![CDATA[Yosemite]]></category>

		<guid isPermaLink="false">http://www.austenconstable.com/?p=133</guid>
		<description><![CDATA[wake up at 8.30am, pack and take photos outside the cabin, locking ourselves out of the cabin in the process. The girl at reception gives me another key to let us back in. (Guess they are used to it as &#8230; <a href="http://www.austenconstable.com/2008/10/17/west-coast-usa-day-7/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>wake up at 8.30am, pack and take photos outside the cabin, locking ourselves out of the cabin in the process. The girl at reception gives me another key to let us back in. (Guess they are used to it as the doors are very easy to accidentally lock)</p>
<p>Walk down to the main lodge for breakfast. Di has smoked salmon and cream cheese bagel with fresh fruit and I have poached eggs on English muffin with fresh fruit. Both delicious so we share.</p>
<p>After breakfast we pack up the car and check out and drive down the road to the entrance to Yosemite national park. </p>
<div class="wp-caption aligncenter" style="width: 203px"><a href="http://lh6.ggpht.com/_9ikV2I29FeI/SRsPP9hXudI/AAAAAAAACas/X0Mg-aU64CY/s800/IMG_3154.JPG" rel="lightbox[133]" onclick="pageTracker._trackPageview('/outgoing/lh6.ggpht.com/_9ikV2I29FeI/SRsPP9hXudI/AAAAAAAACas/X0Mg-aU64CY/s800/IMG_3154.JPG?referer=');"><img src="http://lh6.ggpht.com/_9ikV2I29FeI/SRsPP9hXudI/AAAAAAAACas/X0Mg-aU64CY/s288/IMG_3154.JPG" /></a><p class="wp-caption-text">Hetch Hetchy Valley</p></div>
<p>We head down to the Hetch Hetchy Valley entrance to the park which is 1 mile away from the lodge. The cash register isn&#8217;t working at the gate so we avoid paying again!</p>
<div class="wp-caption aligncenter" style="width: 310px"><a href="http://lh3.ggpht.com/_9ikV2I29FeI/SRsPh0CowTI/AAAAAAAACb0/8hljUFoUr0o/s800/IMG_3176.JPG" rel="lightbox[133]" onclick="pageTracker._trackPageview('/outgoing/lh3.ggpht.com/_9ikV2I29FeI/SRsPh0CowTI/AAAAAAAACb0/8hljUFoUr0o/s800/IMG_3176.JPG?referer=');"><img src="http://lh3.ggpht.com/_9ikV2I29FeI/SRsPh0CowTI/AAAAAAAACb0/8hljUFoUr0o/s288/IMG_3176.JPG" /></a><p class="wp-caption-text">Hetch Hetchy Valley</p></div>
<p>Once we&#8217;ve parked up we take a nice walk to Yapama falls (2.5 miles). The route is along the side of the reservoir which supplies San Francisco with water and hydro-electric power. The falls are pretty dry at this time of year but it&#8217;s a nice walk anyway. The weather quickly changes from a cold morning into a hot sunny day. I remove the legs from my walking trousers to Di&#8217;s amusement. </p>
<div class="wp-caption aligncenter" style="width: 203px"><a href="http://lh6.ggpht.com/_9ikV2I29FeI/SRsPTsggDWI/AAAAAAAACa8/tyWdyRmHwk8/s800/IMG_3161.JPG" rel="lightbox[133]" onclick="pageTracker._trackPageview('/outgoing/lh6.ggpht.com/_9ikV2I29FeI/SRsPTsggDWI/AAAAAAAACa8/tyWdyRmHwk8/s800/IMG_3161.JPG?referer=');"><img src="http://lh6.ggpht.com/_9ikV2I29FeI/SRsPTsggDWI/AAAAAAAACa8/tyWdyRmHwk8/s288/IMG_3161.JPG" /></a><p class="wp-caption-text">Removing my trouser legs</p></div>
<p>We get back to the car around lunch time and head back to the lodge to get some lunch. We eat very nice burgers, Di has a bison burger, with coleslaw (Tom&#8217;s treat) and ice tea in the tavern.</p>
<div class="wp-caption aligncenter" style="width: 310px"><a href="http://lh5.ggpht.com/_9ikV2I29FeI/SRsPZ77uikI/AAAAAAAACbU/k7TzeVyvjFs/s800/IMG_3171.JPG" rel="lightbox[133]" onclick="pageTracker._trackPageview('/outgoing/lh5.ggpht.com/_9ikV2I29FeI/SRsPZ77uikI/AAAAAAAACbU/k7TzeVyvjFs/s800/IMG_3171.JPG?referer=');"><img src="http://lh5.ggpht.com/_9ikV2I29FeI/SRsPZ77uikI/AAAAAAAACbU/k7TzeVyvjFs/s288/IMG_3171.JPG" /></a><p class="wp-caption-text">Us on the walk</p></div>
<p>After lunch we drive the 4 hours to SF, stopping along the way at Baskin Robbins for an ice cream break. We arrive into SF over the bay bridge while it&#8217;s still light. We&#8217;re getting pretty low on gas and we need to fill up before we return the car. We keep checking the satnav to see where the last gas station is so we don&#8217;t need to fill up in the morning. Unfortunately we keep trying for the next gas station and run out. Thankfully find one in the city on the way to the hotel.</p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=d&amp;saddr=33160+Evergreen+Rd,+Groveland,+CA+95321,+USA&amp;daddr=37.946567,-119.784536+to:1590+Sutter+St+San+Francisco,+CA+94109&amp;hl=en&amp;geocode=&amp;mra=dme&amp;mrcr=0,1&amp;mrsp=1&amp;sz=17&amp;sll=37.945204,-119.78533&amp;sspn=0.006405,0.011158&amp;ie=UTF8&amp;s=AARTsJpb_i4OqzncwuaQiAGDxYVzUEumjQ&amp;ll=38.091337,-121.14624&amp;spn=3.026157,4.669189&amp;z=7&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=d&amp;saddr=33160+Evergreen+Rd,+Groveland,+CA+95321,+USA&amp;daddr=37.946567,-119.784536+to:1590+Sutter+St+San+Francisco,+CA+94109&amp;hl=en&amp;geocode=&amp;mra=dme&amp;mrcr=0,1&amp;mrsp=1&amp;sz=17&amp;sll=37.945204,-119.78533&amp;sspn=0.006405,0.011158&amp;ie=UTF8&amp;ll=38.091337,-121.14624&amp;spn=3.026157,4.669189&amp;z=7&amp;source=embed" style="color:#0000FF;text-align:left" onclick="pageTracker._trackPageview('/outgoing/maps.google.com/maps?f=d_amp_saddr=33160+Evergreen+Rd_+Groveland_+CA+95321_+USA_amp_daddr=37.946567_-119.784536+to_1590+Sutter+St+San+Francisco_+CA+94109_amp_hl=en_amp_geocode=_amp_mra=dme_amp_mrcr=0_1_amp_mrsp=1_amp_sz=17_amp_sll=37.945204_-119.78533_amp_sspn=0.006405_0.011158_amp_ie=UTF8_amp_ll=38.091337_-121.14624_amp_spn=3.026157_4.669189_amp_z=7_amp_source=embed&amp;referer=');">View Larger Map</a></small></p>
<p>We abandon the car in the hotel&#8217;s car park and check in. The hotel and room is eccentric Victorian style, lots of velvet, old furniture and kitsch. It&#8217;s nice enough though and the room has two fireplaces.</p>
<p>Shower and change and take a walk through Japan town. We can&#8217;t find a Japanese place we like for dinner so we settle for a trendy American kitchen. We share a delicious Pinot Noir from Monterey over the meal.</p>
<p>After dinner it&#8217;s a short walk back to the hotel where we fall asleep watching TV, exhausted!</p>
<p>I have to rescue Di from a spider in the bathroom in the middle of the night, which runs into the electrical socket when I try and catch it. The power stays on, so guess it didn&#8217;t get electrocuted!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.austenconstable.com/2008/10/17/west-coast-usa-day-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>West Coast USA &#8211; Day 6 &#8211; Yosemite</title>
		<link>http://www.austenconstable.com/2008/10/16/west-coast-usa-day-6/</link>
		<comments>http://www.austenconstable.com/2008/10/16/west-coast-usa-day-6/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 17:20:56 +0000</pubDate>
		<dc:creator>Austen</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[Death Valley]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[road trip]]></category>
		<category><![CDATA[Yosemite]]></category>

		<guid isPermaLink="false">http://www.austenconstable.com/?p=127</guid>
		<description><![CDATA[Get up around 8am and head for the breakfast buffet with our luggage after completing the automated checkout. After breakfast we pick up the car from the self park garage and head for Death Valley, driving through the mountains constantly &#8230; <a href="http://www.austenconstable.com/2008/10/16/west-coast-usa-day-6/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Get up around 8am and head for the breakfast buffet with our luggage after completing the automated checkout.</p>
<p>After breakfast we pick up the car from the self park garage and head for Death Valley, driving through the mountains constantly trying to find a radio station that lasts more than 5 minutes.</p>
<div class="wp-caption aligncenter" style="width: 310px"><a href="http://lh6.ggpht.com/_9ikV2I29FeI/SRsO4UelC8I/AAAAAAAACYw/ehUhrYaQ_Do/s800/IMG_3118.JPG" rel="lightbox[127]" onclick="pageTracker._trackPageview('/outgoing/lh6.ggpht.com/_9ikV2I29FeI/SRsO4UelC8I/AAAAAAAACYw/ehUhrYaQ_Do/s800/IMG_3118.JPG?referer=');"><img src="http://lh6.ggpht.com/_9ikV2I29FeI/SRsO4UelC8I/AAAAAAAACYw/ehUhrYaQ_Do/s288/IMG_3118.JPG" /></a><p class="wp-caption-text">Photo stop in Death Valley</p></div>
<p>We arrive at Death Valley and take photos of us with the car next to sand dunes and then stop a bit further in at Stovepipe Wells for soda, souvenirs (obligatory fridge magnet) and a rest stop.</p>
<p>Pushing on to Yosemite we top off the tank everywhere we can just in case we can&#8217;t find fuel further on. At Bishop we stop for a late lunch at a Mexican cantina. I have a massive beef burrito which I can&#8217;t manage to finish, but delicious all the same. </p>
<div class="wp-caption aligncenter" style="width: 310px"><a href="http://lh4.ggpht.com/_9ikV2I29FeI/SRsPAYejDXI/AAAAAAAACZg/5NnyqQeNIhw/s800/IMG_3127.JPG" rel="lightbox[127]" onclick="pageTracker._trackPageview('/outgoing/lh4.ggpht.com/_9ikV2I29FeI/SRsPAYejDXI/AAAAAAAACZg/5NnyqQeNIhw/s800/IMG_3127.JPG?referer=');"><img src="http://lh4.ggpht.com/_9ikV2I29FeI/SRsPAYejDXI/AAAAAAAACZg/5NnyqQeNIhw/s288/IMG_3127.JPG" /></a><p class="wp-caption-text">Just inside Yosemite on the Tioga pass</p></div>
<p>Another hours drive later and we are at Tioga Pass just before dusk. It&#8217;s too late to pay the fee at the gate (free entry, hurray!) so we keep driving so we can see as much of the park as possible before it gets dark. Stopping several times to take photos of the spectacular scenery. On one of the stops when it&#8217;s nearly dark we see a wolf trotting past, unfortunately it&#8217;s too dark to get a photo.</p>
<p>It&#8217;s pitch black before we leave the park and end up getting stuck behind a caravan for the last section of the park. Arrive around 8pm to the Evergreen Lodge after a long drive (well it seemed so at the time) into the middle of nowhere surrounded by forest and check into our cabin. We buy beers and souvenirs (another fridge magnet!) from the general store and settle in. </p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=d&amp;saddr=3900+Las+Vegas+Blvd+S,+Las+Vegas,+NV+89119+(Luxor+Hotel+and+Casino)&amp;daddr=Stovepipe+wells,+CA+to:Bishop,+CA+to:33160+Evergreen+Rd,+Groveland,+CA+95321,+USA&amp;hl=en&amp;geocode=FdrFJgIdNpMi-SHTRRn3vWSFpQ%3B%3B%3B&amp;mra=ls&amp;sll=37.020098,-117.515259&amp;sspn=4.073991,5.712891&amp;ie=UTF8&amp;s=AARTsJqLtI6MIubCVTYXl7pNNdGka1I3jA&amp;ll=37.177826,-117.663574&amp;spn=6.126214,9.338379&amp;z=6&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=d&amp;saddr=3900+Las+Vegas+Blvd+S,+Las+Vegas,+NV+89119+(Luxor+Hotel+and+Casino)&amp;daddr=Stovepipe+wells,+CA+to:Bishop,+CA+to:33160+Evergreen+Rd,+Groveland,+CA+95321,+USA&amp;hl=en&amp;geocode=FdrFJgIdNpMi-SHTRRn3vWSFpQ%3B%3B%3B&amp;mra=ls&amp;sll=37.020098,-117.515259&amp;sspn=4.073991,5.712891&amp;ie=UTF8&amp;ll=37.177826,-117.663574&amp;spn=6.126214,9.338379&amp;z=6&amp;source=embed" style="color:#0000FF;text-align:left" onclick="pageTracker._trackPageview('/outgoing/maps.google.com/maps?f=d_amp_saddr=3900+Las+Vegas+Blvd+S_+Las+Vegas_+NV+89119+_Luxor+Hotel+and+Casino_amp_daddr=Stovepipe+wells_+CA+to_Bishop_+CA+to_33160+Evergreen+Rd_+Groveland_+CA+95321_+USA_amp_hl=en_amp_geocode=FdrFJgIdNpMi-SHTRRn3vWSFpQ_3B_3B_3B_amp_mra=ls_amp_sll=37.020098_-117.515259_amp_sspn=4.073991_5.712891_amp_ie=UTF8_amp_ll=37.177826_-117.663574_amp_spn=6.126214_9.338379_amp_z=6_amp_source=embed&amp;referer=');">View Larger Map</a></small></p>
<p>We drink our beers out on the deck of the cabin wondering about bears and if they&#8217;re interested enough in our snacks to jump the hand rails. The cabin is very nice, it&#8217;s set back from the main grounds a little in the woods and the Lodge is a woodland paradise, very peaceful with lots of activities on offer and surrounded by beautiful scenery. We resolve to come back again and stay longer at some point in the future.</p>
<div class="wp-caption aligncenter" style="width: 310px"><a href="http://lh6.ggpht.com/_9ikV2I29FeI/SRsPDLXaZVI/AAAAAAAACZw/pkQXhVA8xgw/s800/IMG_3136.JPG" rel="lightbox[127]" onclick="pageTracker._trackPageview('/outgoing/lh6.ggpht.com/_9ikV2I29FeI/SRsPDLXaZVI/AAAAAAAACZw/pkQXhVA8xgw/s800/IMG_3136.JPG?referer=');"><img src="http://lh6.ggpht.com/_9ikV2I29FeI/SRsPDLXaZVI/AAAAAAAACZw/pkQXhVA8xgw/s288/IMG_3136.JPG" /></a><p class="wp-caption-text">Enjoying a beer at the cabin</p></div>
<p>After the beers we stay up a little longer inside the cabin reading and listening to the satellite radio for a while and then get to bed in preparation for our day of walking tomorrow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.austenconstable.com/2008/10/16/west-coast-usa-day-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>West Coast USA &#8211; Day 5 &#8211; Vegas</title>
		<link>http://www.austenconstable.com/2008/10/15/west-coast-usa-day-5/</link>
		<comments>http://www.austenconstable.com/2008/10/15/west-coast-usa-day-5/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 13:20:01 +0000</pubDate>
		<dc:creator>Austen</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[Vegas]]></category>

		<guid isPermaLink="false">http://www.austenconstable.com/?p=125</guid>
		<description><![CDATA[Have a lie in and miss the buffet breakfast so eat in the Luxor cafe. Have a proper American breakfast of Bacon, Eggs over easy, short stack of pancakes all covered in syrup. Di has the &#8216;Healthy Option&#8217; omelette with &#8230; <a href="http://www.austenconstable.com/2008/10/15/west-coast-usa-day-5/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Have a lie in and miss the buffet breakfast so eat in the Luxor cafe. Have a proper American breakfast of Bacon, Eggs over easy, short stack of pancakes all covered in syrup. Di has the &#8216;Healthy Option&#8217; omelette with egg whites and lots of vegetables (and thinks I&#8217;m very strange pouring syrup over my eggs and bacon). $50 bill which we think is a bit steep for breakfast &#8211; welcome to Vegas!</p>
<p>After breakfast we start walking through the casinos and buy a few souvenirs for people back home. Also do a little handbag shopping (not for me!). The shop assistants are very persistent (annoying), obviously on commission.</p>
<p>Stop at a nice Japanese restaurant for lunch, share two different sashimi salads with Japanese beer. Continue walking the casinos until 5pm and decide to take a taxi back to the hotel to shower and change as we&#8217;re running out of time. We&#8217;d booked Ka (Cirque du soleil) before the trip and are really looking forward to it.</p>
<p>We get ready for the show and take another taxi to MGM Grand. Walking through MGM we see a nice restaurant which turns out to be a Joël Robuchon with a Michelin star. We decide to splash out and book a table for after the show.</p>
<p>We have our photo taken together before the show, which turns out to be very good. Ka is amazing, the costumes and stage are stunning. I can&#8217;t imagine the costs involved in making the stage as it is a huge hydraulic affair which spins, transforms and moves into the air. We can&#8217;t really work out the story line but they get reunited at the end. Have a wonderful time.</p>
<p>We go to &#8220;L&#8217;Atelier de Joël Robuchon&#8221; after the show and take seats at the bar. I have Jamón ibérico to start which is delicious as always. The plate is huge and we find it hard to eat everything. For the main I have the pork &#8216;special&#8217; which I&#8217;m not sure exactly what it is. Turns out to be quite complex and tasty but is too rich for me (obviously clean the plate anyway). Overall the food was good, the wine was superb and we enjoyed it a lot but we weren&#8217;t convinced that it was worthy of the Michelin star. (At least not compared to the Michelin star restaurants we&#8217;ve sampled in Paris)</p>
<p>After dinner we take a walk around the casino floor and decide it&#8217;s time to try our hand at Roulette. We eventually find a table with a $10 limit (lowest we could find) and with two available places and take our seats. We exchange $50 worth of chips each and start to play. Neither of us are having much luck and after a few rounds we&#8217;ve not won anything. Di eventually wins on a corner but I don&#8217;t win at all. Once we&#8217;re out of chips (a depressingly short 15 minutes) we decide gambling isn&#8217;t for us and so leave them to it. We weren&#8217;t even at the table long enough to get a free drink!</p>
<p>We attempt to get a G&#038;T in the casino bar, but it takes too long and we decide to call it a night and take a taxi home.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.austenconstable.com/2008/10/15/west-coast-usa-day-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>West Coast USA &#8211; Day 4 &#8211; Mule Ride</title>
		<link>http://www.austenconstable.com/2008/10/14/west-coast-usa-day-4/</link>
		<comments>http://www.austenconstable.com/2008/10/14/west-coast-usa-day-4/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 22:47:46 +0000</pubDate>
		<dc:creator>Austen</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[grand canyon]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[mule ride]]></category>
		<category><![CDATA[road trip]]></category>

		<guid isPermaLink="false">http://www.austenconstable.com/?p=123</guid>
		<description><![CDATA[An early start at 6am. Breakfast of bagels and coffee in the motel breakfast room. Lots of people about at this time in the morning. Drive up to Bright Angle Lodge and wait for the mules to arrive at 8am. &#8230; <a href="http://www.austenconstable.com/2008/10/14/west-coast-usa-day-4/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>An early start at 6am. Breakfast of bagels and coffee in the motel breakfast room. Lots of people about at this time in the morning.</p>
<div class="wp-caption aligncenter" style="width: 203px"><a href="http://lh5.ggpht.com/_9ikV2I29FeI/SRsOeuWblGI/AAAAAAAACW8/97FvvQefkUU/s800/IMG_3062.JPG" rel="lightbox[123]" onclick="pageTracker._trackPageview('/outgoing/lh5.ggpht.com/_9ikV2I29FeI/SRsOeuWblGI/AAAAAAAACW8/97FvvQefkUU/s800/IMG_3062.JPG?referer=');"><img src="http://lh5.ggpht.com/_9ikV2I29FeI/SRsOeuWblGI/AAAAAAAACW8/97FvvQefkUU/s288/IMG_3062.JPG" /></a><p class="wp-caption-text">The view from a mule</p></div>
<p>Drive up to Bright Angle Lodge and wait for the mules to arrive at 8am. Have a briefing from a cowboy and get into first group to be assigned mules. I get a mule called &#8216;Bonnie&#8217; but the name tag says Norman, so not sure what to call it. We saddle up and start to ride down the trail without any practice or getting used to the mules on the flat. After 10 minutes we stop and readjust saddles. Stopping involves pointing the mule over the edge of cliff! </p>
<div class="wp-caption aligncenter" style="width: 203px"><a href="http://lh4.ggpht.com/_9ikV2I29FeI/SRsOgIn8sII/AAAAAAAACXE/bMrL--zib-g/s800/IMG_3067.JPG" rel="lightbox[123]" onclick="pageTracker._trackPageview('/outgoing/lh4.ggpht.com/_9ikV2I29FeI/SRsOgIn8sII/AAAAAAAACXE/bMrL--zib-g/s800/IMG_3067.JPG?referer=');"><img src="http://lh4.ggpht.com/_9ikV2I29FeI/SRsOgIn8sII/AAAAAAAACXE/bMrL--zib-g/s288/IMG_3067.JPG" /></a><p class="wp-caption-text">The descent</p></div>
<p>The descent turns out to be pretty scary as you have virtually no control over the mules who seem to like to walk right next to the edge. The weather is pretty cold while we&#8217;re in the shadow of the canyon and doesn&#8217;t warm up until later in the morning. We keep descending for 1.5 hours until we reach Indian Garden (called that because it was a Native American prickly pear garden) where we stop for a water break.</p>
<p>We carry on out to Plateau Point for lunch at 11.30am stopping along the way for a group photo. Eat our packed lunches overlooking the river. Lunch consists of Beef jerky, apple, cheese, crisps, oreos and peanuts.</p>
<div class="wp-caption aligncenter" style="width: 310px"><a href="http://lh3.ggpht.com/_9ikV2I29FeI/SRsOuLpzXSI/AAAAAAAACYE/zZU_t7uAINg/s800/IMG_3097.JPG" rel="lightbox[123]" onclick="pageTracker._trackPageview('/outgoing/lh3.ggpht.com/_9ikV2I29FeI/SRsOuLpzXSI/AAAAAAAACYE/zZU_t7uAINg/s800/IMG_3097.JPG?referer=');"><img src="http://lh3.ggpht.com/_9ikV2I29FeI/SRsOuLpzXSI/AAAAAAAACYE/zZU_t7uAINg/s288/IMG_3097.JPG" /></a><p class="wp-caption-text">The group</p></div>
<p>After lunch and more photo&#8217;s we saddle up and start the ride back up. It&#8217;s starting to get warm again so we remove some layers. Stop again at Indian Garden for a water break. Now we start the proper ascent, there are a lot more people around at this time of day, mostly hikers who are camping in the canyon overnight. Ascent for 2-3 hours stopping regularly to enjoy the view and rest the mules. It gets cold again once we get into the shadow. Near the top we see mountain sheep and lots of tourists. Backsides are pretty soar! </p>
<div class="wp-caption aligncenter" style="width: 310px"><a href="http://lh6.ggpht.com/_9ikV2I29FeI/SRsOwE9u7VI/AAAAAAAACYQ/LVwLs6Mz3xs/s288/IMG_3102.JPG" rel="lightbox[123]" onclick="pageTracker._trackPageview('/outgoing/lh6.ggpht.com/_9ikV2I29FeI/SRsOwE9u7VI/AAAAAAAACYQ/LVwLs6Mz3xs/s288/IMG_3102.JPG?referer=');"><img src="http://lh6.ggpht.com/_9ikV2I29FeI/SRsOwE9u7VI/AAAAAAAACYQ/LVwLs6Mz3xs/s288/IMG_3102.JPG" /></a><p class="wp-caption-text">Di and myself in the canyon</p></div>
<p>Once at the top we ride into the corral where we &#8216;jump off&#8217; and goodbye to the guide and the mules.</p>
<p>We head over to the lodge for a needed cup of tea and the courgette cake. Buy fridge magnets and postcards and start the drive to Las Vegas. The drive turns out to be 5 hours, not the 1.5 hours I&#8217;d overheard the previous day. (Thankfully we didn&#8217;t find that out until we got back to the top of the canyon)</p>
<p>We drive long straight boring roads trying to figure out from the map and gps a good place to stop. Want to get another In &#038; Out Burger, but don&#8217;t seem to be able to find one. Stop to investigate a &#8216;town&#8217; which is supposed to have several food places. None seem to be appetising so we buy some corn chips at a gas station and keep on driving. Manage to find an In &#038; Out Burger in Kingman just as we&#8217;re getting despirate. </p>
<p>Briefly stop at the Hoover dam but can&#8217;t see that much in the dark. Lots of security around and car searching around the dam.</p>
<p>Finally arrive at the Luxor in Las Vegas and finally find the self-park garage (signs seem very confusing). We walk with our bags through the casino to the reception and check in. We have a nice room on the 17th floor with an airport view. Shower and collapse in the bed.</p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=d&amp;saddr=grand+canyon+village,+az&amp;daddr=Kingman,+AZ+to:3900+Las+Vegas+Blvd.+South,+Las+Vegas,+NV+89119+(Luxor+Las+Vegas+Resort+Hotel+and+Casino)&amp;hl=en&amp;geocode=%3B%3BFSbLJgId9Yoi-SHESftk8V9tqA&amp;mra=ls&amp;sll=35.62812,-113.64667&amp;sspn=3.379704,5.712891&amp;ie=UTF8&amp;s=AARTsJoyv2ANHb67JCLWoygRd5QJHXhVUg&amp;ll=35.746512,-113.620605&amp;spn=3.120627,4.669189&amp;z=7&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=d&amp;saddr=grand+canyon+village,+az&amp;daddr=Kingman,+AZ+to:3900+Las+Vegas+Blvd.+South,+Las+Vegas,+NV+89119+(Luxor+Las+Vegas+Resort+Hotel+and+Casino)&amp;hl=en&amp;geocode=%3B%3BFSbLJgId9Yoi-SHESftk8V9tqA&amp;mra=ls&amp;sll=35.62812,-113.64667&amp;sspn=3.379704,5.712891&amp;ie=UTF8&amp;ll=35.746512,-113.620605&amp;spn=3.120627,4.669189&amp;z=7&amp;source=embed" style="color:#0000FF;text-align:left" onclick="pageTracker._trackPageview('/outgoing/maps.google.com/maps?f=d_amp_saddr=grand+canyon+village_+az_amp_daddr=Kingman_+AZ+to_3900+Las+Vegas+Blvd.+South_+Las+Vegas_+NV+89119+_Luxor+Las+Vegas+Resort+Hotel+and+Casino_amp_hl=en_amp_geocode=_3B_3BFSbLJgId9Yoi-SHESftk8V9tqA_amp_mra=ls_amp_sll=35.62812_-113.64667_amp_sspn=3.379704_5.712891_amp_ie=UTF8_amp_ll=35.746512_-113.620605_amp_spn=3.120627_4.669189_amp_z=7_amp_source=embed&amp;referer=');">View Larger Map</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.austenconstable.com/2008/10/14/west-coast-usa-day-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
