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

<channel>
	<title>Ellipsis</title>
	<atom:link href="http://blog.pburkholder.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.pburkholder.com</link>
	<description>...</description>
	<lastBuildDate>Fri, 27 Jan 2012 20:17:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>My Os X Essentials</title>
		<link>http://blog.pburkholder.com/2012/01/23/my-os-x-essentials/</link>
		<comments>http://blog.pburkholder.com/2012/01/23/my-os-x-essentials/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 16:42:50 +0000</pubDate>
		<dc:creator>pburkholder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[macosx]]></category>

		<guid isPermaLink="false">http://blog.pburkholder.com/?p=4059</guid>
		<description><![CDATA[Starting new job today with an empty Mac.  Need to install: FireFox Chrome Opera Skype DropBox JumpCut RescueTime Dejal&#8217;s TimeOut iTerm2 XCode MacVim CyberDuck TextMate Spotify Firefox Plugins: * it&#8217;s all text * livehttpheaders * foxyproxy &#160; &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p>Starting new job today with an empty Mac.  Need to install:</p>
<p>FireFox</p>
<p>Chrome</p>
<p>Opera</p>
<p>Skype</p>
<p>DropBox</p>
<p>JumpCut</p>
<p>RescueTime</p>
<p>Dejal&#8217;s TimeOut</p>
<p>iTerm2</p>
<p>XCode</p>
<p>MacVim</p>
<p>CyberDuck</p>
<p>TextMate</p>
<p>Spotify</p>
<p>Firefox Plugins:<br />
* it&#8217;s all text<br />
* livehttpheaders<br />
* foxyproxy</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pburkholder.com/2012/01/23/my-os-x-essentials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to define multiple Vagrant VMs within one VagrantFile</title>
		<link>http://blog.pburkholder.com/2011/11/16/how-to-define-multiple-vagrant-vms-within-one-vagrantfile/</link>
		<comments>http://blog.pburkholder.com/2011/11/16/how-to-define-multiple-vagrant-vms-within-one-vagrantfile/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 17:35:33 +0000</pubDate>
		<dc:creator>pburkholder</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[vagrant virtualbox]]></category>

		<guid isPermaLink="false">http://blog.pburkholder.com/?p=4058</guid>
		<description><![CDATA[My colleague Luiz Casey and I were discussing how to configure multiple Vagrant configuration within one Vagrantfile, and he tracked down Mr. Vagrant himself, Mitchell Hashimoto, on IRC.  Ends up looking like this: Vagrant::Config.run do &#124;config&#124; config.vm.define :centos5 do &#124;centos5_config&#124; centos5_config.vm.box = "opscode-centos-5" centos5_config.vm.provision :chef_client do &#124;chef&#124; chef.chef_server_url = "https://api.opscode.com/organizations/aarp" chef.validation_key_path = "~/.chef/aarp-validator.pem" chef.validation_client_name = [...]]]></description>
			<content:encoded><![CDATA[<p title="Nov 14, 2011 15:00">My colleague Luiz Casey and I were discussing how to configure multiple Vagrant configuration within one Vagrantfile, and he tracked down Mr. Vagrant himself, Mitchell Hashimoto, on IRC.  Ends up looking like this:</p>
<div>
<div>
<div>
<pre>Vagrant::Config.run do |config|

  config.vm.define :centos5 do |centos5_config|
    centos5_config.vm.box = "opscode-centos-5"

    centos5_config.vm.provision :chef_client do |chef|
      chef.chef_server_url = "https://api.opscode.com/organizations/aarp"
      chef.validation_key_path = "~/.chef/aarp-validator.pem"
      chef.validation_client_name = "aarp-validator"
      chef.node_name = "opscode-centos32-5-aarp"
      chef.provisioning_path = "/etc/chef"
      chef.log_level = :info
    end
  end

  config.vm.define :lucid do |lucid_config|
  lucid_config.vm.box = "ubuntu10.04-gems"

  lucid_config.vm.provision :chef_client do |chef|
      chef.chef_server_url = "https://api.opscode.com/organizations/aarp"
      chef.validation_key_path = "~/.chef/aarp-validator.pem"
      chef.validation_client_name = "aarp-validator"
      chef.node_name = 'opscode-lucid32-aarp'
      chef.provisioning_path = "/etc/chef"
      chef.log_level = :info
    end
  end

  config.vm.customize do |vm|
    vm.memory_size = 2048
  end
end</pre>
</div>
</div>
<p>To start a single instance:</p>
<div>
<div>
<pre>vagrant up lucid</pre>
</div>
</div>
<p><strong>Current bug if a node is already provisioned it will try to provision the node. It will still start up just take a bit longer.</strong></p>
<p><a href="http://groups.google.com/group/vagrant-up/browse_thread/thread/67f6a58cc7c89b58" rel="nofollow">http://groups.google.com/group/vagrant-up/browse_thread/thread/67f6a58cc7c89b58</a></p>
<div>
<div>
<pre>--no-provision flag</pre>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.pburkholder.com/2011/11/16/how-to-define-multiple-vagrant-vms-within-one-vagrantfile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DC-Sage Meeting Nov 15: Releasing 9/11 Data to Satisfy FOIA: It&#8217;s Just a Simple Web Site, Right?</title>
		<link>http://blog.pburkholder.com/2011/11/14/dc-sage-meeting-nov-15/</link>
		<comments>http://blog.pburkholder.com/2011/11/14/dc-sage-meeting-nov-15/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 20:14:07 +0000</pubDate>
		<dc:creator>pburkholder</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.pburkholder.com/?p=4055</guid>
		<description><![CDATA[After a long hiatus, your UMI is back with the first of two meeting announcements.  Carolyn Rowland and David Pullman will be giving us a preview of their LISA 2011 talk at 6:30 on Tuesday, Nov 15, at the AARP National Office. Releasing 9/11 Data to Satisfy FOIA: It&#8217;s Just a Simple Web Site, Right? David Pullman and [...]]]></description>
			<content:encoded><![CDATA[<p>After a long hiatus, your UMI is back with the first of two meeting announcements.  Carolyn Rowland and David Pullman will be giving us a preview of their LISA 2011 talk at 6:30 on Tuesday, Nov 15, at the AARP National Office.</p>
<p><strong>Releasing 9/11 Data to Satisfy FOIA: It&#8217;s Just a Simple Web Site, Right?</strong></p>
<p><strong>David Pullman and Carolyn Rowland, NIST</strong></p>
<p>The National Institute of Standards and Technology (NIST) collected photos, videos, and other data from many sources to aid in an investigation of the collapse of the World Trade Center. Just prior to the tenth anniversary of 9/11, NIST released this data on a public Web server to meet FOIA requirements. A team of sysadmins took a winding path to hosting the data, using a combination of open source tools and the cloud. Technical and non-technical challenges threatened this project along the way.</p>
<h3>Practical details</h3>
<p>The RSVP link is: <a href="https://docs.google.com/spreadsheet/viewform?formkey=dFI2M25kV19aa2NuUHlBc1BFSDdKa0E6MQ" target="_blank">https://docs.google.com/<wbr>spreadsheet/viewform?formkey=<wbr>dFI2M25kV19aa2NuUHlBc1BFSDdKa0<wbr>E6MQ</wbr></wbr></wbr></a></p>
<div>I need RSVP&#8217;s so I can provide AARP security with a list of attendees.  If you have privacy concerns, it&#8217;s fine with me if Dennis Ritchie or W. Richard Stevens shows up on the RSVP list; I&#8217;m not checking IDs.</div>
<div>Location: Room B2-120 at the AARP National Office at 601 E St NW. Enter at the corner of of 6th and E to pick up your name tag andfurther directions.Parking: Expensive off-street. On-street parking near the National Building Museum is probably your best bet</p>
<p>Metro: Easy &#8211; Gallery Place Metro is one block away.</p>
</div>
<div><em>&lt;soapbox&gt;</em></div>
<div><strong>Please do make an effort to attend.</strong>  The practice of system administration moves forward through the development of tools AND practices, and we rely on the community, both physical and virtual, to develop and promulgate best practices. Carolyn and David have learned a lot in the school of hard knocks, and I expect their presentation will be of specific utility to those of us in web operations and/or government, and more widely to all of us.</div>
<div>I hope the discussion following the talk will be as informative as the talk itself &#8212; but we need YOU to be there for that to be realized.</div>
<div>Feel free to forward, blog, tweet or post this announcement as widely as you care to.</div>
<div><em>&lt;/soapbox&gt;</em></div>
<div>
<p>&nbsp;</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.pburkholder.com/2011/11/14/dc-sage-meeting-nov-15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certifiable</title>
		<link>http://blog.pburkholder.com/2011/11/14/certifiable/</link>
		<comments>http://blog.pburkholder.com/2011/11/14/certifiable/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 20:08:12 +0000</pubDate>
		<dc:creator>pburkholder</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.pburkholder.com/?p=4052</guid>
		<description><![CDATA[It&#8217;s certification summer for me, thank you very much. RHCSA and RHCE in the bag. I have a blog post in the works on using AWS EC2 RHEL instances for test preparation.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s certification summer for me, thank you very much.</p>
<p>RHCSA and RHCE in the bag.</p>
<p>I have a blog post in the works on using AWS EC2 RHEL instances for test preparation.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pburkholder.com/2011/11/14/certifiable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accolades</title>
		<link>http://blog.pburkholder.com/2011/05/12/accolades/</link>
		<comments>http://blog.pburkholder.com/2011/05/12/accolades/#comments</comments>
		<pubDate>Thu, 12 May 2011 15:35:07 +0000</pubDate>
		<dc:creator>pburkholder</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[aarp inscope work kudos feathers]]></category>

		<guid isPermaLink="false">http://blog.pburkholder.com/?p=4043</guid>
		<description><![CDATA[This came out today in the company newsletter. Here&#8217;s the original webpage: InScope InTouch Peter Burkholder&#8217;s hard work is being noticed by AARP. Recently, the Senior Internet Operations Manager wrote to InScope to brag about Peter. He writes, &#8220;I’m writing to give accolades to Peter Burkholder. Peter has continuously taken on more responsibility at AARP, and continues [...]]]></description>
			<content:encoded><![CDATA[<p>This came out today in the company newsletter. Here&#8217;s the original webpage: <a href="http://blog.pburkholder.com/wp-content/uploads/2011/01/InScope-InTouch.html">InScope InTouch</a></p>
<blockquote><p>Peter Burkholder&#8217;s hard work is being noticed by AARP. Recently, the Senior Internet Operations Manager wrote to InScope to brag about Peter. He writes,</p>
<p>&#8220;I’m writing to give accolades to Peter Burkholder. Peter has continuously taken on more responsibility at AARP, and continues to deliver tremendous value because of his deep technical knowledge, and vast skill set. Recently Peter was involved with a project where the organization was going to potentially spend a good sum of money to acquire software, but Peter analyzed the need and came up with alternatives options that would deliver 90% of the business value at about 10% of the cost. To me, this was a real benefit to AARP.</p>
<p>I look forward to continuing to have Peter as a member of my team here at AARP.&#8221;</p>
<p>Thank you Peter, for your hard work at AARP. Not only do you deliver tremendous value to the customer, but to us as well. Well done!</p></blockquote>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pburkholder.com/2011/05/12/accolades/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programmatically setting MySQL user roles with Perl</title>
		<link>http://blog.pburkholder.com/2011/01/30/programmatically-setting-mysql-user-roles-with-perl/</link>
		<comments>http://blog.pburkholder.com/2011/01/30/programmatically-setting-mysql-user-roles-with-perl/#comments</comments>
		<pubDate>Sun, 30 Jan 2011 01:47:18 +0000</pubDate>
		<dc:creator>pburkholder</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://blog.pburkholder.com/?p=4044</guid>
		<description><![CDATA[Applying MySQL roles as easy as './provision_mysql.pl users.cfg']]></description>
			<content:encoded><![CDATA[<p>MySQL 5.0 does not support user roles.   Try Googling &#8216;mysql roles&#8217; and you&#8217;ll see what I mean.  The permissions available to a user are configured by GRANT statements that apply only to single &#8216;user&#8217;@'host&#8217; combination. There are third party tools too support an overly of roles to MySQL such as Darren Cassar&#8217;s Open-source <a rel="nofollow" href="http://www.securich.com/">Securich</a> and Google&#8217;s <a rel="nofollow" href="http://code.google.com/p/google-mysql-tools/wiki/MysqlRoles">MySQL patches</a>. I didn&#8217;t actually come across these tools until after I wrote the scripts documented here, but I frankly prefef what I&#8217;ve come up with</p>
<ul>
<li>No patches to MySQL are required</li>
<li>Everthing is entirely outside of MySQL</li>
<li>The definition files are very easy for humans to read</li>
<li>The definition files can be version-controlled, providing a clear audit trail (provided you only manage perms via this process)</li>
<li>It&#8217;s appropriate in scope for the handful of roles and dozens of users we need to support</li>
</ul>
<p>Grants are applied to MySQL servers via a script <tt>provision_mysql.pl</tt> (). and two configuration files.</p>
<p>The two configuration files are roles.yml, and a server-specific users.cfg file. The roles.yml is YAML-formatted file that defines the grants that apply to specific role. The grants are standard MySQL GRANT commands with &#8216;%s@%s&#8217; being the placeholder for &#8216;user&#8217;@'host&#8217; to be defined later. E.g.:</p>
<div>
<div>
<pre>---
default:
  - GRANT USAGE ON *.* TO %s@%s WITH MAX_QUERIES_PER_HOUR 100;
community:
  - GRANT SELECT, EXECUTE ON `aarp_main`.* to %s@%s
  - GRANT SELECT ON `mysql`.`proc` to %s@%s
24x7:
  - GRANT SELECT on *.* to %s@%s
# Root gets no queries per hour limit
root:
  - GRANT ALL PRIVILEGES ON *.* TO %s@%s WITH GRANT OPTION WITH MAX_QUERIES_PER_HOUR 0;
</pre>
</div>
</div>
<p>The <tt>users.cfg</tt> file specifes the user, host, and roles that are required. In the example below, user1 has &#8216;root&#8217; grants on localhost, but &#8217;24&#215;7&#8242; grants when connecting from a remote host. user2 has only &#8216;community&#8217; when connecting remotely or on localhost, and no other grants.</p>
<div>
<div>
<pre>user1 : localhost : root
user1 : % : 24x7
user2 : % localhost : community
</pre>
</div>
</div>
<p>These grants are applied by running <tt>./provision_mysql users.cfg</tt> with the following prerequisites:</p>
<ol>
<li>The roles.yml file must be in the same directory</li>
<li>The <tt>$HOME/.my.cnf</tt> must define &#8216;root&#8217; level access to the mysql server</li>
<li>The RPMs/CPAN modules for perl-DBD-MySQL, perl-YAML, and perl-Term-ReadKey</li>
</ol>
<p>The script then takes the following actions:</p>
<ol>
<li>Creates &#8216;user&#8217;@'host&#8217; if that user does not yet exist
<ul>
<li>If a password is found for another &#8216;user&#8217;@ anyhost, that password is reused</li>
<li>Otherwise, you are prompted to enter a new password</li>
</ul>
</li>
<li>Revokes all privileges for the user</li>
<li>Applies the list of grants defined for the user&#8217;s roles</li>
</ol>
<p>Shortly after I first set this up, Matt emailed me that he could not list the stored procedures in mysql.proc. Oops, I had set the wrong grants for the &#8217;24&#215;7&#8242; role. I updated the &#8216;roles.yml&#8217; file, ran<tt>./provision_mysql.pl w-x_users.cfg</tt> and all the users in the role had their grants corrected.</p>
<p>There are a few features that would be nice to have:</p>
<ul>
<li>Support for dropping all users (except root) for which &#8216;user&#8217;@'host&#8217; are not defined</li>
<li>Generating a &#8216;.my.cnf&#8217; file for new users with their password</li>
</ul>
<p>But that&#8217;s a job for another day. When I make an update I&#8217;ll post a git project for this.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pburkholder.com/2011/01/30/programmatically-setting-mysql-user-roles-with-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Perl ‘getent hosts’ equivalent for MacOSX</title>
		<link>http://blog.pburkholder.com/2011/01/22/perl-getent-hosts-equivalent-for-macosx/</link>
		<comments>http://blog.pburkholder.com/2011/01/22/perl-getent-hosts-equivalent-for-macosx/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 16:31:15 +0000</pubDate>
		<dc:creator>pburkholder</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://blog.pburkholder.com/?p=4041</guid>
		<description><![CDATA[perl -mSocket -e 'print Socket::inet_ntoa(scalar gethostbyname("www.aarp.org")), "\n"'

]]></description>
			<content:encoded><![CDATA[<p>We have a number of Mac users, and from time to time, they&#8217;ll play with /etc/hosts for some website testing, then forget that they had made such a change. Weeks later they&#8217;ll wonder why www.work.org is showing the contents, of, say qa.work.org.</p>
<p>For Linux users I&#8217;m used to asking for the output of &#8216;getent hosts www.work.org&#8217;.  For Mac users, I&#8217;ll now ask for</p>
<pre>perl -mSocket -e 'print Socket::inet_ntoa(scalar gethostbyname("www.aarp.org")), "\n"'

It works, but doesn't lend itself to troubleshooting over the phone.</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.pburkholder.com/2011/01/22/perl-getent-hosts-equivalent-for-macosx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Graphing Access Log Status with PNP4Nagios, part three</title>
		<link>http://blog.pburkholder.com/2011/01/03/graphing-access-log-status-with-pnp4nagios-part-three/</link>
		<comments>http://blog.pburkholder.com/2011/01/03/graphing-access-log-status-with-pnp4nagios-part-three/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 01:44:07 +0000</pubDate>
		<dc:creator>pburkholder</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[nagios]]></category>
		<category><![CDATA[pnp]]></category>
		<category><![CDATA[pnp4nagios]]></category>

		<guid isPermaLink="false">http://blog.pburkholder.com/?p=4039</guid>
		<description><![CDATA[Finally wrapping this up, after taking December to embark on a year-end goal of zeroing out my personal email inbox.  Now I&#8217;m able to practice &#8216;Inbox Zero&#8217; on both my work mail and my personal mail. The final piece of graphing the httpd access logs is the template to process the data series in an [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Finally wrapping this up, after taking December to embark on a year-end goal of zeroing out my personal email inbox.  Now I&#8217;m able to practice &#8216;Inbox Zero&#8217; on both my work mail and my personal mail.</div>
<p>The final piece of graphing the httpd access logs is the template to process the data series in an visually sensible manner.   PNP4Nagios will fallback to a default template unless there&#8217;s a template matching the name of the Nagios check. The attached file, <a href="http://blog.pburkholder.com/wp-content/uploads/2011/01/check_access_log.php_.txt">check_access_log.php</a> needs to be saved to the pnp /etc/templates directory, and you are set.</p>
<p>If not, post a comment I&#8217;ll make the corrections.</p>
<p>Happy New Year,</p>
<p>Peter</p>
<p>http://blog.pburkholder.com/wp-content/uploads/2011/01/check_access_log.php_.txt</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pburkholder.com/2011/01/03/graphing-access-log-status-with-pnp4nagios-part-three/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Succumbing to WordPress</title>
		<link>http://blog.pburkholder.com/2010/12/07/welcome-to-wordpress/</link>
		<comments>http://blog.pburkholder.com/2010/12/07/welcome-to-wordpress/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 19:02:40 +0000</pubDate>
		<dc:creator>pburkholder</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.pburkholder.com/?p=4036</guid>
		<description><![CDATA[I'm not a big fan of PHP, but if it gets the job done, then I'll use it.]]></description>
			<content:encoded><![CDATA[<p>I started this blog four years ago when I was also first learning Ruby on Rails.  I had the idea that I would learn something by using a Rails blogging platform, but mostly I learned that running small blogging platforms is not the sort of fish I want to fry.</p>
<p>After updating Typo a year ago, I finally got so fed up that I tried the wp_export.rb script at <a href="http://www.slashdotdash.net/2009/01/02/migrating-this-blog-from-typo-to-wordpress/">http://www.slashdotdash.net/2009/01/02/migrating-this-blog-from-typo-to-wordpress/</a>, and, voila, I have a new platform.</p>
<p>It seems to have confused tags with categories, however, and I still need to fix the redirects from the old site, but the responsiveness of WP is enough to help get blogging again (instead of getting frustrated).  I&#8217;m not a big fan of PHP, but if it gets the job done, then I&#8217;ll use it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pburkholder.com/2010/12/07/welcome-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bikes, bikes, bikes</title>
		<link>http://blog.pburkholder.com/2010/12/07/bikes-bikes-bikes/</link>
		<comments>http://blog.pburkholder.com/2010/12/07/bikes-bikes-bikes/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 18:52:51 +0000</pubDate>
		<dc:creator>pburkholder</dc:creator>
				<category><![CDATA[Musings]]></category>
		<category><![CDATA[biking]]></category>

		<guid isPermaLink="false">http://blog.pburkholder.com/?p=4035</guid>
		<description><![CDATA[I&#8217;m buying a bike. Which is not a big deal in the scheme of things for most people, but for me is a Big Decision. For the past 30 years I&#8217;d primarily been a bike commuter, but last December 28 I was the victim of vehicular assault that left my 1988 Davidson Impulse ruined.  For [...]]]></description>
			<content:encoded><![CDATA[<h2>I&#8217;m buying a bike.</h2>
<p>Which is not a big deal in the scheme of things for most people, but for me is a Big Decision. For the past 30 years I&#8217;d primarily been a bike commuter, but last December 28 I was the victim of vehicular assault that left my 1988 Davidson Impulse ruined.  For the first few months I made do with my Gary Fisher mountain bike, but it&#8217;s just too heavy for my 9 mile commute and lately I&#8217;ve just been Metroing in and out of town. Finally, thanks to DC&#8217;s pathetic criminal justice system, no compensation is going to be forthcoming, so I have to make do with a bike purchase in the $1000 range.</p>
<p>My Impulse was Fun To Ride.  Light, responsive, sprightly. The steel absorbed some road shock, and the whole kit weighed in at ~20.5 lbs. But it wasn&#8217;t really meant for commuting; better brakes and some room for fenders and winter tires would have been a good thing. So I&#8217;m looking at cyclocross bikes for my day-to-day use.</p>
<p>Which brings me to my short list for a bike, based on what&#8217;s up for sale at my local bike shops and Craigslist.</p>
<ul>
<li>2011 Masi Speciale CX, ~$1200 new</li>
<li>2010 Redline Conquest, $999 new (clearance)</li>
<li>2010 Jami Bossa Nova, ~1050 new (clearance)</li>
<li>2010 Specialized Tricross Sport, ~1000 Craigslist</li>
<li>2006 Kona Jake, $600 Craigslist</li>
<li>2010 Motobecane Fantom, $500 Craiglist</li>
</ul>
<h2><strong>Some impressions:</strong></h2>
<p><strong>Redline Conquest:</strong> This was fun to ride but the combination of aluminum frame and aluminum forks felt jittery. The owner at LBS was a bit surly when I asked about warranties and the 2010 recall of some Redline forks.  He went on about how B-grade bike manufacturer&#8217;s have poor customer support, and the warranty issues one can have with dissembling a bike to send a cracked frame in, only to have the company say &#8220;Not our problem&#8221; and sending it back. But I&#8217;ve not seen any chatter on biking forums about Redline offering poor support. I do like the steeper 73 degree head tube angle, the 105 rear/Tiagra front derailleurs, the 2-ring crankset, and lightweight. I don&#8217;t like the jittery feel (upgrade to carbon front-fork?), or 20-hole wheels (flimsy?). I&#8217;d also a purchase time swap in a smaller inner chainring to bring the gearing down a bit.</p>
<p><strong>Masi Speciale CX</strong>: Not as fun on a first ride as the Conquest.  Lighter tires would help there, but it does have a slacker head tube (72 degrees), so it&#8217;s not going to feel as responsive.  At 24.5 lbs, it&#8217;s pretty light for steel, but still over 3 lbs heavier than my Impulse (RIP) or the Conquest. I like the idea that steel will last and last, and that it absorbs some of the road.</p>
<p><strong>Jamis Bossa Nova:</strong> I haven&#8217;t ridden this yet, but it&#8217;s been well-reviewed. The steel frame/carbon fork and 72 degree head tube seem like a good combo.  But I don&#8217;t need the weight of a triple chainring, or the drag of the 48mm rake (as opposed to the 45mm rake on the Masi and Redline). The Jamis site says it weighs in at 28.5 lbs, but if that includes the pedals, fenders and disc brakes, then maybe the core isn&#8217;t really that heavy.</p>
<p><strong>Kona Jake:</strong> Came through CL. Very slack geometry. Comes kitted with fenders, rack.  But not sexy.  Would only get to save $$ and resale a few months down the road when I want to buy my long-term bike.</p>
<p><strong>Specialized Tricross Sport:</strong> CL. Owner bought for $1500, thinks he can sell for $1200.  I wouldn&#8217;t buy for anything over $1000. Supposedly weighs in at 25lbs, which seems heavy for aluminum frame/carbon fork.  Other dislikes: triple chainring, 47mm rake, 72deg head tube.</p>
<p><strong>Motobecane Fantom CX:</strong> CL.  Owner wants $500 for what he claims is a $1600 bike.  Sells new on BikeDirect for 565. I don&#8217;t know whats up with these bikes; gives me a bad feel.</p>
<p><strong>Bianchi Axis/Volpe: </strong>New and/or CL. These seem heavy and more geared to slogging about.</p>
<h2>Conclusion:</h2>
<p>Even before I read Malcolm Gladwell&#8217;s &#8216;Blink&#8217; I&#8217;d come to the realization that my gut feelings were something worth attending to.  I&#8217;m not a bike gearhead.  I like to buy a bike and ride it hard. What it comes down to is that I&#8217;m lusting for the Redline. I think I just need to ride the Bossa Nova to make sure I&#8217;ve done due diligence, then go for the Redline. Once I get in the carbon forks I should be set for a few years.</p>
<h2>Update:</h2>
<p>Didn&#8217;t get the Redline (yet).  Went to try the Bossa Nova and ended up on a Kona Honky Inc. instead.  Kona saw that a lot of hard-core commuters were trending to cyclocross bikes, so designed a steel frame job that&#8217;s still light (23lbs) but has disc brakes, 105 components and mounts for racks and fenders.  I&#8217;m now leaning that way, but the price is steeper than I anticipated.  More to come&#8230;</p>
<p>&nbsp;</p>
<h1>Conclusion:</h1>
<p>Bought the 2010 Kona Honky Inc, discounted as clearance from Evans in the U.K.  Despite the shipping I still saved hundreds over waiting for the 2011 model to come into a local bike shop.  I LOOOVE IT!  I love it.  I l.o.v.e it.  Only issue is that UK bikes are built with the right brake handle operating the front brake, which is non-standard in the USA.  I&#8217;ll probably switch that and re-wrap the handle bars.</p>
<p>Anyhow, the bike is light for a commuter, about 23 lbs, and the steel frame absorbs road shock much better than aluminum.  I can fit it with racks and fenders when I choose to do so.  Out-of-the box, it&#8217;s fast and responsive, but easy to ride on the 10mi commute to work. It&#8217;s so fun to ride that I keep getting to work exhausted &#8217;cause I want to push myself to ride fast it&#8217;s so damn fun.</p>
<p>Happy.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pburkholder.com/2010/12/07/bikes-bikes-bikes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

