<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>Aeonscope &#187; Services</title>
	<atom:link href="http://www.aeonscope.net/category/services/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aeonscope.net</link>
	<description>A view of time.</description>
	<pubDate>Sat, 13 Mar 2010 22:43:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Managing Multiple Heroku Accounts</title>
		<link>http://www.aeonscope.net/2010/02/22/managing-multiple-heroku-accounts/</link>
		<comments>http://www.aeonscope.net/2010/02/22/managing-multiple-heroku-accounts/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 04:33:39 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<category><![CDATA[Heroku]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=2910</guid>
		<description><![CDATA[&#169; Heroku
I&#8217;ve been using Heroku for some time now. Well, ever since the Heroku Gardens days &#8212; which was over a year ago. Seems longer. Anyway, I&#8217;ve got a handful of apps on Heroku. Some prototypes and some in production. I also have multiple accounts in play. The only problem is that this isn&#8217;t the [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://www.aeonscope.net/wp-content/uploads/2010/02/heroku.png" alt="Heroku" title="Heroku" width="197" height="71"/><br/>&copy; <a href="http://heroku.com">Heroku</a></center></p>
<p>I&#8217;ve been using <a href="http://heroku.com">Heroku</a> for some time now. Well, ever since the <a href="http://www.aeonscope.net/2009/01/20/heroku-garden-local-development-basics/">Heroku Gardens</a> days &#8212; which was over a year ago. Seems longer. Anyway, I&#8217;ve got a handful of apps on Heroku. Some prototypes and some in production. I also have multiple accounts in play. The only problem is that this isn&#8217;t the easiest thing in the world to manage. In case you travel down this path, here are some tips.</p>
<p><strong>Requirements</strong></p>
<p>The following assumes you are on the MacOS, already own multiple Heroku accounts, have installed the Heroku <a href="http://rubygems.org/gems/heroku">gem</a>, and have deployed a Ruby on Rails application to Heroku before. Otherwise, read the <a href="http://docs.heroku.com/quickstart">Quickstart</a> docs and you&#8217;ll be up and running in no time.</p>
<p><strong>Credentials</strong></p>
<p>Let&#8217;s start with your credentials file (i.e. ~/.heroku/credentials). This file is usually created for you by the Heroku gem when you setup your first account. It is a text file with your account login (i.e. email address) on the first line and your password on the second line. To setup multiple accounts, I&#8217;d suggest the following:</p>
<ul>
<li>~/.heroku/credentials - Your current account that is in play.</li>
<li>~/.heroku/account_1.credentials - Your first account.</li>
<li>~/.heroku/account_2.credentials - Your second account.</li>
</ul>
<p>When you need to switch accounts simply copy the contents of the account you are switching to over the existing credentials file (example: <em>account_2.credentials</em> now becomes <em>credentials</em>). I wrote a couple of simple Ruby scripts to automate this:</p>
<ul>
<li><a href="http://www.aeonscope.net/wp-content/uploads/2010/02/switcher.zip">switcher.rb</a> - Makes switching between your accounts a breeze from the command line.</li>
<li><a href="http://www.aeonscope.net/wp-content/uploads/2010/02/credentials.zip">credentials.rb</a> - This will echo your currently active account from the command line.</li>
</ul>
<p>You can add the following aliases to your ~/.bash_profile file as follows:</p>
<ul>
<li><code>alias heroc="ruby &lt;path to where you unzipped the script&gt;/credentials.rb"</code></li>
<li><code>alias heros="ruby &lt;path to where you unzipped the script&gt;/switcher.rb"</code></li>
</ul>
<p>Now, from the command line, you can simply type &#8220;heros&#8221; and &#8220;heroc&#8221; to use the scripts. Of course, you can use whatever alias you want.</p>
<p><strong>Security Keys</strong></p>
<p>Right, so we have the credentials files out of the way but there is one last step. You need to associate your public key with each account. Here is my suggestion:</p>
<ol>
<li>Change directory to <code>~/.ssh</code></li>
<li>Create your private and public keys for each account by running the following command: <code>ssh-keygen -t rsa -C "&lt;email&gt;" -f ~/.ssh/&lt;account&gt;.identity</code></li>
<li>Type <code>heros &lt;account&gt;</code> to switch account and add the new keys for each: <code>heroku keys:add [path to keyfile].pub</code></li>
</ol>
<p>For each Heroku account beyond your first, you&#8217;ll need to make use of the SSH config file (i.e. ~/.ssh/config) as follows (thanks to the Heroku support team on this one):</p>
<ul>
<li>Host official.heroku.com</li>
<li>HostName heroku.com</li>
<li>User git</li>
<li>IdentityFile <code>~/.ssh/&lt;account&gt;.identity</code></li>
<li>IdentitiesOnly yes</li>
</ul>
<p>Also, for each account beyond the first, you&#8217;ll need to switch to each app directory and type the following command: <code>git remote add heroku git@official.heroku.com:&lt;your app&gt;.git</code>. This will allow you to push and deploy your changes back to the Heroku servers and finalizes your setup.</p>
<p><strong>Workflow</strong></p>
<p>From this point forward, you can switch between accounts as follows:</p>
<ol>
<li>Change directory to the app you want to work on.</li>
<li>Type <code>heros</code> to switch to appropriate account.</li>
<li>Make changes to your code.</li>
<li>Type: git commit -a -m &#8220;Your comments.&#8221;</li>
<li>Type: git push heroku.</li>
<li>Have a beer.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2010/02/22/managing-multiple-heroku-accounts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Canvas Movie Posters</title>
		<link>http://www.aeonscope.net/2010/02/15/canvas-movie-posters/</link>
		<comments>http://www.aeonscope.net/2010/02/15/canvas-movie-posters/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 18:59:27 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<category><![CDATA[Home Theater]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=2851</guid>
		<description><![CDATA[&#169; The Movie DB
A couple of years ago my brother and I set out to frame our own movie posters since the prices for poster prints can add up quickly. In our case, we bought paper prints from places like All Posters, attached them to foam boards (bought via Michaels) with 3M glue spray, built [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://www.aeonscope.net/wp-content/uploads/2010/02/lawrence.jpg" alt="Lawrence of Arabia" title="Lawrence of Arabia" width="400" height="225" class="alignnone size-full wp-image-2858" /><br/>&copy; <a href="http://www.themoviedb.org">The Movie DB</a></center></p>
<p>A couple of years ago my brother and I set out to frame our own movie posters since the prices for poster prints can add up quickly. In our case, we bought paper prints from places like All Posters, attached them to foam boards (bought via <a href="http://www.michaels.com">Michaels</a>) with 3M glue spray, built and stained wooden frames (all done by my brother), and finally we worked with a local glass cutter to encase the prints. The result was OK but not great. The use of the 3M glue proved to be tricky to get right and in some cases resulted in minor bubbling of the prints.</p>
<p>That was several years ago. Now I&#8217;m researching a different tactic: canvas prints. This would not require glass. Plus canvas would partially work as an acoustic absorber and reduce light reflection from the video source. Ideally, I&#8217;d like to obtain high resolution digital images of the movie posters and figure out a clever way to print these images myself onto canvas or fabric. Unfortunately, obtaining high resolution images (i.e. 4500 x 6000 pixels or higher) is proving rather difficult. The alternative is to simply shop for canvas prints, which is easier, and then frame them how you like. Here is what I have found so far:</p>
<ul>
<li><a href="http://www.allmoviereplicas.com">All Movie Replicas</a> - Offers movie posters, replicas, busts, memorabilia, etc.</li>
<li><a href="http://www.moviegoods.com">Movie Goods</a> - Mostly dedicated to movie poster and related images. They supply canvas prints as well a framing abilities.</li>
<li><a href="http://www.moviepostershop.com">The Movie Poster Shop</a> - Supplies movie poster and canvas prints.</li>
<li><a href="http://www.allposters.com">All Posters</a> - A popular place for movie poster prints or canvas versions. They also support framing.</li>
<li><a href="http://www.themoviedb.org">The Movie DB</a> - While not necessarily related to shops that supply movie prints for purchase, I thought I&#8217;d mention this site since it does supply movie-related information including digital images. Most images are in 1920&#215;1080 resolutions. Good for desktop wallpaper.</li>
</ul>
<p>For me, I&#8217;m not sure if I&#8217;ll go down this route, but it is worth considering.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2010/02/15/canvas-movie-posters/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Local Dish (Alpha)</title>
		<link>http://www.aeonscope.net/2009/07/06/local-dish-alpha/</link>
		<comments>http://www.aeonscope.net/2009/07/06/local-dish-alpha/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 13:30:42 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<category><![CDATA[Local Dish]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=2133</guid>
		<description><![CDATA[
I haven&#8217;t talked much about Local Dish on this site and I thought I&#8217;d shed some more light on the project for those interested.
Local Dish is a new web site, service, and Ruby on Rails application that is about fresh food and healthy eating. Whether you are a cook, wanting to be a cook, or [...]]]></description>
			<content:encoded><![CDATA[<p><center><a href="http://www.aeonscope.net/wp-content/uploads/2009/07/fork.png" rel='lytebox[local-dish-alpha]'><img src="http://www.aeonscope.net/wp-content/uploads/2009/07/fork.png" alt="fork" title="fork" width="32" height="32" class="alignnone size-full wp-image-2134" /></a></center></p>
<p>I haven&#8217;t talked much about <a href="http://www.localdish.net">Local Dish</a> on this site and I thought I&#8217;d shed some more light on the project for those interested.</p>
<p>Local Dish is a new web site, service, and Ruby on Rails application that is about fresh food and healthy eating. Whether you are a cook, wanting to be a cook, or just looking for alternative ways to eat better then Local Dish is for you. We are initially tapping into the local scene which means we are hyper-local and definitely a niche service. That said, the recipe database and articles related on how to cook should be applicable to all no matter where you live. Plus, you should find the shopping list generator handy as well. Here is a high level breakdown of features we&#8217;ll be deploying:</p>
<ul>
<li><strong>Recipe Database</strong> - The heart of this app is the use of the recipe database. You&#8217;ll be able to quickly search for and find recipes that might be of interest to you.</li>
<li><strong>Recipe Sharing </strong>- Members will have the ability to share and rate recipes.</li>
<li><strong>Recipe Management</strong> - Members will be able to mark recipes as something they have tried, have yet to try, tried and didn&#8217;t like, etc. You&#8217;ll be able to categorize and mark recipes as favorites, etc.</li>
<li><strong>Recipe Import/Export</strong> - Capability and support for quickly importing a collection of recipes or exporting them out to a different application will be supported as well. </li>
<li><strong>Shopping List Generator</strong> - Based on your recipe choices and how you configure your daily, weekly, and/or monthly menus this tool will allow you to generate shopping lists easily which gives you back more time to do the things you enjoy.</li>
<li><strong>Technical Merits</strong> - The app is being built on top of Ruby on Rails which in and of itself is pretty sweet.  We&#8217;ll also be using HTML5, CSS3, and the latest JavaScript technologies. This also means that support for legacy browsers will be not supported initially. We&#8217;ll see how this works out. The technical purist in me wants to drop support for Internet Explorer all together and only support Firefox 3.5, Safari 4, and possibly Google Chrome because the stuff you can do with the latest web technologies in these modern browsers is impressive.</li>
</ul>
<p>We think it is perfect timing since the current economy is in the dumps, people are looking for easier ways to cut grocery costs, and eat healthier without sacrificing taste. We are also scratching an itch to a problem that both Kate and I want solved as well. So bookmark the site and subscribe to the <a href="http://www.localdish.net/public/posts.atom">site</a> and <a href="http://twitter.com/localdish">twitter</a> feeds. We are very focused on community, so your input is welcome.  Eventually, we&#8217;ll be opening up the site for Beta invites so that you can manage your own recipe collection, share recipes with others, generate your own shopping lists, etc.</p>
<p>We&#8217;re excited about this service and hope you will be to.  See you on <a href="http://www.localdish.net">Local Dish</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2009/07/06/local-dish-alpha/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Heroku Garden Local Development Basics</title>
		<link>http://www.aeonscope.net/2009/01/20/heroku-garden-local-development-basics/</link>
		<comments>http://www.aeonscope.net/2009/01/20/heroku-garden-local-development-basics/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 02:00:24 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<category><![CDATA[Heroku]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=1302</guid>
		<description><![CDATA[&#169; Heroku Garden
Introduction
For those of you familiar with Heroku, you will know that web applications originally developed for Heroku have been transitioned to Heroku Garden.  The transition hasn&#8217;t been smooth by any means but the team at Heroku has been responsive both in terms of email and Twitter correspondence so I suppose I can&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://www.aeonscope.net/wp-content/uploads/2009/01/herokugarden-logo.png" alt="Heroku Garden Logo" title="HerokuGarden Logo" width="63" height="62" class="alignnone size-full wp-image-1303" /><br/>&copy; <a href="http://herokugarden.com/">Heroku Garden</a></center></p>
<p><strong>Introduction</strong></p>
<p>For those of you familiar with <a href="http://heroku.com">Heroku</a>, you will know that web applications originally developed for Heroku have been transitioned to <a href="http://herokugarden.com">Heroku Garden</a>.  The transition hasn&#8217;t been smooth by any means but the team at Heroku has been responsive both in terms of email and Twitter correspondence so I suppose I can&#8217;t grumble to much.  That said, I&#8217;m still left feeling a bit uneasy with the whole experience.  BTW, you can read more about the transition <a href="http://herokugarden.com/transition">here</a>.</p>
<p>While the idea behind Heroku/Heroku Garden applications (namely Ruby on Rails applications) is that you can develop them via a web interface as they are hosted in the cloud, it is not always the most desirable.  The following is a breakdown of how to go about developing your Heroku Garden Ruby on Rails application(s) from your local development machine.  Keep in mind that some of this information will also apply to your Heroku production apps as well.</p>
<p><strong>Gems</strong></p>
<p>Heroku has developed a couple of gems worth noting that makes local development much easier:</p>
<ul>
<li><strong>heroku</strong> - For production use.  To install type:  <code>sudo gem install heroku</code>.</li>
<li><strong>herokugarden</strong> - For testing and rapid prototyping.  To install type:  <code>sudo gem install herokugarden</code>.</li>
</ul>
<p>Both require the rest-client gem which you will get automatically when installing either of the gems listed above.  <a href="http://www.aeonscope.net/2009/01/19/invalid-gem-format/">Read my previous post</a> if you have issues.  For the purposes of this demonstration, stick with the herokugarden gem.</p>
<p><strong>Setup</strong></p>
<p>So to get started, follow these steps (assuming you already have <a href="http://git.or.cz/">git</a> installed):</p>
<ol>
<li>Register and create a HerokuGarden account if you don&#8217;t already have one.</li>
<li>Create a new app by clicking the &#8220;Create New App&#8221; button and adjust your settings as you see fit:<br/><a href="http://www.aeonscope.net/wp-content/uploads/2009/01/heroku-garden-apps.png" rel='lytebox[heroku-garden-local-development-basics]'><img src="http://www.aeonscope.net/wp-content/uploads/2009/01/heroku-garden-apps-100x100.png" alt="My Heroku Garden Apps" title="My Heroku Garden Apps" width="100" height="100" class="alignnone size-thumbnail wp-image-1318" /></a><br/>(click to view)</li>
<li>Install the herokugarden gem mentioned above.</li>
<li>Execute the following command to create a private and public key to be used by Heroku:  <code>ssh-keygen -t rsa</code>.  Accept the default file name and either enter or do not enter a passphrase when prompted.  This will create an id_rsa and id_rsa.pub file in your <code>/Users/&lt;login&gt;/.ssh</code> directory (assuming you are on MacOS).</li>
<li>Now you need to create your heroku credentials.  The easiest way to do this is to simply type <code>herokugarden list</code> from the command line.</li>
<li>At this point you will be prompted for your Heroku Garden email address and password (i.e. the same credentials you used to setup your Heroku account in the first place).  This might take some time to finish.  The command line output should look something like this: <code>Uploading ssh public key /Users/&lt;login&gt;/.ssh/id_rsa.pub</code>.
<li>Once the upload completes, you&#8217;ll see a list of your app names printed in the console.  The app names are important for the next step so make note of it.  You should also notice that your Heroku Garden credentials have been created in the following location:  <code>/Users/&lt;login&gt;/.heroku/herokugarden_credentials</code>.</li>
<li>Now lets check out your newly created Heroku Garden project so you can work on it locally.  Type the following command:  <code>git clone git@herokugarden.com:&lt;app name&gt;.git</code>.  Use the app name from the list mentioned in the previous step for your specific app name.</li>
</ol>
<p>At this point you can use git to manage your application locally and commit changes back to the server.  One thing to consider is that when you first create a local copy of your Heroku Garden project, you will have symbolic links to to the log and tmp directories.  You might want to delete and recreate them and then add them to your .gitignore file in the root of the project.</p>
<p><strong><a href="http://git.or.cz/">Git</a></strong></p>
<p>As a you make local changes to your code, you&#8217;ll want to commit these changes back to the Heroku Garden git repository.  Here is a quick sequence of commands to run in order to save yoru changes and have your Rails app restart:</p>
<ul>
<li><code>git add .</code></li>
<li><code>git commit -m "Enter your personalized comment(s) here"</code></li>
<li><code>git push</code></li>
</ul>
<p>Heroku Garden video tutorials for <a href="http://s3.amazonaws.com/heroku_screencasts/CLI_Edit.mov">deploy</a> and <a href="http://s3.amazonaws.com/heroku_screencasts/CLI_ImportCode.mov">import</a> can be found here.</p>
<p><strong>Rails</strong></p>
<p>From here on out you should be able to run Rails as you normally would.  Just open two console tabs on the root of your project so you can run the server (i.e. <code>script/server -u</code>) and manage your console (<code>script/console</code>).</p>
<p><strong>Parting Thoughts</strong></p>
<p>As mentioned earlier, I have mixed feelings about Heroku.  It&#8217;s a cool and quick to prototype with but has stability issues.  I might talk more about these issues in the future but as <a href="http://giantrobots.thoughtbot.com/2009/1/12/heroku-wearing-suspenders">thoughtbot</a> team has mentioned before, it&#8217;s a great way to get up and running quickly on the Rails framework.  Plus, at the moment, it is free to use.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2009/01/20/heroku-garden-local-development-basics/feed/</wfw:commentRss>
<enclosure url="http://s3.amazonaws.com/heroku_screencasts/CLI_Edit.mov" length="3553060" type="video/quick" />
<enclosure url="http://s3.amazonaws.com/heroku_screencasts/CLI_ImportCode.mov" length="1206466" type="video/quick" />
		</item>
		<item>
		<title>Netflix, Playstation 3, and Error 80029940</title>
		<link>http://www.aeonscope.net/2009/01/10/netflix-playstation-3-and-error-80029940/</link>
		<comments>http://www.aeonscope.net/2009/01/10/netflix-playstation-3-and-error-80029940/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 17:02:01 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<category><![CDATA[Netflix]]></category>

		<category><![CDATA[PS3]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=1245</guid>
		<description><![CDATA[
As some might know I am a home theatre enthusiast that, at the end of last year, finally got into Blu-Ray partly due to the excellent writings by Roo.  I was armed with a Playstation 3 and the Netflix disk service where I payed the extra $1/month charge to get Blu-Ray disks instead of [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://www.aeonscope.net/wp-content/uploads/2009/01/blu-ray-disk.png" alt="blu-ray-disk" title="blu-ray-disk" width="189" height="103" class="alignnone size-full wp-image-1246" /></center></p>
<p>As some might know I am a <a href="http://www.aeonscope.net/electronics/home-theatre/">home theatre</a> enthusiast that, at the end of last year, finally got into <a href="http://en.wikipedia.org/wiki/Blu-Ray">Blu-Ray</a> partly due to the <a href="http://www.lowtek.ca/roo/2008/dvd-vs-blu-ray/">excellent</a> <a href="http://www.lowtek.ca/roo/2008/playstation-3/">writings</a> by <a href="http://www.lowtek.ca/roo/">Roo</a>.  I was armed with a <a href="http://www.us.playstation.com/PS3">Playstation 3</a> and the <a href="http://www.netflix.com/">Netflix</a> disk service where I payed the extra $1/month charge to get Blu-Ray disks instead of DVDs.  Only problem is that I kept getting disks that were slightly cracked or suffered from minuscule disk fractures which yielded the following Playstation 3 error code:  <em>80029940</em>.</p>
<p>Obviously, this was a terrible way to start enjoying the Blu-Ray experience.  My only saving grace was that I had bought my own Blu-Ray disk, <a href="http://thedarkknight.warnerbros.com/dvdsite/">The Dark Knight</a>, before renting the disks from Netflix and already knew that my player was not at fault.</p>
<p>After searching the various Playstation and home theatre forums and working with Netflix tech support, I discovered the following:</p>
<ul>
<li>Blu-Ray disks are more fragile than DVDs and therefor susceptible to cracking and disk fractures.</li>
<li>Netflix has been working with the <a href="http://www.usps.com/">USPS</a> to ensure that all mail is not processed by machine which causes the disks to crack.  By reporting disk issues and even calling support, you can help Netflix work with the USPS to correct issues with your service.</li>
<li>I read in some forums that you might need to turn the HDMI super white level off along with a few other custom display settings on your Playstation 3 to prevent the 80029940 code.  Don&#8217;t believe the hype as I found none of this to be true.  More often than not, it is a cracked disk (even if not noticeable by the naked eye).</li>
</ul>
<p>In the end, after suffering through three Blu-Ray disks from Netflix, the issue was resolved and I&#8217;m happy to report that I&#8217;m experiencing movies in <a href="http://en.wikipedia.org/wiki/1080p">1080p</a> and <a href="http://en.wikipedia.org/wiki/Dolby_TrueHD">True HD</a>/<a href="http://en.wikipedia.org/wiki/DTS-HD">DTS-HD</a> perfection!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2009/01/10/netflix-playstation-3-and-error-80029940/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DynDNS and Apple Airport</title>
		<link>http://www.aeonscope.net/2008/11/09/dyndns-and-apple-airport/</link>
		<comments>http://www.aeonscope.net/2008/11/09/dyndns-and-apple-airport/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 03:18:16 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=1204</guid>
		<description><![CDATA[
I recently learned of DynDNS, a free dynamic DNS service, from Paul VanderLei.  As most know, the connection to your ISP is always a dynamic IP address which means that you might have a 24 hour window (roughly) where you can hand out your IP address for others to connect to your home server [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://www.aeonscope.net/wp-content/uploads/2008/11/dyndns-logo.png" alt="" title="DynDNS Logo" width="58" height="57" class="alignnone size-full wp-image-1205" /></center></p>
<p>I recently learned of <a href="https://www.dyndns.com">DynDNS</a>, a free dynamic DNS service, from <a href="http://vanderleiindustries.com">Paul VanderLei</a>.  As most know, the connection to your <a href="http://en.wikipedia.org/wiki/ISP">ISP</a> is always a dynamic <a href="http://en.wikipedia.org/wiki/IP_address">IP address</a> which means that you might have a 24 hour window (roughly) where you can hand out your IP address for others to connect to your home server before it changes again.  Obviously, this is not optimal.  Enter DynDNS.  They allow you to create a <a href="http://en.wikipedia.org/wiki/Domain_name">domain name</a> that others can depend on without worrying about the IP address changing underneath.  The following demonstrates how easy this is to set up:</p>
<ol>
<li><a href="https://www.dyndns.com/account/create.html">Create</a> a free DynDNS account.</li>
<li><a href="https://www.dyndns.com/account/create.html">Add a new hostname</a> where you can choose your name and then pick from a selection of suffixes.  Example:  aeonscope.homeip.net.<br/><a rel="lytebox" href='http://www.aeonscope.net/wp-content/uploads/2008/11/add-new-hostname.png'><img src="http://www.aeonscope.net/wp-content/uploads/2008/11/add-new-hostname-150x150.png" alt="" title="DnyDNS - Add New Hostname" width="150" height="150" class="alignnone size-thumbnail wp-image-1206" /></a></li>
<li><a href="http://www.dyndns.com/support/clients/">Download the DnyDNS client</a>.  This is what updates DnyDNS with your new IP address as it changes.</li>
<li>Finally, launch your AirPort Utility, click on the Advanced tab, select port mapping, and then personal web sharing or whatever service you are planning to host:<br/><a rel="lytebox" href='http://www.aeonscope.net/wp-content/uploads/2008/11/airport-port-mapping.png'><img src="http://www.aeonscope.net/wp-content/uploads/2008/11/airport-port-mapping-150x150.png" alt="" title="Airport Port Mapping" width="150" height="150" class="alignnone size-thumbnail wp-image-1207" /></a></li>
</ol>
<p>In my case, I choose to use only port 3000 since I&#8217;m mainly just hosting my Rails apps to share with others for development purposes.  Thanks Paul, for the tip.  Hopefully others will find this useful as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/11/09/dyndns-and-apple-airport/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Useless iPhone Application Receipts</title>
		<link>http://www.aeonscope.net/2008/08/19/useless-iphone-application-receipts/</link>
		<comments>http://www.aeonscope.net/2008/08/19/useless-iphone-application-receipts/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 03:29:49 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=1164</guid>
		<description><![CDATA[I am not a big fan of e-mail spam.  Who isn&#8217;t, right?  Well, as of late, I have started to get that funny twitch in my eye due to what I am now calling receipt spam from Apple.  Yes, Apple, with all their shiny toys.  Although, the shine is beginning wear [...]]]></description>
			<content:encoded><![CDATA[<p>I am not a big fan of e-mail spam.  Who isn&#8217;t, right?  Well, as of late, I have started to get that funny twitch in my eye due to what I am now calling <em>receipt spam</em> from <a href="http://www.apple.com">Apple</a>.  Yes, Apple, with all their shiny toys.  Although, the shine is beginning wear off as I upgrade and download applications (free ones mostly) for my iPhone.  The problem is that I keep getting these kinds of messages (and they don&#8217;t appear on the same day but a day or two later):</p>
<p><center><a href='http://www.aeonscope.net/wp-content/uploads/2008/08/iphone-apps-receipt.png' rel='lytebox[useless-iphone-application-receipts]'><img src="http://www.aeonscope.net/wp-content/uploads/2008/08/iphone-apps-receipt-150x150.png" alt="" title="iphone-apps-receipt" width="150" height="150" class="alignnone size-thumbnail wp-image-1165" /></a><br />
(click to view)<br />
</center></p>
<p>Does anyone really care about this?  If I had to pay for something then, yes, I would like a digital receipt.  Otherwise, why bother me?  Instead, I see these messages and start wondering what it was that I purchased only to find out I didn&#8217;t purchase anything!  I can see the gang at Apple now saying:  &#8220;Ha ha, made you look.  Sucker!&#8221;</p>
<p>Yeah, thanks Apple, you just wasted my time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/08/19/useless-iphone-application-receipts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Online Backup Services</title>
		<link>http://www.aeonscope.net/2008/03/11/online-backup-services/</link>
		<comments>http://www.aeonscope.net/2008/03/11/online-backup-services/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 14:00:23 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2008/03/11/online-backup-services/</guid>
		<description><![CDATA[It is not enough to simply backup your data with optical disks or external drives in your home (which you should already be doing).  You also need a way to backup the data to an off-site location.  One of the ways to do this is to use online storage where data is backed [...]]]></description>
			<content:encoded><![CDATA[<p>It is not enough to simply backup your data with optical disks or external drives in your home (which you should already be doing).  You also need a way to backup the data to an off-site location.  One of the ways to do this is to use online storage where data is backed up and encrypted using a secure connection.  The following are a few services for making this happen:</p>
<ul>
<li><a href="http://www.crashplan.com">CrashPlan</a> - Free for personal.  Comes with an assortment of features such as continuous backup, scheduling, backup compression, encryption, etc.</li>
<li><a href="http://www.jungledisk.com">Jungle Disk</a> - Costs $0.15 per 1 GB of storage.  Requires no monthly service fee, commitment, or startup fee.  Data is encrypted at all times.  Compatible with multiple operating systems.</li>
<li><a href="http://www.carbonite.com">Carbonite</a> - Costs $49 per year with no restrictions on the amount of data you store.  Seems to only work with Windows systems.</li>
<li><a href="http://mozy.com/">Mozy</a> - Comes in three packages:  Home (free for first 2GB), Pro ($3.95/month or $0.50/1GB/month), and Enterprise (unknown).  Seems to support Windows mostly.</li>
<li><a href="http://www.apple.com/dotmac/">.Mac</a> - Costs $99 for 10GB of storage a year.  There is a 100GB/month data restriction.  Primarily supports the MacOS.</li>
<li><a href="http://www.ibackup.com/">IBackup</a> - $9.95/month for 10GB of storage.  Sports a web browser and downloadable client for connectivity.  Works on multiple operating systems.</li>
<li><a href="http://www.backup.com">Backup</a> - Uses similar <a href="http://www.backup.com/signup/">pricing</a> to IBackup.  Supports the Windows operating systems only.</li>
</ul>
<p>All solutions seem to support industry standard secure connections and data encryption algorithms.  For further information, watch the <a href="http://feeds.feedburner.com/~r/Unwired-AVI/~3/236987279/676906">Unwired</a> video and my related article about <a href="http://www.aeonscope.net/2008/01/07/online-file-storage/">Online File Storage</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/03/11/online-backup-services/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter</title>
		<link>http://www.aeonscope.net/2008/03/05/twitter/</link>
		<comments>http://www.aeonscope.net/2008/03/05/twitter/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 14:00:27 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2008/03/05/twitter/</guid>
		<description><![CDATA[&#169; Twitter
Twitter, in case you were not aware, is a free micro-blogging web service where you can write about what you are doing at any point in time.  You can post updates by sending an SMS message from your cell phone, instant message client, or directly from the Twitter web site.  These short [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src='http://www.aeonscope.net/wp-content/uploads/2008/03/twitter.png' alt='Twitter Logo' /><br/>&copy; <a href="http://twitter.com/">Twitter</a></center></p>
<p><a href="http://twitter.com/">Twitter</a>, in case you were not aware, is a free <a href="http://en.wikipedia.org/wiki/Micro-blogging">micro-blogging</a> web service where you can write about what you are doing at any point in time.  You can post updates by sending an SMS message from your cell phone, instant message client, or directly from the Twitter web site.  These short messages are generally called &#8220;Tweets&#8221; and are limited to 140 characters of plain text, no HTML markup.  Any URLs that are included in the text message will be automatically converted to hyperlinks (although you can use <a href="http://tinyurl.com/">TinyURL</a> to convert longer URLs into shorter ones).  </p>
<p>I have been using Twitter off and on for a while now but recently have started to use it more frequently.  Feel free to check out <a href="http://twitter.com/Aeonscope">my Twitter profile</a> and/or <a href="http://twitter.com/statuses/user_timeline/1060361.rss">subscribe to my feed</a>.  You can also learn more about Twitter on my <a href="http://www.aeonscope.net/software/applications/twitter/">my Twitter page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/03/05/twitter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Facebook Deactivated</title>
		<link>http://www.aeonscope.net/2008/02/28/facebook-deactivated/</link>
		<comments>http://www.aeonscope.net/2008/02/28/facebook-deactivated/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 14:00:49 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2008/02/28/facebook-deactivated/</guid>
		<description><![CDATA[
I created a Facebook account partially due to an invite from a friend and partially from curiosity.  After playing with Facebook for a while I came to the conclusion that it is nothing more than a glorified MySpace that also suffers from some of the same reasons that caused me to leave LinkedIn.
I simply [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src='http://www.aeonscope.net/wp-content/uploads/2008/02/no-facebook.png' alt='No Facebook' /></center></p>
<p>I created a <a href="http://www.facebook.com/">Facebook</a> account partially due to an invite from a friend and partially from curiosity.  After playing with Facebook for a while I came to the conclusion that it is nothing more than a glorified <a href="http://www.myspace.com/">MySpace</a> that also suffers from <a href="http://www.aeonscope.net/2007/11/01/linkedout/">some of the same reasons</a> that caused me to leave <a href="http://www.linkedin.com">LinkedIn</a>.</p>
<p>I simply am not fond of the walled garden Facebook creates.  Instead, I am more interested in sharing information in the open.  Besides, if you have something that is truly private then why would you put it online where there is always the potential for it to be exposed?</p>
<p>With that said, I&#8217;ll be moving on:</p>
<p><center><img src='http://www.aeonscope.net/wp-content/uploads/2008/02/facebook-deactivation.png' alt='Facebook Deactiviation' /></center></p>
<p>For those of you who sent me Facebook invites, sorry.  I suggest you <a href="http://www.aeonscope.net/feed/">subscribe to this site</a> instead.  <img src='http://www.aeonscope.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/02/28/facebook-deactivated/feed/</wfw:commentRss>
		</item>
		<item>
		<title>This Week in Photography (TWIP)</title>
		<link>http://www.aeonscope.net/2008/02/21/this-week-in-photography-twip/</link>
		<comments>http://www.aeonscope.net/2008/02/21/this-week-in-photography-twip/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 14:00:10 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2008/02/21/this-week-in-photography-twip/</guid>
		<description><![CDATA[
In case you didn&#8217;t pick up on the latest announcements for TWIP in the Leo Laporte podcasts and you enjoy photography, then I recommend subscribing to both the web site and podcasts feeds.  I&#8217;ve been listening since the start and it is shaping up to be a rather interesting source of photography information.
]]></description>
			<content:encoded><![CDATA[<p><center><img src='http://www.aeonscope.net/wp-content/uploads/2008/02/twip-header.png' alt='TWIP Header' /></center></p>
<p>In case you didn&#8217;t pick up on the latest announcements for TWIP in the <a href="http://twit.tv/">Leo Laporte podcasts</a> and you enjoy photography, then I recommend subscribing to both the <a href="http://twipphoto.com/">web site</a> and <a href="http://www.pixelcorps.tv/twip">podcasts</a> feeds.  I&#8217;ve been listening since the start and it is shaping up to be a rather interesting source of photography information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/02/21/this-week-in-photography-twip/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Podfitness</title>
		<link>http://www.aeonscope.net/2008/02/20/podfitness/</link>
		<comments>http://www.aeonscope.net/2008/02/20/podfitness/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 14:00:09 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2008/02/20/podfitness/</guid>
		<description><![CDATA[&#169; Podfitness
Your personal music collection + a workout program + the voice of a professional trainer = Podfitness.  See how it works for more info.
Clever.
]]></description>
			<content:encoded><![CDATA[<p><center><img src='http://www.aeonscope.net/wp-content/uploads/2008/02/podfitness.png' alt='Podfitnes Logo' /><br/>&copy; <a href="http://www.podfitness.com/">Podfitness</a></center></p>
<p>Your personal music collection + a workout program + the voice of a professional trainer = <a href="http://www.podfitness.com">Podfitness</a>.  See <a href="http://www.podfitness.com/howitworks">how it works</a> for more info.</p>
<p>Clever.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/02/20/podfitness/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Netflix &#8220;Watch Instantly&#8221; Experience</title>
		<link>http://www.aeonscope.net/2008/02/18/netflix-watch-instantly-experience/</link>
		<comments>http://www.aeonscope.net/2008/02/18/netflix-watch-instantly-experience/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 14:00:01 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<category><![CDATA[Netflix]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2008/02/18/netflix-watch-instantly-experience/</guid>
		<description><![CDATA[Introduction
During the course of the weekend I started making use of the Netflix &#8220;Watch Instantly&#8221; feature which means that I am able to watch video content streamed via the internet.
Technical Requirements
Unfortunately, the tech specs are limited:

Windows Vista or Windows XP with Service Pack 2.
Internet Explorer version 6 or higher.
Windows Media Player version 11.

Since I am [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>During the course of the weekend I started making use of the <a href="http://www.netflix.com/">Netflix</a> &#8220;Watch Instantly&#8221; feature which means that I am able to watch video content streamed via the internet.</p>
<p><strong>Technical Requirements</strong></p>
<p>Unfortunately, the tech specs are limited:</p>
<ul>
<li>Windows Vista or Windows XP with Service Pack 2.</li>
<li>Internet Explorer version 6 or higher.</li>
<li>Windows Media Player version 11.</li>
</ul>
<p>Since I am a <a href="http://www.aeonscope.net/software/applications/mac/">Mac OS</a> user, I ended up using <a href="http://www.vmware.com/products/fusion/features.html">VMFusion</a> to load my <a href="http://www.aeonscope.net/software/applications/windows/">Windows</a> XP VM.  Had no issues.</p>
<p><strong>Questions &#038; Answers</strong></p>
<p>In case you are a current Netflix member and wondering how the &#8220;Watch Instantly&#8221; feature works, here are some official answers from Netflix:</p>
<ul>
<li><strong>What are the limits?</strong>:  &#8220;Netflix membership plans that come with unlimited DVDs per month come with unlimited instant watching, regardless of the number of discs you may have at home at any given time. Plans with a cap on monthly total discs come with a specific number of instant watching hours per month. Click here to view the full details for your plan.&#8221;</li>
<li><strong>How does is this feature related to my queue?</strong>:  &#8220;Watching instantly and your DVD Queue are unrelated. Even if you have the same title in your DVD Queue, watching that title instantly won’t delete it automatically.&#8221;</li>
<li><strong>How does my internet speed affect the video?</strong>:  &#8220;The speed of your Internet connection can change frequently based on network conditions in your residence and your Internet Service Provider’s system.  The faster your internet connection, the better your video quality. Still, we automatically adjust Instant Viewing video quality to give you the best possible image for your connection speed.The faster your internet connection, the better your video quality. Still, we automatically adjust Instant Viewing video quality to give you the best possible image for your connection speed.&#8221;</li>
</ul>
<p><strong>Experience</strong></p>
<p>Not all video in my queue is available for playback but I was happy to see that <a href="http://en.wikipedia.org/wiki/Ghost_in_the_Shell:_Stand_Alone_Complex">Ghost in the Shell:  Stand Alone Complex</a> was available (notice the play button next to each disk):</p>
<p><a rel="lytebox" href='http://www.aeonscope.net/wp-content/uploads/2008/02/netflix-ghost-queue.png'><img src='http://www.aeonscope.net/wp-content/uploads/2008/02/netflix-ghost-queue.thumbnail.png' alt='Netflix Ghost in the Shell Queue' /></a><br />
(click to view)</p>
<p>Clicking the play button will launch the player.  Depending on whether you have the necesary software installed, you might have to proceed through some software upgrades before viewing the video.  If all is good, then you&#8217;ll start seeing the Netflix load screen:</p>
<p><a rel="lytebox" href='http://www.aeonscope.net/wp-content/uploads/2008/02/netflix-load-screen.png'><img src='http://www.aeonscope.net/wp-content/uploads/2008/02/netflix-load-screen.thumbnail.png' alt='Netflix Load Screen' /></a><br />
(click to view)</p>
<p>Once the movie loads, you can then switch from player to full screen mode.  The video stream tries to keep streaming ahead so that you have a sufficient buffer.  However, sometimes the movie will pause and you will get something like this:</p>
<p><a rel="lytebox" href='http://www.aeonscope.net/wp-content/uploads/2008/02/netflix-slow-connection.png'><img src='http://www.aeonscope.net/wp-content/uploads/2008/02/netflix-slow-connection.thumbnail.png' alt='Netflix Slow Connection' /></a><br />
(click to view)</p>
<p>In my situation, I was the only one using a dedicated network (jacked in directly to the router).  I&#8217;m sure there are a bunch of performance tweaks that could be made for the hard core user of this service.</p>
<p><strong>Verdict</strong></p>
<p>At times I noticed some choppiness when the camera would pan across the screen.  I also switched to a wireless connection and noticed that the video was still good but the load times were longer.  At one point, I noticed my connection being so bad that the video was being corrected to stream at a much lower resolution where the video became quite pixelated.</p>
<p>The video quality is much better than <a href="http://www.joost.com/">Joost</a> but <a href="http://www.openhulu.com/">openHulu</a> might prove to be a strong competitor.  However, being a <a href="http://www.aeonscope.net/electronics/home-theatre/">home theatre</a> nut, I&#8217;ll most like use this to service to sample video before adding to the queue for watching properly on my home theatre system.  Even if I hook the laptop up to my home theatre system, I&#8217;m getting video and audio quality that still pails in comparison to DVD and even Blu-Ray.</p>
<p>My search for digital video on par or better than Blu-Ray quality still continues.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/02/18/netflix-watch-instantly-experience/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Denver Open Media</title>
		<link>http://www.aeonscope.net/2008/01/15/denver-open-media/</link>
		<comments>http://www.aeonscope.net/2008/01/15/denver-open-media/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 03:00:43 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2008/01/15/denver-open-media/</guid>
		<description><![CDATA[I recently learned about the Denver Open Media group while chatting with Matthew Moore and via Tony&#8217;s comment on Refresh Denver web site.  What is interesting about Denver Open Media is that they are allowing the general public to generate media content using their own equipment or equipment provided by Denver Open Media.  [...]]]></description>
			<content:encoded><![CDATA[<p>I recently learned about the <a href="http://www.denveropenmedia.org/">Denver Open Media</a> group while chatting with <a href="http://xybersolutions.com/">Matthew Moore</a> and via <a href="http://refreshdenver.org/2008/01/10/january-2008-gathering-meeting-where/">Tony&#8217;s comment on Refresh Denver web site</a>.  What is interesting about Denver Open Media is that they are allowing the general public to generate media content using their own equipment or equipment provided by Denver Open Media.  Here is a direct quote from the Denver Open Media web site that explains better:</p>
<p><em>&#8220;Denver&#8217;s New Public Access TV Station, Denver Open Media is a revolutionary new approach to TV. Employing a participatory user-driven model in every aspect of its operation, Denver Open Media is part of the next phase of user-generated media.</p>
<p>YOU use the equipment, YOU create the shows, YOU provide feedback as viewers, and YOUR votes determine the broadcast schedule on Comcast Ch. 56, 57, and 219. Coming soon to your TV screen: YOU!&#8221;</em></p>
<p>As for me, I found the <a href="http://www.denveropenmedia.org/classdescriptions">class descriptions</a> to be rather interesing and am considering signing up for the <a href="http://www.denveropenmedia.org/webvideo">web video workshop</a> as soon as it becomes available.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/01/15/denver-open-media/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Online File Storage</title>
		<link>http://www.aeonscope.net/2008/01/07/online-file-storage/</link>
		<comments>http://www.aeonscope.net/2008/01/07/online-file-storage/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 13:00:38 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2008/01/07/online-file-storage/</guid>
		<description><![CDATA[The following services might be of interest in case you are looking for an alternative to host and share files (rather than use a web host like GoDaddy):

Box - Probably the easiest and best designed of the services listed here.  You can upload files via your web browser or use e-mail.  Check out [...]]]></description>
			<content:encoded><![CDATA[<p>The following services might be of interest in case you are looking for an alternative to host and share files (rather than use a web host like <a href="http://www.godaddy.com">GoDaddy</a>):</p>
<ul>
<li><a href="http://www.box.net">Box</a> - Probably the easiest and best designed of the services listed here.  You can upload files via your web browser or use e-mail.  Check out Robert Scoble&#8217;s interview with Aaron Levie as he <a href="http://www.podtech.net/scobleshow/technology/1721/demo-of-online-storage-service-boxnet">demos</a> some of Box&#8217;s features.</li>
<li><a href="http://www.mediafire.com">MediaFire</a> - A free service that allows decent customization and organization of files.  Has a 100MB restriction on files and uses your web browser to manage files.  If you need a free, quick and dirty solution this is the place to go.</li>
<li><a href="http://www.strongspace.com">Strongspace</a> - Unlike the rest listed here, this service focuses on keeping your files secure (including the uploading and downloading of files).  Files can be managed via your web browser or by using secure FTP clients.  This service has no free account plans.</li>
<li><a href="http://www.dropsend.com">DropSend</a> - Uses e-mail as the primary means of storing files.  Another quick and dirty solution but not as flexible as MediaFire.</li>
</ul>
<p>Check out these <a href="http://thegraphicmac.com/20-great-free-online-file-storage-services">20 free online storage solutions</a> as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/01/07/online-file-storage/feed/</wfw:commentRss>
		</item>
		<item>
		<title>OpenDNS Experiences</title>
		<link>http://www.aeonscope.net/2007/11/30/opendns-experiences/</link>
		<comments>http://www.aeonscope.net/2007/11/30/opendns-experiences/#comments</comments>
		<pubDate>Sat, 01 Dec 2007 01:10:05 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2007/11/30/opendns-experiences/</guid>
		<description><![CDATA[I was reading or listening to a podcast (can&#8217;t remember now) a while back about OpenDNS and thought I&#8217;d give it a try.  The idea behind OpenDNS is that it claims to provide faster internet connectivity, increased reliability, and protect against fraudulent sites.  All of this done for free.  You simply need [...]]]></description>
			<content:encoded><![CDATA[<p>I was reading or listening to a podcast (can&#8217;t remember now) a while back about <a href="http://www.opendns.com">OpenDNS</a> and thought I&#8217;d give it a try.  The idea behind OpenDNS is that it claims to provide faster internet connectivity, increased reliability, and protect against fraudulent sites.  All of this done for free.  You simply need to change your primary and secondary DNS settings to the following IP addresses:</p>
<ul>
<li>DNS 1:  208.67.222.222</li>
<li>DNS 2:  208.67.220.220</li>
</ul>
<p>I ended up configuring my router so that all computers on the network would benefit from the OpenDNS settings.  While I didn&#8217;t do any formal speed tests, web sites did <em>seem</em> to load faster.  Ultimately, I ended up setting my router back to it&#8217;s default settings.  Here&#8217;s are some reasons why:</p>
<ol>
<li>I found it annoying when OpenDNS would try to help me out with misspelled URLs.</li>
<li>I have concerns about privacy since all my web traffic is routed through OpenDNS.</li>
<li>OpenDNS <em>does not</em> play well with <a href="http://en.wikipedia.org/wiki/Virtual_private_network">Virtual Private Networks (VPN)</a>.  You can <a href="http://www.opendns.com/support/article/164">jump through hoops</a> to get this to work, however.</li>
</ol>
<p>This might be a nice upgrade for the non-tech crowd and general web surfers but not for me.  If you search the web for other articles on OpenDNS, you&#8217;ll find that the general opinion seems to be a mixed bag.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2007/11/30/opendns-experiences/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Discover Card Holiday Mall Promotion</title>
		<link>http://www.aeonscope.net/2007/11/26/discover-card-holiday-mall-promotion/</link>
		<comments>http://www.aeonscope.net/2007/11/26/discover-card-holiday-mall-promotion/#comments</comments>
		<pubDate>Mon, 26 Nov 2007 13:00:22 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<category><![CDATA[Discover Card]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2007/11/26/discover-card-holiday-mall-promotion/</guid>
		<description><![CDATA[&#169; Discover Card
Should you be doing a little holiday shopping this season and have a Discover Card in hand, you might think about earning yourself a little money back on their Holiday Mall Promotion.  You can find the details below by following the link but here are some quick highlights:

Get a $20 gift card [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src='http://www.aeonscope.net/wp-content/uploads/2007/11/discover-card-logo.png' alt='Discover Card Logo' /><br/>&copy; <a href="http://www.discovercard.com/">Discover Card</a></center></p>
<p>Should you be doing a little holiday shopping this season and have a Discover Card in hand, you might think about earning yourself a little money back on their <a href="http://www.discovercard.com/holiday/">Holiday Mall Promotion</a>.  You can find the details below by following the link but here are some quick highlights:</p>
<ul>
<li>Get a $20 gift card for every $200 spent at select malls.</li>
<li>Valid from 2007-11-1 to 2007-12-31.</li>
<li>Original receipts must be kept.</li>
<li>Only a max of 5 gift cards can be issued per account.</li>
</ul>
<p>These gift cards work just like credit cards and can be used anywhere that Discover Card is accepted.  You can also use this promotion in conjunction with the current %5 cashback shopping bonus.  This promotion seems to happen every year, so keep it mind for future use too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2007/11/26/discover-card-holiday-mall-promotion/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FrontRange Express (FREX)</title>
		<link>http://www.aeonscope.net/2007/11/20/frontrange-express-frex/</link>
		<comments>http://www.aeonscope.net/2007/11/20/frontrange-express-frex/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 13:00:49 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2007/11/20/frontrange-express-frex/</guid>
		<description><![CDATA[
Started using the FREX to commute into the Denver area and have to say this is a really great service.  While it can take around an hour to an hour and a half each direction, this time difference is easily put to good use due to the WiFi service (using cellular technology).  Interestingly, [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src='http://www.aeonscope.net/wp-content/uploads/2007/11/frex-10-pass.png' alt='FREX 10 Pass' /></center></p>
<p>Started using the <a href="http://www.frontrangeexpress.com">FREX</a> to commute into the Denver area and have to say this is a really great service.  While it can take around an hour to an hour and a half each direction, this time difference is easily put to good use due to the WiFi service (using cellular technology).  Interestingly, I can keep a solid network connection (VPN included) without interruption the entire trip.</p>
<p>From the FREX, I make a short connection via the <a href="http://www.rtd-denver.com">RTD</a> lightrail system and hoof it the rest of the way in.</p>
<p>I still get better price per mile on the motorcycle but, of course, I can&#8217;t work at the same time or ride through the snow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2007/11/20/frontrange-express-frex/feed/</wfw:commentRss>
		</item>
		<item>
		<title>LinkedOut</title>
		<link>http://www.aeonscope.net/2007/11/01/linkedout/</link>
		<comments>http://www.aeonscope.net/2007/11/01/linkedout/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 13:00:40 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2007/11/01/linkedout/</guid>
		<description><![CDATA[
In an effort to reduce some of the clutter in my life, I have decided to drop my service with LinkedIn.  Here are a few reasons why (listed in no particular order):

Outdated Information - I&#8217;ve noticed that several of my contacts haven&#8217;t updated their information in years.  To be fair, this isn&#8217;t a [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src='http://www.aeonscope.net/wp-content/uploads/2007/10/linkedout.png' alt='LinkedOut' /></center></p>
<p>In an effort to reduce some of the clutter in my life, I have decided to drop my service with <a href="https://www.linkedin.com">LinkedIn</a>.  Here are a few reasons why (listed in no particular order):</p>
<ol>
<li><strong>Outdated Information</strong> - I&#8217;ve noticed that several of my contacts haven&#8217;t updated their information in years.  To be fair, this isn&#8217;t a problem specific to LinkedIn but a common problem with any service that requires upkeep from its clientèle.  Even a few of the points below suffer this same fate.</li>
<li><strong>Injudicious Connections</strong> - I&#8217;ve always treated my LinkedIn connections with some discretion.  My criteria has been that one must be passionate, exhibit excellent workmanship, trustworthy, dependable, etc.  All the qualities that I would want should I want to hire someone or have them represent me.  I try to adhere to these values as well since I, in turn, am part of someone else&#8217;s network of connections.  Not everyone does this and in some cases I wonder if people just add connections to <em>seem</em> important.</li>
<li><strong>Unwanted Invites</strong> - This is along the same vein as <em>Injudicious Connections</em>, mentioned above, where I receive invites from people who I&#8217;ve never met or barely corresponded with.  Then are those cases where I&#8217;ve met people that are a ton of fun to hang out with, yet their professional behavior is less than desirable.  Sorry, I don&#8217;t mean to hurt your feelings, but LinkedIn, is for <em>professional</em> connection and not so much personal ones.</li>
<li><strong>Time Consuming Job Searches</strong> - Supposedly, one of the features of LinkedIn, is to find job opportunities but it is a bit more personal if you an e-mail directly rather than via LinkedIn.  The other issue is that when you want to keep tabs on jobs, you can&#8217;t generate a <a href="http://www.aeonscope.net/2007/01/28/syndicated-feeds-rss/">syndicated feed</a>.  I&#8217;m afraid that I don&#8217;t have time to keep logging into my LinkedIn account to check job updates.  I&#8217;d rather have my feed reader do all the work and there are plenty of services that can make that happen:   <a href="http://www.google.com">Google</a>, <a href="http://www.authenticjobs.com">Authentic Jobs</a>, <a href="http://www.simplyhired.com">Simply Hired</a>, <a href="http://www.monster.com">Monster</a>, <a href="http://jobs.lifehacker.com">LifeHacker</a>, and <a href="http://jobs.joelonsoftware.com">Joel on Software</a> to name a few.</li>
<li><strong>Lack of Syndication</strong> - It would be nice if benefits of LinkedIn were less manual.  It would be far more interesting if I could sync contact information with my address book without always having to sign into the service and then copy and paste the data.  This would also allow me to be more mobile with my updated contact information should I be traveling with my laptop or phone and when I don&#8217;t have an internet connection.</li>
</ol>
<p>For me, my address book, which is synced between my laptop and my phone, is far more valuable.  Not only that but it is immediate and local.  No internet connection required.  Granted, my address book requires upkeep just like LinkedIn but it easier to use and requires fewer levels of complexity.</p>
<p>Sorry LinkedIn but I have what I need without you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2007/11/01/linkedout/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ta-Da List</title>
		<link>http://www.aeonscope.net/2007/10/17/ta-da-list/</link>
		<comments>http://www.aeonscope.net/2007/10/17/ta-da-list/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 13:00:06 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2007/10/17/ta-da-list/</guid>
		<description><![CDATA[One critical application that is missing from the iPhone is a proper to do list.  Fortunately, there are a bunch of web applications that somewhat solve this issue.  The one I have been using recently is Ta-Da List provided by 37 Signals.  The service is free and easy to setup.  Here [...]]]></description>
			<content:encoded><![CDATA[<p>One critical application that is missing from the <a href="http://www.apple.com/iphone/">iPhone</a> is a proper to do list.  Fortunately, there are a bunch of web applications that <em>somewhat</em> solve this issue.  The one I have been using recently is <a href="http://www.tadalist.com/">Ta-Da List</a> provided by <a href="http://www.37signals.com/">37 Signals</a>.  The service is free and easy to setup.  Here are a couple screen shots of the web application running within my Firefox browser:</p>
<p><a rel="lytebox[ta-da-web]" href='http://www.aeonscope.net/wp-content/uploads/2007/10/my-ta-da-lists.png' title='Firefox Ta-Da Lists'><img src='http://www.aeonscope.net/wp-content/uploads/2007/10/my-ta-da-lists.thumbnail.png' alt='Firefox Ta-Da Lists' /></a><a rel="lytebox[ta-da-web]" href='http://www.aeonscope.net/wp-content/uploads/2007/10/my-ta-da-buy-list.png' title='Firefox Ta-Da Buy List'><img src='http://www.aeonscope.net/wp-content/uploads/2007/10/my-ta-da-buy-list.thumbnail.png' alt='Firefox Ta-Da Buy List' /></a><br />
(click to view)</p>
<p>The first image is a view of all my lists and the second image is a view of my buy list.  The interface changes slightly when viewed via the Safari web browser on my iPhone:</p>
<p><a rel="lytebox[ta-da-iphone]" href='http://www.aeonscope.net/wp-content/uploads/2007/10/iphone-ta-da-lists.jpg' title='iPhone Ta-Da Lists'><img src='http://www.aeonscope.net/wp-content/uploads/2007/10/iphone-ta-da-lists.thumbnail.jpg' alt='iPhone Ta-Da Lists' /></a><a rel="lytebox[ta-da-iphone]" href='http://www.aeonscope.net/wp-content/uploads/2007/10/iphone-ta-da-buy-list.jpg' title='iPhone Ta-Da Buy List'><img src='http://www.aeonscope.net/wp-content/uploads/2007/10/iphone-ta-da-buy-list.thumbnail.jpg' alt='iPhone Ta-Da Buy List' /></a><a rel="lytebox[ta-da-iphone]" href='http://www.aeonscope.net/wp-content/uploads/2007/10/iphone-ta-da-list-item.jpg' title='iPhone Ta-Da Buy Item'><img src='http://www.aeonscope.net/wp-content/uploads/2007/10/iphone-ta-da-list-item.thumbnail.jpg' alt='iPhone Ta-Da Buy Item' /></a><br />
(click to view)</p>
<p>The first image is a view of all my lists, the second image is a view of my buy list, and the third image is a view of buy list item being edited.  As you can see the interface changes slightly but not by much.  The design is simple and the features are basic but that is all I am shooting for at the moment.</p>
<p>While the Ta-Da List web application is not optimal it will get me by until more interesting apps come along like <a href="http://www.appleinsider.com/articles/07/10/15/road_mac_os_x_leopard_mail_3_0.html">Mail 3.0</a> and <a href="http://www.omnigroup.com/applications/omnifocus/">OmniFocus</a>.</p>
<p><strong>Tip</strong>:  A web application is essentially worthless when you loose internet connectivity.  I recommend loading up information from each of your favorite web applications on a separate Safari page on your iPhone before leaving an area where you have connectivity.  Later you can view the information from cache (memory) without needing an internet connection.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2007/10/17/ta-da-list/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
