<?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>Canton Becker</title>
	<atom:link href="http://cantonbecker.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cantonbecker.com</link>
	<description>Music, Web Design, Projects</description>
	<pubDate>Thu, 25 Jun 2009 17:56:18 +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>Using free WordPress templates for fast &#038; affordable redesigns</title>
		<link>http://cantonbecker.com/work/portfolio/2009/wordpress-templates-fast-affordable-redesign/</link>
		<comments>http://cantonbecker.com/work/portfolio/2009/wordpress-templates-fast-affordable-redesign/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 21:30:37 +0000</pubDate>
		<dc:creator>Canton</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Non-profits]]></category>

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

		<guid isPermaLink="false">http://cantonbecker.com/?p=608</guid>
		<description><![CDATA[Here are two beautiful, highly functional, self-editable websites that were launched on shoestring  budgets by making good use of off-the-shelf WordPress templates:
Deva Foundation
I started off with this freely available WP theme. Then my client found a nice stock image of clouds on iStockPhoto.com that I converted into an ephemeral background. Finally, I popped in a [...]]]></description>
			<content:encoded><![CDATA[<p>Here are two beautiful, highly functional, self-editable websites that were launched on shoestring  budgets by making good use of off-the-shelf WordPress templates:</p>
<h3 style="text-align: center;">Deva Foundation</h3>
<div id="attachment_609" class="wp-caption aligncenter" style="width: 434px"><a href="http://deva.org"><img class="size-medium wp-image-609" title="deva-preview" src="http://cantonbecker.com/wp-content/uploads/2009/06/deva-preview-424x319.png" alt="www.deva.org" width="424" height="319" /></a><p class="wp-caption-text">www.deva.org</p></div>
<p>I started off with <a href="http://www.wpthemegallery.com/bluish-wordpress-theme/" target="_blank">this freely available WP theme</a>. Then my client found a nice stock image of clouds on iStockPhoto.com that I converted into an ephemeral background. Finally, I popped in a new header graphic, improved the font styling (and IE compatibility) and integrated  <strong>iContact</strong> for email newsletter signups and and <strong>PayPal</strong> for ecommerce.</p>
<p>Ta-da! Deva Foundation&#8217;s brand new site was completed in less than 20 hours, from concept to completion.</p>
<h3 style="text-align: center;">Maria Benitez</h3>
<div class="mceTemp mceIEcenter" style="text-align: left;">
<div id="attachment_616" class="wp-caption aligncenter" style="width: 435px"><a href="http://MariaBenitez.com"><img class="size-medium wp-image-616" title="maria-benitez" src="http://cantonbecker.com/wp-content/uploads/2009/06/maria-benitez-425x334.png" alt="www.MariaBenitez.com" width="425" height="334" /></a><p class="wp-caption-text">www.MariaBenitez.com</p></div>
<p>This website for the legendary Santa Fe flamenco dancer Maria Benitez was completed in even less time by taking advantage of the excellent &#8212; and freely available &#8211;  <a href="http://web-kreation.com/wp_yoghourt/" target="_blank">&#8220;Yoghourt&#8221; WordPress theme</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://cantonbecker.com/work/portfolio/2009/wordpress-templates-fast-affordable-redesign/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Strip www off URLs at GoDaddy using .htaccess mod_rewrite</title>
		<link>http://cantonbecker.com/work/musings/2009/strip-www-off-urls-at-godaddy-using-htaccess-mod_rewrite/</link>
		<comments>http://cantonbecker.com/work/musings/2009/strip-www-off-urls-at-godaddy-using-htaccess-mod_rewrite/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 21:08:06 +0000</pubDate>
		<dc:creator>Canton</dc:creator>
		
		<category><![CDATA[Musings]]></category>

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

		<guid isPermaLink="false">http://cantonbecker.com/?p=604</guid>
		<description><![CDATA[Here&#8217;s how to remove the www. from your domain name so that Google won&#8217;t &#8220;split&#8221; your pagerank as a result of some inbound links going to www.foo.com and others going to foo.com. (Google will see this as two separate sites.) This tip is tuned to work at GoDaddy, where using mod_rewrite can be a real [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Here&#8217;s how to</strong><strong> remove the www. from your domain name</strong> so that Google won&#8217;t &#8220;split&#8221; your pagerank as a result of some inbound links going to www.foo.com and others going to foo.com. (Google will see this as two separate sites.) This tip is tuned to work at GoDaddy, where using mod_rewrite can be a real pain because GoDaddy has some unfortunate default Apache settings that prevent ordinary rewrites from working properly out-of-the-box.</p>
<p><strong>Add these lines to the top of your .htaccess file:</strong></p>
<blockquote><p># Override GoDaddy defaults which can inhibit URL rewriting<br />
Options -MultiViews<br />
rewriteEngine On</p>
<p># Rewrite URLs so we don&#8217;t fragment our rankings beetween xyz.com and www.xyz.com<br />
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]<br />
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://cantonbecker.com/work/musings/2009/strip-www-off-urls-at-godaddy-using-htaccess-mod_rewrite/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Olympus E-620 Noise Reduction and Gradation (SAT)</title>
		<link>http://cantonbecker.com/photo-video/2009/olympus-e-620-noise-reduction-and-gradation-sat/</link>
		<comments>http://cantonbecker.com/photo-video/2009/olympus-e-620-noise-reduction-and-gradation-sat/#comments</comments>
		<pubDate>Sun, 17 May 2009 17:18:18 +0000</pubDate>
		<dc:creator>Canton</dc:creator>
		
		<category><![CDATA[Photos & Videos]]></category>

		<guid isPermaLink="false">http://cantonbecker.com/?p=556</guid>
		<description><![CDATA[So far I&#8217;m enjoying my new compact digial SLR, the Olympus E620, but I&#8217;m having a lot of trouble deciding whether or not to shoot JPGs with built-in noise reduction (NR) and/or &#8220;Gradation&#8221; (SAT) settings. Shadow Adjustment Technology is something I usually do in-computer instead of in-camera, using iPhoto and/or Photoshop&#8217;s shadow / highlight adjustments.
I [...]]]></description>
			<content:encoded><![CDATA[<p>So far I&#8217;m enjoying my new compact digial SLR, the Olympus E620, but I&#8217;m having a lot of trouble deciding whether or not to shoot JPGs with built-in noise reduction (<em>NR</em>) and/or &#8220;Gradation&#8221; (<em>SAT</em>) settings. <em>Shadow Adjustment Technology</em> is something I usually do in-computer instead of in-camera, using iPhoto and/or Photoshop&#8217;s shadow / highlight adjustments.</p>
<div id="attachment_557" class="wp-caption alignright" style="width: 210px"><a href="/olympus-e620-noise-and-gradation"><img class="size-thumbnail wp-image-557" title="olympus-e620-noise-and-gradation" src="http://cantonbecker.com/wp-content/uploads/2009/05/picture-21-200x121.png" alt="E-620 noise reduction / gradation test" width="200" height="121" /></a><p class="wp-caption-text">E-620 noise reduction / gradation test</p></div>
<p>I figure I&#8217;m not the only person out there with this quandary, especially as the E620 risks being a little noisy, and using SAT can make that noise really jump out at you&#8230; But then again, you get photos that are so <strong>usable</strong> right out of the camera. So I&#8217;ve published a <a href="/olympus-e620-noise-and-gradation">webpage</a>  that makes it easy to compare how a couple of shots look different when taken with and without NR and SAT. You be the judge!</p>
<p><a href="/olympus-e620-noise-and-gradation">http://cantonbecker.com/olympus-e620-noise-and-gradation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cantonbecker.com/photo-video/2009/olympus-e-620-noise-reduction-and-gradation-sat/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Narrowing down your design preferences&#8221;</title>
		<link>http://cantonbecker.com/work/musings/2009/narrowing-down-your-design-preferences/</link>
		<comments>http://cantonbecker.com/work/musings/2009/narrowing-down-your-design-preferences/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 16:58:09 +0000</pubDate>
		<dc:creator>Canton</dc:creator>
		
		<category><![CDATA[Musings]]></category>

		<category><![CDATA[Design Philosophy]]></category>

		<guid isPermaLink="false">http://cantonbecker.com/?p=551</guid>
		<description><![CDATA[ 
Sometimes a tricky process during a website design or redesign project is to figure out what kind of a general look and feel the client wants for the new site. Asking a client to &#8220;just go find some sites you like and send me the links&#8221; is a bit like asking &#8220;just go find some [...]]]></description>
			<content:encoded><![CDATA[<p> </p>
<div id="attachment_552" class="wp-caption alignright" style="width: 210px"><a href="http://www.mezzoblue.com/zengarden/alldesigns/"><img class="size-thumbnail wp-image-552" title="CSS Zen Garden" src="http://cantonbecker.com/wp-content/uploads/2009/04/picture-3-200x238.png" alt="CSS Zen Garden" width="200" height="238" /></a><p class="wp-caption-text">CSS Zen Garden</p></div>
<p>Sometimes a tricky process during a website design or redesign project is to figure out what kind of a <em>general look and feel</em> the client wants for the new site. Asking a client to &#8220;just go find some sites you like and send me the links&#8221; is a bit like asking &#8220;just go find some stars in the sky you like and point them out to me.&#8221;</p>
<p> </p>
<p>Introducing an old favorite of mine: <a href="http://www.mezzoblue.com/zengarden/alldesigns/" target="_blank">CSS Zen Garden</a>. It&#8217;s great when a client can visit this site and send back links to two or three designs that feel right for the project we&#8217;re working on together. The CSS Zen Garden is also a superb place to demonstrate how <strong>form</strong> and <strong>content</strong> can be separated from one another. A properly built website will have the ability to change form at a later date with a minimum penalty, i.e. having to rebuild content.</p>
]]></content:encoded>
			<wfw:commentRss>http://cantonbecker.com/work/musings/2009/narrowing-down-your-design-preferences/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flash Site for GCI</title>
		<link>http://cantonbecker.com/work/portfolio/2009/flash-site-for-gci/</link>
		<comments>http://cantonbecker.com/work/portfolio/2009/flash-site-for-gci/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 03:09:04 +0000</pubDate>
		<dc:creator>Canton</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

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

		<guid isPermaLink="false">http://cantonbecker.com/?p=499</guid>
		<description><![CDATA[Working from Illustrator mockups (graphic design by avantgarde) this 100% Flash site was built with gorgeous full-screen portfolios, custom text and photo scrolling classes and efficient loading / pre-loading behaviors.
GCI is a succesful San Francisco based commercial contracting / construction management firm.
]]></description>
			<content:encoded><![CDATA[<p>Working from Illustrator mockups (<em>graphic design by</em> <a href="http://www.avantgarde.com/" target="_blank">avantgarde</a>) this 100% Flash site was built with gorgeous full-screen portfolios, custom text and photo scrolling classes and efficient loading / pre-loading behaviors.</p>
<div id="attachment_500" class="wp-caption alignnone" style="width: 434px"><a href="http://gci-sf.com" target="_blank"><img class="size-medium wp-image-500" title="gci-sf" src="http://cantonbecker.com/wp-content/uploads/2009/04/gci-sf-424x319.png" alt="www.gci-sf.com" width="424" height="319" /></a><p class="wp-caption-text">www.gci-sf.com</p></div>
<blockquote><p>GCI is a succesful San Francisco based commercial contracting / construction management firm.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://cantonbecker.com/work/portfolio/2009/flash-site-for-gci/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;What makes a great newsletter?&#8221;</title>
		<link>http://cantonbecker.com/work/musings/2009/example-of-a-great-newsletter/</link>
		<comments>http://cantonbecker.com/work/musings/2009/example-of-a-great-newsletter/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 17:20:28 +0000</pubDate>
		<dc:creator>Canton</dc:creator>
		
		<category><![CDATA[Musings]]></category>

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

		<guid isPermaLink="false">http://cantonbecker.com/?p=370</guid>
		<description><![CDATA[ 
Here&#8217;s an example of a really super email newsletter. Even if you&#8217;re not a Yogi, it should be clear that this newsletter offers real value to its readers.
Here&#8217;s what makes it so great:

It&#8217;s not too long: You don&#8217;t have to set aside a special time in the day to read the whole thing. It&#8217;s distraction [...]]]></description>
			<content:encoded><![CDATA[<p> </p>
<div id="attachment_372" class="wp-caption alignright" style="width: 210px"><a href="http://cantonbecker.com/wp-content/uploads/2009/04/prajna-news-mar-09.jpg"><img class="size-thumbnail wp-image-372" title="prajna-news-mar-09-crop" src="http://cantonbecker.com/wp-content/uploads/2009/04/prajna-news-mar-09-crop-200x174.jpg" alt="Click image to see the whole newsletter" width="200" height="174" /></a><p class="wp-caption-text">Click to see the whole newsletter</p></div>
<p>Here&#8217;s an example of a really super email newsletter. Even if you&#8217;re not a Yogi, it should be clear that this newsletter offers real value to its readers.</p>
<p>Here&#8217;s what makes it so great:</p>
<ul>
<li>It&#8217;s <strong>not too long</strong>: You don&#8217;t have to set aside a special time in the day to read the whole thing. It&#8217;s distraction friendly.</li>
<li>The marketing &#8216;<strong>call-to-action</strong>&#8216; &#8212; the teaching schedule &#8212; is nicely separated out in the sidebar and highly visible, and it doesn&#8217;t overwhelm the newsletter with self-promotional material.</li>
<li>The introduction is <strong>personal and friendly</strong> and is <strong>relevant</strong> to the intended audience.</li>
<li>The cooking recipe at the bottom gives the newsletter <strong>real value</strong>. This is giving something away for <strong>free</strong>, and it&#8217;s a great incentive to keep visitors subscribed to the newsletter.</li>
<li>The overall layout is easy on the eyes, and has a good <strong>balance of text to images.</strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://cantonbecker.com/work/musings/2009/example-of-a-great-newsletter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Prototyping for PayPal</title>
		<link>http://cantonbecker.com/work/portfolio/2009/prototyping-for-paypal/</link>
		<comments>http://cantonbecker.com/work/portfolio/2009/prototyping-for-paypal/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 03:55:34 +0000</pubDate>
		<dc:creator>Canton</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

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

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

		<guid isPermaLink="false">http://cantonbecker.com/?p=509</guid>
		<description><![CDATA[I really enjoy doing rapid prototyping, and from a business perspective there&#8217;s no better way to figure out how to bring a new product to market. This month, AnswerLab (San Francisco) hired me to produce web prototypes to test a new financial product for PayPal.
Here&#8217;s how this type of study works:

Figure out what different messages [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-510" title="PayPal™ / AnswerLab®" src="http://cantonbecker.com/wp-content/uploads/2009/04/answerlab-paypal.gif" alt="PayPal™ / AnswerLab®" width="200" height="88" />I really enjoy doing rapid prototyping, and from a business perspective there&#8217;s no better way to figure out how to bring a new product to market. This month, <a href="http://answerlab.com" target="_blank">AnswerLab</a> (San Francisco) hired me to produce web prototypes to test a new financial product for <strong>PayPal</strong>.</p>
<p><em>Here&#8217;s how this type of study works:</em></p>
<ol>
<li>Figure out what different messages or images you think might help to sell your product</li>
<li>Produce a prototype (fake) website that simulates purchasing that product, with variations for each message or image you want to test</li>
<li>Send users to test out each variant of the website</li>
<li>Conduct statistical analysis of users&#8217; browsing behaviors to figure out which variation produced the best results</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://cantonbecker.com/work/portfolio/2009/prototyping-for-paypal/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Agile design and just getting it out there&#8221;</title>
		<link>http://cantonbecker.com/work/musings/2009/agile-design-with-wordpress/</link>
		<comments>http://cantonbecker.com/work/musings/2009/agile-design-with-wordpress/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 18:06:25 +0000</pubDate>
		<dc:creator>Canton</dc:creator>
		
		<category><![CDATA[Musings]]></category>

		<category><![CDATA[Design Philosophy]]></category>

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

		<guid isPermaLink="false">http://cantonbecker.com/?p=310</guid>
		<description><![CDATA[This morning, a friend and client of mine emailed me regarding the work we&#8217;re doing to get his new website built:
I interest myself in how the structure of our site will influence our behavior &#8230; As the website design develops, so does my clarity. It’s obvious to me that “site review and evaluation” will be [...]]]></description>
			<content:encoded><![CDATA[<p>This morning, a friend and client of mine emailed me regarding the work we&#8217;re doing to get his new website built:</p>
<blockquote><p>I interest myself in how the structure of our site will influence our behavior &#8230; As the website design develops, so does my clarity. It’s obvious to me that “site review and evaluation” will be an opportunity for us to reflect on our goals &#8230;  I mean that the site is, for me, kind of like a biofeedback device that informs me about myself and helps me develop my goals. At least that’s how it feels at this stage in the process.</p></blockquote>
<p>This is a great reflection on how the actual process of making a website helps to make more concrete the actual project or work that the website is supposed to communicate. This kind of thinking caused a seismic shift in the philosophy of webdesign and web programming a couple of years ago. It’s called “<a href="http://en.wikipedia.org/wiki/Agile_software_development" target="_blank">agile design</a>” and I think it’s fascinating.</p>
<p>The basic idea behind agile design is that you minimize the amount of forethought and planning on paper, and instead take advantage of technologies that let you easily update the website once someone has actually clicked through the Real Thing.</p>
<p>Before agile development we said to our clients: “<em>Get it right on paper, or else we’ll bill you astronomical fees for change-orders.&#8221;</em> Now we say: “<em>Let’s just get the basic sketch online, play with it, and then keep tweaking things until it feels right.&#8221;</em></p>
<p>This is one of the reasons I build a lot of sites for my clients using <a href="/tag/wordpress/">WordPress</a>. It means that we can change our minds about lots of things — even the fundamental look and feel — without having to build everything over again from scratch.</p>
]]></content:encoded>
			<wfw:commentRss>http://cantonbecker.com/work/musings/2009/agile-design-with-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Being With Dying</title>
		<link>http://cantonbecker.com/work/portfolio/2009/being-with-dying/</link>
		<comments>http://cantonbecker.com/work/portfolio/2009/being-with-dying/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 18:21:49 +0000</pubDate>
		<dc:creator>Canton</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Graphic Designs]]></category>

		<category><![CDATA[Non-profits]]></category>

		<guid isPermaLink="false">http://cantonbecker.com/?p=318</guid>
		<description><![CDATA[Today we launched this simple elegant website to promote Upaya&#8217;s enormously important &#8220;Being With Dying&#8221; training program:




 
&#8220;The professional Training Program in Contemplative End-of-Life Care has long been dedicated to fostering a revolution in care of the dying. This unique program provides clinicians with essential tools for taking care of dying people with skill and compassion, [...]]]></description>
			<content:encoded><![CDATA[<p>Today we launched this simple elegant website to promote Upaya&#8217;s enormously important &#8220;Being With Dying&#8221; training program:</p>
<p><em></em></p>
<p><em></em></p>
<p><em></p>
<div id="attachment_319" class="wp-caption alignnone" style="width: 435px"><a href="http://www.BeingWithDying.org"><img class="size-medium wp-image-319" title="Being With Dying preview" src="http://cantonbecker.com/wp-content/uploads/2009/02/bwd-preview-425x415.png" alt="www.BeingWithDying.org" width="425" height="415" /></a><p class="wp-caption-text">www.BeingWithDying.org</p></div>
<p></em></p>
<p> </p>
<p><em>&#8220;The professional Training Program in Contemplative End-of-Life Care has long been dedicated to fostering a revolution in care of the dying. This unique program provides clinicians with essential tools for taking care of dying people with skill and compassion, as well as sustaining resilience and dedication as they serve others.&#8221;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://cantonbecker.com/work/portfolio/2009/being-with-dying/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Song: &#8220;Snow Break&#8221; (92bpm)</title>
		<link>http://cantonbecker.com/my-music/2008/snow-break/</link>
		<comments>http://cantonbecker.com/my-music/2008/snow-break/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 16:30:15 +0000</pubDate>
		<dc:creator>Canton</dc:creator>
		
		<category><![CDATA[New Songs]]></category>

		<guid isPermaLink="false">http://cantonbecker.com/?p=128</guid>
		<description><![CDATA[On this very snowy Santa Fe morning and with one week left until the 2008 Winter Solstice, I&#8217;m pleased to release this new song for free under a creative commons license. Snow Break is a 92bpm &#8216;breaks&#8217; piece based around a sampled string melody from a 1960&#8217;s Mellotron tape loop. (The Mellotron was the original pre-digital sampler, a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://cantonbecker.com/wp-content/uploads/2008/12/snow-break.jpg"><img class="alignright size-full wp-image-134" title="snow-break" src="http://cantonbecker.com/wp-content/uploads/2008/12/snow-break.jpg" alt="" width="250" height="188" /></a>On this very snowy Santa Fe morning and with one week left until the 2008 Winter Solstice, I&#8217;m pleased to release this new song for free under a <a href="http://creativecommons.org/licenses/by-sa/3.0/" target="_blank">creative commons license</a>. <em>Snow Break</em> is a 92bpm &#8216;breaks&#8217; piece based around a sampled string melody from a 1960&#8217;s <a href="http://en.wikipedia.org/wiki/Mellotron" target="_blank">Mellotron</a> tape loop. (The Mellotron was the original pre-digital sampler, a massive and fiddly organ that triggered the playback of tape loops instead of tone wheels&#8230;)</p>
<p>It&#8217;s been years since I&#8217;ve played around in the 90-bpm breaks range. Having that extra time/space between the beats makes it possible to play with wicked bass sounds and long cymbals - things that are hard to squeeze into my usual 140-175bpm range. This is also the first song I&#8217;ve mastered using Logic&#8217;s built-in multiband compressor and adaptive limiter (instead of an off-the-shelf mastering tool like Yamaha&#8217;s finalizer or T-racks.) I think the Logic plugins preserved a lot of the crispness and space that would have been muddied up by the other harder-edged mastering tools. What you hear below is the final (13th) mix of this song. </p>
<p>Listen:</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://cantonbecker.com/my-music/2008/snow-break/feed/</wfw:commentRss>
<enclosure url="http://cantonbecker.com/canton/music/files/canton_snow-break-320.mp3" length="16396948" type="audio/mpeg" />
		</item>
	</channel>
</rss>
