<?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>Cory Collier &#187; work</title>
	<atom:link href="http://corycollier.com/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://corycollier.com</link>
	<description>Web Developer and System Administrator in Orlando, FL</description>
	<lastBuildDate>Fri, 02 Dec 2011 04:10:27 +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>Enterprise PHP Development</title>
		<link>http://corycollier.com/2011/08/enterprise-php-development/</link>
		<comments>http://corycollier.com/2011/08/enterprise-php-development/#comments</comments>
		<pubDate>Sun, 21 Aug 2011 21:02:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=658</guid>
		<description><![CDATA[While working at EZYield, we&#8217;ve come across a shortage of qualified Enterprise Level PHP Developers. While that term might sound a bit nebulous, there&#8217;s really just a handful of things that separate the men from the boys in PHP. Honestly, those traits really aren&#8217;t even that hard to learn. They&#8217;re contradictory to the &#8220;rockstar&#8221; persona [...]]]></description>
			<content:encoded><![CDATA[<p>While working at <a href="http://ezyield.com">EZYield</a>, we&#8217;ve come across a shortage of qualified Enterprise Level PHP Developers. While that term might sound a bit nebulous, there&#8217;s really just a handful of things that separate the men from the boys in PHP. Honestly, those traits really aren&#8217;t even that hard to learn. They&#8217;re contradictory to the &#8220;rockstar&#8221; persona so commonly heralded by developers though; which is likely why there aren&#8217;t enough good developers around.</p>
<p>Basically, there&#8217;s 4 things that make a developer ready for the big leagues: design patterns, unit testing, versioning systems, and experience. </p>
<p><a href="http://sourcemaking.com/design_patterns">Design Patterns</a> can&#8217;t be emphasized enough. Almost every situation a typical developer has encountered, someone else has already solved. While the solution was likely in a different language, the concepts are universal. If a candidate cannot answer questions about basic design patterns like Singleton and Factory, they&#8217;re ability to adequately handle the responsibilities of a large scale application is seriously in question. </p>
<p><a href="http://pear.phpunit.de/">Unit Testing</a> is an equally critical skill for any developer to understand. 90% of developers I interview typically work alone on small projects. this scenario doesn&#8217;t reveal the necessity for unit testing. Imagine that you work with 50 other developers on a project that&#8217;s hundreds of thousands of lines (if not millions) of code that&#8217;s distributed across hundreds of servers over multiple continents. Your amazing class that handles some unique circumstance will be modified by someone else who didn&#8217;t know you&#8217;re awesome intentions. How will you ensure your code works as intended without automated testing? Unit testing ensures that the concepts that sparked the intent of some software are held for posterity</p>
<p>Versioning systems are another area of knowledge that are surprisingly deficient in PHP Developers. <a href="http://www.nongnu.org/cvs/">CVS</a>, <a href="http://subversion.tigris.org/">SVN</a>, <a href="http://www.perforce.com/">Perforce</a>, <a href="http://mercurial.selenic.com/">Mercurial</a>, and (preferably) <a href="http://git-scm.com/">Git</a> are software packages that any software business relies on. Not knowing the concepts of distributed software versioning software is like not knowing how to push the brake pedal on your car. You might get pretty far without needing it, but eventually you&#8217;re going to get into a situation which will crush you. </p>
<p>Experience. Nothing substitutes this. The brilliant young developer can make an awesome idea for his own company. He cannot serve a large company with existing ideas any better than a mediocre developer that listens to what he&#8217;s told to do. Software development is still more of an art than a science. Actually, it might be better denoted as a trade. Experienced artisans are able to accomplish things that younger folks cannot. </p>
<p>To re-iterate the point. Know design patterns, know unit testing, know version control software, and keep doing it. If you&#8217;ve been developing for years and are short on some of these points, take the time to learn. These skills are paramount and no one skill makes up for another. They are all indispensable in separating junior developers from enterprise level developers.</p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2011/08/enterprise-php-development/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Keep Your SSH Identity</title>
		<link>http://corycollier.com/2011/04/keep-your-ssh-identity/</link>
		<comments>http://corycollier.com/2011/04/keep-your-ssh-identity/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 02:28:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[ForwardAgent]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[identity]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ssh-agent]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=620</guid>
		<description><![CDATA[So, I&#8217;ve been doing a ton of stuff lately on a ton of servers. Almost all of this involves using git to clone repositories into a multitude of servers. The problem with this, is that I&#8217;m limited to a single SSH key for all of my git clones. This is tricky, since shelling into a [...]]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;ve been doing a ton of stuff lately on a ton of servers. Almost all of this involves using git to clone repositories into a multitude of servers. The problem with this, is that I&#8217;m limited to a single SSH key for all of my git clones. This is tricky, since shelling into a remote box doesn&#8217;t give you access to your remote key by default. But you can still keep your SSH identity &#8230;</p>
<p>There&#8217;s two ways to go about keeping the identity you require through multiple single-level-deep connections. That basically means, you can keep your SSH identity from one box to another. If you hop from one box to another and another, I can&#8217;t help you. There&#8217;s probably a way to do it. I don&#8217;t know it.</p>
<p>Anyways: TWO ways to do this. Both of these options assume you&#8217;ve got ssh-agent running on the machine you wish to transfer your identity from. To get this running, do the following:<br />
<code>eval `ssh-agent`<br />
ssh-add</code></p>
<p>This ensures the ssh-agent daemon is running, to provide an identity when you request it to be forwarded. This also assumes you&#8217;ve <a href="http://corycollier.com/2009/01/ssh-without-password/">created a public key</a> to transfer your identity.</p>
<p>So, the ways to do this are:<br />
1. Use the -A flag when you shell into a box.<br />
This basically means whenever you shell into somewhere, you add <code>-A</code> to your ssh command. An example would be:<br />
<code>ssh -A username@awesome.server.com</code></p>
<p>2. Set the <code>ForwardAgent</code> flag to &#8220;yes&#8221; in  your <code>~/.ssh/config</code> file.<br />
This is a synonym for the <code>-A</code> flag in an ssh command</p>
<p>Both of these options allow you to transfer the key you hold on one machine, to another. Don&#8217;t try to use ssh-agent on the machine you connect into though. If you do, you&#8217;ll lose your original identity.</p>
<p>So, all together now:<br />
<code><br />
eval `ssh-agent`<br />
ssh-add<br />
ssh -A username@awesome.server.com</code></p>
<p>Questions are always welcome <img src='http://corycollier.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2011/04/keep-your-ssh-identity/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Spam Links in Head Tag of Drupal 5</title>
		<link>http://corycollier.com/2011/01/spam-links-in-head-tag-of-drupal-5/</link>
		<comments>http://corycollier.com/2011/01/spam-links-in-head-tag-of-drupal-5/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 18:41:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[drupal5]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=546</guid>
		<description><![CDATA[Recently while at work at Phase2Technology, we got a report of bogus links being returned when searching for their site.  After doing a quick search of the terms that should return their site, I got confirmation the issue was legit: What was weird though, was that when I went to the page and viewed source, [...]]]></description>
			<content:encoded><![CDATA[<p>Recently while at work at <a href="http://www.phase2technology.com" rel="work">Phase2Technology</a>, we got a report of bogus links being returned when searching for their site.  After doing a quick search of the terms that should return their site, I got confirmation the issue was legit:</p>
<p><a href="http://corycollier.com/wp-content/uploads/2011/01/spam-google-results1.jpg"><img class="size-full wp-image-563 alignnone" title="spam-google-results" src="http://corycollier.com/wp-content/uploads/2011/01/spam-google-results1.jpg" alt="" width="453" height="121" /></a></p>
<p>What was weird though, was that when I went to the page and viewed source, there was nothing to indicate the issue. None of the links appeared at all. A coworker noted that it might only be occuring for bots, and not for regular users. After installing User-Agent Switcher for Firefox, I could confirm that this only happened when the user-agent was a known spider:</p>
<p><a href="http://corycollier.com/wp-content/uploads/2011/01/spam-google-results-links.jpg"><img class="alignnone size-full wp-image-567" title="spam-google-results-links" src="http://corycollier.com/wp-content/uploads/2011/01/spam-google-results-links.jpg" alt="" width="366" height="402" /></a></p>
<p>So I dumped the database to a flat file and started regex searching for script tags, base64_encode, or anything that seemed out of the ordinary for a Drupal 5 site. Nothing came up. Finally, I did an svn status on the site itself, and noted that one file was shown as modified, that should not have been:<br />
<code>includes/cache.inc</code></p>
<p>I did an svn diff on that file and noted the following:<br />
<code>+error_reporting(0);eval(base64_decode(</code></p>
<p>Basically, someone was able to modify the <code>cache.inc</code> file to run foreign code. I would have just done an <code>svn revert</code> on the file, but sometimes developers will make local modifications to core (bad, I know, but it&#8217;s uncommon). So, instead I merely deleted that line in the file with vim.</p>
<p>I would have left this up to google for folks to find an answer to, but apparently I&#8217;m the only one who&#8217;s posting the answer to this.</p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2011/01/spam-links-in-head-tag-of-drupal-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What I Use</title>
		<link>http://corycollier.com/2009/04/what-i-use/</link>
		<comments>http://corycollier.com/2009/04/what-i-use/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 19:14:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=467</guid>
		<description><![CDATA[It occurred to me recently, that there&#8217;s a bit of variance in what developers use. For many folks not used to writing code, the availability of software to help write software can be a bit overwhelming. For that reason, I&#8217;m writing the stuff that makes me tick. A disclaimer: I primarily use Mac OS X (Leopard). I [...]]]></description>
			<content:encoded><![CDATA[<p>It occurred to me recently, that there&#8217;s a bit of variance in what developers use. For many folks not used to writing code, the availability of software to help write software can be a bit overwhelming. For that reason, I&#8217;m writing the stuff that makes me tick.</p>
<p>A disclaimer: I primarily use <a href="http://www.apple.com/macosx/">Mac OS X (Leopard)</a>. I love using <a href="http://www.ubuntu.com/">Ubuntu</a>, but it&#8217;s not where I get the bulk of my work done. So, here&#8217;s my Mac apps:</p>
<h3>Coding:</h3>
<p><a href="http://eclipse.org/pdt"><img class="alignleft size-full wp-image-474" title="Eclipse PDT" src="http://corycollier.com/wp-content/uploads/2009/04/82286-eclipse_icon_2.png" alt="Eclipse PDT" width="128" height="128" /></a><strong>Eclipse PDT</strong>. I write primarily in PHP, and there&#8217;s just no better app out there for big PHP development. Something to note about Eclipse though, don&#8217;t use more than what comes out of the box. Eclipse can be buggy as hell, so don&#8217;t add all the plugins you can find to it. Eclipse is for writing code, not for committing SVN updates. Remember that, and you&#8217;ll love Eclipse as much as me.<br />
<strong><a href="http://macromates.com/"><img class="alignleft size-full wp-image-475" title="TextMate" src="http://corycollier.com/wp-content/uploads/2009/04/textmate-logo.png" alt="TextMate" width="128" height="123" /></a>TextMate</strong>. After having said all of that, there&#8217;s some times when I want a text editor that&#8217;s light, and gets the code updated quickly. Eclipse is a memory beast, and if you&#8217;re strapped for RAM, you won&#8217;t be able to run Photoshop, Illustrator, AND Eclipse at the same time. For that reason, TextMate is awesome.<br />
<strong><a href="http://www.vim.org/"><img class="alignleft size-full wp-image-476" title="vim" src="http://corycollier.com/wp-content/uploads/2009/04/vim_logo.png" alt="vim" width="128" height="128" /></a>vim</strong>. Finally, the most lean of all editors is vi. I use vim, since it has a few extra things I really appreciate. The learning curve on vim is hell, but once you&#8217;re used to it you won&#8217;t look back.</p>
<h3>Graphics:</h3>
<p><strong><a href="http://www.adobe.com/"><img class="alignleft size-full wp-image-486" title="Illustrator" src="http://corycollier.com/wp-content/uploads/2009/04/adobe_illustrator_cs4.png" alt="Illustrator" width="128" height="127" /></a>Adobe CS 4</strong>. I&#8217;ve tried all of the substitutes out there. But none of them hold a candle to Adobe&#8217;s mismanaged, bloated, overpriced Creative Suite. Photoshop and Illustrator are indispensable tools if you&#8217;re doing web graphics (or any other graphics for that matter)</p>
<h3>Communication:</h3>
<p><strong><a href="http://adiumx.com/"><img class="alignleft size-full wp-image-477" title="Adium" src="http://corycollier.com/wp-content/uploads/2009/04/adium_logo-300x300.png" alt="Adium" width="128" height="128" /></a>Adium</strong>. I don&#8217;t know of an IM client that comes close to Adium. I can be logged into all of the social networks I use at one time, in one window, and it doesn&#8217;t cost me anything to do it. That beats the hell out of anything else out there. Hopefully, there will be some challenges to this in the future. But for now, this Mac-only app is the definitive way to do IM.<br />
<strong><a href="http://www.tweetdeck.com/beta/"><img class="alignleft size-full wp-image-478" title="TweetDeck" src="http://corycollier.com/wp-content/uploads/2009/04/tweet_deck.png" alt="TweetDeck" width="128" height="128" /></a>TweetDeck</strong>. Twitter is definitely mainstream these days. TweetDeck lets me create groups out of the people I follow, see replies to me (public and direct), search terms, and see whats trending on Twitter, all in the same window. That&#8217;s pretty awesome too. **NOTE** I&#8217;m starting to try out Seesmic, and it&#8217;s pretty good too. Both of these apps are built on Adobe&#8217;s AIR platform, so everyone can get a taste.<br />
<a href="http://www.apple.com/macosx/features/mail.html"><img class="alignleft size-full wp-image-479" title="Apple Mail" src="http://corycollier.com/wp-content/uploads/2009/04/21152_scr.png" alt="Apple Mail" width="128" height="128" /></a><strong>Apple Mail</strong>. This might seem a bit obvious, but I wanted to give Apple some credit here. Apple Mail is an awesome mail client that meets almost every need I have, out of the box. I use the <a href="http://www.daneharnett.com/widemail/">WideMail</a> app to give it just the right tweaking I need out of it.</p>
<h3>Local Server Software:</h3>
<p><a href="http://www.macports.org/"><img class="alignleft size-full wp-image-480" title="MacPorts" src="http://corycollier.com/wp-content/uploads/2009/04/macports-logo-top.png" alt="MacPorts" width="183" height="70" /></a>MacPorts. I tend to need some esoteric stuff from my LAMP environment, so I use MacPorts as a package manager to customize the variables of my development environment to my liking. With MacPorts its usually a trivial issue to install Memcache, Apache, MySQL, PostgreSQL, PHP, etc.. I&#8217;ll usually even change the version of rsync and vim using the MacPorts package manager. If you don&#8217;t know about MacPorts, you&#8217;re definitely missing out.</p>
<h3>Miscelaneous:</h3>
<p><strong><a href="http://blacktree.com/"><img class="alignleft size-full wp-image-481" title="Quicksilver" src="http://corycollier.com/wp-content/uploads/2009/04/icn_quicksilver_128.png" alt="Quicksilver" width="128" height="128" /></a>Quicksilver</strong>. Whenever I setup my Mac, Quicksilver is always the very first thing I install. Once you&#8217;ve got a mind for using the shortcuts in Quicksilver, you will never ever ever go back to the old school hunt-and-peck way of lanching apps, and performing tasks.<br />
<a href="http://blacktree.com/"><strong>Visor</strong></a>. Another gem from Blacktree: Visor allows the terminal to always be quickly available to me, but also not intrude on the desktop. A lot of times, I don&#8217;t even change the default terminal theme (just change the font to Monaco 12pt Anti-Aliased).<br />
<strong><a href="http://www.transmissionbt.com/"><img class="alignleft size-full wp-image-482" title="Transmission" src="http://corycollier.com/wp-content/uploads/2009/04/transmission-logo-new.png" alt="Transmission" width="128" height="128" /></a>Transmission</strong>. Transmission is the greatest bit-torrent application around. It&#8217;s light and gets to the point. Other apps try to push content and channels. Transmission just downloads the torrents. Awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2009/04/what-i-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freelancing In The New Economy</title>
		<link>http://corycollier.com/2009/03/freelancing-in-the-new-economy/</link>
		<comments>http://corycollier.com/2009/03/freelancing-in-the-new-economy/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 06:14:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[contract]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[independence]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=410</guid>
		<description><![CDATA[Here&#8217;s my Ignite Orlando presentation. First, the video (recorded for practice), then my slides, and finally the basic text of my talk. Freelancing in the New Economy from Cory Collier on Vimeo Ignite Orlando View more presentations from corycollier. Freelance in the New Economy As cliche as it might sound, we live in new economic [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s my Ignite Orlando presentation. First, the video (recorded for practice), then my slides, and finally the basic text of my talk.<br />
<object width="550" height="360" data="http://vimeo.com/moogaloop.swf?clip_id=3481184&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=3481184&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /></object><br />
<a href="http://vimeo.com/3481184">Freelancing in the New Economy</a> from <a href="http://vimeo.com/user1388338">Cory Collier</a> on <a href="http://vimeo.com">Vimeo<span id="more-410"></span></a></p>
<div id="__ss_1103826" style="width: 525px; text-align: left;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" title="Ignite Orlando" href="http://www.slideshare.net/corycollier/ignite-orlando?type=powerpoint">Ignite Orlando</a><object width="525" height="355" data="http://static.slideshare.net/swf/ssplayer2.swf?doc=igniteorlando-090304235345-phpapp01&amp;stripped_title=ignite-orlando" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=igniteorlando-090304235345-phpapp01&amp;stripped_title=ignite-orlando" /><param name="allowfullscreen" value="true" /></object></p>
<div style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/corycollier">corycollier</a>.</div>
</div>
<h1 class="western">Freelance in the New Economy</h1>
<p>As cliche as it might sound, we live in new economic times. Because of this, being a freelance web developer / designer is a bit different than it was, even 6 months ago. Gone are the days when client&#8217;s pay exorbitant amounts of cash for trivial work. Clients will evaluate you, and your work, and make decisions that benefit themselves.</p>
<h1 class="western">Prioritize Clients</h1>
<p>Knowing this is powerful. By knowing this, you can make the conscious effort to prioritize your current clients. You do not receive the same benefits from all of your clients. They are inequal.</p>
<h1 class="western">Evaluate Current Clients</h1>
<p>So, evaluate them. After all, they&#8217;ll be evaluating you. As a freelance &#8216;web guy&#8217;, you&#8217;ll possibly be the most expendable asset of your client&#8217;s team. They&#8217;ll likely make a list of pros and cons about you. That&#8217;s very fair, and you should make the same list about each of your clients.</p>
<h1 class="western">Figure Out Who Is Awesome</h1>
<p>Typically awesome clients are stable, pay well, pay on time, and have potential for more work. A lot of those assets tie in to each other. By a client being stable, there is a bit of an implicit expectation that they will pay on time.</p>
<h1 class="western">Figure Out Who Sucks</h1>
<p>This is essentially the opposite of how a client can be obvious. Businesses who are leveraging their property as capital to make payroll are likely not going to pay you on time. However, add to that, the neediness of a client. A client who argues for hours over the hue of red in their logo, is likely going to drain your ability to satisfy other clients.</p>
<h1 class="western">Keep One Main Client</h1>
<p>This isn&#8217;t to say that you should put all of your eggs in one basket. However, the other side of that, is don&#8217;t spread yourself so thin, that you&#8217;re killing yourself to make a decent living. For every client you have, there is some level of non-billable overhead associated with working with them. There&#8217;s a bit of acceptability in this, since that&#8217;s exactly what allows you the freelance lifestyle that you want to begin with.  Too much of this is a total drag though, and will wear you out. So, keep at least one client, who&#8217;s stable, to ensure some consistent cash flow.</p>
<h1 class="western">Keep One Interesting Client</h1>
<p>Nobody works all the time. Everyone has something outside of work they find interesting. Try to land a client that&#8217;s doing something you&#8217;d find interesting, even if you weren&#8217;t a freelancer.</p>
<h1 class="western">Find New Clients</h1>
<p>Even with all the work to keep your existing clients happy, and weed out the clients who are dragging you down, you&#8217;ll still want to get new work. No relationship lasts forever (well, work relationship). So make a conscious effort to try to predict the future.</p>
<h1 class="western">Old Skool Networking</h1>
<p>Facebook is cool, but the bar is better. Most people hire folks they trust. Trust can&#8217;t be built online. For someone to believe in your ability to get the job done, they need to know you. The only way to do that is to step away from the computer, and get to know people.</p>
<h1 class="western">U Need Communication Skillz</h1>
<p>This should be obvious, but I can&#8217;t count the number of times I&#8217;ve seen the rudest behavior from people in conversations. Don&#8217;t interrupt people. Be polite. Be friendly. Be genuine. If you&#8217;ve taken the time to meet people to build relationships with them, then take the time to listen to them. RT(f)M, in the real world, is “shutup and listen”.</p>
<h1 class="western">Use CoLab</h1>
<p>There is an awesome space available to the community to overcome some of the traditional problems associated with being a freelancer (meeting clients at Starbucks, working at home too much, getting kicked out of Panera). There&#8217;s tons of people who can provide work at CoLab. Don&#8217;t miss the amazing opportunity there.</p>
<h1 class="western">When It&#8217;s Time To Work, Do It</h1>
<p>Don&#8217;t even look at your Xbox. If you&#8217;ve got 50 hours a week of work lined up, get it done. Don&#8217;t put your work off until the last minute. If you&#8217;ve got distractions where you&#8217;re working, try to remove them. If you can&#8217;t remove those distractions, like crying babies, then work somewhere else.</p>
<h1 class="western">Don&#8217;t Be Flaky</h1>
<p>If a client is starting to suck, or the situation regarding the project your on isn&#8217;t cool, take note of it, and finish the project. There&#8217;s few instances where you&#8217;ll be able to back out of a project entirely. Keep that in mind. Plus, selling out your client is THE NUMBER ONE WAY TO GET A BAD REPUTATION. As a freelancer, you live and starve on your reputation. Once you&#8217;ve established that you&#8217;re willing to screw someone because they were a nuisance to you, 68.8234% of possible new clients will walk away.</p>
<h1 class="western">Get Productive</h1>
<p>There&#8217;s a few things that can make your working environment more productive. Silence the phone, turn off email (twitter), drink copious amounts of Monster Energy drinks and put girls in bikinis on your desktop. The world is definitely your canvas here. If you find yourself getting more code done, but doing a certain something, then do more of that.</p>
<h1 class="western">“Hustle”</h1>
<p>For those of you who went to FOWA last week, you know what I&#8217;m talking about. Actually, a lot of my talk here is a bit inspired by Gary Vaynerchuk&#8217;s talk in Miami. Figure out what you want to do, and do it. Don&#8217;t be passive about it. Find what works and do it.</p>
<h1 class="western">Save Money</h1>
<p>If you can, of course. If you&#8217;re making enough money now, where you could save money, or if you&#8217;ve got expenses you could cut (and not screw your business), do it. Find a way to save money while you can. Inevitably, there will be times where cash is no longer coming in. If you can&#8217;t weather the dry times with clients, you won&#8217;t last in freelancing.</p>
<h1 class="western">Don&#8217;t Wait For Government</h1>
<p>I know I&#8217;m showing some of my politics here, but there&#8217;s still a valid (bi-partisan) point to be made. Nobody is going to save you from bad clients, slow cash-flow, or your own lack of knowledge. Having a victim mindset will only ensure your failure. Being a freelancer is being an entrepreneur. You have zero job stability (so, remember to save)</p>
<h1 class="western">Don&#8217;t Burn Out</h1>
<p>Don&#8217;t book 70hrs of work / week.</p>
<h1 class="western">Get Inspired</h1>
<p>Inspiration is what makes you come back. If you&#8217;re running low on inspiration, then your work will reflect it. Even worse, your life will reflect it. Don&#8217;t hate your job.</p>
<h1 class="western">Get More Info</h1>
<p>Don&#8217;t listen to anything I just told you. I&#8217;ve got 7 weeks total of freelance experience ever. I know a couple of things, but mostly I pick up stuff from Google. Freelanceswitch is a great resource for new / experienced freelancers out there. They&#8217;ve got a great podcast as well, which has been awesome reference material for me. Ask people you know about how they&#8217;re staying afloat. At least you&#8217;ll be networking <img src='http://corycollier.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2009/03/freelancing-in-the-new-economy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Updates From The Free World</title>
		<link>http://corycollier.com/2009/03/updates-from-the-free-world/</link>
		<comments>http://corycollier.com/2009/03/updates-from-the-free-world/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 19:19:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[contractor]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[independent]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=417</guid>
		<description><![CDATA[I&#8217;ve been a freelance web developer for a week now. There&#8217;s been some ups and downs about it all. I still haven&#8217;t gotten any money, but I also haven&#8217;t head to deal with rush hour traffic either. I&#8217;ve had a few opportunities that look promising, but I&#8217;m still trying to be careful about how I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been a freelance web developer for a week now. There&#8217;s been some ups and downs about it all. I still haven&#8217;t gotten any money, but I also haven&#8217;t head to deal with rush hour traffic either. I&#8217;ve had a few opportunities that look promising, but I&#8217;m still trying to be careful about how I spend money, and take work.</p>
<p>I filed for unemployment last week. Being a conservative guy, I can&#8217;t tell you how humbling a process that was for me. Politics aside, I do have a family to provide for. So, if President Obama is <a href="http://corycollier.com/2009/02/socialism-fail/">handing out money,</a> I&#8217;ll take it until I can get stable cash flow back in the house.</p>
<p>I have a few opportunities though. Pretty quickly after being laid off, I picked up some work from <a title="Eric Marden, the Xentek guy" href="http://xentek.net">Eric</a>. The initial project has been a bit of a learning curve about each other, but I&#8217;m pretty excited to be working with him. He&#8217;s a super smart guy who&#8217;s been around long enough to spot bullshit in advance. With my penchant for security, that&#8217;s a great trait in a partner.</p>
<p>So now I&#8217;m able to wake up and go to bed on my own terms. This week was a bit different than most though, since I managed to get my ass over to <a title="FOWA Miami" href="http://events.carsonified.com/fowa/2009/miami/content">FOWA Miami</a>. So, on Monday I was scrambling to get my shit together in advance, and drove to Miami that night. Tuesday and Wednesday were a total crap-shoot. I was out of town, working on an odd traveler&#8217;s schedule. Anyways, I guess it&#8217;s a little early to make assumptions on how the day to day things will change. </p>
<p>One of the cooler things to happen since I&#8217;ve been an <a title="Independent" href="http://corycollier.com/2008/07/independence-day/">independent</a> contractor, was being approached to speak at <a title="Ignite Orlando" href="http://www.igniteorlando.com/">Ignite Orlando</a> (Thanks <a href="http://railsenvy.com/">Gregg</a>!). The ignite concept has been floated in Orlando for a while now, and I&#8217;m glad that <a title="Dan Kinchen" href="http://www.dankinchen.com/">Dan&#8217;s</a> finally making it a reality. If you don&#8217;t know about <a title="Ignite" href="http://ignite.oreilly.com/">Ignite</a>, it&#8217;s definitely something worth checking out.</p>
<p>As cool as everything is, the one thing that still looms heavy over me now is money. I guess it&#8217;s pretty obvious. Melissa and I have no savings and we hold a good amount of debt on credit cards. One slip up, and we&#8217;ll be in a whole lot of trouble. I think there&#8217;s a lot to be said about living within your means. Lately that&#8217;s come to have a lot more meaning than it did before.</p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2009/03/updates-from-the-free-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Digs</title>
		<link>http://corycollier.com/2009/02/new-digs/</link>
		<comments>http://corycollier.com/2009/02/new-digs/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 03:01:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[opinion]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[aaron]]></category>
		<category><![CDATA[bobby]]></category>
		<category><![CDATA[chris]]></category>
		<category><![CDATA[hydra]]></category>
		<category><![CDATA[jamal]]></category>
		<category><![CDATA[jason]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[orlando]]></category>
		<category><![CDATA[parker]]></category>
		<category><![CDATA[parler]]></category>
		<category><![CDATA[push]]></category>
		<category><![CDATA[rob]]></category>
		<category><![CDATA[shayne]]></category>
		<category><![CDATA[zach]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=362</guid>
		<description><![CDATA[My second family at Hydra Studio and I have moved our office. We&#8217;ve got our own floor in the Fidelity Federal Bldg off of Court Ave in Downtown Orlando. This ends the roommate style relationship we&#8217;ve had with Push for a while. The new place is awesome, even though we&#8217;ve got a few things to [...]]]></description>
			<content:encoded><![CDATA[<p>My second family at <a title="Hydra Studio, THE preeminent Digital Agency in Orlando, FL" href="http://hydrastudio.com">Hydra Studio</a> and I have moved our office. We&#8217;ve got our own floor in the <a title="The New HYDRA Office in Downtown Orlando, FL" href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=60+N+Court+Ave,+Orlando,+FL+32801&amp;sll=37.0625,-95.677068&amp;sspn=57.292148,114.257812&amp;ie=UTF8&amp;z=17&amp;iwloc=addr">Fidelity Federal Bldg</a> off of Court Ave in Downtown Orlando. This ends the roommate style relationship we&#8217;ve had with <a title="Push, An Amazing Ad Agency in Orlando, FL" href="http://pushhere.com">Push</a> for a while. The new place is awesome, even though we&#8217;ve got a few things to button up.</p>
<p><a href="http://flickr.com/photos/zachattack/3248496055/"><img class="alignnone" title="New Office for Hydra Studio" src="http://farm4.static.flickr.com/3003/3248496055_e9e24db129.jpg?v=0" alt="" width="500" height="138" /></a></p>
<p>We&#8217;ve shared space with Push for 18 months now. We love those folks. They&#8217;re an amazing bunch of people, who I&#8217;m pretty stoked to call friends now. Friendship aside however, it was time we had our own space, to *push* our own identity. Hopefully we&#8217;ll all still see each other at <a title="Lizzy McCormack's, the Best Bar in Downtown Orlando, FL" href="http://lizzymccormacks.com/">Lizzy&#8217;s</a>. Our new office _is_ right there anyways &#8230;</p>
<p>All of the team spent a hell of a lot of time preparing the new office into something we could call home. When we got the space, it was setup for a construction company. I guess that&#8217;s a bit ironic for me, but it plain sucks for everyone else. So, we all worked our asses off to remove carpet, paint, clean, and do a million other things to make the office into something that begins to represent Hydra, the raddest digital agency in the world.</p>
<p>The whole process was a little cliche of the things you&#8217;d expect from working your balls off after a full day&#8217;s worth of regular work with co-workers. I have a bit more respect for everyone, and I definitely care a smidgeon more about everyone there. I know it sounds like a load of crap, but everyone really gave it their all, and I couldn&#8217;t be more proud of what all of us have been able to pull off. </p>
<p>The move definitely had it&#8217;s perils though. I had to dodge insane traffic to pick up equipment I dropped in the middle of 50 during rush hour. We destroyed some walls we had to put back. More than a few nerves were a little frayed from the tremendous amount of work we had to do. </p>
<p>I know I&#8217;m gonna get some shit for this: Regardless, of everyone who stands out in this whole process, Bobby Jones is definitely the man. Bobby is undoubtedly the best employer I&#8217;ve ever known. During the entire transition between offices, Bobby probably worked 80 to 100 hours on the new office. He poured himself into making the transition relatively smooth, and keeping the rest of us motivated while we helped realize his vision. The sort of stress he must have been under is impressive. What&#8217;s more impressive, is how calm and collected he remained throughout the affair. Ask <a title="Rob Zienert, PHP Developer in Orlando, FL" href="http://www.robzienert.com/">Rob</a> and Parker how many times Bobby took the late workers out to IHOP at 5:00am to feed the most dedicated of folks. I&#8217;ll probably follow up my &#8216;Folks that mean shit to me&#8217; lineup with Bobby next (even if it does give me a brown nose).</p>
<p>Anyways, a mega-huge thanks to everyone at Hydra for working your asses off doing shit you didn&#8217;t know how to do, but did it anyways. I&#8217;m honored to call all of you my coworkers, and more honored to call all of you, my friends. I&#8217;ve worked with some of the toughest people in the world. I&#8217;d trade every one of them for you guys, you&#8217;re all the best.</p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2009/02/new-digs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Michael Parler</title>
		<link>http://corycollier.com/2008/11/michael-parler/</link>
		<comments>http://corycollier.com/2008/11/michael-parler/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 03:00:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[interactivity]]></category>
		<category><![CDATA[michael parler]]></category>
		<category><![CDATA[professional]]></category>
		<category><![CDATA[user interface]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=275</guid>
		<description><![CDATA[A few months ago, I started working at Hydra Studio. The experience has certainly been the most challenging in my life. At the same time, it&#8217;s arguably one of the more rewarding jobs I&#8217;ve ever had. I&#8217;ve worked on some amazing stuff at Hydra. I&#8217;ve learned a whole lot and met some awesome people. One [...]]]></description>
			<content:encoded><![CDATA[<p>A few months ago, I started working at <a title="Hydra Studio, an Awesome Interactive Agency in Orlando, FL" href="http://hydrastudio.com">Hydra Studio</a>. The experience has certainly been the most challenging in my life. At the same time, it&#8217;s arguably one of the more rewarding jobs I&#8217;ve ever had. I&#8217;ve worked on some amazing stuff at Hydra. I&#8217;ve learned a whole lot and met some awesome people. One of those people is <a title="Michael Parler, One Bad Assed Web Guy" href="http://michaelparler.com">Michael Parler</a>.</p>
<p>I was looking for a picture of Mike, and I think this one does him justice : </p>
<p><a href="http://corycollier.com/wp-content/uploads/2008/11/michael-parler.jpg"><img class="alignnone size-full wp-image-276" title="Michael Parler" src="http://corycollier.com/wp-content/uploads/2008/11/michael-parler.jpg" alt="Michael Parler" width="320" height="432" /></a></p>
<p>To look at Mike, the word &#8216;professional&#8217; doesn&#8217;t immediately come to mind. The cliche rings true however. Mike is <em>easily</em> the most professional person I have ever met. Mike&#8217;s attention to detail and ability to create interfaces that are completely seamless is incredible.</p>
<p>You wouldn&#8217;t know it to look at his <a title="Michael Parler" href="http://michaelparler.com">website</a>, but Mike is an awesome designer / developer.</p>
<p>I can&#8217;t speak publicly about the projects we&#8217;re working on at Hydra. However, I will say that when they&#8217;re done, they will realize some of the best UI I&#8217;ve ever seen. The credit for that lies heavily with Mike. </p>
<p>Adding to why Mike is awesome: the most mundane of things don&#8217;t bore him. How many times have you worked on a project, and just glossed over some of the mundane details. Yeah, you probably don&#8217;t want to admit how many times.</p>
<p>Mike has some serious OCD, and leaves nothing to chance. I&#8217;ll admit, sometimes he&#8217;s a bit of a pain in the ass. However, for the company, and for the rest of us, his attention to detail is a lifesaver. </p>
<p>I&#8217;ve been meaning to write about some awesome folks in my life lately, and Mike gets to be the first. He&#8217;s a really cool guy, and I appreciate what he does a lot.</p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2008/11/michael-parler/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A Developer in Designer&#8217;s Clothing.</title>
		<link>http://corycollier.com/2008/07/a-developer-in-designers-clothing/</link>
		<comments>http://corycollier.com/2008/07/a-developer-in-designers-clothing/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 06:02:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=87</guid>
		<description><![CDATA[Part of my transition to independent web developer, is to put on a hat I&#8217;ve gotten used to letting someone else take care of. That would be the designer hat. :/ I&#8217;ve done some massive modifications of some of the older sites I&#8217;ve built in the past. Those sites, oconnorandtaylor.com, socons.com, and tradeproconstructionservices.com (go ahead [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://corycollier.com/wp-content/uploads/2008/07/080707-program-icons.png"><img class="alignleft size-full wp-image-88" title="TextMate, Photoshop, Flash, and Apple" src="http://corycollier.com/wp-content/uploads/2008/07/080707-program-icons.png" alt="TextMate, Photoshop, Flash, and Apple" width="288" height="302" /></a>Part of my <a title="Cory Collier is now an independent web developer" href="/2008/07/independence-day/">transition to independent web developer</a>, is to put on a hat I&#8217;ve gotten used to letting someone else take care of. That would be the <a title="Derek Bender, Designer Extraordinaire" href="http://derekbender.com">designer</a> hat.</p>
<p>:/</p>
<p>I&#8217;ve done some massive modifications of some of the older sites I&#8217;ve built in the past. Those sites, <a title="O'Connor &amp; Taylor Enterprises" href="http://oconnorandtaylor.com">oconnorandtaylor.com</a>, <a title="Southern Construction Systems SCS, Inc." href="http://socons.com">socons.com</a>, and <a title="Trade Pro Construction Services" href="http://tradeproconstructionservices.com">tradeproconstructionservices.com</a> (go ahead and catch your breath), have taken up a substantial part of my life in the last couple weeks.</p>
<p>There&#8217;s not much coding going on in those sites. I built them on Drupal, so most of my work revolved around configuring the CMS, and getting everything setup in remote subversion. The task consuming all my time though, is the designing.</p>
<p>When I design a site, especially one that I&#8217;m getting paid a nominal fee for, I usually base the design off of some template, or theme to one of the more popular CMS packages. I know Drupal pretty well, so It&#8217;s not too much to hack a WordPress or Joomla theme and make it work for Drupal.</p>
<p>The interesting thing about all of this however, is my keen interest in Flash. It&#8217;s funny to me, since I&#8217;ve been pretty anti-flash for a while. Actionscript 3 really provides a framework that I can get comfy in. I&#8217;ve yet to actually put anything out there that uses some of the more OO type patterns (observer being a quite common implementation). I suspect I will in the coming months though.</p>
<p>Anyways, I&#8217;m not a designer, so I&#8217;d like any feedback on the sites mentioned above. Some of y&#8217;all are pretty good at that kind of thing, and I could use the advice.</p>
<p>Thanks in advance.</p>
<p>Dr. Doom.</p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2008/07/a-developer-in-designers-clothing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Independence Day</title>
		<link>http://corycollier.com/2008/07/independence-day/</link>
		<comments>http://corycollier.com/2008/07/independence-day/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 17:45:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[america]]></category>
		<category><![CDATA[decisions]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[independence]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=85</guid>
		<description><![CDATA[Today is Independence day, and I&#8217;ve a few things to reflect on today. I&#8217;ve officially announced my departure from NFi Studios, thus going independent myself. So, today has a sort of meaning for me, in a personal light, that it hasn&#8217;t before. That&#8217;s not to take away from the incredible significance of what July 4th [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://corycollier.com/wp-content/uploads/2008/07/200px-us_declaration_independence.jpg"><img class="alignleft size-full wp-image-86" title="Declaration of Independence" src="http://corycollier.com/wp-content/uploads/2008/07/200px-us_declaration_independence.jpg" alt="The United States of America\'s Declaration of Independence" width="200" height="237" /></a>Today is Independence day, and I&#8217;ve a few things to reflect on today. I&#8217;ve officially announced my departure from <a title="NFi Studios" href="http://nfistudios.com">NFi Studios</a>, thus going independent myself. So, today has a sort of meaning for me, in a personal light, that it hasn&#8217;t before.</p>
<p>That&#8217;s not to take away from the incredible significance of what July 4th is to everyone else. I suppose it&#8217;s easy to forget, or take for granted, the awesome opportunities we have in the United States. The bravery and commitment it must have taken, to violently break from from an oppressive government, is awe-inspiring.</p>
<p>But that&#8217;s exactly what is inspiring me to go &#8216;indie&#8217; &#8230;</p>
<p>While I certainly don&#8217;t have to resort to war, or worry about death as a consequence of my own &#8216;liberation&#8217;, I do have a mortgage, and all the other associated bills that so many Americans struggle with every day. By leaving a steady job, I leave the security of steady income. The consequences of that, often feel like impending death. I&#8217;ve had a hard time sleeping lately. I wake up in the night, with pain in my chest, from the stress of it all.</p>
<p>But with consequence, comes the <em>potential </em>for great reward &#8230;</p>
<p>When the US declared it&#8217;s independence, and successfully fought to keep it, we opened the door of opportunity to become the most amazing country in modern times, possibly ever. Despite what you might hear on CNN tonight, or what the regulars on <a title="Digg" href="http://digg.com">Digg</a> like to say about this country, there truly is no better place to live in the world. The reason? Opportunity. There simply is no other government in the world that provides opportunity on a silver platter like this country. It may sound cliche, but if you can dream it, this country won&#8217;t stop you from doing it.</p>
<p>So, with my own departure from a stable job, at an up-and-coming startup, I&#8217;ve opened the door to a level of opportunities that I simply wouldn&#8217;t have otherwise. I don&#8217;t know what&#8217;s in store for me, but I do know I&#8217;ve met some amazing folks, who I hope to work with on projects that will change the world (hopefully).</p>
<p>I&#8217;ve no illusions about what this means for me. The rewards that <em>may </em>come my way, aren&#8217;t without stupendous amounts of work due to realize them. That&#8217;s fine with me. I&#8217;ve come from a family of working types, and I&#8217;ve done more than mine (and your) fair share of work. The difference between before, and now, is that I&#8217;ll be the one deciding how I&#8217;ll get it done.</p>
<p>I&#8217;ve leaned on a few folks for advice in making the decisions I&#8217;ve made lately. You know who you are, and I&#8217;ll never be able to repay all of you for all the help you&#8217;ve been to me.</p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2008/07/independence-day/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Typical Day At Work</title>
		<link>http://corycollier.com/2008/02/typical-day-at-work/</link>
		<comments>http://corycollier.com/2008/02/typical-day-at-work/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 23:28:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[nfi]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=16</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a title="Typical Day At The Office" href="http://www.flickr.com/photos/10139590@N02/2263176971/"><img src="http://static.flickr.com/2355/2263176971_bbd5d6c9c5.jpg" alt="Typical Day At The Office" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2008/02/typical-day-at-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MemberFuse &#8211; A Social Network For Associations</title>
		<link>http://corycollier.com/2008/01/memberfuse-a-social-network-for-associations/</link>
		<comments>http://corycollier.com/2008/01/memberfuse-a-social-network-for-associations/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 00:25:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[baranik]]></category>
		<category><![CDATA[elizabeth]]></category>
		<category><![CDATA[lynda]]></category>
		<category><![CDATA[memberfuse]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[nfi]]></category>
		<category><![CDATA[raphael]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[sterling]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=13</guid>
		<description><![CDATA[The lot of us here at NFi Studios have recently release the 0.1 Beta version of MemberFuse , a Social Network designed and developed specifically for Associations. I&#8217;d like to personally thank the team I work with at NFi, especially Sterling Raphael , Lynda Raphael , and Elizabeth Baranik for helping create the opportunities and [...]]]></description>
			<content:encoded><![CDATA[<p><img title="MemberFuse - A Social Network for Associations" src="http://memberfuse.com/images/memberFuse.png" alt="MemberFuse was envisioned by Sterling Raphael, Lynda Raphael, and Elizabeth Baranik" align="left" />The lot of us here at NFi Studios have recently release the 0.1 Beta version of <a title="MemberFuse - A Social Network For Associations" href="http://memberfuse.com/">MemberFuse</a> , a Social Network designed and developed specifically for Associations. I&#8217;d like to personally thank the team I work with at NFi, especially <a title="Sterling Raphael, President of NFi Studios" href="http://sterlingraphael.com/">Sterling Raphael</a> , <a title="Lynda Raphael, a Great Asset For NFi Studios" href="http://www.nfistudios.com/blog/category/orlando/">Lynda Raphael</a> , and <a title="Elizabeth Baranik, Marketing Director for NFi Studios" href="http://elizabethbaranik.com/">Elizabeth Baranik</a> for helping create the opportunities and goals for our development team to accomplish.</p>
<p>MemberFuse, as stated before, is a Social Networking package built on open source software that helps existing Associations provide value for their members outside of the usual, and sometimes outdated methods they currently employ. The goal for any Association is to give it&#8217;s member base something tangible and usable. We at NFi have worked exceptionally hard to produce something that is both useful and valuable.</p>
<p>The process to develop MemberFuse has been an amazing learning curve for me. I&#8217;ve always stressed concepts of design patterns and convention when speaking with other developers. This is especially crucial in open source software development, where the developer is often left to his / her own devices when it comes to creating applications. However, some of the features necessary for MemberFuse really pushed the limits of what had previously thought possible before.</p>
<p>One of the coolest things I got into with MemberFuse was the integration with Trac and SVN and Eclipse. I&#8217;m going to write a tutorial on how to make the most of this pretty soon, so be on the lookout for that. I can say in advance though, that it has made my life in team software development far easier and more manageable than ever before.</p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2008/01/memberfuse-a-social-network-for-associations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NFi Studios</title>
		<link>http://corycollier.com/2007/12/nfi-studios/</link>
		<comments>http://corycollier.com/2007/12/nfi-studios/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 19:22:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[bender]]></category>
		<category><![CDATA[derek]]></category>
		<category><![CDATA[downtown]]></category>
		<category><![CDATA[nfi]]></category>
		<category><![CDATA[orlando]]></category>
		<category><![CDATA[sterling]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=6</guid>
		<description><![CDATA[Recently my boss, Sterling , wrote up about all of us at NFi on his personal blog. It&#8217;s flattering to hear what he has to say. I probably shouldn&#8217;t care too much about the accolades that I may, or may not recieve from other people, but I do. All of us at NFi work very [...]]]></description>
			<content:encoded><![CDATA[<p>Recently my boss, <a title="Sterling Raphael, President and Owner of NFi Studios" href="http://sterlingraphael.com/">Sterling</a> , wrote up about all of us at NFi on his personal blog. It&#8217;s flattering to hear what he has to say. I probably shouldn&#8217;t care too much about the accolades that I may, or may not recieve from other people, but I do.</p>
<p>All of us at NFi work very hard to produce product that is above and beyond client expectation. Just the other day I worked from 8 in the morning until midnight. While that&#8217;s not an everyday occurence, it happens quite a bit. Sometimes in this business, there&#8217;s just far too much to do. So when I hear some appreciation from the boss, I guess I get a little choked up.</p>
<p>I shoud count my blessings. I work in an environment where I can wear just about whatever I want, I can say pretty much whatever is on my mind, and I can listen to <a title="Florida Death Metal" href="http://floridadeathmetal.com/">Death Metal</a> all day (with headphones, of course).</p>
<p><a title="Sterling Raphael - Dedicated Entreprenuer" href="http://sterlingraphael/">Sterling</a> is a dedicated entreprenuer who has the insight to know that while teamwork and dedication are critical to success, an uptight or stifling atmosphere is not. There&#8217;s a weird balance between fostering creativity, and discouraging a lack of productivity that Sterling does a pretty stand up job at acheiving here.</p>
<p>The guys (and gals) I work with are a really cool bunch of folks. I&#8217;ve mentioned Sterling, but Derek, Bender, Elizabeth, Rick, CJ, and now Chris are all friends to me. I routinely heckle <a title="Derek Bender - Designer Extraordinaire" href="http://derekbender.com/">Bender</a> and <a title="Derek Gallo - CTO of NFi Studios" href="http://derekgallo.com/">Derek</a> is always teaching me something.</p>
<p>Our office is awesome. It&#8217;s in the heart of Downtown Orlando. We have wood floors, and a great view (though the shades are frequently closed to keep the glare to a minimum). We get to meet a lot of really awesome folks because of our location alone.</p>
<p><img title="The NFi Office, and Cory grimmacing" src="../files/cory_tumor.jpg" alt="The NFi Office, and Cory grimmacing" /></p>
<p>So, I really like working with these guys at NFi. I can&#8217;t think of a better place to be.</p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2007/12/nfi-studios/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Donna Dowless Is Amazing</title>
		<link>http://corycollier.com/2007/08/donna-dowless-is-amazing/</link>
		<comments>http://corycollier.com/2007/08/donna-dowless-is-amazing/#comments</comments>
		<pubDate>Mon, 27 Aug 2007 02:28:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[donna dowless]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[nfi]]></category>
		<category><![CDATA[orlando]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=31</guid>
		<description><![CDATA[Last Friday afternoon, we at NFi (plus a few friends), were honored to have Donna Dowless chat with us about her life, and about life / business success. She spoke of common themes, like ingenuity, patience, self-confidence, and most importantly, perseverance. I feel like I&#8217;m part of something. There&#8217;s a growing movement in Orlando, to [...]]]></description>
			<content:encoded><![CDATA[<p>Last Friday afternoon, we at NFi (plus a few friends), were honored to have <a href="http://donnadowless.com/">Donna Dowless</a> chat with us about her life, and about life / business success. She spoke of common themes, like ingenuity, patience, self-confidence, and most importantly, perseverance.</p>
<p>I feel like I&#8217;m part of something. There&#8217;s a growing movement in Orlando, to get the outside world to notice that <a title="Orlando is More Than Mickey" href="../2007/08/11/orlando-more-mickey">we&#8217;re more than Mickey Mouse</a> . I spoke previously that Orlando has a growing artistic community as well. Donna has done much to help realize that.</p>
<p>Listening to Donna Dowless&#8217;s life story is like hearing a tall tale. The only difference is, it&#8217;s real. Donna took 90 minutes to tell us her life story, and every minute is filled with one unbelievable tale after another.</p>
<p>Donna grew up in a military family, and was taught to have humble aspirations. Her father had hoped she would join the military when she graduated high school. Her mother wanted her to become a secretary instead. Donna took her chances with a secretarial career.</p>
<p>Long story short: Donna wound up doing secretary work in the entertainment industry, where she climbed the ladder until she was a venue director. Not one to rest on her laurels, Donna jumped on board with Tickemaster during the beginning of that empire. Donna left Ticketmaster when she was senior Vice President of the company.</p>
<p>All I can say about it all is: wow.</p>
<p>Many thanks to Donna, for all the inspiration. My continued sense of opportunity has been heightened by her.</p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2007/08/donna-dowless-is-amazing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s Tough Being Geeky</title>
		<link>http://corycollier.com/2007/07/its-tough-being-geeky/</link>
		<comments>http://corycollier.com/2007/07/its-tough-being-geeky/#comments</comments>
		<pubDate>Tue, 10 Jul 2007 01:44:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[administrator]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[network administrator]]></category>
		<category><![CDATA[struggle]]></category>
		<category><![CDATA[tough]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=27</guid>
		<description><![CDATA[Being a geek is a tough job. Just keeping up with the constant changes means you have to really want to spend the time doing it. It also helps that your significant other is fairly independent, since being a geek isn&#8217;t something you can share (unless your wife / husband is a geek too). Clients [...]]]></description>
			<content:encoded><![CDATA[<p>Being a geek is a tough job. Just keeping up with the constant changes means you have to really want to spend the time doing it. It also helps that your significant other is fairly independent, since being a geek isn&#8217;t something you can share (unless your wife / husband is a geek too).</p>
<p>Clients don&#8217;t make your job any easier. Any profession where the client can&#8217;t comprehend what it takes to accomplish the job, is a career frought with distrust. How many clients always say things to geeks like:</p>
<p>&#8220;It always worked before&#8221;</p>
<p>&#8220;You want how much money?&#8221;</p>
<p>&#8220;I don&#8217;t know, the whole thing is broken&#8221;</p>
<p>The last statement is probably one of the more common things I hear, when I help people with their computer issues. It&#8217;s also one of the things that makes being a network adminstrator / computer consultant the hardest. Imagine how difficult it is to fix a problem when the information you have to work with is &#8220;the computer keeps crashing&#8221;. If the only thing you told your doctor was, &#8220;I don&#8217;t feel good&#8221;, do you think he could help you?</p>
<p>What&#8217;s especially difficult is having proof of a client&#8217;s own fault, but needing the cash they&#8217;re going to pay to fix an issue. I&#8217;ve worked on networks where the boss was responsible for bringing the whole thing down, due to inappropriate internet viewing. The boss want&#8217;s to know who is costing them all of this money, and it&#8217;s actually their own fault. Try to explain that one, and still expect to get paid what you deserve.</p>
<p>Hackers (read: black hat) don&#8217;t make life any easier. Life is already filled with enough work, then a kid using someone elses program finds a way to attack your site / network. That vacation you had planned with the family? Forget it. Now, try to explain that to your wife / husband. Much like a doctor, work is not 9 &#8211; 5, and when an issue arises, you&#8217;d better be ready to deal with it, immediately.</p>
<p>I&#8217;ve performed network upgrades that took 200 hours of work in 2 weeks to accomplish. The client pays for a network upgrade, and doesn&#8217;t like to hear about &#8220;change orders&#8221; to the agreement. If you missed an &#8220;obvious&#8221; detail of their network, then that&#8217;s your fault.</p>
<p>Another amazingly irritating thing clients do: think you can run their software for them. I have an engineering degree. I write software. I fix networks. I have no idea how to do your business. So when you want the computer guy to tell you how to use your accounting / billing / CRM software, don&#8217;t expect much. Most geeks know how to use the software, but it&#8217;s up to you to learn it and use it for yourself.</p>
<p>Finally, and perhaps the most frustrating thing about being a geek, is the lack of respect we get for the job we do. It&#8217;s irritating to see people with no skillset in life but the ability to talk, treat you as fodder for their enterprise. The jobs we geeks do are not expendable. The next time you dismiss the guy who writes your website, or fixes your e-mail problem, think about what you&#8217;d do without him / her.</p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2007/07/its-tough-being-geeky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>End of an era</title>
		<link>http://corycollier.com/2007/04/end-of-an-era/</link>
		<comments>http://corycollier.com/2007/04/end-of-an-era/#comments</comments>
		<pubDate>Tue, 24 Apr 2007 22:20:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[era]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[oconnorandtaylor]]></category>

		<guid isPermaLink="false">http://corycollier.com/?p=19</guid>
		<description><![CDATA[I&#8217;m cleaning out my old office. It&#8217;s completely depressing. I&#8217;m moving on, and I&#8217;m starting with a company far closer to home, NFI Studios. I&#8217;m really excited to start. The company is a much better fit for me, professionally and personally but right now I&#8217;m facing the end of nearly 3 years of my life. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m cleaning out my old office. It&#8217;s completely depressing. I&#8217;m moving on, and I&#8217;m starting with a company far closer to home, <a href="http://www.nfistudios.com/">NFI Studios</a>. I&#8217;m really excited to start. The company is a much better fit for me, professionally and personally but right now I&#8217;m facing the end of nearly 3 years of my life.</p>
<p>There&#8217;s so much history here. I don&#8217;t even know where to begin. So, I&#8217;m really bummed.</p>
<p>I&#8217;m staying on here as a consultant, since I know more about the network here than anyone else would. But it won&#8217;t be the same. Tomorrow when I drive out of here, I leave my office behind. I don&#8217;t even have my own office where I&#8217;m going.</p>
<p>I guess one of the biggest bummers about all of this is I&#8217;m not going to see my dad every week. Dad was tough when I was growing up. But these days, I can&#8217;t really imagine not having him around.</p>
<p>So I&#8217;m leaving to go to dad&#8217;s place now. The last Tuesday night dinner.</p>
<p> <img src='http://corycollier.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://corycollier.com/2007/04/end-of-an-era/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

