<?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>&#60;Code Zen /&#62; &#187; Software</title>
	<atom:link href="http://www.code-zen.net/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.code-zen.net</link>
	<description>Peter Anselmo&#039;s Home on the Web</description>
	<lastBuildDate>Wed, 12 Oct 2011 01:11:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Concrete5 vs WordPress: Benchmarking Load Time</title>
		<link>http://www.code-zen.net/2010/benchmarking-concrete5-vs-wordpress/</link>
		<comments>http://www.code-zen.net/2010/benchmarking-concrete5-vs-wordpress/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 05:17:44 +0000</pubDate>
		<dc:creator>Peter Anselmo</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[benchmarking]]></category>
		<category><![CDATA[concrete5]]></category>
		<category><![CDATA[load]]></category>
		<category><![CDATA[siege]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.code-zen.net/?p=495</guid>
		<description><![CDATA[I just discovered Concrete5 CMS recently when another developer in my area launched a site with it.  Always up for learning something new, I went to the website, read the sales pitch, and decided to give it a whirl.  Before I spend time learning yet another CMS, for kicks I thought I would benchmark it [...]]]></description>
			<content:encoded><![CDATA[<p>I just discovered Concrete5 CMS recently when another developer in my area launched a site with it.  Always up for learning something new, I went to the website, read the sales pitch, and decided to give it a whirl.  Before I spend time learning yet another CMS, for kicks I thought I would benchmark it for speed against WordPress, my current go-to solution.  Here we go.</p>
<p><strong>Preliminaries</strong><br />
Hardware: All tests will be conducted on my Desktop Computer; a custom built PC with a 3.5Ghz Core2 Duo, 4GB of Ram, and a 10,000 RPM hard drive.  Not identical, but similar to many server setups on the market.</p>
<p>Software: I&#8217;m running Ubuntu 10.04 with Apache 2.2, PHP 5.3, and MySQL 5.1.  Once again, apart from using a Desktop OS, this is almost identical to your usual LAMP server software. For benchmarking, I will be using Siege 2.68.</p>
<p><strong>Step 1: Fresh Installs</strong><br />
I downloaded and installed the latest version of Concrete5 (5.4.1.1) and WordPress (3.03)  Here are the screenshots of the home pages out of the box:</p>
<div id="attachment_524" class="wp-caption alignleft" style="width: 160px"><a href="http://www.code-zen.net/wp-content/uploads/2010/12/wordpress-fresh-1.png" rel="lightbox[495]"><img class="size-thumbnail wp-image-524" title="wordpress-fresh-1" src="http://www.code-zen.net/wp-content/uploads/2010/12/wordpress-fresh-1-150x150.png" alt="" width="150" height="150" /></a><p class="wp-caption-text">WordPress Fresh Install</p></div>
<div id="attachment_501" class="wp-caption alignleft" style="width: 160px"><a href="http://www.code-zen.net/wp-content/uploads/2010/12/conrete-fresh.png" rel="lightbox[495]"><img class="size-thumbnail wp-image-501 " title="conrete-fresh" src="http://www.code-zen.net/wp-content/uploads/2010/12/conrete-fresh-150x150.png" alt="" width="150" height="150" /></a><p class="wp-caption-text">Concrete5 Fresh Install</p></div>
<div style="clear: both; visibility: hidden;">a</div>
<p><strong>Step 2: Balancing</strong><br />
Okay, First thing, to be fair we need to balance the page weights.  Siege will not load all the linked resources (like CSS and Javscript), I actually only care about the html page weights.  Out of the box Concrete is 1771 bytes and WordPress is 2015 bytes.  Pretty close.  After removing several widgets from the WordPress sidebar (Those extra queries weren&#8217;t fair anyway) and adding the right amount of Lorem Ipsum, the WordPress page is now exactly 1771 bytes as well.  Perfect.</p>
<p><strong>Step 3: Attack!</strong><br />
To stress test my desktop server I am using the following siege command:</p>
<pre> siege -c 50 -r 40 http://localhost/[siteurl]</pre>
<p>This will attempt to make 50 concurrent requests to the website, and will repeat each request 40 times.  This is a total of 2000 requests to each site.</p>
<p><strong>Step 4: Results</strong><br />
Here is the raw data from the tests:</p>
<table cellspacing="5" cellpadding="5">
<tbody>
<tr>
<th></th>
<th>WordPress</th>
<th>Concrete5</th>
</tr>
<tr>
<td>Total Requests:</td>
<td>2000</td>
<td>2000</td>
</tr>
<tr>
<td>Average Response Time (seconds):</td>
<td>2.52</td>
<td>1.62</td>
</tr>
<tr>
<td>Transactions per second:</td>
<td>16.23</td>
<td>22.46</td>
</tr>
<tr>
<td>Longest Transaction (seconds):</td>
<td>4.8</td>
<td>3.13</td>
</tr>
<tr>
<td>Shortest Transaction (seconds):</td>
<td>.10</td>
<td>.07</td>
</tr>
<tr>
<td>Elapsed Time</td>
<td>123.21</td>
<td>89.04</td>
</tr>
</tbody>
</table>
<p>And the corresponding screenshots:</p>
<div id="attachment_508" class="wp-caption alignleft" style="width: 160px"><a href="http://www.code-zen.net/wp-content/uploads/2010/12/siege-results-wp.png" rel="lightbox[495]"><img class="size-thumbnail wp-image-508" title="siege results wp" src="http://www.code-zen.net/wp-content/uploads/2010/12/siege-results-wp-150x150.png" alt="" width="150" height="150" /></a><p class="wp-caption-text">Results for WordPress</p></div>
<div id="attachment_507" class="wp-caption alignleft" style="width: 160px"><a href="http://www.code-zen.net/wp-content/uploads/2010/12/siege-results-concrete.png" rel="lightbox[495]"><img class="size-thumbnail wp-image-507" title="siege results concrete" src="http://www.code-zen.net/wp-content/uploads/2010/12/siege-results-concrete-150x150.png" alt="" width="150" height="150" /></a><p class="wp-caption-text">Results for Concrete5</p></div>
<div style="clear: both; visibility: hidden;">a</div>
<p><strong>Step 5: Conclusions</strong><br />
As we can see from the data <strong>Concrete5 outperformed WordPress by 20-30% in every measure.</strong> This is a significant amount.  What does this tell us?  For small sites with little content, Concrete5 will scale to additional concurrent users better than WordPress. What does this not tell us?  For one thing, the sites may not scale to additional content equally well.  This test also ignored all the static content which will download from either CMS with equal speed.  Finally, WordPress also has some excellent caching plugins that may have closed the gap.</p>
<p><strong>Other Considerations</strong><br />
Am I suggesting you ditch WordPress and port your sites to Concrete?  Not at all. WordPress has many good things going for it; it is the #1 blogging tool and is a finely tuned engine that powers millions of websites.  What I CAN say for sure, is that if you can outperform that, then you&#8217;re doing something right.  Hats off to the team at Concrete.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p><strong>Update (1 Day Later)</strong><br />
Okay, After posting this, I had a lot of people point out to me that this is not a fair fight.  Concrete has caching enabled by default, and WordPress does not.   After installing wp-super-cache, the elapsed time for 2000 requests from WordPress fell from 123 seconds to 27 seconds.  Wow, crazy plugin.  Either way, my original results stand when you consider out of the box performance.  Wp-super-cache is neither bundled with WordPress nor do it&#8217;s version numbers suggest it is stable.  It&#8217;s technical options are overwhelming to all but advanced users.  Kudos still go to Concrete5 for integrating a simple, stable caching system into the framework.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.code-zen.net%2F2010%2Fbenchmarking-concrete5-vs-wordpress%2F&amp;title=Concrete5+vs+WordPress%3A+Benchmarking+Load+Time" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.code-zen.net%2F2010%2Fbenchmarking-concrete5-vs-wordpress%2F&amp;title=Concrete5+vs+WordPress%3A+Benchmarking+Load+Time" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.code-zen.net%2F2010%2Fbenchmarking-concrete5-vs-wordpress%2F&amp;title=Concrete5+vs+WordPress%3A+Benchmarking+Load+Time" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.code-zen.net%2F2010%2Fbenchmarking-concrete5-vs-wordpress%2F&amp;headline=Concrete5+vs+WordPress%3A+Benchmarking+Load+Time" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Concrete5+vs+WordPress%3A+Benchmarking+Load+Time&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2010%2Fbenchmarking-concrete5-vs-wordpress%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Concrete5+vs+WordPress%3A+Benchmarking+Load+Time&amp;u=http%3A%2F%2Fwww.code-zen.net%2F2010%2Fbenchmarking-concrete5-vs-wordpress%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Concrete5+vs+WordPress%3A+Benchmarking+Load+Time&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2010%2Fbenchmarking-concrete5-vs-wordpress%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Concrete5+vs+WordPress%3A+Benchmarking+Load+Time&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2010%2Fbenchmarking-concrete5-vs-wordpress%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Concrete5+vs+WordPress%3A+Benchmarking+Load+Time&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2010%2Fbenchmarking-concrete5-vs-wordpress%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2010%2Fbenchmarking-concrete5-vs-wordpress%2F&amp;title=Concrete5+vs+WordPress%3A+Benchmarking+Load+Time&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.code-zen.net%2F2010%2Fbenchmarking-concrete5-vs-wordpress%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.code-zen.net%2F2010%2Fbenchmarking-concrete5-vs-wordpress%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.code-zen.net%2F2010%2Fbenchmarking-concrete5-vs-wordpress%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.code-zen.net/2010/benchmarking-concrete5-vs-wordpress/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Syncing Filezilla Sites across Computers with Dropbox</title>
		<link>http://www.code-zen.net/2009/syncing-filezilla-sites-across-computers-with-dropbox/</link>
		<comments>http://www.code-zen.net/2009/syncing-filezilla-sites-across-computers-with-dropbox/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 06:33:31 +0000</pubDate>
		<dc:creator>Peter Anselmo</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[crossplatform]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[filezilla]]></category>
		<category><![CDATA[ftp]]></category>

		<guid isPermaLink="false">http://www.code-zen.net/?p=339</guid>
		<description><![CDATA[I often find myself editing websites on several different computers.  One of the more tedious things is keeping all my FTP settings updated across them.  I&#8217;d start development on a new site at work, then try to continue from home, only to find I&#8217;d forgotten to write down the connection credentials.  Alternately, even if I [...]]]></description>
			<content:encoded><![CDATA[<p>I often find myself editing websites on several different computers.  One of the more tedious things is keeping all my FTP settings updated across them.  I&#8217;d start development on a new site at work, then try to continue from home, only to find I&#8217;d forgotten to write down the connection credentials.  Alternately, even if I did have them on hand, entering them for each FTP client is a waste of time.  Dropbox to the rescue!  Here&#8217;s how:</p>
<p><strong>1. Find your site manager file</strong><br />
Filezilla keeps all of your sites and access credentials in an XML file called &#8220;sitemanager.xml&#8221; Here are the most likely locations:<br />
Windows 7 &amp; Vista &#8211; C:\Users\Yourname\AppData\Roaming\FileZilla\sitemanager.xml<br />
Mac OS X &#8211; /users/Yourname/.filezilla/sitemanager.xml<br />
Linux &#8211; /home/Yourname/.filezilla/sitemanager.xml</p>
<p><strong>2. Back it up</strong><br />
Just in case something goes wrong in the next few steps.  Copy the file and name it something else, perhaps &#8220;sitemanager.xml.backup&#8221;</p>
<p><strong>3. Move sitemanager.xml to Dropbox</strong><br />
I keep a folder in dropbox called &#8220;Settings&#8221; which I use for program files that I sync.  Place it where it makes sense to you, just remember that location for the next step.  Note, you want to <em>move</em> the file, not <em>copy</em> it.  It cannot still exist in the filezilla folder, or the next step may not work.</p>
<p><strong>4. Make a soft link from Dropbox back to your Filezilla folder</strong><br />
Filezilla will still look in it&#8217;s default place for the sitemanger file.  You&#8217;re going to trick it and point it to the file you have snyc&#8217;d on Dropbox.  You&#8217;ll need to open up a Command Prompt (Windows) or a terminal (OS X/Linux) for this step.  This is what the commands looked like for me, you&#8217;ll need to adjust the file paths as necessary.  Note, on Windows, you enter the new link first, then the existing target, and on OS X &amp; Linux, it is the opposite order.</p>
<p>Windows:<br />
mklink &#8220;C:\Users\peter\AppData\Roaming\FileZilla\sitemanager.xml&#8221; &#8220;C:\Users\peter\My Dropbox\Settings\sitemanager.xml&#8221;</p>
<p>OS X:<br />
ln -s /users/peter/Dropbox/Settings/sitemanager.xml /users/peter/.filezilla/sitemanager.xml</p>
<p>Linux:<br />
ln -s /home/peter/Dropbox/Settings/sitemanager.xml /home/peter/.filezilla/sitemanager.xml</p>
<p>That&#8217;s it!  Fire up Filezilla, and you should see the same site settings now on all of your computers.  Note, if you use &#8220;Synchronized Browsing&#8221;, you&#8217;ll need to create separate bookmarks under each site for each computer, as the local path to your files will be different depending on your computer.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.code-zen.net%2F2009%2Fsyncing-filezilla-sites-across-computers-with-dropbox%2F&amp;title=Syncing+Filezilla+Sites+across+Computers+with+Dropbox" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.code-zen.net%2F2009%2Fsyncing-filezilla-sites-across-computers-with-dropbox%2F&amp;title=Syncing+Filezilla+Sites+across+Computers+with+Dropbox" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.code-zen.net%2F2009%2Fsyncing-filezilla-sites-across-computers-with-dropbox%2F&amp;title=Syncing+Filezilla+Sites+across+Computers+with+Dropbox" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.code-zen.net%2F2009%2Fsyncing-filezilla-sites-across-computers-with-dropbox%2F&amp;headline=Syncing+Filezilla+Sites+across+Computers+with+Dropbox" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Syncing+Filezilla+Sites+across+Computers+with+Dropbox&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2009%2Fsyncing-filezilla-sites-across-computers-with-dropbox%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Syncing+Filezilla+Sites+across+Computers+with+Dropbox&amp;u=http%3A%2F%2Fwww.code-zen.net%2F2009%2Fsyncing-filezilla-sites-across-computers-with-dropbox%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Syncing+Filezilla+Sites+across+Computers+with+Dropbox&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2009%2Fsyncing-filezilla-sites-across-computers-with-dropbox%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Syncing+Filezilla+Sites+across+Computers+with+Dropbox&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2009%2Fsyncing-filezilla-sites-across-computers-with-dropbox%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Syncing+Filezilla+Sites+across+Computers+with+Dropbox&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2009%2Fsyncing-filezilla-sites-across-computers-with-dropbox%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2009%2Fsyncing-filezilla-sites-across-computers-with-dropbox%2F&amp;title=Syncing+Filezilla+Sites+across+Computers+with+Dropbox&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.code-zen.net%2F2009%2Fsyncing-filezilla-sites-across-computers-with-dropbox%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.code-zen.net%2F2009%2Fsyncing-filezilla-sites-across-computers-with-dropbox%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.code-zen.net%2F2009%2Fsyncing-filezilla-sites-across-computers-with-dropbox%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.code-zen.net/2009/syncing-filezilla-sites-across-computers-with-dropbox/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Restore Firefox Tab</title>
		<link>http://www.code-zen.net/2008/restore-firefox-tab/</link>
		<comments>http://www.code-zen.net/2008/restore-firefox-tab/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 01:13:26 +0000</pubDate>
		<dc:creator>Peter Anselmo</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://code-zen.net/?p=14</guid>
		<description><![CDATA[Have you ever been browsing with Firefox and accidentally closed a tab that you didn&#8217;t mean to? It&#8217;s happened to me more than I&#8217;d like to admit. The next time it does, Here&#8217;s the keyboard shortcut to recover it: Control + Shift + T ( or Apple + Shift + T) Easy huh? You&#8217;ll like [...]]]></description>
			<content:encoded><![CDATA[<div class="content">
<p><a href="http://www.mozilla.com" target="_blank"><img class="alignleft size-thumbnail wp-image-63" title="firefox" src="http://code-zen.net/wp-content/uploads/2008/12/firefox-150x150.jpg" alt="" width="75" height="75" /></a>Have you ever been browsing with Firefox and accidentally closed a tab that you didn&#8217;t mean to? It&#8217;s happened to me more than I&#8217;d like to admit. The next time it does, Here&#8217;s the keyboard shortcut to recover it:</p>
<p>Control + Shift + T ( or Apple + Shift + T)</p>
<p>Easy huh?  You&#8217;ll like it. I guarantee it.</p></div>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frestore-firefox-tab%2F&amp;title=Restore+Firefox+Tab" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frestore-firefox-tab%2F&amp;title=Restore+Firefox+Tab" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frestore-firefox-tab%2F&amp;title=Restore+Firefox+Tab" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frestore-firefox-tab%2F&amp;headline=Restore+Firefox+Tab" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Restore+Firefox+Tab&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frestore-firefox-tab%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Restore+Firefox+Tab&amp;u=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frestore-firefox-tab%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Restore+Firefox+Tab&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frestore-firefox-tab%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Restore+Firefox+Tab&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frestore-firefox-tab%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Restore+Firefox+Tab&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frestore-firefox-tab%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frestore-firefox-tab%2F&amp;title=Restore+Firefox+Tab&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frestore-firefox-tab%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.code-zen.net%2F2008%2Frestore-firefox-tab%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frestore-firefox-tab%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.code-zen.net/2008/restore-firefox-tab/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setting MP3 Bitrate in Rhythmbox</title>
		<link>http://www.code-zen.net/2008/rhythmbox-music-player-tip/</link>
		<comments>http://www.code-zen.net/2008/rhythmbox-music-player-tip/#comments</comments>
		<pubDate>Sat, 29 Nov 2008 07:40:24 +0000</pubDate>
		<dc:creator>Peter Anselmo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[rhytmbox]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://code-zen.net/?p=3</guid>
		<description><![CDATA[Rhythmbox is the music player that comes on the default Ubuntu installation. Anyone that has ever used iTunes, Windows Media Player or any other similar program will find it very intuitive. You do need to download an extension to add MP3 capability, but this is easy to do. What frustrated me for months has been [...]]]></description>
			<content:encoded><![CDATA[<p>Rhythmbox is the music player that comes on the default Ubuntu installation. Anyone that has ever used iTunes, Windows Media Player or any other similar program will find it very intuitive. You do need to download an extension to add MP3 capability, but this is easy to do.</p>
<p>What frustrated me for months has been the lack of options for ripping music from CDs. Although it has a great selection of formats (WAV, flac, ogg, mp3) it doesn&#8217;t give you any options for setting the mp3 bitrate. At last I found a way, and thought I would pass it on:</p>
<p>Open &#8220;Preferences&#8221; from the &#8220;Edit&#8221; menu<br />
Select the &#8220;Edit&#8221; button to the right of &#8220;Preferred Format&#8221;<br />
Select &#8220;CD Quality, MP3&#8243; from the menu and hit &#8220;Edit&#8221;<br />
Under the &#8220;Gstreamer pipeline&#8221; field you will find the following:</p>
<p><span style="color: #888888;"><span style="font-family: georgia,courier,mono-space;">audio/x-raw-int,rate=44100,channels=2 ! lame name=enc mode=0 vbr-quality=6 ! id3v2mux</span></span></p>
<p>To remove the default, remove the <span style="font-family: georgia,courier,mono-space;">vbr-quality=6</span> statement, and replace it with <span style="font-family: georgia,courier,mono-space;">vbr=0 bitrate=256</span>. This will change it from variable to constant bit rate, and set it to 256 kb/s. You can set it to whatever bit rate you prefer, I like 256. You line should now look like the following:</p>
<p><span style="font-family: georgiacourier,mono-space; color: #888888;">audio/x-raw-int,rate=44100,channels=2 ! lame name=enc mode=0 vbr=0 bitrate=256 ! id3v2mux</span></p>
<p>Close the window, and Viola!  You&#8217;ll now rip CDs at a higher quality</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frhythmbox-music-player-tip%2F&amp;title=Setting+MP3+Bitrate+in+Rhythmbox" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frhythmbox-music-player-tip%2F&amp;title=Setting+MP3+Bitrate+in+Rhythmbox" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frhythmbox-music-player-tip%2F&amp;title=Setting+MP3+Bitrate+in+Rhythmbox" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frhythmbox-music-player-tip%2F&amp;headline=Setting+MP3+Bitrate+in+Rhythmbox" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Setting+MP3+Bitrate+in+Rhythmbox&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frhythmbox-music-player-tip%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Setting+MP3+Bitrate+in+Rhythmbox&amp;u=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frhythmbox-music-player-tip%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Setting+MP3+Bitrate+in+Rhythmbox&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frhythmbox-music-player-tip%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Setting+MP3+Bitrate+in+Rhythmbox&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frhythmbox-music-player-tip%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Setting+MP3+Bitrate+in+Rhythmbox&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frhythmbox-music-player-tip%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frhythmbox-music-player-tip%2F&amp;title=Setting+MP3+Bitrate+in+Rhythmbox&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frhythmbox-music-player-tip%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.code-zen.net%2F2008%2Frhythmbox-music-player-tip%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fwww.code-zen.net%2F2008%2Frhythmbox-music-player-tip%2F" ><img class="lightsocial_img" src="http://www.code-zen.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://www.code-zen.net/2008/rhythmbox-music-player-tip/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

