<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Aeonscope</title>
	
	<link>http://www.aeonscope.net</link>
	<description>A view of time.</description>
	<pubDate>Thu, 17 May 2012 14:38:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/aeonscope/posts" /><feedburner:info uri="aeonscope/posts" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Localtunnel Ruby Gem</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/GrlHv1Irjtc/</link>
		<comments>http://www.aeonscope.net/2012/04/01/localtunnel-ruby-gem/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 14:37:42 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=4363</guid>
		<description><![CDATA[Introduction
Sometimes you need to quickly host a web application from your local machine but need a public address for people to connect to. What do you do? Recently localtunnel, a Ruby Gem, was released that makes all of this easy.
Installation
To install, type: gem install localtunnel
Usage

Open a terminal window.
Type: localtunnel -k ~/.ssh/id_rsa.pub 3000. Of course, feel [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>Sometimes you need to quickly host a web application from your local machine but need a public address for people to connect to. What do you do? Recently <a href="http://progrium.com/localtunnel">localtunnel</a>, a Ruby Gem, was released that makes all of this easy.</p>
<p><strong>Installation</strong></p>
<p>To install, type: <code>gem install localtunnel</code></p>
<p><strong>Usage</strong></p>
<ol>
<li>Open a terminal window.</li>
<li>Type: <code>localtunnel -k ~/.ssh/id_rsa.pub 3000</code>. Of course, feel free to choose a different port.</li>
<li>Send the newly created server address (example: http://3ufx.localtunnel.com) to whoever needs to connect to your local server.</li>
</ol>
<p><strong>TextExpander</strong></p>
<p>For those of you using, TextExpander, I setup the &#8220;;tunnel&#8221; abbreviation to expand to:</p>
<p><code>localtunnel -k ~/.ssh/id_rsa.pub %fill:port%</code></p>
<p><strong>Notes</strong></p>
<p>There is a slight downside to using localtunnel and that is that it will clutter your ~/.ssh/known_hosts file with all those auto-generated host names. It would be nice if localtunnel performed a cleanup task to remove extraneous entries after use. Make sure to run the following command if this bothers you:</p>
<p><code>ssh-keygen -R 3ufx.localtunnel.com</code> (replace 3ufx with whatever was generated for your session).</p>
<p><strong>Conclusion</strong></p>
<p>Overall, a handy piece of software and worth adding to your toolbox.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=GrlHv1Irjtc:SHqOacW5taY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/GrlHv1Irjtc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2012/04/01/localtunnel-ruby-gem/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2012/04/01/localtunnel-ruby-gem/</feedburner:origLink></item>
		<item>
		<title>Redmine on Heroku</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/O-mtjDWmCNc/</link>
		<comments>http://www.aeonscope.net/2012/02/12/redmine-on-heroku/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 20:10:56 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=4331</guid>
		<description><![CDATA[
Introduction
Redmine is open source software for project management. It comes complete with project management (of course), calendars, issue tracking, milestone/version planning, news syndication, wikis, forums, user and role management, etc. Built on top of Ruby and Rails, it make a compelling piece of software for small teams/startups that needs a quick and dirty project management [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.aeonscope.net/wp-content/uploads/2012/02/redmine.png" alt="redmine" title="redmine" width="420" height="100" class="aligncenter size-full wp-image-4333" /></p>
<p><strong>Introduction</strong></p>
<p><a href="http://www.redmine.org">Redmine</a> is open source software for project management. It comes complete with project management (of course), calendars, issue tracking, milestone/version planning, news syndication, wikis, forums, user and role management, etc. Built on top of Ruby and Rails, it make a compelling piece of software for small teams/startups that needs a quick and dirty project management solution.</p>
<p>The purpose of this post is to walk you through setting up Redmine on your local development box and remotely on a Heroku server.</p>
<p><strong>Requirements</strong></p>
<p>The following is required to setup Redmine and makes some assumptions about your familiarity with each.</p>
<ol>
<li><a href="http://www.apple.com/macosx/">Mac OS X (Lion)</a>- Ubuntu would be fine too (except for the HomeBrew specifics, of course).</li>
<li><a href="http://mxcl.github.com/homebrew">Homebrew</a> - Automates your development environment setup needs.</li>
<li><a href="https://github.com/sstephenson/rbenv">rbenv</a> - RVM would be fine as well but, for the purposes of this post, I&#8217;ll stick with rbenv.</li>
<li><a href="http://www.ruby-lang.org">Ruby 1.8.7-p357</a> - Use the latest patch for Ruby 1.8.7. Yeah, I know, no love for Ruby 1.9.x yet.</li>
<li><a href="http://rubyonrails.org">Ruby on Rails 2.3.14</a> - Yeah, they don&#8217;t support Rails 3.x yet.</li>
<li><a href="http://www.heroku.com">Heroku</a> - You&#8217;ll want the bamboo-ree-1.8.7 stack. Don&#8217;t worry, we&#8217;ll get to that in a sec.</li>
<li><a href="http://www.postgresql.org">PostgreSQL</a> - Using 9.1.2 at the time of this writing.</li>
</ol>
<p><strong>Local Setup</strong></p>
<p>The following assumes a relatively fresh Ruby install (skip ahead if necessary). NOTE: I&#8217;m using Ruby Gems 1.6.2.</p>
<ol>
<li>Open a terminal window and start typing out the following commands.</li>
<li><code>brew install readline</code></li>
<li><code>CONFIGURE_OPTS="--with-readline-dir=$(brew --prefix readline)" rbenv install 1.8.7-p357</code></li>
<li><code>env ARCHFLAGS="-arch x86_64" gem install pg</code></li>
<li><code>gem install -v 2.3.14 rails</code></li>
<li><code>gem uninstall rake</code> - Rails installs the newest version of Rake. Redmine doesn&#8217;t like this, so rip it out.</li>
<li><code>gem install -v 0.8.7 rake</code> - Required by Redmine.</li>
<li><code>gem install -v 0.4.2 i18n</code></li>
<li><a href="http://rubyforge.org/frs/?group_id=1850">Download the latest Redmine build</a>, unpack, and change directory to the project root.</li>
<li><code>rake generate_session_store</code></li>
<li>Edit the database.yml. Example: <a href="http://www.aeonscope.net/wp-content/uploads/2012/02/databse.yml">database.yml</a>.</li>
<li><code>rake db:create</code></li>
<li><code>rake db:migrate</code></li>
<li><code>rake redmine:load_default_data</code></li>
</ol>
<p><em><strong>CAUTION</strong>: I like to use <a href="http://pow.cx">Pow</a> to easily spin up my local rails apps. In order to do this you need to generate a config.ru file (code is provided by Pow when you try to launch Redmine). Make sure that you add the config.ru to your .gitignore file before deploying to Heroku. Otherwise you&#8217;ll get odd errors related to not being able to find your stylesheet and javascript assets when launching the app on Heroku.</em></p>
<p><strong>Remote Setup</strong></p>
<ol>
<li>cd to the root of your Redmine project.</li>
<li><code>rm -rf vendor/rails</code></li>
<li><code>rm -rf vendor/gems/coderay</code></li>
<li>Create a <a href="http://www.aeonscope.net/wp-content/uploads/2012/02/gems.txt">.gems</a> file in the root of your project folder (don&#8217;t forget to rename gems.txt download to .gems).</li>
<li><code>heroku create &lt;your project name&gt; --stack bamboo-ree-1.8.7</code></li>
<li><code>git init</code></li>
<li><code>git add .</code></li>
<li><code>git commit -a -m "Initial commit."</code></li>
<li><code>git push heroku master</code></li>
<li><code>heroku run rake db:migrate</code></li>
<li><code>heroku run rake redmine:load_default_data</code></li>
<li>Load <code>&lt;your project name&gt;.heroku.com</code> in your browser. Have a beer!</li>
</ol>
<p><em><strong>NOTE</strong>: Depending on your Heroku setup you might need to pass the <code>--app &lt;your project name&gt;</code> suffix to each of the Heroku commands above. The Heroku gem will warn you if necessary.</em></p>
<p><strong>Next Steps</strong></p>
<p>At this point you should be up and running locally as well as remotely on Heorku. You can, of course, add domain name support, update your DNS and give your new app a proper domain name. Adding DB backup support, etc. would be good. Also email and Amazon S3 file storage would be wise too along with any other goodies you can dream up. &#8230;but I&#8217;ll leave that up the reader to play with.</p>
<p><strong>Credits</strong></p>
<p>Special thanks to <a href="https://twitter.com/DilatedTime">Brant</a> for the initial setup and impetus for this.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=O-mtjDWmCNc:Khakyoa9SPc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/O-mtjDWmCNc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2012/02/12/redmine-on-heroku/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2012/02/12/redmine-on-heroku/</feedburner:origLink></item>
		<item>
		<title>OPPO DVD Tray Repair</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/V8Gb10zG_xw/</link>
		<comments>http://www.aeonscope.net/2011/12/27/oppo-dvd-tray-repair/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 14:00:16 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Electronics]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=4270</guid>
		<description><![CDATA[Recently, I ran into a bit of trouble where my OPPO DVD player would not open/close the DVD tray. When listening to the player while pushing the open/eject button I could, sometimes, hear a bit of rubber making a stressed sound - like rubber on rubber. That said, I could never recreate the situation consistently [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I ran into a bit of trouble where my <a href="http://www.oppodigital.com">OPPO</a> DVD player would not open/close the DVD tray. When listening to the player while pushing the open/eject button I could, sometimes, hear a bit of rubber making a stressed sound - like rubber on rubber. That said, I could never recreate the situation consistently as I would sometimes hear a noise but mostly no sound would be made at all. After that, I searched the OPPO support pages but didn&#8217;t find any information related to this issue so fired off a quick email explaining the issue to OPPO support and this is what I got back:</p>
<ol>
<li>Disconnect the DVD player’s power cord from the power source for no less than 15 minutes.</li>
<li>Ensure that the tray is not sticking to the front of the tray opening by running a small flat object along the entire edge of the tray.</li>
<li>Gently shake your DVD unit.</li>
<li>Reconnect the power cord.</li>
<li>Press Eject. If the tray does not Eject, make any note of any mechanical noises.</li>
<li>Press Eject and press in the tray.</li>
<li>Press Eject again.</li>
</ol>
<p>I had disconnected the power before but had never thought of shaking the unit (which, yes, I was surprised to see as an instruction). When shaking the unit, I grabbed the left and right side shook it in both a vertical and horizontal pattern. Upon reconnecting the unit, the DVD tray would open and close again. BTW, I do want to mention that I had upgraded the unit to the latest firmware.</p>
<p>Anyway, I thought I&#8217;d pass this along in case anyone was experiencing this issue because I&#8217;m not accustomed to shaking my HiFi equipment for solving issues.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=V8Gb10zG_xw:wmZpfOmEkq4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/V8Gb10zG_xw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2011/12/27/oppo-dvd-tray-repair/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2011/12/27/oppo-dvd-tray-repair/</feedburner:origLink></item>
		<item>
		<title>User Registration Disabled</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/qVxv9irhfcs/</link>
		<comments>http://www.aeonscope.net/2011/12/11/user-registration-disabled/#comments</comments>
		<pubDate>Sun, 11 Dec 2011 14:28:55 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=4245</guid>
		<description><![CDATA[Due to the increasing amount of spam related to auto-generated user registrations on this site, I have decided to disable further registrations. This also means that only legitimately registered users can leave comments on this site. Should you have a burning desire to leave a comment AND register as a new user, contact me directly.
In [...]]]></description>
			<content:encoded><![CDATA[<p>Due to the increasing amount of spam related to auto-generated user registrations on this site, I have decided to disable further registrations. This also means that only legitimately registered users can leave comments on this site. Should you have a burning desire to leave a comment AND register as a new user, contact me directly.</p>
<p>In the future, I will be releasing new software that will make all of this easier (including commenting) but I&#8217;m still a little ways away from achieving this goal (which is also why I haven&#8217;t been posting much on this site).</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=qVxv9irhfcs:fpOozD6mw1U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/qVxv9irhfcs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2011/12/11/user-registration-disabled/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2011/12/11/user-registration-disabled/</feedburner:origLink></item>
		<item>
		<title>Mac OS X Lion Setup</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/gLFdVvDpPwo/</link>
		<comments>http://www.aeonscope.net/2011/09/05/mac-os-x-lion-setup/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 01:59:15 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=4149</guid>
		<description><![CDATA[The following is a breakdown of apps I commonly use and their install order (from a fresh install of the MacOS):
Install
To install Mac OX X Lion, you&#8217;ll need to be running Snow Leopard with the App Store application installed. Here are the steps necessary to configure you machine:

Launch the App Store and buy Lion to [...]]]></description>
			<content:encoded><![CDATA[<p>The following is a breakdown of apps I commonly use and their install order (from a fresh install of the MacOS):</p>
<p><strong>Install</strong></p>
<p>To install Mac OX X Lion, you&#8217;ll need to be running Snow Leopard with the App Store application installed. Here are the steps necessary to configure you machine:</p>
<ol>
<li>Launch the App Store and buy Lion to start the download.</li>
<li>Once the download completes, DO NOT start the install. Instead ensure that you make a copy of the DMG image via the Lion installer application (found in your Applications folder). You&#8217;ll need to open file info on the installer and choose to show package contents. You&#8217;ll want to make a copy of the <code>Contents/SharedSupport/InstallESD.dmg</code> file. <a href="http://www.informationweek.com/byte/howto/personal-tech/desktop-os/231002151">More details here</a>.</li>
<li>Once a copy of the DMG has been made, you can start the install.</li>
<li>Follow the screen prompts to complete.</li>
</ol>
<p>For those that don&#8217;t like the default Lion install settings, you&#8217;ll need to perform the install twice. However, this time you have the DMG installer image. You can either <a href="http://www.macworld.com/article/161069/2011/07/make_a_bootable_lion_installer.html">make a DVD or USB boot disk</a>. Once you have, you can reboot Lion while holding down the COMMAND+R keys to launch into recovery mode. Here are the steps for reinstall:</p>
<ol>
<li>Launch Disk Utilities and format the main partition as MacOS Extended (journaled, case sensitive). Don&#8217;t bother messing with the boot disk partition as that is where your recovery utilities are.</li>
<li>Exit Disk Utilities and start the Lion installer.</li>
<li>Follow the install prompts until the Lion install completes.</li>
</ol>
<p><strong>Configuration</strong></p>
<ol>
<li>Rename your computer via System Preferences - Sharing.</li>
<li>Unhide your user library folder: <code>chflags nohidden ~/Library</code></li>
</ol>
<p><strong>Applications</strong></p>
<ol>
<li>Mac OS X 10.7.x Software Updates (Software Update)</li>
<li>Mac OS X 10.7.x Combo Patch (web)</li>
<li>XCode (App Store)</li>
<li><a href="https://www.dropbox.com">Dropbox</a> (web)</li>
<li><a href="http://agilewebsolutions.com/products/1Password">1Password</a> (App Store)</li>
<li><a href="https://agilebits.com/knox">Knox</a> (web)</li>
<li><a href="http://www.iterm2.com">iTerm2</a> (web)</li>
<li><a href="http://www.sublimetext.com/2">Sublime Text 2</a> (web)</li>
<li><a href="http://www.alfredapp.com">Alfred</a> (web)</li>
<li><a href="http://www.alfredapp.com/powerpack/">Alfred Powerpack</a> (web)</li>
<li><a href="http://www.smilesoftware.com/TextExpander/">TextExpander</a> (App Store)</li>
<li><a href="http://cocoatech.com">PathFinder</a> (web)</li>
<li><a href="http://www.mozilla.com/en-US/firefox/">Firefox</a> (web)</li>
<li><a href="http://www.google.com/chrome">Google Chrome</a> (web)</li>
<li><a href="http://www.opera.com">Opera</a> (web)</li>
<li><a href="http://www.omnigroup.com/applications/omnifocus/">OmniFocus</a> (App Store)</li>
<li><a href="http://www.omnigroup.com/applications/omnioutliner/">OmniOutliner</a> (App Store)</li>
<li><a href="http://www.omnigroup.com/applications/omnigraffle/">OmniGraffle Professional</a> (App Store)</li>
<li><a href="http://www.omnigroup.com/products/omnidazzle/">OmniDazzle</a> (web)</li>
<li><a href="http://lightheadsw.com/caffeine/">Caffeine</a> (App Store)</li>
<li><a href="http://flexibits.com/fantastical">Fantastical</a> (App Store)</li>
<li><a href="http://colorsnapper.com">ColorSnapper</a> (App Store)</li>
<li><a href="http://iconfactory.com/software/xscope">xScope</a> (App Store)</li>
<li><a href="http://3hubapp.com">3Hub</a> (App Store)</li>
<li><a href="http://www.expandrive.com">ExpanDrive</a> (web)</li>
<li><a href="http://bjango.com/apps/istatmenus/">iStat Menus</a> (web)</li>
<li><a href="http://growl.info/">Growl</a> (App Store)</li>
<li><a href="http://avatron.com/apps/air-display">Air Display</a> (App Store)</li>
<li><a href="http://tapbots.com/software/pastebot/#sync">Pastebot Sync</a> (web)</li>
<li><a href="http://www.smilesoftware.com/PDFpenPro/index.html">PDFpenPro</a> (App Store)</li>
<li><a href="http://gitboxapp.com">Gitbox</a> (App Store)</li>
<li><a href="http://mac.github.com">GitHub</a> (web)</li>
<li><a href="http://www.snippetsapp.com">Snippets</a> (web)</li>
<li><a href="http://krillapps.com/patterns">Patterns</a> (App Store)</li>
<li><a href="http://macrabbit.com/espresso">Espresso</a> (web)</li>
<li><a href="http://www.gradientapp.com">Gradient</a> (App Store)</li>
<li><a href="http://incident57.com/codekit">CodeKit</a> (web)</li>
<li><a href="http://www.realmacsoftware.com/littlesnapper/">LittleSnapper</a> (App Store)</li>
<li><a href="http://flyingmeat.com/acorn">Acorn</a> (App Store)</li>
<li><a href="http://www.pixelmator.com/">Pixelmator</a> (App Store)</li>
<li><a href="http://echoone.com/doubletake/">DoubleTake</a> (web)</li>
<li><a href="http://imageoptim.pornel.net">ImageOptim</a> (web)</li>
<li><a href="http://pornel.net/imagealpha">ImageAlpha</a> (web)</li>
<li><a href="http://www.videolan.org/vlc/">VLC</a> (web)</li>
<li><a href="http://www.pgadmin.org/index.php">pgAdmin</a> (web)</li>
<li><a href="http://www.vmware.com/products/fusion/">VMWare Fusion</a> (web)</li>
<li><a href="http://www.billingsapp.com/index.html">Billings</a> (App Store)</li>
<li><a href="http://nothirst.com/moneywell/">MoneyWell</a> (App Store)</li>
<li><a href="http://www.delicious-monster.com/">Delicious Library</a> (App Store)</li>
<li><a href="http://www.apple.com/ilife/garageband">GarageBand</a> (App Store)</li>
<li><a href="http://www.apple.com/ilife/imovie">iMovie</a> (App Store)</li>
<li><a href="http://www.apple.com/ilife/iphoto">iPhoto</a> (App Store)</li>
<li><a href="http://www.openoffice.org/">OpenOffice</a> (web)</li>
<li><a href="http://www.logitech.com/en-us/584/3129">Logitech Control Center</a> (web)</li>
<li><a href="http://www.logitech.com/en-us/440/3742?section=downloads">Logitech Harmony Remote</a> (web)</li>
<li><a href="http://colloquy.info">Colloquy</a> (web)</li>
<li><a href="http://www.skype.com">Skype</a> (web)</li>
</ol>
<p><strong>Configurations</strong></p>
<ol>
<li>Enable FileVault (via System Preferences - Security and Privacy).</li>
<li>Configure Wi-Fi.</li>
<li>Configure printer.</li>
<li>Configure scanner.</li>
<li>Configure Apple Mail and all email accounts.</li>
<li>Configure iCal</li>
<li>Configure iTunes</li>
<li>Install the Network Link Conditioner preference pane (found via <code>/Developer/Applications/Utilities/Network Link Conditioner/</code>)</li>
<li><a href="http://www.aeonscope.net/software/applications/firefox/">Install Firefox extensions</a>.</li>
<li>Configure installed applications.</li>
<li><a href="http://www.aeonscope.net/2010/05/02/mac-os-x-ruby-environment/">Configure Ruby development environment</a>.</li>
</ol>
<p><strong>Notes</strong></p>
<p>For more Mac-related information, check out my <a href="http://www.aeonscope.net/software/operating-systems/mac/">Mac</a> page.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=gLFdVvDpPwo:eFAOSZ29zds:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/gLFdVvDpPwo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2011/09/05/mac-os-x-lion-setup/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2011/09/05/mac-os-x-lion-setup/</feedburner:origLink></item>
		<item>
		<title>Resizing Applications with Alfred and Ruby</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/zk_ppRWhgwg/</link>
		<comments>http://www.aeonscope.net/2011/06/01/resizing-applications-with-alfred-and-ruby/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 02:32:10 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=4107</guid>
		<description><![CDATA[Introduction
When on the move with my laptop, I end up having to resize all my applications which is time consuming to say the least. The main difference is due to two very difference screen resolutions:

Home Screen = 2560&#215;1440 pixels
Laptop Screen = 1440&#215;990 pixels

The worst is when moving from my smaller laptop resolution back to the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>When on the move with my laptop, I end up having to resize all my applications which is time consuming to say the least. The main difference is due to two very difference screen resolutions:</p>
<ul>
<li>Home Screen = 2560&#215;1440 pixels</li>
<li>Laptop Screen = 1440&#215;990 pixels</li>
</ul>
<p>The worst is when moving from my smaller laptop resolution back to the big screen at home because all my applications are severely squished. I finally got fed up with the manual labor of resizing my desktop environment each time and crafted a solution: Alfred + Ruby. Win!</p>
<p><strong>Requirements</strong></p>
<p>This post assumes you are familiar with the following:</p>
<ul>
<li><a href="http://www.apple.com/macosx/">Mac OS</a></li>
<li><a href="http://www.alfredapp.com">Alfred</a></li>
<li><a href="http://en.wikipedia.org/wiki/Bash_%28Unix_shell%29">Bash Shell Scripting</a></li>
<li><a href="http://www.ruby-lang.org">Ruby</a></li>
<li><a href="https://rvm.beginrescueend.com/">RVM</a></li>
</ul>
<p>You might also want to read my previous post, <a href="http://www.aeonscope.net/2011/05/29/connecting-alfred-to-bitly-via-ruby/">Connecting Alfred to Bitly via Ruby</a>, to understand my reasoning for using a bash shell wrapper script when using multiple Ruby installs.</p>
<p><strong>Setup</strong></p>
<p>You&#8217;ll want to download the following scripts:</p>
<ul>
<li><a href="https://gist.github.com/998032">rvm_ruby</a> - A Bash shell script for dealing with multiple Ruby installs.</li>
<li><a href="https://gist.github.com/1003763">app_resizer.rb</a> - A Ruby script for resizing applications.</li>
</ul>
<p>&#8230;and install them as follows (for example):</p>
<ul>
<li>/bin/rvm_ruby</li>
<li>~/path/to/your/ruby/scripts/folder/app_resizer.rb</li>
</ul>
<p>Feel free to configure the app_resizer.rb script to your liking. The applications and related bounds are specific to my environment but you&#8217;ll find that it is easy enough to add your apps and bounds to your liking. The script only supports two modes: home and laptop. Again, feel free to tweak as you desire.</p>
<p>To configure Alfred, open preferences and go to your terminal command settings (click to enlarge):</p>
<p><a href="http://www.aeonscope.net/wp-content/uploads/2011/06/alfred_terminal_commands.png" rel='lytebox[resizing-applications-with-alfred-and-ruby]'><img src="http://www.aeonscope.net/wp-content/uploads/2011/06/alfred_terminal_commands-300x226.png" alt="Alfred Terminal Commands" title="Alfred Terminal Commands" width="300" height="226" class="aligncenter size-medium wp-image-4108" /></a></p>
<p>&#8230;and here are my settings for the app resizer script and command in Alfred (click to enlarge):</p>
<p><a href="http://www.aeonscope.net/wp-content/uploads/2011/06/alfred_app_resizer.png" rel='lytebox[resizing-applications-with-alfred-and-ruby]'><img src="http://www.aeonscope.net/wp-content/uploads/2011/06/alfred_app_resizer-300x174.png" alt="Alfred - App Resizer" title="Alfred - App Resizer" width="300" height="174" class="aligncenter size-medium wp-image-4109" /></a></p>
<p><strong>Usage</strong></p>
<p>Once the Ruby script and Alfred settings are configured, I can now perform the following keyboard commands to resize all running applications:</p>
<ul>
<li>OPTION + SPACE</li>
<li>resize home + ENTER</li>
</ul>
<p>&#8230;or&#8230;</p>
<ul>
<li>OPTION + SPACE</li>
<li>resize laptop + ENTER</li>
</ul>
<p>I wrote the Ruby script so that it only affects running applications. If you later launch an application after you have resized your applications, you can always run the Alfred &#8220;resize&#8221; command again. Easy peasy.</p>
<p><strong>Resources</strong></p>
<p>You have probably noticed by now that I&#8217;m using <a href="http://appscript.sourceforge.net/rb-appscript/index.html">rb-appscript</a> gem in my Ruby script. I did this because I really don&#8217;t enjoy writing pure AppleScript code. Should you decide to get more involved with AppleScript, I highly recommend downloading the associated <a href="http://appscript.sourceforge.net/tools.html">rb-appscript tools</a>: ASDictionary and ASTranslate.</p>
<p>Enjoy.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=zk_ppRWhgwg:duqSDwlPi8M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/zk_ppRWhgwg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2011/06/01/resizing-applications-with-alfred-and-ruby/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2011/06/01/resizing-applications-with-alfred-and-ruby/</feedburner:origLink></item>
		<item>
		<title>Connecting Alfred to Bitly via Ruby</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/w68AK0sD5Qg/</link>
		<comments>http://www.aeonscope.net/2011/05/29/connecting-alfred-to-bitly-via-ruby/#comments</comments>
		<pubDate>Sun, 29 May 2011 20:05:52 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=4083</guid>
		<description><![CDATA[Introduction
I love Alfred for the Mac OS. It is one of the core power tools that I use on a daily basis. Coupled with the Powerpack I&#8217;m always finding new ways of expending my capabilities. In this case, faster URL shortening.
Requirements
This post assumes you are familiar with the following:

Mac OS
Alfred
Bash Shell Scripting
Ruby Programming Language
RVM

The Problem
Recently, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>I love <a href="http://www.alfredapp.com">Alfred</a> for the Mac OS. It is one of the core power tools that I use on a daily basis. Coupled with the <a href="http://www.alfredapp.com/powerpack/">Powerpack</a> I&#8217;m always finding new ways of expending my capabilities. In this case, faster URL shortening.</p>
<p><strong>Requirements</strong></p>
<p>This post assumes you are familiar with the following:</p>
<ul>
<li><a href="http://www.apple.com/macosx/">Mac OS</a></li>
<li><a href="http://www.alfredapp.com">Alfred</a></li>
<li><a href="http://en.wikipedia.org/wiki/Bash_%28Unix_shell%29">Bash Shell Scripting</a></li>
<li><a href="http://www.ruby-lang.org">Ruby Programming Language</a></li>
<li><a href="https://rvm.beginrescueend.com/">RVM</a></li>
</ul>
<p><strong>The Problem</strong></p>
<p>Recently, while using my <a href="https://github.com/bkuhlmann/tweeter">Tweeter Gem</a> (e.g. Twitter for the Command Line), I ran into a situation where I wanted to streamline my URL shortening experience by executing the following keyboard commands:</p>
<ul>
<li>OPTION + SPACE</li>
<li>bilty <some long URL> + pasted long URL + ENTER</li>
</ul>
<p>If you are thinking &#8220;Yeah, but Alfred comes with a Bitly command out of the box.&#8221; You are correct. However, it only sends you to the Bitly page for shortening URLs. I&#8217;d rather not see Bitly open in a browser tab. I only want the work performed and sent to my clipboard without the browser involved. Then I can paste the shortened URL within my terminal window with only a few keystrokes. Simple. Fast. Efficient.</p>
<p><strong>The Solution</strong></p>
<p>The solution is an easy one now that Alfred supports terminal/shell shortcuts. Almost. The reason is that if you are using RVM, which any sensible Rubyist should be using, you&#8217;ll find that Alfred defaults to the system Ruby environment that comes pre-installed with your Mac OS. To prove this, try running a Ruby script referencing a Ruby Gem that you DON&#8217;T have installed in your system environment. With Alfred logging turned on (via advanced options), you&#8217;ll see the following in your <a href="http://www.apple.com/macosx/what-is-macosx/apps-and-utilities.html#console">Mac OS Console</a> (click to enlarge):</p>
<p><a href="http://www.aeonscope.net/wp-content/uploads/2011/05/alfred_output_in_console.png" rel='lytebox[connecting-alfred-to-bitly-via-ruby]'><img src="http://www.aeonscope.net/wp-content/uploads/2011/05/alfred_output_in_console-300x57.png" alt="Alfred - Output in Console" title="Alfred - Output in Console" width="300" height="57" class="aligncenter size-medium wp-image-4091" /></a></p>
<p>D&#8217;oh!</p>
<p>While this might not be an issue for some, I&#8217;d rather use a specific Ruby version and gem set rather than install the same gem to my system library and pollute that unused space. This then requires a shell script to be crafted which allows one to launch a Ruby script within a specific Ruby environment.</p>
<p>Using <a href="https://gist.github.com/998032">this shell script</a>, the following becomes possible from the command line:</p>
<p><code>rvm_ruby ruby-1.9.2-p136 &lt;path to Ruby script&gt;/bitly.rb &lt;some long URL&gt;</code></p>
<p>NOTE: I placed this shell script in my /bin folder with user, group, and world access set with read and execute access only (i.e. sudo chmod 555).</p>
<p>The corresponding <a href="https://gist.github.com/998037">bitly.rb Ruby script</a> then accepts a single URL argument which leverages the Bilty API to shorten a long URL in the background with the end result being copied to the clipboard via the pbcopy Mac OS command.</p>
<p><strong>Putting It Together</strong></p>
<p>Armed with the <a href="https://gist.github.com/998032">shell script</a> and the <a href="https://gist.github.com/998037">bitly.rb Ruby script</a>, you can now setup the following terminal shortcut in Alfred (click to enlarge):</p>
<p><a href="http://www.aeonscope.net/wp-content/uploads/2011/05/alfred_terminal_commands.png" rel='lytebox[connecting-alfred-to-bitly-via-ruby]'><img src="http://www.aeonscope.net/wp-content/uploads/2011/05/alfred_terminal_commands-300x226.png" alt="Alfred - Terminal Commands" title="Alfred - Terminal Commands" width="300" height="226" class="aligncenter size-medium wp-image-4092" /></a></p>
<p>Here are the shortcut details:</p>
<p><a href="http://www.aeonscope.net/wp-content/uploads/2011/05/alfred_bitly_command.png" rel='lytebox[connecting-alfred-to-bitly-via-ruby]'><img src="http://www.aeonscope.net/wp-content/uploads/2011/05/alfred_bitly_command-300x174.png" alt="Alfred - Bitly Command" title="Alfred - Bitly Command" width="300" height="174" class="aligncenter size-medium wp-image-4093" /></a></p>
<p>Now you can type:</p>
<ul>
<li>OPTION + SPACE</li>
<li>bilty <some long URL> + pasted long URL + ENTER</li>
</ul>
<p>&#8230;and have the shortened URL ready for pasting via the Mac OS clipboard.</p>
<p>Happy URL shortening!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=w68AK0sD5Qg:bqsT0thLqWY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/w68AK0sD5Qg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2011/05/29/connecting-alfred-to-bitly-via-ruby/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2011/05/29/connecting-alfred-to-bitly-via-ruby/</feedburner:origLink></item>
		<item>
		<title>Golden Bee’s 50th Anniversary Scavenger Hunt</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/saFGS4BR3ig/</link>
		<comments>http://www.aeonscope.net/2011/05/22/golden-bees-50th-anniversary-scavenger-hunt/#comments</comments>
		<pubDate>Sun, 22 May 2011 16:27:07 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Adventures]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=4044</guid>
		<description><![CDATA[Introduction
Yesterday, in celebration of The Golden Bee&#8217;s 50th Anniversary, a scavenger hunt took place. We were one of ten teams to enjoy a day playing in the city in search of little golden bees (each about the size of a quarter).

The situation was ironic, in that we were participating in a scavenger hunt for the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>Yesterday, in celebration of <a href="http://www.broadmoor.com/colorado-dining-golden-bee.php">The Golden Bee</a>&#8217;s <a href="http://www.broadmoor.com/Golden-Bee-Anniversary.php">50th Anniversary</a>, a scavenger hunt took place. We were one of ten teams to enjoy a day playing in the city in search of little golden bees (each about the size of a quarter).</p>
<p><img src="http://www.aeonscope.net/wp-content/uploads/2011/05/golden_bee_50.jpg" alt="The Golden Bee 50" title="The Golden Bee 50" width="100" height="68" class="aligncenter size-full wp-image-4052" /></p>
<p>The situation was ironic, in that we were participating in a scavenger hunt for the Golden Bee when, on my 30th birthday, a scavenger hunt assembled by my wife, led to the Golden Bee and a half yard of ale.</p>
<p><strong>The Team</strong></p>
<p>Many teams choose to walk, some used bicycles, and others used cars and a combination of walking/driving. In our case, we used scooters, figuring they were nimble and easy to park in tight, downtown spaces&#8230;and using sidewalks and back alleys in a few instances only added to the experience. We called ourselves &#8220;The Swarm&#8221;. Excellent choice, Mike.</p>
<p><img src="http://www.aeonscope.net/wp-content/uploads/2011/05/scooters.jpg" alt="Scooters" title="Scooters" width="400" height="278" class="aligncenter size-full wp-image-4054" /></p>
<p><strong>The Rules</strong></p>
<ol>
<li>Start the bee hunt at 12pm.</li>
<li>Take a photo of the bee in its hiding spot.</li>
<li>MMS the photo to the designated Golden Bee phone number including team name and location.</li>
<li>Find as many bees as possible before 5pm then meet at <a href="http://www.bristolbrewing.com">Bristol Brewery</a> for final results.</li>
</ol>
<p><strong>The Clues</strong></p>
<p>Each clue is listed below including point value.</p>
<ol>
<li>+1. Bees like the sweet stuff&#8230;follow the neon light and you&#8217;ll lick it.</li>
<li>+2. Bee&#8217;s Rock! You want to find where this bee&#8217;s hiding? The key is elevation and to find a smiling face.</li>
<li>+1. This bee is tripping the light fantastic with a very celebrated Colorado Springs couple.</li>
<li>+3. This pumpkin may not be in a patch, but you better have eyes like a hawk to find this bee.</li>
<li>+3. Only Pretty Bees are Jamming.</li>
<li>+1. I reckon if you mosey up to this tall, topical Stranger he&#8217;ll point you in the direction of a bee&#8230;or a hoedown.</li>
<li>+2. If I were looking for a bee, I&#8217;d start somewhere obvious, like in fields.</li>
<li>+3. When rebel Bees need to resurrect their image this is where they go.</li>
<li>+3. Do Bees speak Yiddish? Do fish dream? Take a break over a Bristol Ale and discuss amongst ya&#8217;selves.</li>
<li>+1. Bees know even during rush hour it&#8217;s important to take time to slow down, stop and smell the flowers.</li>
<li>+2. When the first Bees settled in this area, they were so happy that they gathered to take a group photo together.</li>
<li>+1. When a bee is getting ready to take a trip around the world, he must perk up with caffeine buzz.</li>
<li>+3. Go back in time to 1888 with Alice Bee-mis Taylor.</li>
<li>+2. Before a Bee plays hokey he drinks Car Bombs and Compass IPA on Nitro.</li>
<li>+3. There&#8217;s one Bee left in inventory at this artsy hotspot. If at first he&#8217;s hard to find, keep your chin up.</li>
<li>+2. If you&#8217;re blue and don&#8217;t know where to go to why don&#8217;t you go where fashion sits&#8230;and get a tee time at 9:00.</li>
<li>+2. This towering geometric, psychedelic hiding spot is a prickly place to spot a Bee.</li>
<li>+1. This Bee&#8217;s hiding out with a bandito, hiding on a wooden saguaro.</li>
<li>+2. This Bee was framed while buzzing through the Hibiscus Tiliaceus.</li>
<li>+3. You don&#8217;t need a map to find this bee&#8230;you&#8217;ll find him next to his ultimate booty.</li>
<li>+3. This Bee is hiding in the patch&#8230;keep your eyes peeled for the baseball mitt and you might find him.</li>
<li>+3. In brightest day, in blackest night, no Bee should escape your sight. Look for the red lantern to illuminate and shed light.</li>
<li>+2. This Bee is no Jerk, he&#8217;s hanging with the Father of the Bride.</li>
<li>+1. If it wasn&#8217;t for this guy, The Bee wouldn&#8217;t be here.</li>
<li>+1. This Bee is abuzz for our Famous art on the streets.</li>
</ol>
<p><strong>The Result</strong></p>
<p>Kate built the following photo collage that captures all 25 hiding locations. The result is quite cool (click to enlarge).</p>
<p><a href="http://www.aeonscope.net/wp-content/uploads/2011/05/collage.jpg" rel='lytebox[golden-bees-50th-anniversary-scavenger-hunt]'><img src="http://www.aeonscope.net/wp-content/uploads/2011/05/collage-240x300.jpg" alt="Collage" title="Collage" width="240" height="300" class="aligncenter size-medium wp-image-4057" /></a></p>
<p><strong>Conclusion</strong></p>
<p>The entire event was a blast. I really love scavenger hunts because you always discover something new about the city you live in. There is always a hidden alley, shop you&#8217;ve not been to yet, undiscovered street, etc. that makes the scavenger hunt worth more than just the game itself. The clues were not easy to solve but we did manage to solve ALL clues by 4:40pm. Whew.</p>
<p>For our accomplishments, we were awarded first prize, two Bristol pint glasses, personalized Golden Bee mugs, V.I.P. passes to this Friday&#8217;s dinner and tapping of Bristol&#8217;s first cask of the &#8220;50th Anniversary ESBee&#8221; ale. Oh, yeah!</p>
<p>Thanks, Golden Bee!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=saFGS4BR3ig:exFoG_kri6M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/saFGS4BR3ig" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2011/05/22/golden-bees-50th-anniversary-scavenger-hunt/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2011/05/22/golden-bees-50th-anniversary-scavenger-hunt/</feedburner:origLink></item>
		<item>
		<title>Memorial Day Party</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/zzFevsH72LM/</link>
		<comments>http://www.aeonscope.net/2011/05/01/memorial-day-party-2/#comments</comments>
		<pubDate>Sun, 01 May 2011 15:47:18 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<category><![CDATA[Memorial Day]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=4028</guid>
		<description><![CDATA[
So it is that time again where the winter snow is melting, the days are growing longer, and the warm weather yields more outdoor adventuring (amongst other opportunities). In order to kick off the new season, we&#8217;re throwing a Memorial Day party and you&#8217;re invited!
Details

Date: May 28th (Saturday).
Time: 3pm to whenever.
Location: Our place.
Food: Build-it-yourself style [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.aeonscope.net/wp-content/uploads/2011/05/burritos.jpg" alt="Burritos" title="Burritos" width="500" height="375" class="aligncenter size-full wp-image-4030" /></p>
<p>So it is that time again where the winter snow is melting, the days are growing longer, and the warm weather yields more outdoor adventuring (amongst other opportunities). In order to kick off the new season, we&#8217;re throwing a Memorial Day party and you&#8217;re invited!</p>
<p><strong>Details</strong></p>
<ul>
<li><strong>Date</strong>: May 28th (Saturday).</li>
<li><strong>Time</strong>: 3pm to whenever.</li>
<li><strong>Location</strong>: Our place.</li>
<li><strong>Food</strong>: Build-it-yourself style of tacos, burritos, and other fixings.</li>
<li><strong>Drink</strong>: We will have an assortment of some of the best micro-brews including some tasty ales from <a href="http://trinitybrew.com">Trinity Brewing Company</a>, <a href="http://www.bristolbrewing.com">Bristol Brewery</a>, and <a href="http://tommyknocker.com/idahoSprings.html">Tommyknocker</a> to name a few.</li>
<li><strong>Festivities</strong>: Feisty conversation, possible live music, board/card games, movies, dog chases (as he&#8217;s a little too friendly with our guests), and anything else that comes to mind.</li>
</ul>
<p><strong>R.S.V.P.</strong></p>
<p>Kate and I need a head count of who can make it to the party so we have enough food and drink for everyone. Feel free to leave a comment to this post or email us if you can make it. Please make sure to respond no later than May 20th (Friday).</p>
<p>See you at the party!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=zzFevsH72LM:kVAL18nmjLs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/zzFevsH72LM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2011/05/01/memorial-day-party-2/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2011/05/01/memorial-day-party-2/</feedburner:origLink></item>
		<item>
		<title>Pueblo Art</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/BIash2kkvAs/</link>
		<comments>http://www.aeonscope.net/2011/04/10/pueblo-art/#comments</comments>
		<pubDate>Sun, 10 Apr 2011 23:14:49 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Adventures]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3990</guid>
		<description><![CDATA[Kate and I were in Pueblo, CO and the surrounding area for the majority of the weekend. While there, I managed to capture random shots of building wall art within a two to three block radius of the El Pueblo History Museum. Make sure to stop by the museum if ever in the area. They&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>Kate and I were in <a href="http://www.wolframalpha.com/input/?i=Pueblo%2C%20CO">Pueblo, CO</a> and the surrounding area for the majority of the weekend. While there, I managed to capture random shots of building wall art within a two to three block radius of the <a href="https://maps.google.com/maps?f=q&#038;source=s_q&#038;hl=en&#038;geocode=&#038;q=301+N+Union+Ave+Pueblo,+CO+81003&#038;sll=37.0625,-95.677068&#038;sspn=46.409192,76.025391&#038;ie=UTF8&#038;hq=&#038;hnear=301+N+Union+Ave,+Pueblo,+Colorado+81003&#038;ll=38.26878,-104.611237&#038;spn=0.010917,0.018561&#038;z=16">El Pueblo History Museum</a>. Make sure to stop by the museum if ever in the area. They&#8217;ve done an excellent job with the facility and don&#8217;t be fooled by the art gallery within - there is more to it than the initial atrium.</p>
<p><a rel="lytebox[wall_art]" href="http://www.aeonscope.net/wp-content/uploads/2011/04/01-red_top.jpg"><img src="http://www.aeonscope.net/wp-content/uploads/2011/04/01-red_top-100x100.jpg" alt="01-red_top" title="01-red_top" width="100" height="100" class="alignnone size-thumbnail wp-image-3991" /></a><a rel="lytebox[wall_art]" href="http://www.aeonscope.net/wp-content/uploads/2011/04/02-bernstein_bros.jpg"><img src="http://www.aeonscope.net/wp-content/uploads/2011/04/02-bernstein_bros-100x100.jpg" alt="02-bernstein_bros" title="02-bernstein_bros" width="100" height="100" class="alignnone size-thumbnail wp-image-3992" /></a><a rel="lytebox[wall_art]" href="http://www.aeonscope.net/wp-content/uploads/2011/04/03-clarks.jpg"><img src="http://www.aeonscope.net/wp-content/uploads/2011/04/03-clarks-100x100.jpg" alt="03-clarks" title="03-clarks" width="100" height="100" class="alignnone size-thumbnail wp-image-3993" /></a><a rel="lytebox[wall_art]" href="http://www.aeonscope.net/wp-content/uploads/2011/04/04-coffee_shop.jpg"><img src="http://www.aeonscope.net/wp-content/uploads/2011/04/04-coffee_shop-100x100.jpg" alt="04-coffee_shop" title="04-coffee_shop" width="100" height="100" class="alignnone size-thumbnail wp-image-3994" /></a><a rel="lytebox[wall_art]" href="http://www.aeonscope.net/wp-content/uploads/2011/04/05-pulse.jpg"><img src="http://www.aeonscope.net/wp-content/uploads/2011/04/05-pulse-100x100.jpg" alt="05-pulse" title="05-pulse" width="100" height="100" class="alignnone size-thumbnail wp-image-3995" /></a><br />
(click to view)</p>
<p>Just south of the museum, is the <a href="http://www.puebloconventioncenter.com/400/PuebloRiverwalk%28HARP%29.asp">Pueblo Riverwalk</a>. There is much to enjoy along this walk but the most striking is an excellent bronze statue of a Lakota woman that has excellent life-like detail:</p>
<p><a rel="lytebox[lakota]" href="http://www.aeonscope.net/wp-content/uploads/2011/04/12-lakota_woman-front.jpg"><img src="http://www.aeonscope.net/wp-content/uploads/2011/04/12-lakota_woman-front-100x100.jpg" alt="12-lakota_woman-front" title="12-lakota_woman-front" width="100" height="100" class="alignnone size-thumbnail wp-image-4000" /></a><a rel="lytebox[lakota]" href="http://www.aeonscope.net/wp-content/uploads/2011/04/13-lakota_woman_back.jpg"><img src="http://www.aeonscope.net/wp-content/uploads/2011/04/13-lakota_woman_back-100x100.jpg" alt="13-lakota_woman_back" title="13-lakota_woman_back" width="100" height="100" class="alignnone size-thumbnail wp-image-4001" /></a><br />
(click to view)</p>
<p>We plan to return soon, on two-wheels, once the weather warms up a bit more and travel the nearby and scenic <a href="http://www.coloradodot.info/travel/scenic-byways/south-central/frontier-pathways">Frontier Pathways</a>. Besides, I bought a jar of some tasty cinnamon honey butter in <a href="http://www.wolframalpha.com/input/?i=Westcliffe%2C%20CO">Westcliffe, CO</a> that might need replenishing by then.</p>
<p><img src="http://www.aeonscope.net/wp-content/uploads/2011/04/cinnimon_honey_butter_jar.jpg" alt="Cinnamon Honey Butter" title="Cinnamon Honey Butter" width="300" height="400" class="aligncenter size-full wp-image-4010" /></p>
<p>Seriously, this is good stuff!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=BIash2kkvAs:DjCwk9qiQbQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/BIash2kkvAs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2011/04/10/pueblo-art/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2011/04/10/pueblo-art/</feedburner:origLink></item>
		<item>
		<title>Secure Twitter</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/CyeH5ihC-ZI/</link>
		<comments>http://www.aeonscope.net/2011/03/18/secure-twitter/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 13:34:00 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3962</guid>
		<description><![CDATA[While attending MountainWest RubyConf 2011, Jim Weirich and Matt Yoho were talking about Rails security tips. One of the items mentioned was ensuring that your Twitter profile settings have HTTPS enabled. To do this, log into your Twitter account and edit your profile. At the bottom of the page, you&#8217;ll find the following:

Somehow I had [...]]]></description>
			<content:encoded><![CDATA[<p>While attending <a href="http://mtnwestrubyconf.org/2011/">MountainWest RubyConf 2011</a>, Jim Weirich and Matt Yoho were talking about <a href="http://mtnwestrubyconf.org/2011/sessions#jimweirich">Rails security tips</a>. One of the items mentioned was ensuring that your Twitter profile settings have HTTPS enabled. To do this, log into your Twitter account and edit your profile. At the bottom of the page, you&#8217;ll find the following:</p>
<p><img src="http://www.aeonscope.net/wp-content/uploads/2011/03/twitter_security.png" alt="Twitter Security Settings" title="Twitter Security Settings" width="563" height="110" class="alignnone size-full wp-image-3963" /></p>
<p>Somehow I had overlooked this change with my Twitter account but have since corrected it. You should fix your account as well, if you haven&#8217;t already.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=CyeH5ihC-ZI:OidV5VGEvUk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/CyeH5ihC-ZI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2011/03/18/secure-twitter/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2011/03/18/secure-twitter/</feedburner:origLink></item>
		<item>
		<title>Dawn, Noon, and Dusk Actions</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/TpFxZR_El24/</link>
		<comments>http://www.aeonscope.net/2011/03/06/dawn-noon-and-dusk-actions/#comments</comments>
		<pubDate>Sun, 06 Mar 2011 15:55:10 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3924</guid>
		<description><![CDATA[Introduction
After reading Creating Flow with OmniFocus by Kourosh Dini M.D., I greatly improved my flow and focus of daily actions. I had been performing these actions on a daily basis but ended up recalling actions from memory and sometimes skipping and forgetting actions which would inevitably pile up as additional work on the weekends. I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>After reading <a href="http://usingomnifocus.com">Creating Flow with OmniFocus</a> by Kourosh Dini M.D., I greatly improved my flow and focus of daily actions. I had been performing these actions on a daily basis but ended up recalling actions from memory and sometimes skipping and forgetting actions which would inevitably pile up as additional work on the weekends. I&#8217;ve worked out a system that keeps these daily tasks out of my head and into my trusted system (i.e. OmniFocus) so that I maintain the consistency that I desire AND keep my thoughts clear for more important ideas. The following is a breakdown of my dawn, noon, and dusk actions that I perform on a daily basis.</p>
<p>The following assumes you read <a href="http://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/dp/0142000280">Getting Things Done</a> by David Allen and use <a href="http://www.omnigroup.com/products/omnifocus/">OmniFocus</a> for the Mac.</p>
<p><strong>Project Overview</strong></p>
<p>To start, it helps to have an overview of my projects via the planning mode of OmniFocus. In my case, I put all daily and weekly tasks in a &#8220;Reviews&#8221; folder because in a sense, these are my daily and weekly reviews before I start or return to work.</p>
<p><img src="http://www.aeonscope.net/wp-content/uploads/2011/03/review_projects.png" alt="Review Projects" title="Review Projects" width="227" height="209" class="alignnone size-full wp-image-3928" /></p>
<p>Each project is described as follows:</p>
<ul>
<li><strong>Dawn</strong> - Repeats daily 5am - 8am, actions are sequential, and marked complete when the last action is performed.</li>
<li><strong>Noon</strong> - Repeats daily 11:30am - 1pm, actions are sequential, and marked complete when the last action is performed.</li>
<li><strong>Dusk</strong> - Repeats daily 5pm - 8pm, actions are sequential, and marked complete when the last action is performed.</li>
<li><strong>Weekly</strong> - Outside the scope of this article.</li>
<li><strong>Maintenance</strong> - A place for saving actions related to fixing and/or enhancing the above mentioned projects.</li>
</ul>
<p><strong>Dawn Actions</strong></p>
<p>My actions for starting the day:</p>
<p><a rel="lytebox" href="http://www.aeonscope.net/wp-content/uploads/2011/03/dawn.png"><img src="http://www.aeonscope.net/wp-content/uploads/2011/03/dawn-300x285.png" alt="Dawn" title="Dawn" width="300" height="285" class="alignnone size-medium wp-image-3973" /></a><br />
(click to view)</p>
<p>For those unfamiliar with OmniFocus, there are three columns to the screenshot above. The left-most column is for the actions themselves, the next column is for the context in which the action is to be performed, and the very last column is for the note icons (which have been expanded for reading).</p>
<p>I won&#8217;t go into each action individually since I think you can get a pretty good understanding of what each action does (via the associated notes) but I do want to go over the purpose of each group of actions:</p>
<ul>
<li><strong>Catch Up</strong> - Each action is performed in sequence and is mainly for quickly catching up on activities that took place while I was away. For tweets and feeds that require further reading, I send them to Instapaper or (mark them as starred - in the case of Google Reader). These actions are reserved for quickly catching up on the news. In depth processing of the news happens later as you&#8217;ll see below.</li>
<li><strong>Plan</strong> - Here is where I plan (or modify previous plans) for the day based on news read and actions required of me after processing email. For calendaring, I use Google Calendar. I usually only need to check one calendar since all my other calendars pour into my personal calendar (via sharing). Important, next, and due soon actions are easily viewed and acted upon via the OmniFocus perspective links. Screenshots of each perspective are provided below.</li>
<li><strong>Clean Up</strong> - Based on what was read and planned for the day, here is where I go back and read up on the articles I didn&#8217;t have time for when catching up earlier. This section of actions is always &#8220;as time allows&#8221;. Some days I have more time, other days I don&#8217;t have time at all. I at least attempt to &#8220;touch the keys&#8221; even when time is limited. Notice that I don&#8217;t close my email client until the very end of this action group. This allows me to delegate or require actions of others while reviewing important, next, and due soon actions.</li>
<li><strong>Synchronize</strong> - Most days I have the ability to work from home&#8230;but if I do need to run out the door at least I&#8217;ll have my iPhone synced with my most critical data (well, ok, &#8220;critical&#8221; really only means OmniFocus but the other data is nice to have too).</li>
</ul>
<p><strong>Noon Actions</strong></p>
<p>My actions when resurfacing from work:</p>
<p><a rel="lytebox" href="http://www.aeonscope.net/wp-content/uploads/2011/03/noon.png"><img src="http://www.aeonscope.net/wp-content/uploads/2011/03/noon-300x285.png" alt="Noon" title="Noon" width="300" height="285" class="alignnone size-medium wp-image-3975" /></a><br />
(click to view)</p>
<p>Basically identical to my dawn actions except that, by this time, I might have SMS and voice mail messages to respond too (as I generally don&#8217;t respond any incoming messages while working). Remember, it&#8217;s all about protecting the flow and staying focused on the work at hand which means not getting detracted by email, phone, Twitter, Feeds, etc. This is something that got ingrained in my head after reading <a href="http://www.fourhourworkweek.com">4-Hour Workweek</a> by Timothy Ferriss. The necessity to sync my phone is not really required, so that is not listed here either.</p>
<p><strong>Dusk Actions</strong></p>
<p>My actions when resurfacing from work and winding down the day:</p>
<p><a rel="lytebox" href="http://www.aeonscope.net/wp-content/uploads/2011/03/dusk.png"><img src="http://www.aeonscope.net/wp-content/uploads/2011/03/dusk-300x285.png" alt="Dusk" title="Dusk" width="300" height="285" class="alignnone size-medium wp-image-3974" /><br />
</a><br />
(click to view)</p>
<p>These are the same actions as performed during the noon hour.</p>
<p><strong>Perspectives</strong></p>
<p>As promised, here are my OmniFocus perspective settings.</p>
<p>Important Actions</p>
<p><img src="http://www.aeonscope.net/wp-content/uploads/2011/03/important_actions_perspective.png" alt="Perspective (Important)" title="Perspective (Important)" width="337" height="361" class="alignnone size-full wp-image-3945" /></p>
<p>Next Actions</p>
<p><img src="http://www.aeonscope.net/wp-content/uploads/2011/03/next_actions_perspective.png" alt="Perspective (Next)" title="Perspective (Next)" width="337" height="357" class="alignnone size-full wp-image-3946" /></p>
<p>Due Soon Actions</p>
<p><img src="http://www.aeonscope.net/wp-content/uploads/2011/03/due_soon_actions_perspective.png" alt="Perspective (Due Soon)" title="Perspective (Due Soon)" width="334" height="352" class="alignnone size-full wp-image-3944" /></p>
<p><strong>Conclusion</strong></p>
<p>In practice, I&#8217;ve found that it takes me anywhere from 10 minutes to 1 hour to complete the dawn, noon, and dusk projects. It used to be that these actions could pile up and get unwieldy. I&#8217;d have to claim information bankruptcy but now, with a trusted system, I can stay on task without ever letting the mountain overwhelm me. The key to all of this, of course, is being disciplined about it. When you are, the flow is smooth as silk but, let it get out of control, and it can become daunting.</p>
<p>These tasks, like anything else in OmniFocus, are constantly evolving. It might be that I streamline this even further in the future. For me, at least, it works and maybe it can help you too.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=TpFxZR_El24:uICvQsNOJFc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/TpFxZR_El24" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2011/03/06/dawn-noon-and-dusk-actions/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2011/03/06/dawn-noon-and-dusk-actions/</feedburner:origLink></item>
		<item>
		<title>Alfred Custom Searches</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/Oue4GxCPMMc/</link>
		<comments>http://www.aeonscope.net/2011/01/30/alfred-custom-searches/#comments</comments>
		<pubDate>Sun, 30 Jan 2011 19:21:36 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3868</guid>
		<description><![CDATA[I recently tweeted about Alfred for the Mac. Since that time, I&#8217;ve been building an arsenal of shortcuts. Specifically: Custom Searches. The Custom Searches feature allows you add a URL that can be launched by a keyword. For example:

OPTION+SPACE - Opens the Alfred quick entry window.
google metaprogramming - Typing this phrase into Alfred opens a [...]]]></description>
			<content:encoded><![CDATA[<p>I recently <a href="http://twitter.com/bkuhlmann/status/28812213321994240">tweeted</a> about <a href="http://www.alfredapp.com">Alfred</a> for the Mac. Since that time, I&#8217;ve been building an arsenal of shortcuts. Specifically: Custom Searches. The Custom Searches feature allows you add a URL that can be launched by a keyword. For example:</p>
<ol>
<li><strong>OPTION+SPACE</strong> - Opens the Alfred quick entry window.</li>
<li><strong>google metaprogramming</strong> - Typing this phrase into Alfred opens a new browser tab with the &#8220;metapgramming&#8221; search results.</li>
</ol>
<p>Awesome, right? Well, for those familiar with Alfred, this comes default via Web Searches feature. &#8230;but what if you want to add keywords for custom URLs. No problem, click on Custom Searches and add your own preferences. Using the example above, lets say I want to use Google&#8217;s <em>secure</em> search capability. Here&#8217;s how:</p>
<ul>
<li>Open Alfred Preferences.</li>
<li>Click on &#8220;Features&#8221;.</li>
<li>Click on &#8220;Custom Searches&#8221;</li>
<li>Click the &#8216;+&#8217; button.</li>
<li>Enter the following:
<ul>
<li>Search URL: https://encrypted.google.com/search?q={query}</li>
<li>Display Text: Google Secure Search</li>
<li>Keyword: google</li>
</ul>
</li>
<li>Click &#8220;Save&#8221;.</li>
</ul>
<p>Did you notice the {query} variable in the search URL above? This allows you to pass &#8220;metaprogramming&#8221; to the google keyword which ultimately yields the following URL: https://encrypted.google.com/search?q=metaprogramming.</p>
<p>Here is a visual example of some of my custom settings:</p>
<p><img src="http://www.aeonscope.net/wp-content/uploads/2011/01/custom_searches.png" alt="Custom Searches" title="Custom Searches" width="528" height="418" class="aligncenter size-full wp-image-3880" /></p>
<p>Running with that you, could also keep keyboard shortcuts for other services like GitHub, Instapaper, Netflix, etc.</p>
<p>Go wild and enjoy.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=Oue4GxCPMMc:Fa-Byiqn5FI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/Oue4GxCPMMc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2011/01/30/alfred-custom-searches/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2011/01/30/alfred-custom-searches/</feedburner:origLink></item>
		<item>
		<title>Respecting Time with Chained Scopes</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/PTYm-dvG4gQ/</link>
		<comments>http://www.aeonscope.net/2011/01/17/respecting-time-with-chained-scopes/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 15:21:57 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3853</guid>
		<description><![CDATA[
I ran into odd behavior the other day when working with chained scopes that required current time to be calculated each time the scope was called. For example, lets say that you are building a blogging application in Rails where you have a Post model. Each post has a published_at attribute which you use to [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://www.aeonscope.net/images/ruby/rails.png" alt="Ruby on Rails"/></center></p>
<p>I ran into odd behavior the other day when working with chained scopes that required current time to be calculated each time the scope was called. For example, lets say that you are building a blogging application in Rails where you have a Post model. Each post has a published_at attribute which you use to determine whether a post is viewable or not. With that in mind, you might write a scope like this:</p>
<p><code>scope :published, where("published_at &lt;= ?", Time.now.utc)</code></p>
<p>Now, when you call Post.published, you&#8217;ll only get back posts that were published before or equal to current time. Wrong. Scopes, since they are essentially class methods, get calculated at application launch. So if you haven&#8217;t restarted your Rails app for some time, then current time is actually whenever you launched the Rails app. To fix this, you simply rewrite the scope with a lambda, as follows:</p>
<p><code>scope :published, lambda {where "published_at &lt;= ?", Time.now.utc}</code></p>
<p>There, much better. This means that each time Post.published is called, the time will be calculated at the time in which the published scope was called.</p>
<p>Great, so now that we&#8217;ve got that figured out. Lets build upon our &#8220;published&#8221; scope and create a chained scope that can not only display published posts but those that are meant for external/public viewing. For example:</p>
<p><code>scope :external, published.where(:external =&gt; true)</code></p>
<p>Seems reasonable, right? You should get all published and external posts based on current time because we corrected behavior for the published scope. Sadly, this is not true. You&#8217;ll only get externally published posts based on the time in which the server was started. Yep, you guessed it, we need to wrap this in another block. So the code above now becomes:</p>
<p><code>scope :external, lambda {published.where :external =&gt; true}</code></p>
<p>Now, finally, you can call Post.external and get all externally published posts based on the current time from which you called the &#8220;external&#8221; scope. Personally, I feel this is not intuitive and seems like a bug. Especially, since one of the most powerful features of Rails 3 is the beauty of building upon and chaining your scopes to condense complex operations into a single call.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=PTYm-dvG4gQ:nnB4b2FdtVE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/PTYm-dvG4gQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2011/01/17/respecting-time-with-chained-scopes/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2011/01/17/respecting-time-with-chained-scopes/</feedburner:origLink></item>
		<item>
		<title>Tweeting Duplicate Links</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/57u-H3wLfU8/</link>
		<comments>http://www.aeonscope.net/2010/12/19/tweeting-duplicate-links/#comments</comments>
		<pubDate>Mon, 20 Dec 2010 02:17:13 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3770</guid>
		<description><![CDATA[
I recently tweeted the following:
&#8220;Twitter Spam: Tweeting only a link to your blog post. Its insulting to those that follow your tweets and posts. Unfollow immediately.&#8221;
&#8230;which managed to spark the following feedback:

DilatedTime: Seems an excessive posture. What if one follows only one or the other? I find no issue with the practice. Tune one out.
gefahrmaus: [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://www.aeonscope.net/images/twitter.png" alt="Twitter"/></center></p>
<p>I recently tweeted the following:</p>
<p><em>&#8220;Twitter Spam: Tweeting only a link to your blog post. Its insulting to those that follow your tweets and posts. Unfollow immediately.&#8221;</em></p>
<p>&#8230;which managed to spark the following feedback:</p>
<ul>
<li><strong>DilatedTime</strong>: Seems an excessive posture. What if one follows only one or the other? I find no issue with the practice. Tune one out.</li>
<li><strong>gefahrmaus</strong>: I disagree. One form of tweet is not exclusive of the other. They are the same. Your argument may be missing a lot of context.</li>
</ul>
<p>My reason for making the statement is due to the fact that it brakes what I consider <a href="/2010/10/06/twitter-best-practices/">Best Practices</a> for using Twitter and is also a new form of SPAM. I see it happening more often than I like and find it rather irritating to come across. Here is an example of what I consider to be offensive:</p>
<ul>
<li><code>&lt;some twitter handle&gt; New Post: &lt;link to new post on personal site&gt;</code></li>
</ul>
<p>Notice, in this example, the person is using Twitter to republishing a link that he/she owns. The reason I find this offensive is that I usually don&#8217;t care if you have a new post on your site because, more often than not, I&#8217;m also subscribed to your site as well. What I&#8217;m looking for on Twitter is something ancillary to what is found on your main web site. I&#8217;m looking for interesting, educational, funny, witty, etc. bits of information beyond the more thoughtful, longer forms of writing found in a blog post. If you want to post a link to your site, then add something to it. Make it interesting, don&#8217;t just regurgitate the same link to an article on your site that I&#8217;ll find in my feed reader. Give me context and reason for why I should be interested in seeing the same link to an article on your site that I just saw a few minutes ago in my feed reader. Even worse is when you shrink the URL to a tiny URL so I can&#8217;t even tell what the link is before clicking on it. Basically, what you are telling me is that you don&#8217;t care about wasting my time. Well, if you don&#8217;t care, then I don&#8217;t care either and will unfollow you. Simple as that. It&#8217;s a bold statement, yes, but I also believe this is an abuse of technology and want to call people out on it.</p>
<p>So what do you do if you want to promote your site on Twitter? Well, don&#8217;t do it via a Twitter account that is supposed to represent you. Create a new Twitter account that is purely for marketing or self-promotional purposes. You can hype yourself much as you want. I won&#8217;t follow that account because, like I said, I&#8217;m already following your web site. But if your goal is to direct as much traffic as possible to your site, then use a promotional Twitter account. It would also be wise to ensure the links on your Twitter profile(s) point back to your main site. My personal feeling is that if I like what you are saying on Twitter, I&#8217;m going to dig deeper into your online profile to understand where else you might live digitally and start following you from those places as well.</p>
<p>If you respect your audience, you&#8217;ll build stronger connections that could turn into real relationships or benefit you in other ways.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=57u-H3wLfU8:qi71LIjZEHo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/57u-H3wLfU8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2010/12/19/tweeting-duplicate-links/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2010/12/19/tweeting-duplicate-links/</feedburner:origLink></item>
		<item>
		<title>Internship</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/EI_J946VQrg/</link>
		<comments>http://www.aeonscope.net/2010/11/22/internship/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 13:10:16 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Employment]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3733</guid>
		<description><![CDATA[
Recently, I tweeted about hiring an intern. I am still searching for the right candidate. Here are the job details:

You&#8217;ll get to work on two Ruby on Rails applications. One is Rails 2.3.2 while the other is 3.x.x.
You&#8217;ll get to experience a form of lean software development.
You&#8217;ll be helping deal with technical support issues from [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.aeonscope.net/wp-content/uploads/2010/11/interns_wanted.jpg" alt="Interns Wanted" title="Interns Wanted" width="300" height="300" class="aligncenter size-full wp-image-3734" /></p>
<p>Recently, I <a href="http://twitter.com/bkuhlmann/status/346180470972416">tweeted</a> about hiring an intern. I am still searching for the right candidate. Here are the job details:</p>
<ul>
<li>You&#8217;ll get to work on two Ruby on Rails applications. One is Rails 2.3.2 while the other is 3.x.x.</li>
<li>You&#8217;ll get to experience a form of <a href="http://en.wikipedia.org/wiki/Lean_software_development">lean software development</a>.</li>
<li>You&#8217;ll be helping deal with technical support issues from our in-house staff, sales rep, and customer base.</li>
<li>You&#8217;ll get to write RSpec and Cucumber tests.</li>
<li>You&#8217;ll get to work on your own features and enhancements. There is plenty of work available and you&#8217;ll get your pick of which business requirements are of most interest to you.</li>
</ul>
<p>Here are the kinds of things I&#8217;m looking for in an intern (or even a part-time developer):</p>
<ul>
<li>Know the basics of the Ruby language, Ruby on Rails, HTML5, CSS3, JavaScript (jQuery), etc. If you can present code or even a demo of a Ruby, Rails, etc. program that you&#8217;ve worked that would be perfect. Be creative and have fun with it.</li>
<li>Passionate about Ruby, HTML5, CSS3, JavaScript (jQuery), etc. I want to know what types of books, podcasts, videos, web sites, etc. that you&#8217;re tuned into and excited about.</li>
<li>Have a syndicated feed (could be via Tumbler, Blogger, SquareSpace, or something you created).</li>
<li>Active on Twitter.</li>
<li>Active on GitHub (either on personal projects or projects you have contributed to).</li>
<li>Don&#8217;t send me your resume or worse, a cover letter. I&#8217;m only interested in your portfolio.</li>
<li>You can be located anywhere. We are an international company and I&#8217;ve long believed that talent doesn&#8217;t need to be discriminated against based on locality.</li>
</ul>
<p>Feel free to contact me with the details above or pass along to someone you know.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=EI_J946VQrg:aDkn1DZEkmg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/EI_J946VQrg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2010/11/22/internship/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2010/11/22/internship/</feedburner:origLink></item>
		<item>
		<title>Twitter Best Practices</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/ClZq8aAefaU/</link>
		<comments>http://www.aeonscope.net/2010/10/06/twitter-best-practices/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 12:36:54 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3651</guid>
		<description><![CDATA[
Here are some best practices when using Twitter:

Keep your tweets educational, entertaining, and relevant. Don&#8217;t bother tweeting the mundane. Be creative.
Use Twitter&#8217;s native URL shortening service. This allows links to be shortened but retain original information about the URL so that it shows up, fully expanded, in your followers stream.
Don&#8217;t retweet compliments. This is considered [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://www.aeonscope.net/images/twitter.png" alt="Twitter"/></center></p>
<p>Here are some best practices when using Twitter:</p>
<ol>
<li>Keep your tweets educational, entertaining, and relevant. Don&#8217;t bother tweeting the mundane. Be creative.</li>
<li>Use Twitter&#8217;s native URL shortening service. This allows links to be shortened but retain original information about the URL so that it shows up, fully expanded, in your followers stream.</li>
<li>Don&#8217;t retweet compliments. This is considered bragging and is insulting to your followers.</li>
<li>Don&#8217;t dot reply (i.e. &#8220;. @example Original text here.&#8221;). This causes your reply to show up in the stream of everyone that follows you instead of those that follow you and the person you are replying too. This is annoying to those who follow you but don&#8217;t follow everyone you follow. Remember, time is precious, not everyone wants to read everything you tweet about.</li>
<li>Don&#8217;t enable services that auto-tweet your activities. Examples: Path, Gowalla, FourSquare, flight statuses, weight scales, etc. These activities are mundane and boring. Nobody cares.</li>
<li>Don&#8217;t cross the streams! Differentiate your tweets from your site feed and/or other syndicated services, otherwise you end up spamming followers and losing credibility.</li>
<li>Don&#8217;t follow someone that averages more than 10 tweets a day.</li>
<li>Don&#8217;t post more than 10 tweets a day (on average).</li>
<li>Limit the reading of tweets to three times a day (morning, noon, and night) or less.</li>
<li>Use services like <a href="http://www.instapaper.com">Instapaper</a> to save tweets that link to articles which require more time to read. Doing this will allow you to parse your timeline quickly without being bogged down with the longer length articles.</li>
</ol>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=ClZq8aAefaU:qGjHSu1BS74:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/ClZq8aAefaU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2010/10/06/twitter-best-practices/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2010/10/06/twitter-best-practices/</feedburner:origLink></item>
		<item>
		<title>Pagosa Springs</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/8HZf2U0ibUs/</link>
		<comments>http://www.aeonscope.net/2010/09/26/pagosa-springs/#comments</comments>
		<pubDate>Sun, 26 Sep 2010 22:00:08 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Adventures]]></category>

		<category><![CDATA[Torrey]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3634</guid>
		<description><![CDATA[Roughly four hours after leaving the Dirty Devil, I reached Pagosa Springs, CO. As you head north from Pagosa Springs on Highway 160 you ride through a beautiful valley before ascending over Wolf Creek Pass and into the highlands where the Great Sands Dunes can be seen from many miles away. Here is a shot [...]]]></description>
			<content:encoded><![CDATA[<p>Roughly four hours after leaving the <a href="http://www.aeonscope.net/2010/09/26/dirty-devil/">Dirty Devil</a>, I reached Pagosa Springs, CO. As you head north from Pagosa Springs on Highway 160 you ride through a beautiful valley before ascending over Wolf Creek Pass and into the highlands where the <a href="http://www.nps.gov/grsa/">Great Sands Dunes</a> can be seen from many miles away. Here is a shot of the fall colors:</p>
<p><img src="http://www.aeonscope.net/wp-content/uploads/2010/09/01-north_bound.jpg" alt="North Bound" title="North Bound" width="400" height="300" class="aligncenter size-full wp-image-3636" /></p>
<p>Three hours later, after this shot was taken, I was back home again safe and sound with another great Torrey ride completed.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=8HZf2U0ibUs:zRKP4fZ9ukw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/8HZf2U0ibUs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2010/09/26/pagosa-springs/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2010/09/26/pagosa-springs/</feedburner:origLink></item>
		<item>
		<title>Dirty Devil</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/NtWDpOFBkDE/</link>
		<comments>http://www.aeonscope.net/2010/09/26/dirty-devil/#comments</comments>
		<pubDate>Sun, 26 Sep 2010 16:30:29 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Adventures]]></category>

		<category><![CDATA[Torrey]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3623</guid>
		<description><![CDATA[After riding the surrounding area of Torrey yesterday, we packed up camp and began our ride home taking Highway 24 east to Highway 95. The following are pictures from atop the Dirty Devil overlook:

(click to view)
Highway 95 continues on from this point for many scenic miles. Eventually Brant headed south through the Valley of the [...]]]></description>
			<content:encoded><![CDATA[<p>After <a href="http://www.aeonscope.net/2010/09/25/goblin-valley/">riding the surrounding area of Torrey yesterday</a>, we packed up camp and began our ride home taking Highway 24 east to Highway 95. The following are pictures from atop the Dirty Devil overlook:</p>
<p><a title="Dirty Devil" rel="lytebox[Dirty Devil]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/26-a-dirty_devil_overlook/01-dirty_devil.jpg"><img alt="Dirty Devil" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/26-a-dirty_devil_overlook/01-dirty_devil-thumb.jpg"></a><a title="Dirty Devil" rel="lytebox[Dirty Devil]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/26-a-dirty_devil_overlook/02-dirty_devil.jpg"><img alt="Dirty Devil" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/26-a-dirty_devil_overlook/02-dirty_devil-thumb.jpg"></a><a title="Fading Moon" rel="lytebox[Dirty Devil]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/26-a-dirty_devil_overlook/03-fading_moon.jpg"><img alt="Fading Moon" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/26-a-dirty_devil_overlook/03-fading_moon-thumb.jpg"></a><a title="Bikes" rel="lytebox[Dirty Devil]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/26-a-dirty_devil_overlook/04-bikes.jpg"><img alt="Bikes" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/26-a-dirty_devil_overlook/04-bikes-thumb.jpg"></a><a title="Valley" rel="lytebox[Dirty Devil]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/26-a-dirty_devil_overlook/05-valley.jpg"><img alt="Valley" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/26-a-dirty_devil_overlook/05-valley-thumb.jpg"></a><br />
(click to view)</p>
<p>Highway 95 continues on from this point for many scenic miles. Eventually Brant headed south through the Valley of the Gods to Arizona and I to the east to ride through the southern parts of Colorado.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=NtWDpOFBkDE:_zlGKr6uKj4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/NtWDpOFBkDE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2010/09/26/dirty-devil/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2010/09/26/dirty-devil/</feedburner:origLink></item>
		<item>
		<title>Goblin Valley</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/MsFNcdXSrl4/</link>
		<comments>http://www.aeonscope.net/2010/09/25/goblin-valley/#comments</comments>
		<pubDate>Sun, 26 Sep 2010 01:00:45 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Adventures]]></category>

		<category><![CDATA[Torrey]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3613</guid>
		<description><![CDATA[While in Torrey, UT we spent the afternoon riding what is called &#8220;Sweeper Madness&#8221;. The start of the run can be reached by taking Highway 24 out of Torrey to Lyman where you ride Highway 72 to I-70. The sweepers are numerous and yield well to high speeds. Once reaching I-70, you head east until [...]]]></description>
			<content:encoded><![CDATA[<p>While in <a href="http://www.aeonscope.net/2010/09/25/wonderland-rv-campsite/">Torrey, UT</a> we spent the afternoon riding what is called &#8220;Sweeper Madness&#8221;. The start of the run can be reached by taking Highway 24 out of Torrey to Lyman where you ride Highway 72 to I-70. The sweepers are numerous and yield well to high speeds. Once reaching I-70, you head east until you pick up Highway 24 again which leads to Hanksville. Just before Hanksville is a little state park known as Goblin Valley. Here are a some shots from this beautiful and mesmerizing area (a true hidden treasure of the area):</p>
<p><a title="Trinity" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/01-trinity.jpg"><img alt="Trinity" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/01-trinity-thumb.jpg"></a><a title="Goblin Valley" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/02-goblin_valley.jpg"><img alt="Goblin Valley" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/02-goblin_valley-thumb.jpg"></a><a title="Goblin Valley" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/03-goblin_valley.jpg"><img alt="Goblin Valley" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/03-goblin_valley-thumb.jpg"></a><a title="Goblin Valley" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/04-goblin_valley.jpg"><img alt="Goblin Valley" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/04-goblin_valley-thumb.jpg"></a><a title="Elevation" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/05-elevation.jpg"><img alt="Elevation" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/05-elevation-thumb.jpg"></a><a title="Sentinel" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/06-sentinel.jpg"><img alt="Sentinel" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/06-sentinel-thumb.jpg"></a><a title="Shadow" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/07-shadow.jpg"><img alt="Shadow" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/07-shadow-thumb.jpg"></a><a title="Council" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/08-council.jpg"><img alt="Council" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/08-council-thumb.jpg"></a><a title="Wardens" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/09-wardens.jpg"><img alt="Wardens" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/09-wardens-thumb.jpg"></a><a title="Jaba" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/10-jaba.jpg"><img alt="Jaba" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/10-jaba-thumb.jpg"></a><a title="Nursery" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/11-nursery.jpg"><img alt="Nursery" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/11-nursery-thumb.jpg"></a><a title="Big Daddy" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/12-big_daddy.jpg"><img alt="Big Daddy" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/12-big_daddy-thumb.jpg"></a><a title="Main Street" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/13-main_street.jpg"><img alt="Main Street" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/13-main_street-thumb.jpg"></a><a title="Air Ship" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/14-air_ship.jpg"><img alt="Air Ship" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/14-air_ship-thumb.jpg"></a><a title="Peephole" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/15-peephole.jpg"><img alt="Peephole" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/15-peephole-thumb.jpg"></a><a title="Enclave" rel="lytebox[Goblin Valley]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/16-enclave.jpg"><img alt="Enclave" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/25-b-goblin_valley/16-enclave-thumb.jpg"></a><br />
(click to view)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=MsFNcdXSrl4:rdDFSaWIwQE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/MsFNcdXSrl4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2010/09/25/goblin-valley/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2010/09/25/goblin-valley/</feedburner:origLink></item>
		<item>
		<title>Wonderland RV Campsite</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/UlJp5APHD_Q/</link>
		<comments>http://www.aeonscope.net/2010/09/25/wonderland-rv-campsite/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 19:00:09 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Adventures]]></category>

		<category><![CDATA[Torrey]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3604</guid>
		<description><![CDATA[As mentioned earlier, I returned to Torrey this year for Torrey XX to catch up with an old friend as well as other familiar faces. We camped at the Wonderland RV which IS my favorite spot to stay while in Torrey. The site is always well maintained including the bathroom/shower facilities. Here are a few [...]]]></description>
			<content:encoded><![CDATA[<p>As mentioned earlier, I <a href="http://www.aeonscope.net/2010/07/17/returning-to-torrey/">returned to Torrey</a> this year for Torrey XX to catch up with an old friend as well as other familiar faces. We camped at the Wonderland RV which IS my favorite spot to stay while in Torrey. The site is always well maintained including the bathroom/shower facilities. Here are a few pictures from the day:</p>
<p><img src="http://www.aeonscope.net/wp-content/uploads/2010/09/01-morning.jpg" alt="Morning" title="Morning" width="400" height="300" class="aligncenter size-full wp-image-3605" /></p>
<p><img src="http://www.aeonscope.net/wp-content/uploads/2010/09/02-afternoon.jpg" alt="Afternoon" title="Afternoon" width="400" height="300" class="aligncenter size-full wp-image-3606" /></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=UlJp5APHD_Q:fNH-9CDQq5s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/UlJp5APHD_Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2010/09/25/wonderland-rv-campsite/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2010/09/25/wonderland-rv-campsite/</feedburner:origLink></item>
		<item>
		<title>Protected: Rampart Reservoir - Extras</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/QmZFLaDNvp8/</link>
		<comments>http://www.aeonscope.net/2010/09/12/rampart-reservoir-extras/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 17:42:12 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Adventures]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3582</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://www.aeonscope.net/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-3582">Password:<br />
<input name="post_password" id="pwbox-3582" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=QmZFLaDNvp8:vBnLMaWsru4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/QmZFLaDNvp8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2010/09/12/rampart-reservoir-extras/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2010/09/12/rampart-reservoir-extras/</feedburner:origLink></item>
		<item>
		<title>Rampart Reservoir</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/9U3WglO9KiI/</link>
		<comments>http://www.aeonscope.net/2010/09/12/rampart-reservoir/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 17:08:55 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Adventures]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3566</guid>
		<description><![CDATA[We camped at Rampart Reservoir this weekend for an End of Summer Celebration arriving on Friday night and heading home Saturday afternoon. Had we not had another party to attend to on Saturday night (yeah, yeah - rough, I know), I definitely would have enjoyed camping Saturday night as well.
The weather was perfect and we [...]]]></description>
			<content:encoded><![CDATA[<p>We camped at <a href="http://www.coloradodirectory.com/fishing/fishing_rampart.html">Rampart Reservoir</a> this weekend for an <a href="http://www.aeonscope.net/2010/08/11/end-of-summer-celebration/">End of Summer Celebration</a> arriving on Friday night and heading home Saturday afternoon. Had we not had another party to attend to on Saturday night (yeah, yeah - rough, I know), I definitely would have enjoyed camping Saturday night as well.</p>
<p>The weather was perfect and we were in excellent company as many in the group are talented musicians and home brewers. I think we crashed around midnight on Saturday after many hours of sitting around the fire pit listening to the jam sessions.</p>
<p>On Saturday morning, we hiked down to the reservoir and Kate and I were able to go kayaking for the first time. The rhythm of controlling the rudder with your feet and keeping my paddle in sync with Kate&#8217;s lead was a little awkward at first (like rubbing your belly and patting your head at the same time) but after a few minutes I got the hang of it and off we went into the depths of the reservoir. I was addicted immediately. I guess the gang likes to kayak the <a href="http://www.utah.com/nationalsites/flaming_gorge.htm">Flaming Gorge</a> every year (beautiful area if you&#8217;ve never been). I&#8217;m determined to join next year&#8217;s adventure but, of course, that requires an equipment investment first so we&#8217;ll see.</p>
<p>The following are random pictures from the adventure:</p>
<p><a title="Vehicles" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/03-vehicles.jpg"><img alt="Vehicles" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/03-vehicles-thumb.jpg"></a><a title="Aspens in Campsite" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/04-aspens_in_campsite.jpg"><img alt="Aspens in Campsite" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/04-aspens_in_campsite-thumb.jpg"></a><a title="Our Tents" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/05-our_tents.jpg"><img alt="Our Tents" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/05-our_tents-thumb.jpg"></a><a title="Rampart Reservoir" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/06-rampart_reservoir.jpg"><img alt="Rampart Reservoir" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/06-rampart_reservoir-thumb.jpg"></a><a title="Forest Edge" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/07-forest_edge.jpg"><img alt="Forest Edge" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/07-forest_edge-thumb.jpg"></a><a title="Incoming Kayaks" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/09-incoming_kayaks.jpg"><img alt="Incoming Kayaks" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/09-incoming_kayaks-thumb.jpg"></a><a title="Land Ho" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/10-land_ho.jpg"><img alt="Land Ho" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/10-land_ho-thumb.jpg"></a><a title="Rounding the Bend" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/11-rounding_the_bend.jpg"><img alt="Rounding the Bend" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/11-rounding_the_bend-thumb.jpg"></a><a title="Off We Go" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/12-off_we_go.jpg"><img alt="Off We Go" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/12-off_we_go-thumb.jpg"></a><a title="Cutting the Glass" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/13-cutting_the_glass.jpg"><img alt="Cutting the Glass" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/13-cutting_the_glass-thumb.jpg"></a><a title="Leader" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/14-leader.jpg"><img alt="Leader" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/14-leader-thumb.jpg"></a><a title="View from Behind" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/15-view_from_behind.jpg"><img alt="View from Behind" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/15-view_from_behind-thumb.jpg"></a><a title="Distant Dam" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/17_distant_dam.jpg"><img alt="Distant Dam" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/17_distant_dam-thumb.jpg"></a><a title="Boulders" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/18_boulders.jpg"><img alt="Boulders" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/18_boulders-thumb.jpg"></a><a title="Aspen Trail" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/19-aspen_trail.jpg"><img alt="Aspen Trail" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/19-aspen_trail-thumb.jpg"></a><a title="Aspen Meadow" rel="lytebox[Rampart Reservoir]" href="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/20-aspen_meadow.jpg"><img alt="Aspen Meadow" src="http://www.aeonscope.net/wp-content/photo-album/2010/09/11-rampart_reservoir/20-aspen_meadow-thumb.jpg"></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=9U3WglO9KiI:wdvXfcQjpuU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/9U3WglO9KiI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2010/09/12/rampart-reservoir/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2010/09/12/rampart-reservoir/</feedburner:origLink></item>
		<item>
		<title>RUSH - Beyond the Lighted Stage</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/-DLB7zVSp4I/</link>
		<comments>http://www.aeonscope.net/2010/08/22/rush-beyond-the-lighted-stage/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 20:51:14 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3542</guid>
		<description><![CDATA[&#169; RUSH
For the RUSH fans out there, I&#8217;m getting Beyond the Lighted Stage on Blu-Ray via Netflix tomorrow. We&#8217;re hosting a movie night for those interested. Here are the details:

Location: Our House
Date: August 23rd, 2010 (Monday)
Time: 7:30pm (curtains close and lights dim - don&#8217;t be late)
Capacity - First five to notify me are in.

Drinks and [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://www.aeonscope.net/wp-content/uploads/2010/08/rush.png" alt="rush" title="rush"/><br/>&copy; <a href="http://www.rush.com">RUSH</a></center></p>
<p>For the <a href="http://www.rush.com">RUSH</a> fans out there, I&#8217;m getting <a href="http://www.rushbeyondthelightedstage.com">Beyond the Lighted Stage</a> on Blu-Ray via <a href="http://www.netflix.com">Netflix</a> tomorrow. We&#8217;re hosting a movie night for those interested. Here are the details:</p>
<ul>
<li><strong>Location</strong>: Our House</li>
<li><strong>Date</strong>: August 23rd, 2010 (Monday)</li>
<li><strong>Time</strong>: 7:30pm (curtains close and lights dim - don&#8217;t be late)</li>
<li><strong>Capacity</strong> - First five to notify me are in.</li>
</ul>
<p>Drinks and popcorn provided. Hope you can make it. Oh, and it will be loud!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=-DLB7zVSp4I:jEZLRAUWq04:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/-DLB7zVSp4I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2010/08/22/rush-beyond-the-lighted-stage/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2010/08/22/rush-beyond-the-lighted-stage/</feedburner:origLink></item>
		<item>
		<title>South Park Basin</title>
		<link>http://feedproxy.google.com/~r/aeonscope/posts/~3/2B0uLTZIPBk/</link>
		<comments>http://www.aeonscope.net/2010/08/21/south-park-basin/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 20:12:09 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Adventures]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=3523</guid>
		<description><![CDATA[As announced earlier, we road through the South Park Basin to South Park City (located in southern Fairplay, CO) for breakfast. This might possibly be my second favorite basin area where you can see mountains for miles (besides Highway 17 which runs by the Great Sand Dunes National Park). In the case of the South [...]]]></description>
			<content:encoded><![CDATA[<p>As <a href="http://www.aeonscope.net/2010/08/20/breakfast-at-10000/">announced earlier</a>, we road through the <a href="http://en.wikipedia.org/wiki/South_Park_%28Colorado_basin%29">South Park Basin</a> to South Park City (located in southern Fairplay, CO) for breakfast. This might possibly be my second favorite basin area where you can see mountains for miles (besides Highway 17 which runs by the <a href="http://www.nps.gov/grsa/">Great Sand Dunes National Park</a>). In the case of the South Park Basin, you can at least count 8+ 14&#8242;ers from the summit overlook. The following is a panorama from the summit:</p>
<p><a title="Wilkerson Summit Panorama" rel="lytebox[Wilkerson Summit]" href="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-a-wilkerson_summit/01-summit.jpg"><img alt="Wilkerson Summit Panorama" src="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-a-wilkerson_summit/01-summit-thumb.jpg"></a><br />
(click to view)</p>
<p>Just beyond the summit and into the basin itself, we encountered some hot air balloons:</p>
<p><a title="Hot Air Balloon" rel="lytebox[Hot Air Balloons]" href="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-b-hot_air_balloons/01.jpg"><img alt="Hot Air Balloon" src="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-b-hot_air_balloons/01-thumb.jpg"></a><a title="Hot Air Balloon" rel="lytebox[Hot Air Balloons]" href="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-b-hot_air_balloons/02.jpg"><img alt="Hot Air Balloon" src="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-b-hot_air_balloons/02-thumb.jpg"></a><a title="Hot Air Balloon" rel="lytebox[Hot Air Balloons]" href="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-b-hot_air_balloons/03.jpg"><img alt="Hot Air Balloon" src="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-b-hot_air_balloons/03-thumb.jpg"></a><a title="Hot Air Balloon" rel="lytebox[Hot Air Balloons]" href="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-b-hot_air_balloons/04.jpg"><img alt="Hot Air Balloon" src="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-b-hot_air_balloons/04-thumb.jpg"></a><a title="Hot Air Balloon" rel="lytebox[Hot Air Balloons]" href="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-b-hot_air_balloons/05.jpg"><img alt="Hot Air Balloon" src="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-b-hot_air_balloons/05-thumb.jpg"></a><a title="Hot Air Balloon" rel="lytebox[Hot Air Balloons]" href="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-b-hot_air_balloons/06.jpg"><img alt="Hot Air Balloon" src="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-b-hot_air_balloons/06-thumb.jpg"></a><br />
(click to view)</p>
<p>&#8230;and finally we landed in South Park City:</p>
<p><a title="Main Street" rel="lytebox[South Park City]" href="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-c-south_park_city/01-main_street.jpg"><img alt="Main Street" src="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-c-south_park_city/01-main_street-thumb.jpg"></a><a title="South Park Pottery" rel="lytebox[South Park City]" href="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-c-south_park_city/02-south_park_pottery.jpg"><img alt="South Park Pottery" src="http://www.aeonscope.net/wp-content/photo-album/2010/08/21-c-south_park_city/02-south_park_pottery-thumb.jpg"></a><br />
(click to view)</p>
<p>As for breakfast, stopped at the Brown Burro Cafe just off of main street in Fairplay. The food wasn&#8217;t outstanding but also wasn&#8217;t bad either. Definitely hit the spot, though.</p>
<p>The ride home was the same as the one up. Had I been feeling better, I would have been tempted to loop up through Breckenridge, Leadville, and Buena Vista back into the Springs. Some other time.</p>
<p>Once again, another great ride.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/aeonscope/posts?a=2B0uLTZIPBk:88iPqbhkK5g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aeonscope/posts?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/aeonscope/posts/~4/2B0uLTZIPBk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2010/08/21/south-park-basin/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.aeonscope.net/2010/08/21/south-park-basin/</feedburner:origLink></item>
	</channel>
</rss>

