<?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>Managed Mayhem</title>
	<atom:link href="http://www.managedmayhem.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.managedmayhem.com</link>
	<description>More Than 99 Billion Cats Herded</description>
	<pubDate>Mon, 29 Mar 2010 23:56:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CURL, Wordpress, Shopp, FirstData, and MediaTemple</title>
		<link>http://www.managedmayhem.com/2010/03/29/curl-wordpress-shopp-firstdata-and-mediatemple/</link>
		<comments>http://www.managedmayhem.com/2010/03/29/curl-wordpress-shopp-firstdata-and-mediatemple/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 23:56:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.managedmayhem.com/?p=198</guid>
		<description><![CDATA[What a group to bring together, eh?
I&#8217;m using the following:
http://www.wordpress.org
http://www.shopplugin.net
http://www.mediatemple.net
http://curl.haxx.se/
So first off, I had an issue where the FirstData plugin built by Shopp was pointing to the incorrect URL:
var $url = &#8220;https://secure.linkpt.net/lpcentral/servlet/lppay&#8221;;
This url is actually FirstData&#8217;s &#8216;Connect&#8217; url&#8230; which is a forms based api&#8230; but the Shopp Plugin FirstData gateway plugin actually uses FirstData&#8217;s &#8216;Global [...]]]></description>
			<content:encoded><![CDATA[<p>What a group to bring together, eh?</p>
<p>I&#8217;m using the following:</p>
<p>http://www.wordpress.org<br />
http://www.shopplugin.net<br />
http://www.mediatemple.net<br />
http://curl.haxx.se/</p>
<p>So first off, I had an issue where the FirstData plugin built by Shopp was pointing to the incorrect URL:</p>
<p>var $url = &#8220;https://secure.linkpt.net/lpcentral/servlet/lppay&#8221;;</p>
<p>This url is actually FirstData&#8217;s &#8216;Connect&#8217; url&#8230; which is a forms based api&#8230; but the Shopp Plugin FirstData gateway plugin actually uses FirstData&#8217;s &#8216;Global Gateway Api&#8217;, but this is not the URL that they are using &#8230; When I called FirstData and gave them that URL, they assumed that I was using the &#8216;Connect&#8217; product and proceeded to set me up with that on their side. This resulted in a bit of a monkey race for me until I looked further at what the Shopp FirstData gateway plugin was actually doing. When I realized that it was passing XML on port 1129 to FirstData, I knew then that it was not following the &#8216;Connect&#8217; pattern, but rather was following the model setup for the &#8216;Global Gateway API&#8217;.</p>
<p>When I changed the URL string to the following:</p>
<p>var $url = &#8220;https://secure.linkpt.net/&#8221;;</p>
<p>I was now getting a &#8216;timeout&#8217; error rather than an HTML page for a return from cUrl.</p>
<p>cUrl allows you to set some options to manage timeout issues &#8230; so I tried them:</p>
<p>curl_setopt($connection, CURLOPT_CONNECTTIMEOUT, 4);<br />
curl_setopt($connection, CURLOPT_TIMEOUT, 8);</p>
<p>After some digging in the log files, I found that cUrl was attempting the connection on port 443, when FirstData actually requires port 1129. Shopp&#8217;s FirstData gateway plugin uses the following curl_setopt() to set the port:</p>
<p>curl_setopt($connection, CURLOPT_PORT, 1129);</p>
<p>Unfortunately, MediaTemple does not appear to accept this&#8230;because cUrl&#8217;s default 443 port was what was showing in the logs.</p>
<p>So&#8230; I modified the URL string:</p>
<p>var $url = &#8220;https://secure.linkpt.net:1129</p>
<p>and commented out the curl_setopt:</p>
<p>// curl_setopt($connection, CURLOPT_PORT, 1129);</p>
<p>This resolved all my issues, and the cart began processing orders.</p>
<p>My initial complaint here is with Shopp&#8217;s FirstData gateway plugin&#8230; having the URL string for FirstData&#8217;s &#8216;Connect&#8217; product is a bit misleading&#8230; and completely incorrect&#8230; it does not work with the approach that the plugin was taking, as it was actually built to use the &#8216;Global Gateway API&#8217;. I wasted a lot of time going down the wrong road here because of this. My second complaint is with FirstData &#8230; as I had shown them the plugin, and they responded by setting me up with &#8216;Connect&#8217; &#8230; making the same assumption that I had about the URL string&#8230; but not looking any further into what the plugin was trying to do. My third complaint is that MediaTemple does not seem to support the use of curl_setopt() &#8230; at least not for setting the port that cUrl runs on.</p>
<p>Hopefully this helps someone else save a bit of time. It was a bugger for me. <img src='http://www.managedmayhem.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.managedmayhem.com/2010/03/29/curl-wordpress-shopp-firstdata-and-mediatemple/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Planning Poker Cards came in!</title>
		<link>http://www.managedmayhem.com/2010/02/16/planning-poker-cards-came-in/</link>
		<comments>http://www.managedmayhem.com/2010/02/16/planning-poker-cards-came-in/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 21:44:09 +0000</pubDate>
		<dc:creator>Jim Rising</dc:creator>
		
		<category><![CDATA[Geek'n Out]]></category>

		<category><![CDATA[Project Management]]></category>

		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.managedmayhem.com/?p=189</guid>
		<description><![CDATA[Got me a sweet set!

]]></description>
			<content:encoded><![CDATA[<p>Got me a sweet set!</p>
<p><a href="http://store.mountaingoatsoftware.com/products/planning-poker-cards-burndown-design" target="_blank"><img class="size-full wp-image-190 alignleft" title="pokerchipcards_plasticbox_large" src="http://www.managedmayhem.com/wp-content/uploads/2010/02/pokerchipcards_plasticbox_large.jpg" alt="pokerchipcards_plasticbox_large" width="453" height="328" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.managedmayhem.com/2010/02/16/planning-poker-cards-came-in/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hiring for great teams, not tools.</title>
		<link>http://www.managedmayhem.com/2010/02/11/hiring-for-great-teams-not-tools/</link>
		<comments>http://www.managedmayhem.com/2010/02/11/hiring-for-great-teams-not-tools/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 17:27:33 +0000</pubDate>
		<dc:creator>Jim Rising</dc:creator>
		
		<category><![CDATA[Project Management]]></category>

		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.managedmayhem.com/?p=185</guid>
		<description><![CDATA[Now&#8230; sometimes you have some tools on your team&#8230; but that&#8217;s another article.  
I must confess that I&#8217;m writing this from the perspective of a guy who has invested a lot of time into a specific technology, and is now having a difficult time getting work in that specialization. So take what I&#8217;m about [...]]]></description>
			<content:encoded><![CDATA[<p>Now&#8230; sometimes you have some tools on your team&#8230; but that&#8217;s another article. <img src='http://www.managedmayhem.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I must confess that I&#8217;m writing this from the perspective of a guy who has invested a lot of time into a <a href="http://www.adobe.com/products/coldfusion/" target="_blank">specific technology</a>, and is now having a difficult time getting work in that specialization. So take what I&#8217;m about to say from that context.</p>
<p>Perhaps a bit idealistic of me here, but why don&#8217;t more companies focus on forming great teams with the people that they hire rather than focusing only on hiring for a specific tool? Do you hire the carpenter, or do you hire Ryobi, Craftsman, Stanley, and Makita? Maybe it&#8217;s a symptom of the &#8216;keyword frenzy&#8217; &#8230; this long list of acronyms that recruiters and hiring managers are tasked with attaching to the jobs they have open. Maybe they think it is more difficult than it really is for a good developer to transition from one language to another.</p>
<p>I would think it would make sense to hire someone on your team who is a strong Sr. level developer in one technology as a Jr. level developer in another and then train them the way that you want them to be trained. This spirit of &#8216;Apprenticeship&#8217; is surprisingly lacking in this field, particularly considering the open source movement. I would totally be willing to take a pay cut for 6 months to a year if it meant working on a team with a technology that I haven&#8217;t used before, or one that I wanted to gain more confidence in.</p>
<p>I know what you&#8217;re going to say&#8230; why not hire BOTH for great teams AND the tools you need? And you might be right&#8230; but let&#8217;s say that it takes an otherwise good developer 3 months to &#8216;ramp up&#8217; with a specific technology. Now you have a guy who is essentially a Sr. level developer with strong OO abilities working in a Jr. level position for at least another 9 months. They are happy to be working, learning something new, adding to their toolbox&#8230; and so long as you are able to promote them as a Sr. within a year, they are probably going to be loyal. You&#8217;re going to have a 3 month ramp time regardless. Even if you have a developer who is already proficient in the technology you&#8217;ve employed, they are going to need to learn your own unique way of doing things. The kind of developer who would take on a position like that is probably the type who loves what they do, and will work overtime from home in order to get better at it, so you basically get double the hours from them at least in the beginning. The developer&#8217;s interest level in the technology is now based on the excitement of learning new things about it. You&#8217;re not likely to get that kind of commitment from a guy who has been developing in the same language for a decade.</p>
<p>Really my point is that in technology, tools change&#8230; sometimes frequently. Hiring for great teams makes it possible for you to move between tools while still maintaining your culture. If you hire for tools, that is all you get.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.managedmayhem.com/2010/02/11/hiring-for-great-teams-not-tools/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Coldfusion Is Not Scalable</title>
		<link>http://www.managedmayhem.com/2010/02/11/coldfusion-is-not-scalable/</link>
		<comments>http://www.managedmayhem.com/2010/02/11/coldfusion-is-not-scalable/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 14:46:45 +0000</pubDate>
		<dc:creator>Jim Rising</dc:creator>
		
		<category><![CDATA[Cold Fusion]]></category>

		<category><![CDATA[Geek'n Out]]></category>

		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.managedmayhem.com/?p=179</guid>
		<description><![CDATA[Even after 12 years of developing enterprise ColdFusion applications, I&#8217;m still amazed that I hear statements like this. I recently left a job where I helped to build a highly scalable application for the financial industry using CF. Our team used EXTjs, MySql, and Railo as the CF parser. I am still &#8216;invested&#8217; in this [...]]]></description>
			<content:encoded><![CDATA[<p>Even after 12 years of developing enterprise ColdFusion applications, I&#8217;m still amazed that I hear statements like this. I recently left a job where I helped to build a highly scalable application for the financial industry using CF. Our team used EXTjs, MySql, and Railo as the CF parser. I am still &#8216;invested&#8217; in this project, and so I was talking with the COO yesterday and he mentioned that there was another developer they were talking with who said &#8230; &#8216;Coldfusion is not scalable&#8217;. No explanation given&#8230; just that it wasn&#8217;t scalable. I was actually a bit irritated, and so I asked the COO to just ask him &#8216;Why?&#8217;.</p>
<p>The enterprise versions of <a href="http://www.adobe.com/products/coldfusion/?promoid=BQSVB" target="_blank">Adobe Coldfusion</a>, <a href="http://www.getrailo.com" target="_blank">Railo</a>, and <a href="http://www.openbluedragon.org/" target="_blank">OpenBlueDragon</a> all come with built in clustering using J2EE session management. Adobe&#8217;s version 9 comes with Hibernate support built-in&#8230; and Railo is soon to follow suit. Companies like Etrade, NASA, GoldLeaf, Caterpillar&#8230; all use ColdFusion. All of the parsers support enterprise DBMs like Oracle, MSSQL, Postgres, and MySql. All of the parsers come with a form of memory caching.</p>
<p>My only &#8216;guess&#8217; is that he&#8217;s possibly talking about it not being financially scalable. Perhaps he doesn&#8217;t know that there are now 3 different open source CF parsers available? (<a href="http://www.openbluedragon.org/" target="_blank">openBlueDragon</a>, <a href="http://www.getrailo.com" target="_blank">Railo</a>, <a href="http://www.smithproject.org/" target="_blank">Smith</a>) Part of the reason why MySpace moved away from Coldfusion was primarily a licensing issue. Adobe ColdFusion licenses are not cheap, but they are justifiable. Even if he was talking about a financial scalability issue due to licensing&#8230; it&#8217;s just something that you build into your business model on the front end to make sure that you have the money available either through investment or financing.</p>
<p>Either way, we had already addressed the financial scalability issue by choosing Railo as the parser, and I built in my own clustered session management using in memory sessions backed up by persistent sessions in MySql. Combined with sticky sessions in Apache, a front end load balancer and simple MySql replication, and you have a pretty solid HA setup. It&#8217;s not J2EE, but it worked. We were also planning on rolling it into the cloud when we released it into production, and so those MySql servers would have had up to 32GB of RAM and 8 processor cores available to each of them (vertical scalability), with the web servers being horizontally scalable as much as needed. Down the road we could have always moved to MySql Clustering when it was actually needed, giving us true horizontal scalability. I&#8217;d say that&#8217;s pretty scalable.</p>
<p>My point is that it really is not the language that makes an application scalable. Certain tools can make it easier (Enterprise CF vs. Standard) &#8230; but it is really dependent on how the application is designed in the first place. Most of the HA scalability issues can (and should) be mitigated to the network and operating system layers rather than handling them within the application layer anyhow. Saying &#8216;Coldfusion is not scalable&#8217; seems to me to be a real misunderstanding of how highly available applications are really built.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.managedmayhem.com/2010/02/11/coldfusion-is-not-scalable/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Multiple Browser Testing</title>
		<link>http://www.managedmayhem.com/2010/02/10/multiple-browser-testing/</link>
		<comments>http://www.managedmayhem.com/2010/02/10/multiple-browser-testing/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 05:28:23 +0000</pubDate>
		<dc:creator>Jim Rising</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.managedmayhem.com/?p=163</guid>
		<description><![CDATA[This article really just serves as some notes for multiple browser testing&#8230; I will clean it up later if I have time.  
http://tredosoft.com/Multiple_IE
(abandonware)
Issues with IE Conditional Comments
http://www.russellheimlich.com/blog/walkthrough-setup-multiple-ie-virtual-machines-on-a-mac/
http://www.microsoft.com/downloads/details.aspx?FamilyId=21EABB90-958F-4B64-B5F1-73D0A413C8EF&#38;displaylang=en
http://lassauge.free.fr/qemu/
http://www.agileapproach.com/blog-entry/need-multiple-ie-clients-mac-linux-run-virtual-box
http://blog.ryanparman.com/2009/06/30/run-ie6-ie7-ie8-images-virtualbox-macosx/
https://browserlab.adobe.com/index.html?sdid=EWRNK&#38;
Very sweet&#8230; free&#8230; only requires an adobe login. Tests for IE 6-8 XP, Firefox 2-3.5 on OSX and XP, Chrome 3.0 (XP), Safari 3 and 4.
http://www.webdesignerdepot.com/2009/03/microsoft-announces-superpreview-for-ie-browser-testing/
http://www.sitevista.com/
http://www.browsercam.com/
http://ipinfo.info/netrenderer/
http://browsershots.org/
]]></description>
			<content:encoded><![CDATA[<p>This article really just serves as some notes for multiple browser testing&#8230; I will clean it up later if I have time. <img src='http://www.managedmayhem.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>http://tredosoft.com/Multiple_IE<br />
(abandonware)<br />
Issues with IE Conditional Comments</p>
<p>http://www.russellheimlich.com/blog/walkthrough-setup-multiple-ie-virtual-machines-on-a-mac/</p>
<p>http://www.microsoft.com/downloads/details.aspx?FamilyId=21EABB90-958F-4B64-B5F1-73D0A413C8EF&amp;displaylang=en</p>
<p>http://lassauge.free.fr/qemu/</p>
<p>http://www.agileapproach.com/blog-entry/need-multiple-ie-clients-mac-linux-run-virtual-box</p>
<p>http://blog.ryanparman.com/2009/06/30/run-ie6-ie7-ie8-images-virtualbox-macosx/</p>
<p>https://browserlab.adobe.com/index.html?sdid=EWRNK&amp;<br />
Very sweet&#8230; free&#8230; only requires an adobe login. Tests for IE 6-8 XP, Firefox 2-3.5 on OSX and XP, Chrome 3.0 (XP), Safari 3 and 4.</p>
<p>http://www.webdesignerdepot.com/2009/03/microsoft-announces-superpreview-for-ie-browser-testing/</p>
<p>http://www.sitevista.com/</p>
<p>http://www.browsercam.com/</p>
<p>http://ipinfo.info/netrenderer/</p>
<p>http://browsershots.org/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.managedmayhem.com/2010/02/10/multiple-browser-testing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web Developer Toolbar</title>
		<link>http://www.managedmayhem.com/2010/02/10/web-developer-toolbar/</link>
		<comments>http://www.managedmayhem.com/2010/02/10/web-developer-toolbar/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 04:46:47 +0000</pubDate>
		<dc:creator>Jim Rising</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Geek'n Out]]></category>

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

		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.managedmayhem.com/?p=157</guid>
		<description><![CDATA[By far the coolest add-on for firefox I&#8217;ve seen for developers since firebug. It&#8217;s also available for Flock and Seamonkey.

Web Developer Toolbar
This thing gives you all sorts of information about the page that you&#8217;re viewing. Some of the toys available:

Line Guides
Ruler
Display Div Order
Display Element Information
Resize Window
Dom Inspector
Validation tools for CSS, Feed, HTML, 508
Outlining of Frames, [...]]]></description>
			<content:encoded><![CDATA[<p>By far the coolest add-on for firefox I&#8217;ve seen for developers since <a href="http://getfirebug.com/" target="_blank">firebug</a>. It&#8217;s also available for Flock and Seamonkey.</p>
<p><a href="http://chrispederick.com/work/web-developer/" target="_blank"><img class="alignnone size-full wp-image-158" title="toolbar" src="http://www.managedmayhem.com/wp-content/uploads/2010/02/toolbar.png" alt="toolbar" width="333" height="204" /><br />
<a href="http://chrispederick.com/work/web-developer/" target="_blank">Web Developer Toolbar</a></a></p>
<p>This thing gives you all sorts of information about the page that you&#8217;re viewing. Some of the toys available:</p>
<ul>
<li>Line Guides</li>
<li>Ruler</li>
<li>Display Div Order</li>
<li>Display Element Information</li>
<li>Resize Window</li>
<li>Dom Inspector</li>
<li>Validation tools for CSS, Feed, HTML, 508</li>
<li>Outlining of Frames, Headings, Links, Tables, Block Level Elements, Positioned Elements</li>
<li>Display Image File Sizes, dimensions, paths</li>
<li>Disable CSS, Javascript</li>
<li>Inline editing of Html and CSS</li>
</ul>
<p>There are a ton of other features&#8230; well worth the donation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.managedmayhem.com/2010/02/10/web-developer-toolbar/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Convention over Configuration</title>
		<link>http://www.managedmayhem.com/2010/02/10/convention-over-configuration/</link>
		<comments>http://www.managedmayhem.com/2010/02/10/convention-over-configuration/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 04:03:10 +0000</pubDate>
		<dc:creator>Jim Rising</dc:creator>
		
		<category><![CDATA[Cold Fusion]]></category>

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

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

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

		<category><![CDATA[Web Development]]></category>

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

		<guid isPermaLink="false">http://www.managedmayhem.com/?p=153</guid>
		<description><![CDATA[I&#8217;m noticing a trend&#8230; and I&#8217;m liking it. I&#8217;ve been working with cakePHP &#8230; and they have a wonderful way of causing you to want to name things a certain way so that you don&#8217;t have to fiddle with a bunch of configuration files&#8230; Coldbox (which I love!) has the same thinking behind it&#8230; but [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m noticing a trend&#8230; and I&#8217;m liking it. I&#8217;ve been working with <a href="http://www.cakephp.org" target="_blank">cakePHP</a> &#8230; and they have a wonderful way of causing you to want to name things a certain way so that you don&#8217;t have to fiddle with a bunch of configuration files&#8230; <a href="http://www.coldbox.org/" target="_blank">Coldbox</a> (which I love!) has the same thinking behind it&#8230; but still has a nasty mess of xml files that you wind up needing to hoark with.</p>
<p>In <a href="http://www.cakephp.org" target="_blank">CakePHP</a> &#8230; your database tables, models, controllers and views are all linked by the naming convention that is used&#8230;</p>
<ul>
<li>Database table: &#8220;dogs&#8221;</li>
<li>Model class: &#8220;Dog&#8221;, found at /app/models/dog.php</li>
<li>Controller class: &#8220;DogsController&#8221;, found at  /app/controllers/dogs_controller.php</li>
<li>View template, found at /app/views/dogs/index.ctp</li>
</ul>
<p>It even has a cool little &#8216;inflector&#8217; class that will take a string and pluralize it for you if you need help:</p>
<p>Example: <code>Inflector::pluralize('dog')</code> returns  &#8220;dogs&#8221;.</p>
<p>Neat.</p>
<p>I remember what a pain <a href="http://www.fusebox.org" target="_blank">Fusebox</a> used to be &#8230; one of my biggest complaints about the framework was that it was so laden with XML configuration files everywhere!</p>
<p><a href="http://www.coldbox.org" target="_blank">Coldbox</a> still has quite a bit of setup you need to go through using XML, but similar to the way that <a href="http://www.fusebox.org/" target="_blank">Fusebox</a> has transitioned over time (I started with <a href="http://www.fusebox.org" target="_blank">Fusebox</a> at version 2!)&#8230; all of your models, views, and controllers (handlers) are CFC object based rather than dealing primarily in XML.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.managedmayhem.com/2010/02/10/convention-over-configuration/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MAMP and Cold Fusion Tutorial</title>
		<link>http://www.managedmayhem.com/2010/02/10/mamp-and-cold-fusion-tutorial/</link>
		<comments>http://www.managedmayhem.com/2010/02/10/mamp-and-cold-fusion-tutorial/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 22:18:34 +0000</pubDate>
		<dc:creator>Jim Rising</dc:creator>
		
		<category><![CDATA[Cold Fusion]]></category>

		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.managedmayhem.com/?p=150</guid>
		<description><![CDATA[I recently re-installed OSX on my mbp &#8230; and decided to look into a more integrated approach for my development environment. Since I&#8217;m developing in PHP as well as CF, I opted to pickup MAMP, which is a packaged lamp-ish type stack installer and configuration manager for Apache, MySql, and PHP on Mac. There is [...]]]></description>
			<content:encoded><![CDATA[<p>I recently re-installed OSX on my mbp &#8230; and decided to look into a more integrated approach for my development environment. Since I&#8217;m developing in PHP as well as CF, I opted to pickup <a href="http://www.mamp.info/en/index.html" target="_blank">MAMP</a>, which is a packaged lamp-ish type stack installer and configuration manager for Apache, MySql, and PHP on Mac. There is a free version, but I decided to get Mamp-Pro because I like using virtual hosts, and it&#8217;s such a good product that it needs to be supported.</p>
<p><a href="http://blog.flashgen.com/" target="_blank">Mike Jones</a> has a great <a href="http://blog.flashgen.com/2009/06/16/configuring-coldfusion-mamp-pro/" target="_blank">video tutorial </a>for CF8 that helped me get CF9 up and running under MAMP.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.managedmayhem.com/2010/02/10/mamp-and-cold-fusion-tutorial/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Single OCD seeking Same for occasional hookup</title>
		<link>http://www.managedmayhem.com/2010/02/09/single-ocd-seeking-same-for-occasional-hookup/</link>
		<comments>http://www.managedmayhem.com/2010/02/09/single-ocd-seeking-same-for-occasional-hookup/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 02:22:52 +0000</pubDate>
		<dc:creator>Jim Rising</dc:creator>
		
		<category><![CDATA[Project Management]]></category>

		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.managedmayhem.com/?p=148</guid>
		<description><![CDATA[I saw this posted on a job board today for a web designer looking for a PHP coder.
&#8220;I need someone organized and responsive above all else. I&#8217;m talking the type of guy (or girl) who checks email every 20 minutes.&#8221;
I thought it was funny&#8230; because I&#8217;m diligently trying to reduce the number of interruptions to [...]]]></description>
			<content:encoded><![CDATA[<p>I saw this posted on a job board today for a web designer looking for a PHP coder.</p>
<p>&#8220;I need someone organized and responsive above all else. I&#8217;m talking the type of guy (or girl) who checks email every 20 minutes.&#8221;</p>
<p>I thought it was funny&#8230; because I&#8217;m diligently trying to reduce the number of interruptions to my workflow by only initiating and responding to contact via email, chat, and phone calls during specific periods of the day. You might be &#8216;responsive&#8217;, but you can&#8217;t check your email every 20 minutes and be productive. I think this guy is looking for a support tech or project manager.</p>
<p>The problem with working with this type of client in this way is that it never forces them to become more organized themselves. I have burned out on these sorts of babysitter relationships before&#8230; and try to be very careful not to take them on anymore.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.managedmayhem.com/2010/02/09/single-ocd-seeking-same-for-occasional-hookup/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tab Dump 02/09/2010</title>
		<link>http://www.managedmayhem.com/2010/02/09/tab-dump-02092010/</link>
		<comments>http://www.managedmayhem.com/2010/02/09/tab-dump-02092010/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 02:09:36 +0000</pubDate>
		<dc:creator>Jim Rising</dc:creator>
		
		<category><![CDATA[Geek'n Out]]></category>

		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.managedmayhem.com/?p=146</guid>
		<description><![CDATA[http://www.52framework.com/
Awesome Html5 / CSS3 framework! Thank you Tyson Cadenhead for posting this on Facebook. I require this for home use.
http://net.tutsplus.com/
Just came across this today&#8230; where have you been all my life?
http://freelanceswitch.com/
Another great site by those guys at Envato &#8230; I&#8217;m going to keep an eye on this one.  
http://www.zend.com/en/products/studio/
Looking into some IDE bidness for [...]]]></description>
			<content:encoded><![CDATA[<p>http://www.52framework.com/<br />
Awesome Html5 / CSS3 framework! Thank you Tyson Cadenhead for posting this on Facebook. I require this for home use.</p>
<p>http://net.tutsplus.com/<br />
Just came across this today&#8230; where have you been all my life?</p>
<p>http://freelanceswitch.com/<br />
Another great site by those guys at Envato &#8230; I&#8217;m going to keep an eye on this one. <img src='http://www.managedmayhem.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>http://www.zend.com/en/products/studio/<br />
Looking into some IDE bidness for PHP.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.managedmayhem.com/2010/02/09/tab-dump-02092010/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
