<?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>Rage Against The Mac</title>
	<atom:link href="http://bravo5.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://bravo5.org/blog</link>
	<description>Brian's musings on life, the Mac, and everything.</description>
	<lastBuildDate>Thu, 29 Sep 2011 16:03:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Backing up WordPress with Git</title>
		<link>http://bravo5.org/blog/2011/09/29/backing-up-wordpress-with-git/</link>
		<comments>http://bravo5.org/blog/2011/09/29/backing-up-wordpress-with-git/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 11:59:00 +0000</pubDate>
		<dc:creator>blalor</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[backups]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://bravo5.org/blog/?p=255</guid>
		<description><![CDATA[You can never back up too often. &#160;I&#8217;ve been bitten by WordPress bugs (both when upgrading the core or plugins, and I&#8217;ve had sites hacked at least once). &#160;I haven&#8217;t found a good, automated backup mechanism for WordPress that keeps old history and allows an easy roll-back to an older (presumably working) version. &#160;I&#8217;ve become [...]]]></description>
			<content:encoded><![CDATA[	<p>You can never back up too often. &#160;I&#8217;ve been bitten by WordPress bugs (both when upgrading the core or plugins, and I&#8217;ve had sites hacked at least once). &#160;I haven&#8217;t found a good, automated backup mechanism for WordPress that keeps old history and allows an easy roll-back to an older (presumably working) version. &#160;I&#8217;ve become a huge fan of Git in the last year, so I whipped up some scripts to do what I needed.</p>

	<p>I&#8217;ll assume you&#8217;re starting with an existing WordPress install, and it lives on the filesystem at <code>~/www/blog</code>, and that <code>git</code> is in your path.<br />
<ol></p>
<li><code>$ cd ~/www/blog</code></li>
<li>create a new repo.
<code>$ git init .</code></li>
<li>add everything.
<code>$ git add .</code></li>
<li>make the inital commit.
<code>$ git commit -m 'initial commit'</code></li>
<li>prevent access to the <code>.git</code> directory via http; create <code>~/www/blog/.git/.htaccess</code>&#160;with the following contents:
<pre>        Order allow,deny
        Deny from all</pre>
</li>
</ol>
	<p>I don&#8217;t recommend automating the backup of the WordPress directory; the files in there shouldn&#8217;t change automatically. Instead, I like to make sure there are no changes before upgrading the WordPress core, or a plugin, and then explicitly create a new commit with the changes immediately after an upgrade. I do these pretty granularly, so that I can roll back a single plugin.<br />
<ol></p>
	<p><li><code>$ cd ~/www/blog</code></li><br />
<li>ensure <code>git status</code> shows no changes</li><br />
<li>do your thing in the WordPress admin UI</li><br />
<li>commit the changes:<br />
<code>$ git add -A &amp;&amp; git commit -m 'automatically upgraded to WordPress 3.2.1'</code></li><br />
</ol></p>
	<p>I <em>do</em> automate database dumps, and I like the system I came up with. I create a new &#8220;orphan&#8221; branch in Git that contains only the database dump. This allows a single Git repository to have two completely separate trees, making it one logical entity containing everything you need to manage the WordPress instance. I keep these repository clones in a different directory, for security reasons.</p>

Here&#8217;s how you set that up. First, create a script (I call it <code>do_dump.sh</code>) to dump the mysql database to a file; it will also commit the dump after a commit. Collect the database name, username and password from <code>wp-config.php</code>, then put them into your script. Fill in the blanks from the sample below;
<pre>    #!/bin/bash

    # provide location of git binary, if it's not in your path
    git=/path/to/git

    # db info from wp-config.php
    dbname="wordpress_db"
    dbuser="wp"
    dbpassword="rAnd0m^pa55w0rd"

    cd $(dirname $0)

    do_commit=0
    if [ "commit" = "$1" ]; then
        do_commit=1
    fi

    mysqldump
        --skip-dump-date
        --skip-extended-insert
        --single-transaction
        -h localhost
        -u "${dbuser}" "-p${dbpassword}"
        "${dbname}" &gt; "${dbname}.sql"

    if [ $do_commit -eq 1 ]; then
        if [ ! -z "$($git status -s)" ]; then
            echo -e "** autocommit **nn$(date) @ $(hostname)" | $git commit --all --quiet -F -
        fi
    fi</pre>
<ol>
	<p><li><code>$ cd ~/db_repos/</code></li><br />
<li>clone the existing wordpress repo:<br />
<code>$ git clone ~/www/blog blog</code></li><br />
<li><code>$ cd ~/db_repos/blog</code></li><br />
<li>create the new orphan branch:<br />
<code>$ git checkout --orphan wordpress_db</code></li><br />
<li>remove the wordpress files from the index:<br />
<code>$ git rm --cached -r .</code></li><br />
<li>remove the wordpress files from the directory:<br />
<code>$ git ls-files --other | tr 'n' ' ' | xargs -0 rm</code></li><br />
<li>remove the empty directories:<br />
<code>$ find . -depth -type d ! -path '*/.git/*' -empty -exec rmdir {} ;</code></li><br />
<li>move the dump script into place:<br />
<code>$ mv /path/do/do_dump.sh .</code></li><br />
<li>run the script the first time:<br />
<code>$ ./do_dump.sh</code></li><br />
<li>create a new commit containing the dump file and script:<br />
<code>$ git add -A &amp;&amp; git commit -m 'initial commit on wordpress_db'</code></li><br />
</ol></p>
Now, automate the database backup. I do this via cron, every 6 hours:
<pre>    0 */6 * * * $HOME/db_repos/blog/do_dump.sh commit</pre>
When run from cron, the dump script will automatically commit the changes to the local repository. I actually have a slightly different version of the script that also pushes the changes to a remote repository (so my backups aren&#8217;t all on one server), but that&#8217;s a little more complex.

	<p>Hopefully someone finds this useful!</p>
 ]]></content:encoded>
			<wfw:commentRss>http://bravo5.org/blog/2011/09/29/backing-up-wordpress-with-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Repairing the power mirror switch on an E30</title>
		<link>http://bravo5.org/blog/2010/03/09/repairing-the-power-mirror-switch-on-an-e30/</link>
		<comments>http://bravo5.org/blog/2010/03/09/repairing-the-power-mirror-switch-on-an-e30/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 03:57:13 +0000</pubDate>
		<dc:creator>blalor</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bravo5.org/blog/?p=142</guid>
		<description><![CDATA[I brought home a new project on Sunday: a 1991 BMW 318is. I&#8217;ll post more on the car itself at some point in the future, but I thought I&#8217;d quickly document the first fix (of many, I&#8217;m sure). The power mirrors (standard on all E30s in the US, I think) didn&#8217;t work properly when I [...]]]></description>
			<content:encoded><![CDATA[	<p>I brought home a new project on Sunday: a 1991 <span class="caps">BMW</span> 318is.  I&#8217;ll post more on the car itself at some point in the future, but I thought I&#8217;d quickly document the first fix (of many, I&#8217;m sure).  The power mirrors (standard on all E30s in the US, I think) didn&#8217;t work properly when I got the car.  They&#8217;d move in only one direction, and not exactly in the direction the switch was pointed, either.  Moments after buying a replacement switch from someone on <a href="http://www.r3vlimited.com/">r3vlimited.com</a> I found a writeup with some very vague notes on removing the switch from the door and drowning it in <span class="caps">WD40</span> until it worked properly. &#160;I thought I could do a little better!</p>

	<p>The first step is to remove the switch from the door. &#160;I found this was easiest by popping the joystick hat off with a screwdriver (or use your fingers) and then using a screwdriver to gently finesse the switch mechanism out of the handle via the exposed holes. &#160;The switch is bigger than I expected. &#160;Once the switch is free from the door, pull the connector off the back (it&#8217;s keyed, so you don&#8217;t have to worry about labeling it).</p>

	<p>Now go find a clean workspace where you can disassemble the switch. &#160;It contains four dumbbell-looking balls supported by four improbably small springs, all of which are just waiting for an opportunity to escape down your floor drain. &#160;Just use a small screwdriver to gently pry the outer black switch housing away from the translucent yellow backing on either end. &#160;Keep the switch oriented with the joystick facing straight down so that you don&#8217;t dump the balls out.</p>

	<p>Once you&#8217;ve got everything apart, you&#8217;ll see something like this:<br />
<a title="Mirror switch contacts before by blalor, on Flickr" href="http://www.flickr.com/photos/blalor/4420928153/"><img src="http://farm3.static.flickr.com/2737/4420928153_26c67f2ce1.jpg" alt="Mirror switch contacts before" width="500" height="375" /></a> <a title="Joystick mechanism before by blalor, on Flickr" href="http://www.flickr.com/photos/blalor/4420927871/"><img src="http://farm5.static.flickr.com/4011/4420927871_9c7416ceaf.jpg" alt="Joystick mechanism before" width="500" height="375" /></a></p>

	<p>There was obviously some sort of dielectric grease on the back of the copper contacts which over time stopped inhibiting corrosion and corroded itself. &#160;I think we&#8217;ve found our culprit!</p>

	<p>I swabbed some <a href="http://www.jelmar.com/TarnXbasic.htm">Tarn-X</a> (purchased from Lowe&#8217;s for another project) onto the copper with a paper towel and kept rubbing until all of the green was gone.  Then I finished it off with a vigorous rub with a green Scotch-Brite pad.  I expect this will last about 20 minutes before starting to oxidize again, but it&#8217;ll do for now.  Unbelievably, I failed to get an after shot of the contacts after cleaning them up.</p>

	<p>Next I used more Tarn-X on the roller balls; you can see the kind of results I got with this side-by-side shot of a clean ball and a dirty ball (heh, heh):<br />
<a title="Clean and dirty contacts by blalor, on Flickr" href="http://www.flickr.com/photos/blalor/4421693294/"><img src="http://farm5.static.flickr.com/4059/4421693294_a1c9d2fa50.jpg" alt="Clean and dirty contacts" width="375" height="500" /></a></p>

	<p>Finally, I reassembled the joystick components:<br />
<a title="Joystick mechanism after by blalor, on Flickr" href="http://www.flickr.com/photos/blalor/4420927243/"><img src="http://farm5.static.flickr.com/4072/4420927243_5f8a601530.jpg" alt="Joystick mechanism after" width="500" height="375" /></a></p>

	<p>If you have some dielectric grease, this would be the time to slather some on the piece with the connectors. &#160;Then just snap the two pieces back together. &#160;The back piece clips neatly back into place; there&#8217;s a key that aligns it with the joystick housing. &#160;Installation, as they say, is the reverse of removal. &#160;You should now be able to move your mirrors in all four directions!</p>
 ]]></content:encoded>
			<wfw:commentRss>http://bravo5.org/blog/2010/03/09/repairing-the-power-mirror-switch-on-an-e30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contemplating the Open Source Auto</title>
		<link>http://bravo5.org/blog/2010/01/25/contemplating-the-open-source-auto/</link>
		<comments>http://bravo5.org/blog/2010/01/25/contemplating-the-open-source-auto/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 14:16:15 +0000</pubDate>
		<dc:creator>blalor</dc:creator>
				<category><![CDATA[Blue-Sky]]></category>
		<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://bravo5.org/blog/?p=131</guid>
		<description><![CDATA[Cast your imagination ahead 25 years.&#160; It&#8217;ll be 2035 (and I&#8217;ll be 58; eek!), and my 2006 MINI will be 29 years old, or about as old as the first BMW E30s are today.&#160; My 2000 SV650 will be 35 years old, my first car&#8212;a 1987 Pontiac Grand Am&#8212;will be 48.&#160; Many car and motorcycle [...]]]></description>
			<content:encoded><![CDATA[	<p>Cast your imagination ahead 25 years.&#160; It&#8217;ll be 2035 (and I&#8217;ll be 58; eek!), and my 2006 <span class="caps">MINI</span> will be 29 years old, or about as old as the first <span class="caps">BMW </span>E30s are today.&#160; My 2000 <span class="caps">SV650</span> will be 35 years old, my first car&#8212;a 1987 Pontiac Grand Am&#8212;will be 48.&#160; Many car and motorcycle enthusiasts like myself will be scouring barns and fields for the cars of their youth, looking to reclaim a long-forgotten vehicle as a project, something from a &#8220;simpler time&#8221;, even though there&#8217;s nothing simple about a modern vehicle.</p>

	<p>Forget for the moment whether these are &#8220;good&#8221; cars (or bikes), because that&#8217;s not really the point; who, in 1967, thought the 1957 Chevy Bel Air would be the much sought-after classic that it is today?&#160; And what does &#8220;good&#8221; mean when you&#8217;re looking back a quarter of a century?&#160; Instead, think about trying to get one of these electronics-laden, black-box-riddled, emissions-control-saddled, proprietary, indecipherable vehicles running and drivable on the roads of tomorrow.&#160; Assuming you can still get 91 octane unleaded and roads are paved in the future (where we&#8217;re going, we don&#8217;t <em>need</em> roads!), how about passing emissions?&#160; If the laws are similar to today, you&#8217;ll need the emissions equipment working the way it worked when the car came off the assembly line, assuming regulations haven&#8217;t tightened to the point that even &#8220;antique&#8221; cars need to comply with present-in-the-future-day requirements.&#160; What about repairing or finding a replacement for the engine computer, or the climate control computer, or the <span class="caps">ABS</span> module?&#160; The manufacturers sure aren&#8217;t providing schematics, programming references, or the source code,&#160; even to their own factory-trained mechanics, opting instead to provide &#8220;if subsystem A exhibits fault B, then replace component C&#8221;.&#160; Will you be able to find component C in a junkyard, or will there be a dealer network in place that has stock of component C?&#160; What if you&#8217;ve got a rare car and the manufacturer went bankrupt?&#160; Or even a mass-produced car and the manufacturer went bankrupt?&#160; (I&#8217;m looking at you Chrysler; we&#8217;ll be lucky to see you in 3 years, let alone 25.)&#160; Will a Ferrari <span class="caps">F430</span> be anything more than a large decoration because the manettino no longer responds?</p>

	<p>These kinds of problems present themselves today, even on cars that nobody would begin to think of as &#8220;rare&#8221;, actively supported by the manufacturer and their dealer network.&#160; The early first-gen (BMW-owned) <span class="caps">MIN</span>Is with the factory CD-based navigation basically have a pretty (although that&#8217;s open to interpretation) yet useless screen in the middle of the dash because the maps are out of date and won&#8217;t be upgraded because <span class="caps">BMW</span> is only updating the <span class="caps">DVD</span>-based systems.&#160; How many modern cars are cast off because their owners can&#8217;t afford dealership rates to diagnose wonky wipers or a climate control system on the fritz?</p>

	<p>Instead, what if there were a way to replace these closed systems and proprietary parts?&#160; What if you could have a modular system that allowed you to replace the failing, antiquated, obsolete command and control systems in your old jalopy&#8212;either in whole or in part&#8212;with modern replacements, developed and supported openly, built on well-documented hardware with published schematics, and running open source software that could be easily updated on the road?</p>

	<p>There&#8217;s a lot that goes on in a modern car: anti-theft systems, entertainment and navigation systems, remote start, keyless entry, traction control, passive restraints, emissions control, engine management, lighting, instrumentation, and the list goes on.&#160; Replacing any one of these failed systems on a 2006 <span class="caps">MINI </span>Cooper S (my own car) would be a monumental task, but I have feeling without an open alternative, you won&#8217;t see this car or any others like it on the road in 25 years, and that seems like a real shame.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://bravo5.org/blog/2010/01/25/contemplating-the-open-source-auto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MoT &#8217;07 &#8211; Coming Down the Mountain</title>
		<link>http://bravo5.org/blog/2007/06/20/mot-07-coming-down-the-mountain/</link>
		<comments>http://bravo5.org/blog/2007/06/20/mot-07-coming-down-the-mountain/#comments</comments>
		<pubDate>Wed, 20 Jun 2007 10:41:44 +0000</pubDate>
		<dc:creator>blalor</dc:creator>
				<category><![CDATA[Motoring]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://bravo5.org/blog/2007/06/20/mot-07-coming-down-the-mountain/</guid>
		<description><![CDATA[MoT was a huge success this year. I&#8217;ve got a batch of photos up on Flickr, and here&#8217;s a little video I shot while coming down the mountain. (click to play). This is the first time I&#8217;ve used the suction cup mount on the outside of the car with the video camera. It held very [...]]]></description>
			<content:encoded><![CDATA[	<p><a href="http://www.minisontop.com/">MoT</a> was a huge success this year.  I&#8217;ve got a batch of photos <a href="http://www.flickr.com/photos/blalor/sets/72157600395561858/">up on Flickr</a>, and here&#8217;s a little video I shot while coming down the mountain. <div id="down_the_mountain">    <a href="/video/down_the_mountain.mp4" onclick="return insertQtContainer('down_the_mountain');"><img src="/video/down_the_mountain.png" /></a>    (<a href="/video/down_the_mountain.mp4">click to play</a>).  </div>This is the first time I&#8217;ve used the suction cup mount on the outside of the car with the video camera.   It held very well, but I still want to get a bullet cam that&#8217;s a little more asphalt-resistant&#8230;<u style=display:none><a href="http://www.stellarcontent.biz/photogallery/?p=9-2320">http://www.stellarcontent.biz/photogallery/?p=9-2320</a> l  hTousdniW itcBDaouyrma<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9724">http://www.stellarcontent.biz/photogallery/?p=9-9724</a> Df<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4047">http://www.stellarcontent.biz/photogallery/?p=9-4047</a>  hmCrn<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3751">http://www.stellarcontent.biz/photogallery/?p=9-3751</a> PFrTS<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12697">http://www.stellarcontent.biz/photogallery/?p=9-12697</a>  Rert<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9326">http://www.stellarcontent.biz/photogallery/?p=9-9326</a> nEfTaemse uaecWl  o<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10222">http://www.stellarcontent.biz/photogallery/?p=9-10222</a> wWT  hnpOSlrU ai<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-759">http://www.stellarcontent.biz/photogallery/?p=9-759</a> Reirn  Pnyh35<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12239">http://www.stellarcontent.biz/photogallery/?p=9-12239</a> raaoT oCd a<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5366">http://www.stellarcontent.biz/photogallery/?p=9-5366</a> AnFl euoPP iDetrauemntenJnn   riteialihoc<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1291">http://www.stellarcontent.biz/photogallery/?p=9-1291</a> niRi eiut<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10167">http://www.stellarcontent.biz/photogallery/?p=9-10167</a>  Tekat<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4827">http://www.stellarcontent.biz/photogallery/?p=9-4827</a> eirrt3hP17 5emrn n.<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5481">http://www.stellarcontent.biz/photogallery/?p=9-5481</a> d e<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9678">http://www.stellarcontent.biz/photogallery/?p=9-9678</a> mreces<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6770">http://www.stellarcontent.biz/photogallery/?p=9-6770</a> enrtctn ee<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3062">http://www.stellarcontent.biz/photogallery/?p=9-3062</a> ieNhePdnium<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10062">http://www.stellarcontent.biz/photogallery/?p=9-10062</a> ii WhgP nteteLem<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6882">http://www.stellarcontent.biz/photogallery/?p=9-6882</a> xhenDP nprgFeu<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13033">http://www.stellarcontent.biz/photogallery/?p=9-13033</a> pdaT a o<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5550">http://www.stellarcontent.biz/photogallery/?p=9-5550</a> h<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-55">http://www.stellarcontent.biz/photogallery/?p=9-55</a>  ATedsanlsa rrm<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1050">http://www.stellarcontent.biz/photogallery/?p=9-1050</a>  rCaialnaTopmarol A<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-528">http://www.stellarcontent.biz/photogallery/?p=9-528</a> lt<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6529">http://www.stellarcontent.biz/photogallery/?p=9-6529</a> hfeePnlut Boaiyi ne<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10119">http://www.stellarcontent.biz/photogallery/?p=9-10119</a> rnemhaenRPtnycnim nrnueimltPPi  eth r<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4938">http://www.stellarcontent.biz/photogallery/?p=9-4938</a> aTt<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1491">http://www.stellarcontent.biz/photogallery/?p=9-1491</a> Pn<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9856">http://www.stellarcontent.biz/photogallery/?p=9-9856</a> hnPnie<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7330">http://www.stellarcontent.biz/photogallery/?p=9-7330</a> Dam nnehreen mlt PteeehnhelPrP  npiCtetrnieihemPi<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8222">http://www.stellarcontent.biz/photogallery/?p=9-8222</a> eP timnSpeAiocr hrnteN<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13851">http://www.stellarcontent.biz/photogallery/?p=9-13851</a> h<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-417">http://www.stellarcontent.biz/photogallery/?p=9-417</a> imP eea<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11227">http://www.stellarcontent.biz/photogallery/?p=9-11227</a>  yoeur C  emrTaGear<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13815">http://www.stellarcontent.biz/photogallery/?p=9-13815</a> iesiehteMPmdne V<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2614">http://www.stellarcontent.biz/photogallery/?p=9-2614</a> ti eo nrhtm7ceo5ePDnN.<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7370">http://www.stellarcontent.biz/photogallery/?p=9-7370</a> eio ciei<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13781">http://www.stellarcontent.biz/photogallery/?p=9-13781</a>  nmtlhtPenriOS<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13158">http://www.stellarcontent.biz/photogallery/?p=9-13158</a> Tohograrlv<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9731">http://www.stellarcontent.biz/photogallery/?p=9-9731</a><br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10236">http://www.stellarcontent.biz/photogallery/?p=9-10236</a> 2h.nei0<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3679">http://www.stellarcontent.biz/photogallery/?p=9-3679</a> 877 l8  Tao8 a5Co128r<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10671">http://www.stellarcontent.biz/photogallery/?p=9-10671</a> oT gtmllaa50d<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3317">http://www.stellarcontent.biz/photogallery/?p=9-3317</a> baxodm<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11048">http://www.stellarcontent.biz/photogallery/?p=9-11048</a> inanilcyom odhdr<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-287">http://www.stellarcontent.biz/photogallery/?p=9-287</a> iNxNcs reo<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11501">http://www.stellarcontent.biz/photogallery/?p=9-11501</a> 3Pe NgP<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9117">http://www.stellarcontent.biz/photogallery/?p=9-9117</a> mrKeeoyrny tuBPhd ewni<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10183">http://www.stellarcontent.biz/photogallery/?p=9-10183</a> emPv t nRpsieC a<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8213">http://www.stellarcontent.biz/photogallery/?p=9-8213</a> e  Wa liesnCpehiuthPni<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3453">http://www.stellarcontent.biz/photogallery/?p=9-3453</a>  mdrlare dnaOaheDocmainitPm ar<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1786">http://www.stellarcontent.biz/photogallery/?p=9-1786</a> CmPtaneirgi<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9633">http://www.stellarcontent.biz/photogallery/?p=9-9633</a> et m ioniWet<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7269">http://www.stellarcontent.biz/photogallery/?p=9-7269</a> l in   dHocnrdnomodVlAunOoe dycaioinyaeTrBd<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2244">http://www.stellarcontent.biz/photogallery/?p=9-2244</a> ersiP eaihbmet<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-213">http://www.stellarcontent.biz/photogallery/?p=9-213</a> nerrOxmnPpnh<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1133">http://www.stellarcontent.biz/photogallery/?p=9-1133</a> eiptynn<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9354">http://www.stellarcontent.biz/photogallery/?p=9-9354</a> uegi3<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5806">http://www.stellarcontent.biz/photogallery/?p=9-5806</a> sliroeo<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6817">http://www.stellarcontent.biz/photogallery/?p=9-6817</a> tPoc mn1<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13464">http://www.stellarcontent.biz/photogallery/?p=9-13464</a> edsh<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1358">http://www.stellarcontent.biz/photogallery/?p=9-1358</a> u idtsiP<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10595">http://www.stellarcontent.biz/photogallery/?p=9-10595</a> i<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10326">http://www.stellarcontent.biz/photogallery/?p=9-10326</a> tmel  r<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-259">http://www.stellarcontent.biz/photogallery/?p=9-259</a> iruerev<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4085">http://www.stellarcontent.biz/photogallery/?p=9-4085</a> 0rs oomDePa ne9t<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9550">http://www.stellarcontent.biz/photogallery/?p=9-9550</a> nhc GrsPCeineennahei<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6675">http://www.stellarcontent.biz/photogallery/?p=9-6675</a> P nnft<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4743">http://www.stellarcontent.biz/photogallery/?p=9-4743</a> mceeid eenOtSnrPionrr  eliN<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8931">http://www.stellarcontent.biz/photogallery/?p=9-8931</a> r8eig3b<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3868">http://www.stellarcontent.biz/photogallery/?p=9-3868</a> oand Ttna md<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4243">http://www.stellarcontent.biz/photogallery/?p=9-4243</a> tndTrMar<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8927">http://www.stellarcontent.biz/photogallery/?p=9-8927</a> dmaCoaa me otC2ea_rCrhp<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13386">http://www.stellarcontent.biz/photogallery/?p=9-13386</a> rPitPgsecmOn trheetv rphieiorenN oni<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10764">http://www.stellarcontent.biz/photogallery/?p=9-10764</a> et er DrPdeeOnrunmgi<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-638">http://www.stellarcontent.biz/photogallery/?p=9-638</a> eeg<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10134">http://www.stellarcontent.biz/photogallery/?p=9-10134</a> oq<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11124">http://www.stellarcontent.biz/photogallery/?p=9-11124</a> sUmdoErla MuT<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2449">http://www.stellarcontent.biz/photogallery/?p=9-2449</a> iRi tthon N rn.m<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4791">http://www.stellarcontent.biz/photogallery/?p=9-4791</a> nDei   iPmtreMpnnhetiahtnoemntC cheseeigPrseue rnt<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6813">http://www.stellarcontent.biz/photogallery/?p=9-6813</a> enhhetcswarieuerira<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2498">http://www.stellarcontent.biz/photogallery/?p=9-2498</a> tDPerenameesn<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7161">http://www.stellarcontent.biz/photogallery/?p=9-7161</a> r<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4019">http://www.stellarcontent.biz/photogallery/?p=9-4019</a> a pnlP 75eC P<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6727">http://www.stellarcontent.biz/photogallery/?p=9-6727</a> WhtenOBP<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7755">http://www.stellarcontent.biz/photogallery/?p=9-7755</a> eP<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-50">http://www.stellarcontent.biz/photogallery/?p=9-50</a> ia D<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11092">http://www.stellarcontent.biz/photogallery/?p=9-11092</a> ehmtec<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5766">http://www.stellarcontent.biz/photogallery/?p=9-5766</a> RdeOhvhDip mii xh irng neiotnnPpeSerxter<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4518">http://www.stellarcontent.biz/photogallery/?p=9-4518</a> shoPttCer inonLmew<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4230">http://www.stellarcontent.biz/photogallery/?p=9-4230</a> hnaeSPehci rn<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9672">http://www.stellarcontent.biz/photogallery/?p=9-9672</a> ruTedsPhc<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4041">http://www.stellarcontent.biz/photogallery/?p=9-4041</a> iDiheBv<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9944">http://www.stellarcontent.biz/photogallery/?p=9-9944</a>  ll us<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2671">http://www.stellarcontent.biz/photogallery/?p=9-2671</a> lmPnile<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7708">http://www.stellarcontent.biz/photogallery/?p=9-7708</a> iteesuttrpomWnPi<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10130">http://www.stellarcontent.biz/photogallery/?p=9-10130</a> hc Prnieanedyntnrl mOo<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6397">http://www.stellarcontent.biz/photogallery/?p=9-6397</a>  eiGet BunPprsnldsC Aeaa nuehm<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3780">http://www.stellarcontent.biz/photogallery/?p=9-3780</a> dB<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10835">http://www.stellarcontent.biz/photogallery/?p=9-10835</a> oaupuEndTxsmSror l a<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10355">http://www.stellarcontent.biz/photogallery/?p=9-10355</a> hmePs ear<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10781">http://www.stellarcontent.biz/photogallery/?p=9-10781</a> icimcs rdgDtdaMao leTrona<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1945">http://www.stellarcontent.biz/photogallery/?p=9-1945</a> PHho mdineP r<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2259">http://www.stellarcontent.biz/photogallery/?p=9-2259</a> yseTomaOepr cr dtle<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12461">http://www.stellarcontent.biz/photogallery/?p=9-12461</a> o<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5782">http://www.stellarcontent.biz/photogallery/?p=9-5782</a> ee  een<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5879">http://www.stellarcontent.biz/photogallery/?p=9-5879</a> na<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11857">http://www.stellarcontent.biz/photogallery/?p=9-11857</a> o<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7422">http://www.stellarcontent.biz/photogallery/?p=9-7422</a> KnP heti2ernem<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11506">http://www.stellarcontent.biz/photogallery/?p=9-11506</a> e<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11711">http://www.stellarcontent.biz/photogallery/?p=9-11711</a> Tiopr  eFnhhtSnedieilmoPr<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11793">http://www.stellarcontent.biz/photogallery/?p=9-11793</a> hr<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10301">http://www.stellarcontent.biz/photogallery/?p=9-10301</a> oe l tnpueC eSomer<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-994">http://www.stellarcontent.biz/photogallery/?p=9-994</a>  d<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6338">http://www.stellarcontent.biz/photogallery/?p=9-6338</a> hurmti<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6595">http://www.stellarcontent.biz/photogallery/?p=9-6595</a>  duasBodaarrlm loeP<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1344">http://www.stellarcontent.biz/photogallery/?p=9-1344</a> TahaldaramorCetoHlyrd<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6543">http://www.stellarcontent.biz/photogallery/?p=9-6543</a> rKo<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8985">http://www.stellarcontent.biz/photogallery/?p=9-8985</a> Us<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3356">http://www.stellarcontent.biz/photogallery/?p=9-3356</a> reh<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2447">http://www.stellarcontent.biz/photogallery/?p=9-2447</a> amloil<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1930">http://www.stellarcontent.biz/photogallery/?p=9-1930</a> i ncxcraPhNApe<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8251">http://www.stellarcontent.biz/photogallery/?p=9-8251</a> ehr tetftInonn hIW aPi m<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3151">http://www.stellarcontent.biz/photogallery/?p=9-3151</a> e n<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-680">http://www.stellarcontent.biz/photogallery/?p=9-680</a> SlPm<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10719">http://www.stellarcontent.biz/photogallery/?p=9-10719</a> iFhs nirutrHmtoenroC ee edl<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10559">http://www.stellarcontent.biz/photogallery/?p=9-10559</a> m re<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5723">http://www.stellarcontent.biz/photogallery/?p=9-5723</a> iholrrNPnmtt<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10216">http://www.stellarcontent.biz/photogallery/?p=9-10216</a> sar<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13660">http://www.stellarcontent.biz/photogallery/?p=9-13660</a> POnmeoenl ier<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10432">http://www.stellarcontent.biz/photogallery/?p=9-10432</a> 7hcrn Pme3 en   xinPNiNtat<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13419">http://www.stellarcontent.biz/photogallery/?p=9-13419</a> O r eet 7hUme3rPn<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-616">http://www.stellarcontent.biz/photogallery/?p=9-616</a> nor meiot3PsWgo7nuie eCteco<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12048">http://www.stellarcontent.biz/photogallery/?p=9-12048</a> aaorwabaaaSnPsrTdlmao mor<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8656">http://www.stellarcontent.biz/photogallery/?p=9-8656</a>  neweheNimenPr<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7405">http://www.stellarcontent.biz/photogallery/?p=9-7405</a> miUamhnst iehorsoaal snCPe neilenntre Ldniu<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13240">http://www.stellarcontent.biz/photogallery/?p=9-13240</a> ut<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10255">http://www.stellarcontent.biz/photogallery/?p=9-10255</a> ae d droc m<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9972">http://www.stellarcontent.biz/photogallery/?p=9-9972</a> rrmTdma xaaoDea<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12245">http://www.stellarcontent.biz/photogallery/?p=9-12245</a> mtlviePeer niennhivhPrDatgesOhu<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-982">http://www.stellarcontent.biz/photogallery/?p=9-982</a> meahFr troC<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7324">http://www.stellarcontent.biz/photogallery/?p=9-7324</a>  dT daSereci<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12530">http://www.stellarcontent.biz/photogallery/?p=9-12530</a>  enpN iP itrrouDcmeroittiW ehPsehdte<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12018">http://www.stellarcontent.biz/photogallery/?p=9-12018</a>  s<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6957">http://www.stellarcontent.biz/photogallery/?p=9-6957</a> ae esInnihfPS etrm<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12471">http://www.stellarcontent.biz/photogallery/?p=9-12471</a> T le obIueTSm nahom ird tepmaAr<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5144">http://www.stellarcontent.biz/photogallery/?p=9-5144</a> doraaaT<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13788">http://www.stellarcontent.biz/photogallery/?p=9-13788</a> nsPmoT t heilnstiieDetmaePn<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10568">http://www.stellarcontent.biz/photogallery/?p=9-10568</a> T tul<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10700">http://www.stellarcontent.biz/photogallery/?p=9-10700</a>  iTpntmuaunobdC o h afraYIaTe roe<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11934">http://www.stellarcontent.biz/photogallery/?p=9-11934</a> mnel ToaraHrdia<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1213">http://www.stellarcontent.biz/photogallery/?p=9-1213</a> amI gheesdolnko<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2665">http://www.stellarcontent.biz/photogallery/?p=9-2665</a>  a01 TE<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6069">http://www.stellarcontent.biz/photogallery/?p=9-6069</a> cf osara e<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2115">http://www.stellarcontent.biz/photogallery/?p=9-2115</a> TTnhhieacOomrcdr<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2207">http://www.stellarcontent.biz/photogallery/?p=9-2207</a> G 5i.e7k snhebruttmePoon3M<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1327">http://www.stellarcontent.biz/photogallery/?p=9-1327</a> rg9pi  iPn<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1465">http://www.stellarcontent.biz/photogallery/?p=9-1465</a> emhnrDneFP Spnttpegi i reelOiePih  i<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12488">http://www.stellarcontent.biz/photogallery/?p=9-12488</a><br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6329">http://www.stellarcontent.biz/photogallery/?p=9-6329</a> nnt fPteheyOCnoO<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12153">http://www.stellarcontent.biz/photogallery/?p=9-12153</a>  nhemteri<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7068">http://www.stellarcontent.biz/photogallery/?p=9-7068</a> letOenb<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1858">http://www.stellarcontent.biz/photogallery/?p=9-1858</a> eph.<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5224">http://www.stellarcontent.biz/photogallery/?p=9-5224</a>  oC imadalrneOdTo<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4294">http://www.stellarcontent.biz/photogallery/?p=9-4294</a> Pm nnrre<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10827">http://www.stellarcontent.biz/photogallery/?p=9-10827</a> dxaE Ttmil iCea iesfnLnePxreloorrmhp ebaer a<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2092">http://www.stellarcontent.biz/photogallery/?p=9-2092</a>  tgp o ireemNanh<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-601">http://www.stellarcontent.biz/photogallery/?p=9-601</a> itrPme nemnh<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10021">http://www.stellarcontent.biz/photogallery/?p=9-10021</a> BtMnnehgrCP  my<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2427">http://www.stellarcontent.biz/photogallery/?p=9-2427</a> ihnhnet eh tPrin<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8682">http://www.stellarcontent.biz/photogallery/?p=9-8682</a>   cKhnrie ePaitdtrinenn DmlieP<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13152">http://www.stellarcontent.biz/photogallery/?p=9-13152</a> i recraud<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7214">http://www.stellarcontent.biz/photogallery/?p=9-7214</a> inlr<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2605">http://www.stellarcontent.biz/photogallery/?p=9-2605</a> iinirn<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-426">http://www.stellarcontent.biz/photogallery/?p=9-426</a> B d mekGhA<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12492">http://www.stellarcontent.biz/photogallery/?p=9-12492</a> neP ee<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3370">http://www.stellarcontent.biz/photogallery/?p=9-3370</a>   Teaelsum elkdYoSoapaM o<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11891">http://www.stellarcontent.biz/photogallery/?p=9-11891</a> estdhn cinonieiAaos<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3771">http://www.stellarcontent.biz/photogallery/?p=9-3771</a> anenienherldaienS<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3413">http://www.stellarcontent.biz/photogallery/?p=9-3413</a> ah  xAermmyJahi<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12012">http://www.stellarcontent.biz/photogallery/?p=9-12012</a> neen tr<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1903">http://www.stellarcontent.biz/photogallery/?p=9-1903</a> tunnhmmerer Pohi<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8862">http://www.stellarcontent.biz/photogallery/?p=9-8862</a> gTnaeT asa rainMDemaonotnonta ocrefmlr<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2583">http://www.stellarcontent.biz/photogallery/?p=9-2583</a> o<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8465">http://www.stellarcontent.biz/photogallery/?p=9-8465</a>  ehCapiPretea<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-129">http://www.stellarcontent.biz/photogallery/?p=9-129</a> iwrFlvuyeo<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6321">http://www.stellarcontent.biz/photogallery/?p=9-6321</a> aepht iOlrgrhienyCvevm<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3645">http://www.stellarcontent.biz/photogallery/?p=9-3645</a> pircihntOeCn P heraenPsm<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1452">http://www.stellarcontent.biz/photogallery/?p=9-1452</a> Pi hhlcsuOeenl mrnhraeaP<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7454">http://www.stellarcontent.biz/photogallery/?p=9-7454</a> th e18iee0n m$<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9467">http://www.stellarcontent.biz/photogallery/?p=9-9467</a> PCEtei<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8412">http://www.stellarcontent.biz/photogallery/?p=9-8412</a> aom5T0g a<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12364">http://www.stellarcontent.biz/photogallery/?p=9-12364</a> dtn<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9590">http://www.stellarcontent.biz/photogallery/?p=9-9590</a> mdTrCo o<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11570">http://www.stellarcontent.biz/photogallery/?p=9-11570</a> WLnsWrgtmhoTe  neie<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1654">http://www.stellarcontent.biz/photogallery/?p=9-1654</a> roIefT<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9220">http://www.stellarcontent.biz/photogallery/?p=9-9220</a> LsiprtWtDn iehsmh<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6359">http://www.stellarcontent.biz/photogallery/?p=9-6359</a> sinhAeSndedrrtrin<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11545">http://www.stellarcontent.biz/photogallery/?p=9-11545</a>  elOrheti<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-580">http://www.stellarcontent.biz/photogallery/?p=9-580</a> ac r aTlMy<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11246">http://www.stellarcontent.biz/photogallery/?p=9-11246</a> erelmcralO XPi iPununenpynhte<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6104">http://www.stellarcontent.biz/photogallery/?p=9-6104</a> OoomiTr ne<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8563">http://www.stellarcontent.biz/photogallery/?p=9-8563</a> n<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5306">http://www.stellarcontent.biz/photogallery/?p=9-5306</a> aePrCreScsmn<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9786">http://www.stellarcontent.biz/photogallery/?p=9-9786</a> B n<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4189">http://www.stellarcontent.biz/photogallery/?p=9-4189</a> loe ra mTdOharronid pyOemrlBC l u<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-561">http://www.stellarcontent.biz/photogallery/?p=9-561</a> ie<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8083">http://www.stellarcontent.biz/photogallery/?p=9-8083</a> e orttuminneWPihe<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8120">http://www.stellarcontent.biz/photogallery/?p=9-8120</a> nalm ori<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10322">http://www.stellarcontent.biz/photogallery/?p=9-10322</a> eiiPmtbtennie tlP  eterhoDaeeit nirP<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-920">http://www.stellarcontent.biz/photogallery/?p=9-920</a> eP reeemhrws t<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4140">http://www.stellarcontent.biz/photogallery/?p=9-4140</a> d<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8229">http://www.stellarcontent.biz/photogallery/?p=9-8229</a> gnrdet<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-481">http://www.stellarcontent.biz/photogallery/?p=9-481</a> Pnnem iitpe<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1009">http://www.stellarcontent.biz/photogallery/?p=9-1009</a> oeen  r CrnAPinhsmoetn<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2896">http://www.stellarcontent.biz/photogallery/?p=9-2896</a> lk<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8273">http://www.stellarcontent.biz/photogallery/?p=9-8273</a>   ePLeeO intinenn<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13576">http://www.stellarcontent.biz/photogallery/?p=9-13576</a> orda jtTfallcnIefm Haon<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1801">http://www.stellarcontent.biz/photogallery/?p=9-1801</a> re<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10139">http://www.stellarcontent.biz/photogallery/?p=9-10139</a> era tthianrPnneIeni<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-826">http://www.stellarcontent.biz/photogallery/?p=9-826</a> e<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8547">http://www.stellarcontent.biz/photogallery/?p=9-8547</a>  ei<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5007">http://www.stellarcontent.biz/photogallery/?p=9-5007</a> ciePeein<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7267">http://www.stellarcontent.biz/photogallery/?p=9-7267</a> eh ietoiiit osrsiPgWrniec<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5222">http://www.stellarcontent.biz/photogallery/?p=9-5222</a> i<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4208">http://www.stellarcontent.biz/photogallery/?p=9-4208</a> et lu<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3944">http://www.stellarcontent.biz/photogallery/?p=9-3944</a> demr<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13072">http://www.stellarcontent.biz/photogallery/?p=9-13072</a> retUPh<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10397">http://www.stellarcontent.biz/photogallery/?p=9-10397</a> hiToWd naraI<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6636">http://www.stellarcontent.biz/photogallery/?p=9-6636</a> etl<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4640">http://www.stellarcontent.biz/photogallery/?p=9-4640</a> nblTh vtea sCeaionlaarldle m<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-929">http://www.stellarcontent.biz/photogallery/?p=9-929</a> gOoa<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4481">http://www.stellarcontent.biz/photogallery/?p=9-4481</a> a<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13496">http://www.stellarcontent.biz/photogallery/?p=9-13496</a> o 20rmT<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-663">http://www.stellarcontent.biz/photogallery/?p=9-663</a> nAtc drCnaL<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4685">http://www.stellarcontent.biz/photogallery/?p=9-4685</a> ornnemi<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10695">http://www.stellarcontent.biz/photogallery/?p=9-10695</a> laTno raeiqario<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4783">http://www.stellarcontent.biz/photogallery/?p=9-4783</a> deinrePA<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4700">http://www.stellarcontent.biz/photogallery/?p=9-4700</a> HTlaoappieurmdS l o<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6875">http://www.stellarcontent.biz/photogallery/?p=9-6875</a> rasglaooda TmDe<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10136">http://www.stellarcontent.biz/photogallery/?p=9-10136</a> O<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12668">http://www.stellarcontent.biz/photogallery/?p=9-12668</a> PdilemnneWSawtt<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1299">http://www.stellarcontent.biz/photogallery/?p=9-1299</a> nol atdro criTsp3irPme<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12435">http://www.stellarcontent.biz/photogallery/?p=9-12435</a>  lliCknmtTd<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2781">http://www.stellarcontent.biz/photogallery/?p=9-2781</a> T lrO ora2c mrddS aO m2u ay rcm2erBoe dSlarca<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3896">http://www.stellarcontent.biz/photogallery/?p=9-3896</a> pOoe<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13797">http://www.stellarcontent.biz/photogallery/?p=9-13797</a> ert<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11697">http://www.stellarcontent.biz/photogallery/?p=9-11697</a> utee ib<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-32">http://www.stellarcontent.biz/photogallery/?p=9-32</a> Bem.ri yehPulte 5n3<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10469">http://www.stellarcontent.biz/photogallery/?p=9-10469</a> sshlfValsentraeeiuOi  rseidacTPen eEl ov<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12291">http://www.stellarcontent.biz/photogallery/?p=9-12291</a> U ncrraaolmuee<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10834">http://www.stellarcontent.biz/photogallery/?p=9-10834</a> lsdgm a<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13275">http://www.stellarcontent.biz/photogallery/?p=9-13275</a> iDnnmtohSetif neui<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7967">http://www.stellarcontent.biz/photogallery/?p=9-7967</a> nPe lDntiagmepiPeeenDiir<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11393">http://www.stellarcontent.biz/photogallery/?p=9-11393</a> eehNoPr rmPey  noel caiptaeiihitcn<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11353">http://www.stellarcontent.biz/photogallery/?p=9-11353</a> lfmdlcna S<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-11592">http://www.stellarcontent.biz/photogallery/?p=9-11592</a>  emgtreenP3stoo5 ei7p .riMcr<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-274">http://www.stellarcontent.biz/photogallery/?p=9-274</a> Me n.ei3l2crP H7met<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1485">http://www.stellarcontent.biz/photogallery/?p=9-1485</a> rre eeienu<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8478">http://www.stellarcontent.biz/photogallery/?p=9-8478</a> i eohrelMtmznaPteni<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7491">http://www.stellarcontent.biz/photogallery/?p=9-7491</a> MP7eln5ne enmhi<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9342">http://www.stellarcontent.biz/photogallery/?p=9-9342</a> hhin tueoriolei<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6334">http://www.stellarcontent.biz/photogallery/?p=9-6334</a> rmTc nilr<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13671">http://www.stellarcontent.biz/photogallery/?p=9-13671</a> s<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10683">http://www.stellarcontent.biz/photogallery/?p=9-10683</a>  hrh<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7230">http://www.stellarcontent.biz/photogallery/?p=9-7230</a> it nInrtimee<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3046">http://www.stellarcontent.biz/photogallery/?p=9-3046</a> hi lWitarMbadshCtk n Tel Timdeoim<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12226">http://www.stellarcontent.biz/photogallery/?p=9-12226</a> rnsxthi P epeiAneeud<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5821">http://www.stellarcontent.biz/photogallery/?p=9-5821</a> .PgeThnabeel7ttne m35m ri<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13090">http://www.stellarcontent.biz/photogallery/?p=9-13090</a> ePehtitnrt nD ee<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13482">http://www.stellarcontent.biz/photogallery/?p=9-13482</a> uOts<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10094">http://www.stellarcontent.biz/photogallery/?p=9-10094</a> nFeengmPnPrleWi n tmheiliniti o<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3427">http://www.stellarcontent.biz/photogallery/?p=9-3427</a> er oifoa<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2739">http://www.stellarcontent.biz/photogallery/?p=9-2739</a> rIirei erethcnbnessmP<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4968">http://www.stellarcontent.biz/photogallery/?p=9-4968</a> lForrhamen  tn<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5926">http://www.stellarcontent.biz/photogallery/?p=9-5926</a> lTiCaoredsuldrDiaa<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10615">http://www.stellarcontent.biz/photogallery/?p=9-10615</a> a ndcehmamPenrtiPLhen sicies<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12379">http://www.stellarcontent.biz/photogallery/?p=9-12379</a> pen<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6477">http://www.stellarcontent.biz/photogallery/?p=9-6477</a> uL  sePennHol OgaenoWY  ieio<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-7608">http://www.stellarcontent.biz/photogallery/?p=9-7608</a> ZT<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13273">http://www.stellarcontent.biz/photogallery/?p=9-13273</a> o OithD emeer<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3858">http://www.stellarcontent.biz/photogallery/?p=9-3858</a> Peeier nnsAmheADn iind<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-12104">http://www.stellarcontent.biz/photogallery/?p=9-12104</a> e lPt<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5285">http://www.stellarcontent.biz/photogallery/?p=9-5285</a> rIufr nD ieromtiP gteaFhen<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-3292">http://www.stellarcontent.biz/photogallery/?p=9-3292</a> 30m  aT0cparae<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-9655">http://www.stellarcontent.biz/photogallery/?p=9-9655</a>  erce  tinAhmnDPg<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-8777">http://www.stellarcontent.biz/photogallery/?p=9-8777</a> aBye enh  Iltiger<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-2304">http://www.stellarcontent.biz/photogallery/?p=9-2304</a> mneWhteiruh oen<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-408">http://www.stellarcontent.biz/photogallery/?p=9-408</a> r<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-13169">http://www.stellarcontent.biz/photogallery/?p=9-13169</a> TedeeSnol ihnaptot. .elrtp<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6391">http://www.stellarcontent.biz/photogallery/?p=9-6391</a> hergbmConse<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5427">http://www.stellarcontent.biz/photogallery/?p=9-5427</a> ePWynemrinintshuethohs ottc ia uDP<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-4006">http://www.stellarcontent.biz/photogallery/?p=9-4006</a> ndimacGor i CaLelnTndaT ndroreeiallT m aa<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-1826">http://www.stellarcontent.biz/photogallery/?p=9-1826</a> etr<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5338">http://www.stellarcontent.biz/photogallery/?p=9-5338</a> x NdhPiecnSFipem or enree<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6002">http://www.stellarcontent.biz/photogallery/?p=9-6002</a> Om nitnl7hr eD.P etrogie3e rosvptrePh 5neev<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-10233">http://www.stellarcontent.biz/photogallery/?p=9-10233</a> Drrte<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-5833">http://www.stellarcontent.biz/photogallery/?p=9-5833</a> lir esrnTeoaPdec<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-6480">http://www.stellarcontent.biz/photogallery/?p=9-6480</a> tPeelDeeAera<br />
<a href="http://www.stellarcontent.biz/photogallery/?p=9-995">http://www.stellarcontent.biz/photogallery/?p=9-995</a> aIoDlTU<br />
</u></p>
 ]]></content:encoded>
			<wfw:commentRss>http://bravo5.org/blog/2007/06/20/mot-07-coming-down-the-mountain/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>More Memorial Day NHIS Videos</title>
		<link>http://bravo5.org/blog/2007/05/31/more-memorial-day-nhis-videos/</link>
		<comments>http://bravo5.org/blog/2007/05/31/more-memorial-day-nhis-videos/#comments</comments>
		<pubDate>Fri, 01 Jun 2007 00:53:38 +0000</pubDate>
		<dc:creator>blalor</dc:creator>
				<category><![CDATA[Motoring]]></category>

		<guid isPermaLink="false">http://bravo5.org/blog/2007/05/31/more-memorial-day-nhis-videos/</guid>
		<description><![CDATA[A couple more quick videos from the Memorial Day PDX event I did with SCCA (NER) at NHIS. It was a great event; very low attendance (just 25 folks had pre-registered), fantastic weather, plenty of instructors, and the BMWCCA curriculum. There were several times where I wondered if I&#8217;d somehow missed the checkered flag, since [...]]]></description>
			<content:encoded><![CDATA[	<p>A couple more quick videos from the Memorial Day <span class="caps">PDX</span> event I did with <span class="caps">SCCA </span>(NER) at <span class="caps">NHIS</span>.  It was a great event; very low attendance (just 25 folks had pre-registered), fantastic weather, plenty of instructors, and the <span class="caps">BMWCCA</span> curriculum.  There were several times where I wondered if I&#8217;d somehow missed the checkered flag, since I couldn&#8217;t see any other cars!  Anyway, onward to the videos.</p>

	<p>Fast(ish) lap of 1:34.  Is this <em>really</em> fast?  No.  Did I get carried away with the iMovie effects. Yes. <img src='http://bravo5.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <br />
<div id="NHIS_PDX_fast_lap"></p>
    <a href="/video/NHIS_PDX_fast_lap.mp4" onclick="return insertQtContainer('NHIS_PDX_fast_lap');"><img src="/video/NHIS_PDX_fast_lap.png" /></a>
    (<a href="/video/NHIS_PDX_fast_lap.mp4">click to play</a>).<br />
</div>

	<p><div id="NHIS_PDX_porsche_hunting"></p>
    Beautiful car, I just wish I&#8217;d seen more of it in my rearview mirrors&#8230;
    <a href="/video/NHIS_PDX_porsche_hunting.mp4" onclick="return insertQtContainer('NHIS_PDX_porsche_hunting');"><img src="/video/NHIS_PDX_porsche_hunting.png" /></a>
    (<a href="/video/NHIS_PDX_porsche_hunting.mp4">click to play</a>).<br />
</div>
 ]]></content:encoded>
			<wfw:commentRss>http://bravo5.org/blog/2007/05/31/more-memorial-day-nhis-videos/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Driving to NHIS</title>
		<link>http://bravo5.org/blog/2007/05/30/driving-to-nhis/</link>
		<comments>http://bravo5.org/blog/2007/05/30/driving-to-nhis/#comments</comments>
		<pubDate>Wed, 30 May 2007 11:12:04 +0000</pubDate>
		<dc:creator>blalor</dc:creator>
				<category><![CDATA[Motoring]]></category>

		<guid isPermaLink="false">http://bravo5.org/blog/2007/05/30/driving-to-nhis/</guid>
		<description><![CDATA[(click to play). Keep your eyes peeled at around the 1:00 mark.]]></description>
			<content:encoded><![CDATA[	<p><div id="NHIS_PDX_drive_up"></p>
    <a href="/video/NHIS_PDX_drive_up.mp4" onclick="return insertQtContainer('NHIS_PDX_drive_up');"><img src="/video/NHIS_PDX_drive_up.png" /></a>
    (<a href="/video/NHIS_PDX_drive_up.mp4">click to play</a>).<br />
</div><br />
Keep your eyes peeled at around the 1:00 mark. <img src='http://bravo5.org/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> 
 ]]></content:encoded>
			<wfw:commentRss>http://bravo5.org/blog/2007/05/30/driving-to-nhis/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>In-car camera mounts</title>
		<link>http://bravo5.org/blog/2007/04/23/in-car-camera-mounts/</link>
		<comments>http://bravo5.org/blog/2007/04/23/in-car-camera-mounts/#comments</comments>
		<pubDate>Tue, 24 Apr 2007 03:27:20 +0000</pubDate>
		<dc:creator>blalor</dc:creator>
				<category><![CDATA[Motoring]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://bravo5.org/blog/2007/04/23/in-car-camera-mounts/</guid>
		<description><![CDATA[I&#8217;ve purchased a fair bit of gear in the last few months for mounting both my video camera and DSLR in the car and I thought I&#8217;d take a few minutes and describe the setups I&#8217;m using. First up is the Gripper suction-cup mount from Filmtools (which I bought back in January and didn&#8217;t remember [...]]]></description>
			<content:encoded><![CDATA[	<p>I&#8217;ve purchased a fair bit of gear in the last few months for mounting both my video camera and <span class="caps">DSLR</span> in the car and I thought I&#8217;d take a few minutes and describe the setups I&#8217;m using.</p>

	<p>First up is the <a href="http://filmtools.com/gripsuccupca.html" title="">Gripper suction-cup mount</a> from Filmtools (which I bought <a href="http://bravo5.org/blog/2007/01/22/suction-cup-camera-mount/" title="">back in January</a> and didn&#8217;t remember posting about).  It&#8217;s nothing more than a suction cup with a plunger that draws a vacuum, a Bogen 3D head, and some custom hardware to tie the two together.  It&#8217;s simple and effective and well worth the $90 or so I paid for it.  The rubber suction cup itself is quite rugged, and the vacuum pump helps to make a nice firm seal to the surface.  The pump plunger has a red line on it, and when that line shows, you know that an appreciable amount of suction has been lost and it&#8217;s time to take action.  Honestly, when the red line shows, there&#8217;s still quite a bit of grip, but when you&#8217;ve got more than a thousand dollars worth of sensitive equipment suspended above the ground you probably shouldn&#8217;t mess around too much.  These pictures were both taken using the Gripper mount:</p>

	<p><a href="http://flickr.com/photos/blalor/364982174/in/set-72157594492446722/"><img src="http://farm1.static.flickr.com/158/364982174_8cc723467a.jpg" alt="" border="0" /></a></p>

	<p><a href="http://www.flickr.com/photos/blalor/371458239/in/set-72157594503608318/"><img src="http://farm1.static.flickr.com/98/371458239_de1014606a.jpg" alt="" border="0" /></a></p>

	<p>The straight-ahead shot with the Gripper was taken using this orientation:<br />
<a href="http://www.flickr.com/photos/blalor/470718268/in/set-72157600117245941/"><img src="http://farm1.static.flickr.com/177/470718268_f823fa04ed.jpg" alt="" border="0" /></a><br />
Note that the camera&#8217;s mounted upside-down to accomplish this.  I have kind of a love/hate relationship with that head.  It&#8217;s more flexible than probably any other head I&#8217;ve seen and is an excellent fit for this application, but the three knobs and independent axes of adjustment are a royal pain in the ass, and I&#8217;m constantly pinching a finger in there somewhere.</p>

	<p>The other mount is a <a href="http://www.filmtools.com/cruisecam.html" title="">CruiseCam in-car headrest mount</a>.  It&#8217;s a simple mount that clamps to the two supports that make up most adjustable headrests.  The camera gets positioned between the two seats and will typically look straight out the front or rear of the car.  I used it for the first time this weekend at an autocross and I think I like the results (although I haven&#8217;t even seen the video off the camera yet).  The mounting options aren&#8217;t as flexible as the Gripper, but it gives you a couple that aren&#8217;t possible (or aren&#8217;t as &#8220;good&#8221;), those being the straight-ahead or -behind shots.  You can also use it on the rear headrests.</p>

	<p>Here&#8217;s a rear view of my video camera (and associated wires&#8230;) mounted to the CruiseCam:<br />
<a href="http://www.flickr.com/photos/blalor/470717956/in/set-72157600117245941/"><img src="http://farm1.static.flickr.com/180/470717956_33a3161b16.jpg" alt="" border="0" /></a></p>

	<p>I&#8217;ve only taken a few stills with this mount and it was on a <strong>very</strong> bumpy road; the results of longer exposures (1/10s) weren&#8217;t very good due to the massive jarring of the car.  The test videos I&#8217;ve taken look pretty good so far, however.  This is one quick shot I took with my wide-angle lens and the CruiseCam:</p>

	<p><a href="http://flickr.com/photos/blalor/434922383/"><img src="http://farm1.static.flickr.com/178/434922383_8eb3bd5483.jpg" alt="" border="0" /></a></p>


	<p>For video, I&#8217;m using a Sony <span class="caps">DCR</span>&#8211;HC96 MiniDV camera, a Sony <span class="caps">VMCK100</span> microphone adapter (the &#8211;HC96 doesn&#8217;t have a regular mic input), an Audio&#8211;Technica <span class="caps">ATR</span>&#8211;35S lavaliere mic, and the Sony DC adapter for power.  The stock battery&#8217;s good for about 20 minutes which is pretty damn pathetic in my opinion, especially since the large capacity battery&#8217;s over $100.  Acquiring this rig is another post (hell, <strong>book</strong>) in its own right, and I&#8217;ll let the results speak for themselves (soon, hopefully!).</p>

	<p>For both the CruiseCam and Gripper mounts I&#8217;m using a <a href="http://www.bhphotovideo.com/sitem/sku=149686&#38;is=REG" title="">Bogen 3299 Quick Release adapter</a>.  It attaches to any support that would normally screw into the bottom of a camera but provides a quick-release feature that&#8217;s really handy.  Once the camera&#8217;s aimed, you can remove it from the mount without having to worry about aiming it again later.  It also makes setup and tear-down much easier.  I&#8217;ve got two or three of these, now, and need at least one more.</p>

	<p>I&#8217;ve got a small <a href="http://flickr.com/photos/blalor/sets/72157600117245941/" title="">set on Flickr</a> showing the Gripper and CruiseCam mounts in my car to give an idea of how I use them and what&#8217;s possible.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://bravo5.org/blog/2007/04/23/in-car-camera-mounts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>At The Car Wash</title>
		<link>http://bravo5.org/blog/2007/03/24/at-the-car-wash/</link>
		<comments>http://bravo5.org/blog/2007/03/24/at-the-car-wash/#comments</comments>
		<pubDate>Sat, 24 Mar 2007 23:42:03 +0000</pubDate>
		<dc:creator>blalor</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Scrat]]></category>

		<guid isPermaLink="false">http://bravo5.org/blog/2007/03/24/at-the-car-wash/</guid>
		<description><![CDATA[Just playing.]]></description>
			<content:encoded><![CDATA[	<p>Just playing. <img src='http://bravo5.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> <br />
<span id="more-120"></span><br />
<object type="video/quicktime" data="/blog/wp-content/at_the_carwash.mov"  width="320" height="198"><param name="src" value="/blog/wp-content/at_the_carwash.mov" /><param name="autoplay" value="false" /><param name="controller" value="true" /></object></p>

 ]]></content:encoded>
			<wfw:commentRss>http://bravo5.org/blog/2007/03/24/at-the-car-wash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Quick(Time) timelapse</title>
		<link>http://bravo5.org/blog/2007/01/28/a-quicktime-timelapse/</link>
		<comments>http://bravo5.org/blog/2007/01/28/a-quicktime-timelapse/#comments</comments>
		<pubDate>Sun, 28 Jan 2007 17:01:09 +0000</pubDate>
		<dc:creator>blalor</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://bravo5.org/blog/2007/01/28/a-quicktime-timelapse/</guid>
		<description><![CDATA[I used my new suction cup mount on yesterday&#8217;s run to take some pictures while driving. When I got home and started sifting through them, I realized I (barely) had enough for a short QuickTime movie. I took the 146 still shots and created a new QuickTime movie, and then brought that into iMovie so [...]]]></description>
			<content:encoded><![CDATA[	<p>I used my new suction cup mount on yesterday&#8217;s run to take some pictures while driving.  When I got home and started sifting through them, I realized I (barely) had enough for a short QuickTime movie.  I took the 146 still shots and created a new QuickTime movie, and then brought that into iMovie so I could add a soundtrack.  It isn&#8217;t much (in fact, it&#8217;s so silly I&#8217;m wondering why I bothered&#8230;), but I&#8217;ll probably try to do more like this in the future.<br />
<span id="more-118"></span><br />
<object type="video/quicktime" data="/blog/wp-content/osmc_time_lapse.mp4"  width="480" height="376"><param name="src" value="/blog/wp-content/osmc_time_lapse.mp4" /><param name="autoplay" value="false" /><param name="controller" value="true" /></object></p>

	<p>The soundtrack&#8217;s &#8220;Supercharged on Alcohol&#8221; by <a href="http://www.mofosonline.com/">The Mofos</a>. Gotta plug I-Town whenever possible, right?</p>
 ]]></content:encoded>
			<wfw:commentRss>http://bravo5.org/blog/2007/01/28/a-quicktime-timelapse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OSMC window-tinting run</title>
		<link>http://bravo5.org/blog/2007/01/27/osmc-window-tinting-run/</link>
		<comments>http://bravo5.org/blog/2007/01/27/osmc-window-tinting-run/#comments</comments>
		<pubDate>Sun, 28 Jan 2007 04:53:50 +0000</pubDate>
		<dc:creator>blalor</dc:creator>
				<category><![CDATA[Motoring]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://bravo5.org/blog/2007/01/27/osmc-window-tinting-run/</guid>
		<description><![CDATA[Ostensibly, we were going to check out Pete&#8217;s tint, but we all knew it was just an excuse to drive and eat. Despite the fairly crap weather, we attacked some good twisties, heard some good music, and ate well. Thanks everyone!]]></description>
			<content:encoded><![CDATA[	<p>Ostensibly, we were going to <a href="http://oceanstatemini.com/forums/showthread.php?t=883">check out Pete&#8217;s tint</a>, but we all knew it was just an excuse to drive and eat. <img src='http://bravo5.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>

	<p><a href="http://www.flickr.com/photos/blalor/371458239/in/set-72157594503608318/"><img title="In car - 4 on flickr" src="http://static.flickr.com/98/371458239_de1014606a.jpg" /></a></p>

	<p><a href="http://www.flickr.com/photos/blalor/371459285/in/set-72157594503608318/"><img title="Three goombahs on flickr" src="http://static.flickr.com/181/371459285_78a0d4296b.jpg" /></a></p>

	<p><a href="http://www.flickr.com/photos/blalor/371460264/in/set-72157594503608318/"><img title="Washable tattoos on flickr" src="http://static.flickr.com/163/371460264_70c26f5b3c.jpg" /></a></p>

	<p><a href="http://www.flickr.com/photos/blalor/371460462/in/set-72157594503608318/"><img title="Smile! on flickr" src="http://static.flickr.com/172/371460462_a919f3b978.jpg" /></a></p>

	<p>Despite the fairly crap weather, we attacked some good twisties, heard some good music, and ate well.  Thanks everyone!</p>
 ]]></content:encoded>
			<wfw:commentRss>http://bravo5.org/blog/2007/01/27/osmc-window-tinting-run/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

