<?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>Drew Burden &#187; Work</title>
	<atom:link href="http://www.drewburden.com/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.drewburden.com</link>
	<description>A nerd showers you with his opinions.</description>
	<lastBuildDate>Sun, 04 Jul 2010 13:14:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Whirlwinds and whirling winds: TriStateAlerts so far</title>
		<link>http://www.drewburden.com/2010/05/03/whirlwinds-and-whirling-winds-tristatealerts-so-far/</link>
		<comments>http://www.drewburden.com/2010/05/03/whirlwinds-and-whirling-winds-tristatealerts-so-far/#comments</comments>
		<pubDate>Mon, 03 May 2010 11:38:25 +0000</pubDate>
		<dc:creator>Drew Burden</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Severe Weather]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[cap]]></category>
		<category><![CDATA[dizzy]]></category>
		<category><![CDATA[emwin]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[tax season]]></category>
		<category><![CDATA[tristatealerts]]></category>

		<guid isPermaLink="false">http://www.drewburden.com/?p=630</guid>
		<description><![CDATA[The pace my life has taken, even after tax season has pretty much ended, is enough to bring Chuck Norris to his knees. I keed. However, I&#8217;m managing to stay busy. Check this out: During last year&#8217;s ice storm, Nathan and I started a little Twitter account we called TriStateAlerts. We mainly just used it [...]]]></description>
			<content:encoded><![CDATA[<p>The pace my life has taken, even after tax season has pretty much ended, is enough to bring Chuck Norris to his knees.</p>
<p>I keed. However, I&#8217;m managing to stay busy. Check this out:</p>
<p>During last year&#8217;s ice storm, Nathan and I started a little Twitter account we called TriStateAlerts. We mainly just used it to share information about shelters, emergency services, and the availability of generators. We covered a few other things, like a chemical leak and also handled severe weather alerts when we could devote some time to watching a Google Earth display for new polygons and manually typing the information into TweetDeck. Naturally, this got old rather quickly.</p>
<p>For the 2010 severe weather season, Nathan and I committed to having the feed automated, and I accomplished this feat on April 7. I would have had it done earlier, but a strange thing is that one has to test in a live environment when doing something like this. You can&#8217;t just make it happen. This new system was by no means perfect, it was just a shell script that ran a PHP script every 20 (and later, 10) seconds to check for new warnings, put them in a database, and tweet them. Pretty simple, right?</p>
<p>Our main problem with this system was that its data source was something the National Weather Service still deems experimental &#8212; the Common Alerting Protocol. It&#8217;s super awesome, though. It&#8217;s based on Atom/XML, which makes CAP a dream to work with. I seriously got working code after hacking at it for seven hours. All praise aside, CAP is still experimental. On the night of April 7, the feeds didn&#8217;t update for at least 30 minutes. After a chat with the science operations officer at the Paducah, Kentucky NWS office on the subject, I realized that I should really not be using CAP at this point. In fact, during the big April 24 severe outbreak, the CAP feeds never worked. Not once.</p>
<p>By that time, I had started work on the next step in the evolution of our fledgling service. I&#8217;ve been playing with a nice little piece of software called PerlEMWIN on and off for about four years now. This mainly consisted of installing it on a server, letting it run while trashing the filesystem all the while. (That writeFile plugin is nasty sometimes.) EMWIN, or the Emergency Managers Weather Information Network, is a tried-and-true method of dispersing weather information. It&#8217;s a continuous stream, priority-driven (meaning a warning will interrupt the transmission of something like a radar image), and it&#8217;s an automated push technology. This sounded like what I needed! However, I didn&#8217;t know a lick of Perl, and how the hell was I going to integrate this whole thing?</p>
<p>Around this time, I had been introduced to the directors of the local emergency management agency, who, from what I gathered, were desperately in need of a solution to disseminate emergency information via the internet, mainly through social networks like Facebook and Twitter. After my first meeting with the deputy director, he was thrilled that we had built something with such a following and told me we had essentially done his work for him. Oh, and please PLEASE sign them up for whatever we&#8217;re offering. (More on that later.)</p>
<p>More meetings further developed my plans, and an entirely new platform materialized in my mind. This wasn&#8217;t going to be just a service I run out of my bedroom with Nathan somewhere off to the side furiously researching information. My EMWIN integration had just gotten a lot easier, now that I had a perspective of what the whole thing would do.</p>
<p>I spent the better part of a week, mostly late at night, sitting at my kitchen table hacking away at a plugin for PerlEMWIN that would do what I needed. I had absolutely no experience with Perl, and didn&#8217;t have a clue where to start. I&#8217;ve been doing PHP for over six years, so you&#8217;d think that would help. Not with me. I started reading.</p>
<p>One of my biggest obstacles to learning Perl before I just dove into it with this project was that I just, for some reason, could not find out or just couldn&#8217;t understand what @_ was. Seriously. That was it. Maybe I&#8217;m just older and wiser now, or maybe all those years of doing PHP taught me a little something about programming in general, but when I found the answer to this simple question I couldn&#8217;t help but feel pretty stupid. (For the record, @_ is an array that holds the arguments you pass to a function. It&#8217;s a lot more flexible than PHP or probably most any other related language, but it&#8217;s really confusing.)</p>
<p>After finally learning just what the hell @_ was, and looking at other plugins bundled with PerlEMWIN, I got to work. Line by line, my plugin materialized. When I didn&#8217;t understand something or just straight up didn&#8217;t know how to do something in Perl, I resisted the urge to just give up and go back to PHP, and pressed on. Over the course of a week, I picked up enough Perl to finish this plugin and even have it drop data into the same MySQL database my old PHP script pointed to. This left out one thing&#8211; the social networking side.</p>
<p>I decided to run back to PHP for this one, for two big reasons. First of all, the design of the overall platform had to include a way to post some stuff to some places. For example, if a local emergency management agency subscribed to our platform, we obviously wouldn&#8217;t want to have tornado warnings for three counties away posting to their Twitter feed. This mechanism had to be separated from the data ingestion module. Secondly, I had just written the backends for a Twitter app and Facebook app in PHP, and I wasn&#8217;t about to learn a completely new client library to do something I had already written code for. I could just as easily have the PerlEMWIN plugin notify the message center that something new had come, and it could do the rest. That&#8217;s exactly what I did.</p>
<p>We also needed some dedicated hardware to run this on, with all the plans we had, the ragtag way things were going would just not cut it for a reputable emergency information service like we wanted. I called an old boss of mine and asked if he still had some servers sitting around for sale. I bought a Sun Microsystems SunFire V40z with four processors and 8GB of RAM to run everything on, and worked out hosting with him. It&#8217;s always good to not burn bridges&#8211; you never know when you&#8217;ll get the hook up.</p>
<p>The platform had its first real test during the severe weather event of April 24. I had barely touched our new server haardware, things were working fine the way they were and with a rare high risk area issued for western Kentucky, that was no time for something to go wrong. Nathan and I were working at the emergency operations center that day, fresh from a meeting with a prospective media partner and ready to tweet. As the warnings started going up for the area, all four endpoints we were pushing data to remained silent. I had finished the PerlEMWIN module (sans Twitter/Facebook support) that morning and wanted to make sure it caught all the warnings, and deposited the right information into the database in the correct format before using it. I hadn&#8217;t touched the old code since the last severe weather event, so the only logical explanation for the failure was that the CAP feeds weren&#8217;t updating at all. Great first impression, guys!</p>
<p>While we were in a controlled panic over our Twitter feed, I started scrambling to get the EMWIN module linked up and running. This was complicated by what could be generously described as an intermittent internet connection at the courthouse. After sticking my SIM card from my phone (which remained disassembled on the table) in my computer, I whipped up a quick script that posted to our sandbox account to test things, and I ran it manually to make sure it would pull the relevant information from the database and post it. It worked! I pointed the script at the right channels and made one final edit to the PerlEMWIN plugin.</p>
<p>More warnings came in, and still the Twitter and Facebook pages were silent. The logfiles showed all the information coming in just fine, and there were numerous warnings in the database. The Perl plugin wasn&#8217;t launching this PHP script I had just written.﻿ The panic continued. Nathan resorted to posting warnings manually while I worked, slowly but furiously, on the problem at hand. I found the problem (current working directory confusion) and fixed it in time to post the last two severe thunderstorm warnings of the outbreak.</p>
<p>Since then, we&#8217;ve moved everything onto our new server and it&#8217;s currently colocated in Evansville. The outbreak this past weekend has a few great moments for us; but those warrant another blog entry sometime in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drewburden.com/2010/05/03/whirlwinds-and-whirling-winds-tristatealerts-so-far/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some time for a breather</title>
		<link>http://www.drewburden.com/2010/03/02/some-time-for-a-breather/</link>
		<comments>http://www.drewburden.com/2010/03/02/some-time-for-a-breather/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 21:23:59 +0000</pubDate>
		<dc:creator>Drew Burden</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.drewburden.com/2010/03/02/some-time-for-a-breather/</guid>
		<description><![CDATA[Work in the accounting world is a hell of a ride this time of year. Of course, that’s not to say that work in the accounting world isn’t a completely different ballgame anyway. We’re slammed to the max from January to mid-April, stress runs high and you tend to spend some late nights in the [...]]]></description>
			<content:encoded><![CDATA[<p>Work in the accounting world is a hell of a ride this time of year.</p>
<p>Of course, that’s not to say that work in the accounting world isn’t a completely different ballgame anyway. We’re slammed to the max from January to mid-April, stress runs high and you tend to spend some late nights in the office.</p>
<p>I, thus far, have been spared this death sentence. In fact, today is quite a slow one in my department, which is a shame given that I’m essentially a one-man department. Few people pick up their tax returns on days they don’t get paid, and I’m a good enough tech that the network hasn’t been acting up. I could probably get away with not being in the office, but the bills wouldn’t get paid so here I am.</p>
<p>I’ve always learned a lot by the work I’ve done. When building a web site for a wheel and tire store, I learned more about rims than anyone probably could care. When building a dealer portal for a distributor of cabinetry, I learned a lot about cabinets. This time around, as a staff member at an accounting firm, I can finally learn about something that affects everyone and that everyone generally thinks about a lot – accounting and taxation. Not that I aspire to be the next big-shot tax and accounting master or anything (I am just fine behind the scenes where I am), but it helps to know a little something about everything you handle on a daily basis. I am fortunate to work with seven CPAs who are knowledgeable and can help me help them. Sometimes, I’m the only communication link between them and the software vendors.</p>
<p>I ramble a lot… </p>
]]></content:encoded>
			<wfw:commentRss>http://www.drewburden.com/2010/03/02/some-time-for-a-breather/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I expand the word &#8220;bullshit&#8221; to five paragraphs</title>
		<link>http://www.drewburden.com/2010/01/20/i-expand-the-word-bullshit-to-five-paragraphs/</link>
		<comments>http://www.drewburden.com/2010/01/20/i-expand-the-word-bullshit-to-five-paragraphs/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 19:22:38 +0000</pubDate>
		<dc:creator>Drew Burden</dc:creator>
				<category><![CDATA[Pwnage]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[That's Awesome]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[bullshit]]></category>
		<category><![CDATA[five paragraphs]]></category>
		<category><![CDATA[sales rep]]></category>
		<category><![CDATA[shit gets done]]></category>
		<category><![CDATA[wordy]]></category>

		<guid isPermaLink="false">http://www.drewburden.com/?p=626</guid>
		<description><![CDATA[We&#8217;ve had an ongoing problem at work with one of the applications we use for tax forms. One of the local forms is horribly incomplete, and I called customer service to have them update the form. After getting someone who knows what they&#8217;re doing, I made them aware of the problem and this rep promised [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve had an ongoing problem at work with one of the applications we use for tax forms. One of the local forms is horribly incomplete, and I called customer service to have them update the form. After getting someone who knows what they&#8217;re doing, I made them aware of the problem and this rep promised me he would follow up. I received a response last week pretty much saying the editors refused to help us.</p>
<p>This didn&#8217;t sit well with the bossman, to say the least. He gave me the contact info for our sales rep, whom I promptly told, &#8220;bullshit&#8221;. Here&#8217;s the email I wrote&#8211; names have been changed to protect the innocent.</p>
<blockquote><p>Good afternoon SALES REP, here&#8217;s what we have going on.</p>
<p>One of the main forms we use in APPLICATION is &#8220;KY Owensboro NP-1&#8243;, which is the Net Profit License Fee return for the City of Owensboro and Daviess County Fiscal Court. This is available online at <a href="http://www.owensboro.org/sites/default/files/finance/Net_Profit_Return.pdf">http://www.owensboro.org/sites/default/files/finance/Net_Profit_Return.pdf</a>. In APPLICATION, this is just one page, but the version available on the City&#8217;s web site also has several worksheet pages attached before the instructions section meant to be linked back to the first page.</p>
<p>If you take a look at &#8220;KY Owensboro NP-1A&#8221; (Amended Net License Fee), you will find that it is the same as the worksheets after the first page of KY Owensboro NP-1, with the word &#8220;Amended&#8221; added where necessary.</p>
<p>I have called APPLICATION support twice over the past couple of weeks and everyone I have spoken to has been very helpful. The editors insist these additional pages are not part of the return, but rather the instructions, and the one page already in APPLICATION is current and correct. No one at this firm disagrees with that, but the return form is nigh useless without these additional sheets. The impression I get from the editors&#8217; response forwarded to me by SUPPORT REP this morning is not what I would expect from professionals who are there to help us and make our jobs easier. A lack of an update to this form is negatively impacting our firm&#8217;s productivity and greatly diminishing the value we see in APPLICATION.</p>
<p>If you could help us get an updated form into the software, I and many of my colleagues here would appreciate it very much.</p></blockquote>
<p>Today I received an email telling me the form would be updated next week. Moral of the story: if you&#8217;re unhappy with something, talk to your sales rep. It&#8217;s their ass on the line and they will get shit DONE.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drewburden.com/2010/01/20/i-expand-the-word-bullshit-to-five-paragraphs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jobs I&#8217;d like to have before I&#8217;m 30</title>
		<link>http://www.drewburden.com/2009/04/22/jobs-id-like-to-have-before-im-30/</link>
		<comments>http://www.drewburden.com/2009/04/22/jobs-id-like-to-have-before-im-30/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 23:28:08 +0000</pubDate>
		<dc:creator>Drew Burden</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.drewburden.com/?p=576</guid>
		<description><![CDATA[Work can be a wonderful thing. I have my interests and I would like for those interests to be put to good use at one point or another. I don&#8217;t want to be a jack of all trades and I don&#8217;t want to be an ace of just one. As such, here is a short [...]]]></description>
			<content:encoded><![CDATA[<p>Work can be a wonderful thing. I have my interests and I would like for those interests to be put to good use at one point or another. I don&#8217;t want to be a jack of all trades and I don&#8217;t want to be an ace of just one. As such, here is a short list of jobs I&#8217;d like to have within ten years.</p>
<ul>
<li><strong>Linux system administrator and engineer.</strong> I have not been using Linux in some form or another for the past five-plus years for nothing. I have learned quite a bit; it&#8217;s gotten to the point where I&#8217;ve mounted two servers running it in my house and I&#8217;m planning on adding a third soon. I know Red Hat Enterprise/Fedora/CentOS quite well, a good-sized chunk of Gentoo and a bit of Debian. I would love to be a systems guru for a medium-sized outfit and eventually get my RHCE (as someone told me yesterday regarding people&#8217;s obsession with MCSE and MCSE only, &#8220;do you work on <em>computers</em>, or just Windows?&#8221;) This opportunity may be presenting itself to me now and if things work out, I will be a happy boy.</li>
<li><strong>Voiceover artist.</strong> I&#8217;ve been told by many that I would be a good fit for such a job; I would believe it if I had any post-production skills. (And attracted the ladies just by opening my mouth, but that&#8217;s a completely unintentional side effect/not what I&#8217;m pursuing.) Just about the only things I&#8217;ve done in this sort of specialty are this <a href="http://files.drewburden.com/sbrid-wwbase-1.mp3" target="_blank">internet radio station ID</a> and&#8230; oh yeah, I <a href="http://files.drewburden.com/Mixdown-pre-low.mp3" target="_blank">recorded a rap song</a> for my own business when I was running it. (Kudos to <a href="http://www.nathanseaton.com/" target="_blank">Nathan Seaton</a> for writing the lyrics.)</li>
<li><strong>Anything in broadcasting.</strong> Actually, I may prefer radio more. I find I do better behind a mic&#8230; or a camera (never in front).</li>
</ul>
<p>There you have it. Not only do I suck at ending these blog entries, I suck at tagging them therefore I will forgo it this time around.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drewburden.com/2009/04/22/jobs-id-like-to-have-before-im-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://files.drewburden.com/sbrid-wwbase-1.mp3" length="481489" type="audio/mpeg" />
<enclosure url="http://files.drewburden.com/Mixdown-pre-low.mp3" length="827559" type="audio/mpeg" />
		</item>
		<item>
		<title>Ohai there</title>
		<link>http://www.drewburden.com/2009/03/22/ohai-there/</link>
		<comments>http://www.drewburden.com/2009/03/22/ohai-there/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 08:52:35 +0000</pubDate>
		<dc:creator>Drew Burden</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[That's F*cked Up]]></category>
		<category><![CDATA[This Damn Economy]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[asterisk]]></category>
		<category><![CDATA[free time]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[trixbox]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.drewburden.com/?p=521</guid>
		<description><![CDATA[It&#8217;s been so long since I blogged last. This will be interesting. A lot of things around me are falling apart. Common Technologies is all but gone and I&#8217;m the one tasked with making sure the hosting customers get somewhere they&#8217;re taken care of. This somewhere will probably be DreamHost for most of them. Others [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been so long since I blogged last. This will be interesting.</p>
<p>A lot of things around me are falling apart. Common Technologies is all but gone and I&#8217;m the one tasked with making sure the hosting customers get somewhere they&#8217;re taken care of. This somewhere will probably be DreamHost for most of them. Others currently on a Windows server will be moved to a web host that provides Windows servers with Plesk 8.3, identical to our current setup. A couple of them will probably benefit from moving to a hosted Exchange solution for their insane volume of email. In all, I have around 28 accounts to put <em>somewhere</em>. I have a list written on the back of an envelope of all the clients. I&#8217;ll cross them off as I get them taken care of.</p>
<p>I think I know why I&#8217;m miserable lately. I have no free time. Back in the day I had plenty of time to sit around and write code all day/night. And the difference was the stuff that made me happy was my own stuff, as opposed to stuff that others wanted me to do for them. I sort of want to do this again, if only for a month or so. I think that&#8217;s all I can afford to do.</p>
<p>Anyway, I&#8217;ve moved both my rackmount servers to my house and I&#8217;m preparing to set up the network extraordinaire in my own home. I can&#8217;t do much in my own home network other than back up my files and have a place to offset video transcoding, but one thing I also want to do is get an Asterisk phone server set up. If you saw the horrid tangle of phone wires in the basement you would understand why. I&#8217;d like to slim it down to one line in the house plus another for emergency use only. I may use my 1U PowerEdge 350 for this. I just took a break from writing to start downloading the trixbox ISO image.</p>
<p>Since it&#8217;s inhumanely late I will now go to bed. And by &#8216;go to bed&#8217; I mean go to the grocery store to get something to eat first.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drewburden.com/2009/03/22/ohai-there/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wow, an almost-empty restaurant</title>
		<link>http://www.drewburden.com/2009/01/17/wow-an-almost-empty-restaurant/</link>
		<comments>http://www.drewburden.com/2009/01/17/wow-an-almost-empty-restaurant/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 07:45:20 +0000</pubDate>
		<dc:creator>Drew Burden</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Quickblog]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[rambling]]></category>

		<guid isPermaLink="false">http://www.drewburden.com/2009/01/17/wow-an-almost-empty-restaurant/</guid>
		<description><![CDATA[I sent out an open invitation for anyone who wanted to join me at Denny&#8217;s about 45 minutes ago. So far no one has taken me up on that so I believe I will be eating on my own tonight. I will now ramble on about anything that crosses my mind. I really need to [...]]]></description>
			<content:encoded><![CDATA[<p>I sent out an open invitation for anyone who wanted to join me at Denny&#8217;s about 45 minutes ago. So far no one has taken me up on that so I believe I will be eating on my own tonight. I will now ramble on about anything that crosses my mind.</p>
<p>I really need to design and order new business cards. I haven&#8217;t had any in a long time.</p>
<p>Jeff just called. Looks like I won&#8217;t need this to keep me occupied. Bai!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drewburden.com/2009/01/17/wow-an-almost-empty-restaurant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Doing some WordPress theming</title>
		<link>http://www.drewburden.com/2008/09/21/doing-some-wordpress-theming/</link>
		<comments>http://www.drewburden.com/2008/09/21/doing-some-wordpress-theming/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 11:20:21 +0000</pubDate>
		<dc:creator>Drew Burden</dc:creator>
				<category><![CDATA[Site news]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.drewburden.com/blog/?p=378</guid>
		<description><![CDATA[Since I&#8217;m getting sick of us using DotNetNuke as a solve-all CMS system at work, I&#8217;m going to be playing around some. Don&#8217;t mind this blog looking like something totally different at times over the next few days.]]></description>
			<content:encoded><![CDATA[<p>Since I&#8217;m getting sick of us using DotNetNuke as a solve-all CMS system at work, I&#8217;m going to be playing around some. Don&#8217;t mind this blog looking like something totally different at times over the next few days.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drewburden.com/2008/09/21/doing-some-wordpress-theming/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New beginnings</title>
		<link>http://www.drewburden.com/2008/08/25/new-beginnings/</link>
		<comments>http://www.drewburden.com/2008/08/25/new-beginnings/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 05:44:56 +0000</pubDate>
		<dc:creator>Drew Burden</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[suphp]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.drewburden.com/blog/?p=341</guid>
		<description><![CDATA[So, suPHP stopped working on my server, and I couldn&#8217;t upgrade WordPress there for a while. However, fear not, for I have seen the light and found a new way to update WordPress through Subversion, and I don&#8217;t know why I didn&#8217;t do that in the first place. suPHP still does not work; I have [...]]]></description>
			<content:encoded><![CDATA[<p>So, suPHP stopped working on my server, and I couldn&#8217;t upgrade WordPress there for a while. However, fear not, for I have seen the light and found a new way to update WordPress through Subversion, and I don&#8217;t know why I didn&#8217;t do that in the first place. suPHP still does not work; I have declared it a lost cause.</p>
<p>Along with this fresh new version of WordPress, I&#8217;ve installed a new theme. I like it&#8230; which is why I installed it. Still no ETA on the theme that matches the rest of my site. I&#8217;ve thought about making the entire site just the blog, because I&#8217;m so boring and uneventful that there&#8217;s nothing that anyone would possibly want to know about me.</p>
<p>Speaking of boring and uneventful (I&#8217;m working on those segues there, Zach), I applied for what most people would think is a boring and uneventful job this weekend. I&#8217;ll give it the uneventful part, but I&#8217;m sure I&#8217;ll be able to find something to do so it won&#8217;t be that boring. Pretty soon I&#8217;ll be your friendly nighttime front desk guy at Comfort Suites here in town. I&#8217;m totally not selling out on my techie lifestyle, but I would love to have just one job where I work on a schedule. I also kinda need a steady income so I can pay off Capital One (those bastards) and save some money and maybe save money as well. This will also be a great opportunity to work on those pesky social skills. After doing that for a few months at least, I&#8217;ll be Pimpmaster Flex!</p>
<p>&#8230;. but not really.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drewburden.com/2008/08/25/new-beginnings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yet another political BS fest</title>
		<link>http://www.drewburden.com/2008/07/10/yet-another-political-bs-fest/</link>
		<comments>http://www.drewburden.com/2008/07/10/yet-another-political-bs-fest/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 22:00:38 +0000</pubDate>
		<dc:creator>Drew Burden</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[That's F*cked Up]]></category>
		<category><![CDATA[That's Stupid]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[expense]]></category>
		<category><![CDATA[fax]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[lies]]></category>
		<category><![CDATA[nrcc]]></category>
		<category><![CDATA[republican]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[spax]]></category>

		<guid isPermaLink="false">http://www.drewburden.com/blog/?p=324</guid>
		<description><![CDATA[I&#8217;ve never been much of a fan of the Republican Party. However, political preference aside, you can&#8217;t help but be endlessly entertained by some of the things they do. Here&#8217;s a chance we all have to poke a little fun at people in power. At work today, we received a fax from the National Republican [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve never been much of a fan of the Republican Party. However, political preference aside, you can&#8217;t help but be endlessly entertained by some of the things they do. Here&#8217;s a chance we all have to poke a little fun at people in power.</p>
<p>At work today, we received a fax from the National Republican Congressional Committee since the guy that runs the place is apparently a registered Rep. No problem with that, right? The NRCC is up to its usual tactics of extorting money out of small business owners by saying &#8220;oh, we love you, pay us some money and we&#8217;ll let you travel at your own expense to a dinner in Washington where you get to meet the <a title="Governor George W. Bush, for those of you who don't get it" href="http://en.wikipedia.org/wiki/Homo_erectus" target="_blank">missing link</a>!&#8221;</p>
<p>Here&#8217;s a picture of one of the actual pages of the actual fax we received this afternoon:</p>
<p style="text-align: center;"><a href="http://www.drewburden.com/blog/wp-content/uploads/2008/07/repubstupidity.png"><img class="alignnone size-full wp-image-325 aligncenter" title="repubstupidity" src="http://www.drewburden.com/blog/wp-content/uploads/2008/07/repubstupidity.png" alt="" width="350" height="455" /></a></p>
<p style="text-align: left;">If you look at the bottom of the page very carefully, you get this wonderful little message that reminds you of something you would have never known:</p>
<p style="text-align: center;"><a href="http://www.drewburden.com/blog/wp-content/uploads/2008/07/repubstupidity2.png"><img class="alignnone size-full wp-image-326" title="repubstupidity2" src="http://www.drewburden.com/blog/wp-content/uploads/2008/07/repubstupidity2.png" alt="" width="434" height="200" /></a></p>
<p style="text-align: left;">How nice of people who claim to be business savvy to remind thousands of people that they are not the government. It&#8217;s great that it wasn&#8217;t printed at government expense, but what about the fact it wasn&#8217;t printed at NRCC expense either? They&#8217;re riding on YOUR money. And this money isn&#8217;t even going to them. Do you know how much more printer ink costs than gasoline? Very few people are going to travel to this thing anyway, so why waste tons of paper and ink on trying to get people to go? Oh, right&#8230; the NRCC is getting a free ride. YOU pay for the tons of paper and ink.</p>
<p style="text-align: left;">I just figured I would point out this borderline injustice.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drewburden.com/2008/07/10/yet-another-political-bs-fest/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The birthday, the death, ANOTHER migration and upcoming changes</title>
		<link>http://www.drewburden.com/2008/06/15/the-birthday-the-death-another-migration-and-upcoming-changes/</link>
		<comments>http://www.drewburden.com/2008/06/15/the-birthday-the-death-another-migration-and-upcoming-changes/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 09:17:54 +0000</pubDate>
		<dc:creator>Drew Burden</dc:creator>
				<category><![CDATA[Follow-up]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Site news]]></category>
		<category><![CDATA[That's Sad]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[barack obama]]></category>
		<category><![CDATA[birthday]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[death]]></category>
		<category><![CDATA[decision]]></category>
		<category><![CDATA[election]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[obama]]></category>
		<category><![CDATA[old]]></category>
		<category><![CDATA[russert]]></category>
		<category><![CDATA[tim russert]]></category>

		<guid isPermaLink="false">http://www.drewburden.com/blog/?p=321</guid>
		<description><![CDATA[I&#8217;m 20 now. Yep. You know it. And for the third year in a row, I can honestly say my birthday sucked. I had to work&#8230; it was just like any other day. At least there&#8217;s hope for 21, which as of this writing is 358 days away and is the last one to have [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m 20 now.</p>
<p>Yep. You know it. And for the third year in a row, I can honestly say my birthday sucked. I had to work&#8230; it was just like any other day. At least there&#8217;s hope for 21, which as of this writing is 358 days away and is the last one to have any meaning in life. I&#8217;ve had several offers to be taken out and get plastered. I&#8230; think I&#8217;ll pass. I feel old, too. It&#8217;s like a mid-life crisis at quarter-life. If I feel this old now, just imagine how bad it&#8217;ll be once I hit 40. Forget this. I&#8217;m having a party for my 21st birthday. The planning starts now!</p>
<p>I&#8217;m just going to touch on this briefly because I&#8217;m not a really mushy/emotional/sentimental guy and I don&#8217;t want to come across as such. HOWEVER&#8230; I got a text message from Nick at 2:39 PM on Friday that kinda hit hard.</p>
<blockquote><p>Tim Russert is dead.</p></blockquote>
<p>Russert was the best of the best, and he died while doing what he loved. This shouldn&#8217;t have been his time to go but he was probably in the best place to do so&#8211;surrounded by friends and colleagues who have been touched by his hard work all these years. Such a shame he was so excited about this election year. Barack Obama should dedicate his victory speech on November 4 to Mr. Russert&#8217;s memory. Hint hint. Okay, that&#8217;s my human segment. Onward!</p>
<p>I&#8217;m currently in the middle of yet another server migration. Our exodus to the Alphatek NOC here in Owensboro is bringing in a lot of new and exciting things. We have all our hosting accounts moved to two servers there, and our only dedicated server account is the next to be brought in. They have a dedicated server in Chicago, and I&#8217;m busy moving all their data to the new server here. When I was inevitably baffled by the fact that the server here was installing older versions of everything I had installed on the server in Chicago, I came to a shocking revelation. This new server ran CentOS 4.4. The one in Chicago? CentOS 5. I really hope this works&#8230; I&#8217;ll keep my trusty audience posted.</p>
<p>And finally, I&#8217;ve recently decided to make a major change in my life. It&#8217;s mainly to put a lot of things behind me and it requires me to change just about everything. Hopefully you notice once it happens. If not, you&#8217;re blind. As always, I&#8217;ll keep everyone posted.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drewburden.com/2008/06/15/the-birthday-the-death-another-migration-and-upcoming-changes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
