<?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>dropdeaddick.com &#187; dropdeaddick</title>
	<atom:link href="http://dropdeaddick.com/author/dropdeaddick/feed/" rel="self" type="application/rss+xml" />
	<link>http://dropdeaddick.com</link>
	<description>What The Hell is Blogging?</description>
	<lastBuildDate>Wed, 16 Nov 2011 16:57:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>American Censorship Day November 16</title>
		<link>http://dropdeaddick.com/2011/american-censorship-day-november-16-join-the-fight-to-stop-sopa/</link>
		<comments>http://dropdeaddick.com/2011/american-censorship-day-november-16-join-the-fight-to-stop-sopa/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 05:01:48 +0000</pubDate>
		<dc:creator>dropdeaddick</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://dropdeaddick.com/?p=215</guid>
		<description><![CDATA[American Censorship Day November 16 &#8211; Join the fight to stop SOPA. Today, Congress holds hearings on the first American Internet censorship system. This bill can pass. If it does the Internet and free speech will never be the same. &#8230; <a href="http://dropdeaddick.com/2011/american-censorship-day-november-16-join-the-fight-to-stop-sopa/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://americancensorship.org/">American Censorship Day November 16 &#8211; Join the fight to stop SOPA</a>.<br />
Today, Congress holds hearings on the first American Internet censorship system.<br />
This bill can pass. If it does the Internet and free speech will never be the same.<br />
Join all of us to stop this bill.</p>
]]></content:encoded>
			<wfw:commentRss>http://dropdeaddick.com/2011/american-censorship-day-november-16-join-the-fight-to-stop-sopa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kayako API: How to Post a Ticket</title>
		<link>http://dropdeaddick.com/2011/kayako-api-how-to-post-a-ticket/</link>
		<comments>http://dropdeaddick.com/2011/kayako-api-how-to-post-a-ticket/#comments</comments>
		<pubDate>Wed, 11 May 2011 03:15:10 +0000</pubDate>
		<dc:creator>dropdeaddick</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://dropdeaddick.com/?p=195</guid>
		<description><![CDATA[A basic PHP example of how to post a new ticket via the Kayako v4 Rest API &#60;?php &#160; $apiUrl = &#34;https://support.domain.com/api/index.php?e=/Tickets/Ticket&#34;; $apiKey = &#34;78db96b0-1t7c-aea4-bd51-7xf39d50cdd6&#34;; $salt = mt_rand&#40;&#41;; $secretKey = &#34;ZjBiZS0N2MtMzM3MTkyNTkxMjdiZWZkMGIjE3YmJiMGUtNmY0MC0yNWU0LWY5x6DktN1NzE0LWMxMGYyZDIzOThmYjY5YT7m&#34;; $signature = base64_encode&#40;hash_hmac&#40;'sha256',$salt,$secretKey,true&#41;&#41;; &#160; $subject = &#34;Test Ticket&#34;; $fullname &#8230; <a href="http://dropdeaddick.com/2011/kayako-api-how-to-post-a-ticket/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A basic PHP example of how to post a new ticket via the <a href="http://wiki.kayako.com/display/DEV/REST+API">Kayako v4 Rest API</a> </p>
<p><code>
<pre><span style="color: #ff0000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #000;">$apiUrl</span> = <span style="color: #cc0000;">&quot;https://support.domain.com/api/index.php?e=/Tickets/Ticket&quot;</span>;
<span style="color: #000;">$apiKey</span> = <span style="color: #cc0000;">&quot;78db96b0-1t7c-aea4-bd51-7xf39d50cdd6&quot;</span>;
<span style="color: #000;">$salt</span> = <span style="color: #0000FF;">mt_rand</span><span style="color: #000099;">&#40;</span><span style="color: #000099;">&#41;</span>;
<span style="color: #000;">$secretKey</span> = <span style="color: #cc0000;">&quot;ZjBiZS0N2MtMzM3MTkyNTkxMjdiZWZkMGIjE3YmJiMGUtNmY0MC0yNW</br>U0LWY5x6DktN1NzE0LWMxMGYyZDIzOThmYjY5YT7m&quot;</span>;
<span style="color: #000;">$signature</span> = <span style="color: #0000FF;">base64_encode</span><span style="color: #000099;">&#40;</span><span style="color: #0000FF;">hash_hmac</span><span style="color: #000099;">&#40;</span><span style="color: #cc0000;">'sha256'</span>,<span style="color: #000;">$salt</span>,<span style="color: #000;">$secretKey</span>,<span style="color: #006600;">true</span><span style="color: #000099;">&#41;</span><span style="color: #000099;">&#41;</span>;
&nbsp;
<span style="color: #000;">$subject</span> = <span style="color: #cc0000;">&quot;Test Ticket&quot;</span>;
<span style="color: #000;">$fullname</span> = <span style="color: #cc0000;">&quot;DropDeadDick&quot;</span>;
<span style="color: #000;">$email</span> = <span style="color: #cc0000;">&quot;test@domain.com&quot;</span>;
<span style="color: #000;">$contents</span> = <span style="color: #cc0000;">&quot;Test test test test&quot;</span>;
<span style="color: #000;">$departmentid</span> = <span style="color: #cc0000;">&quot;1&quot;</span>;
<span style="color: #000;">$ticketstatusid</span> = <span style="color: #cc0000;">&quot;1&quot;</span>;
<span style="color: #000;">$ticketpriorityid</span> = <span style="color: #cc0000;">&quot;1&quot;</span>;
<span style="color: #000;">$tickettypeid</span> = <span style="color: #cc0000;">&quot;1&quot;</span>;
<span style="color: #000;">$staffid</span> = <span style="color: #cc0000;">&quot;1&quot;</span>;
&nbsp;
<span style="color: #000;">$post_data</span> = <span style="color: #0000FF;">array</span><span style="color: #000099;">&#40;</span><span style="color: #cc0000;">'subject'</span> =<span style="color: #0000ff;">&gt;</span> <span style="color: #000;">$subject</span>,
 <span style="color: #cc0000;">'fullname'</span> =<span style="color: #0000ff;">&gt;</span> <span style="color: #000;">$fullname</span>,
 <span style="color: #cc0000;">'email'</span> =<span style="color: #0000ff;">&gt;</span> <span style="color: #000;">$email</span>,
 <span style="color: #cc0000;">'contents'</span> =<span style="color: #0000ff;">&gt;</span> <span style="color: #000;">$contents</span>,
 <span style="color: #cc0000;">'departmentid'</span> =<span style="color: #0000ff;">&gt;</span> <span style="color: #000;">$departmentid</span>,
 <span style="color: #cc0000;">'ticketstatusid'</span> =<span style="color: #0000ff;">&gt;</span> <span style="color: #000;">$ticketstatusid</span>,
 <span style="color: #cc0000;">'ticketpriorityid'</span> =<span style="color: #0000ff;">&gt;</span> <span style="color: #000;">$ticketpriorityid</span>,
 <span style="color: #cc0000;">'tickettypeid'</span> =<span style="color: #0000ff;">&gt;</span> <span style="color: #000;">$tickettypeid</span>,
 <span style="color: #cc0000;">'staffid'</span> =<span style="color: #0000ff;">&gt;</span> <span style="color: #000;">$staffid</span>,
 <span style="color: #cc0000;">'apikey'</span> =<span style="color: #0000ff;">&gt;</span> <span style="color: #000;">$apiKey</span>,
 <span style="color: #cc0000;">'salt'</span> =<span style="color: #0000ff;">&gt;</span> <span style="color: #000;">$salt</span>,
 <span style="color: #cc0000;">'signature'</span> =<span style="color: #0000ff;">&gt;</span> <span style="color: #000;">$signature</span><span style="color: #000099;">&#41;</span>;
&nbsp;
<span style="color: #000;">$post_data</span> = <span style="color: #0000FF;">http_build_query</span><span style="color: #000099;">&#40;</span><span style="color: #000;">$post_data</span>, <span style="color: #cc0000;">''</span>, <span style="color: #cc0000;">'&amp;'</span><span style="color: #000099;">&#41;</span>;
&nbsp;
<span style="color: #000;">$curl</span> = <span style="color: #0000FF;">curl_init</span><span style="color: #000099;">&#40;</span><span style="color: #000;">$apiUrl</span><span style="color: #000099;">&#41;</span>;
<span style="color: #0000FF;">curl_setopt</span><span style="color: #000099;">&#40;</span><span style="color: #000;">$curl</span>, CURLOPT_SSL_VERIFYPEER, <span style="color: #006600;">false</span><span style="color: #000099;">&#41;</span>;
<span style="color: #0000FF;">curl_setopt</span><span style="color: #000099;">&#40;</span><span style="color: #000;">$curl</span>, CURLOPT_POST, <span style="color: #006600;">true</span><span style="color: #000099;">&#41;</span>;
<span style="color: #0000FF;">curl_setopt</span><span style="color: #000099;">&#40;</span><span style="color: #000;">$curl</span>, CURLOPT_URL, <span style="color: #000;">$apiUrl</span><span style="color: #000099;">&#41;</span>;
<span style="color: #0000FF;">curl_setopt</span><span style="color: #000099;">&#40;</span><span style="color: #000;">$curl</span>, CURLOPT_HEADER, <span style="color: #006600;">false</span><span style="color: #000099;">&#41;</span>;
<span style="color: #0000FF;">curl_setopt</span><span style="color: #000099;">&#40;</span><span style="color: #000;">$curl</span>, CURLOPT_RETURNTRANSFER, <span style="color: #006600;">true</span><span style="color: #000099;">&#41;</span>;
<span style="color: #0000FF;">curl_setopt</span><span style="color: #000099;">&#40;</span><span style="color: #000;">$curl</span>, CURLOPT_POSTFIELDS, <span style="color: #000;">$post_data</span><span style="color: #000099;">&#41;</span>;
&nbsp;
<span style="color: #000;">$response</span> = <span style="color: #0000FF;">curl_exec</span><span style="color: #000099;">&#40;</span><span style="color: #000;">$curl</span><span style="color: #000099;">&#41;</span>;
<span style="color: #0000FF;">curl_close</span><span style="color: #000099;">&#40;</span><span style="color: #000;">$curl</span><span style="color: #000099;">&#41;</span>;
&nbsp;
<span style="color: #000;">$xml</span> = <span style="color: #0000FF;">simplexml_load_string</span><span style="color: #000099;">&#40;</span><span style="color: #000;">$response</span>, <span style="color: #cc0000;">'SimpleXMLElement'</span>, LIBXML_NOCDATA<span style="color: #000099;">&#41;</span>;
<span style="color: #0000FF;">echo</span> <span style="color: #cc0000;">&quot;&lt;pre&gt;&quot;</span><span style="color: #0000ff;">.</span><span style="color: #0000FF;">print_r</span><span style="color: #000099;">&#40;</span><span style="color: #000;">$xml</span>, <span style="color: #006600;">true</span><span style="color: #000099;">&#41;</span><span style="color: #0000ff;">.</span><span style="color: #cc0000;">&quot;&lt;/pre&gt;&quot;</span>;
 <span style="color: #ff0000; font-weight: bold;">?&gt;</span></pre>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://dropdeaddick.com/2011/kayako-api-how-to-post-a-ticket/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>cPanel &#8211; Fix Ownership of /home/user</title>
		<link>http://dropdeaddick.com/2011/cpanel-fix-ownership-of-homeuser/</link>
		<comments>http://dropdeaddick.com/2011/cpanel-fix-ownership-of-homeuser/#comments</comments>
		<pubDate>Sat, 19 Feb 2011 22:33:04 +0000</pubDate>
		<dc:creator>dropdeaddick</dc:creator>
				<category><![CDATA[cPanel]]></category>

		<guid isPermaLink="false">http://dropdeaddick.com/?p=188</guid>
		<description><![CDATA[I recently had an issue with incorrect ownership of all files under /home/user/ due to mismatched UIDs after a cPanel server restore. The following script took care of this in no time. echo -e "Checking ownership of /home/user \n" for &#8230; <a href="http://dropdeaddick.com/2011/cpanel-fix-ownership-of-homeuser/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently had an issue with incorrect ownership of all files under /home/user/ due to mismatched UIDs after a cPanel server restore. The following script took care of this in no time.</p>
<p><code>echo -e "Checking ownership of /home/user \n"<br />
for i in `ls /var/cpanel/users/`<br />
  do<br />
   if [ "$i" != "root" ]; then<br />
    chown -R $i:$i /home/$i<br />
    chown $i:nobody /home/$i/public_html /home/$i/.htpasswds<br />
    chown $i:mail /home/$i/etc /home/$i/etc/*/shadow /home/$i/etc/*/passwd<br />
    echo $i<br />
   fi<br />
done</code></p>
]]></content:encoded>
			<wfw:commentRss>http://dropdeaddick.com/2011/cpanel-fix-ownership-of-homeuser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress for Android</title>
		<link>http://dropdeaddick.com/2010/wordpress-for-android/</link>
		<comments>http://dropdeaddick.com/2010/wordpress-for-android/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 03:16:10 +0000</pubDate>
		<dc:creator>dropdeaddick</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://dropdeaddick.com/2010/wordpress-for-android/</guid>
		<description><![CDATA[Testing WordPress for Android via Droid X. You can scan the code below to download WordPress for Android.]]></description>
			<content:encoded><![CDATA[<p>Testing WordPress for Android via Droid X.</p>
<p>You  can scan the code below to download WordPress for Android.</p>
<p><img style="margin-right:auto;margin-left:auto;" alt="wordpress_qrcode" src="http://dropdeaddick.com/wp-content/uploads/wpid-wordpress_qrcode.png" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dropdeaddick.com/2010/wordpress-for-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cPanel Webmail Direct Login Script</title>
		<link>http://dropdeaddick.com/2010/cpanel-webmail-direct-login-script/</link>
		<comments>http://dropdeaddick.com/2010/cpanel-webmail-direct-login-script/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 14:57:44 +0000</pubDate>
		<dc:creator>dropdeaddick</dc:creator>
				<category><![CDATA[cPanel]]></category>

		<guid isPermaLink="false">http://dropdeaddick.com/?p=131</guid>
		<description><![CDATA[A simple and configurable script for direct login to the cPanel webmail applications(Horde, SquirrelMail, RoundCube). &#60;?php // Modified version of the standard cPanel login page to allow direct login to a specific webmail application. // Must set $host , $login_path &#8230; <a href="http://dropdeaddick.com/2010/cpanel-webmail-direct-login-script/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A simple and configurable script for direct login to the cPanel webmail applications(Horde, SquirrelMail, RoundCube).<br />
<code><br />
<span style="color: #ff0000; font-weight: bold;">&lt;?php</span><br />
<span style="color: #ff9900;">// Modified version of the standard cPanel login page to allow direct login to a specific webmail application.</span><br />
<span style="color: #ff9900;">// Must set $host , $login_path , and $mail_app, defaults to cPanel proxy subdomains and SquirrelMail</span><br />
<span style="color: #000;">$host</span> = <span style="color: #cc0000;">'example.com'</span>;<br />
<span style="color: #ff9900;">// Uncomment one of the following to set login URL type</span><br />
</code><br />
<strong><a href="http://www.dropdeaddick.com/files/cpanel-webmail-login.php">View full script</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://dropdeaddick.com/2010/cpanel-webmail-direct-login-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cPanel Email Filter for IP Range</title>
		<link>http://dropdeaddick.com/2010/cpanel-email-filter-for-ip-range/</link>
		<comments>http://dropdeaddick.com/2010/cpanel-email-filter-for-ip-range/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 01:21:40 +0000</pubDate>
		<dc:creator>dropdeaddick</dc:creator>
				<category><![CDATA[cPanel]]></category>

		<guid isPermaLink="false">http://dropdeaddick.com/?p=124</guid>
		<description><![CDATA[I recently needed to block a large amount of incoming email via IP range in cPanel for a single account versus blocking the IP range on the entire server. This was accomplished using cPanel&#8217;s Account Level Filtering for Mail. Here &#8230; <a href="http://dropdeaddick.com/2010/cpanel-email-filter-for-ip-range/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently needed to block a large amount of incoming email via IP range in cPanel for a single account versus blocking the IP range on the entire server. This was accomplished using cPanel&#8217;s Account Level Filtering for Mail.</p>
<p>Here is the filter setting using 192.168.0.0/24 as an example.</p>
<pre>Rules:
Any Header
matches regex
192\.168\.{1,3}\.{1,3}

Action:
Discard Message</pre>
<p><a href="http://dropdeaddick.com/wp-content/uploads/mailfilter.jpg"><img src="http://dropdeaddick.com/wp-content/uploads/mailfilter-300x109.jpg" alt="cpanel mail filter" title="mailfilter" width="300" height="109" class="alignnone size-medium wp-image-160" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://dropdeaddick.com/2010/cpanel-email-filter-for-ip-range/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snowing in Houston</title>
		<link>http://dropdeaddick.com/2009/snowing-in-houston/</link>
		<comments>http://dropdeaddick.com/2009/snowing-in-houston/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 20:04:45 +0000</pubDate>
		<dc:creator>dropdeaddick</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://dropdeaddick.com/2009/snowing-in-houston/</guid>
		<description><![CDATA[It&#8217;s snowing here in Houston today! We don&#8217;t see snow that often here and it sure doesn&#8217;t compare to the snow when I am up in Michigan. However it is a welcome change and distraction from the normal Texas weather. &#8230; <a href="http://dropdeaddick.com/2009/snowing-in-houston/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s snowing here in Houston today! We don&#8217;t see snow that often here and it sure doesn&#8217;t compare to the snow when I am up in Michigan. However it is a welcome change and distraction from the normal Texas weather. It is expected to continue though the rest of the day and we may actually see more than 2 inches. I don&#8217;t mind at all, just gives me a reason to kick the dodge into 4 wheel drive. </p>
<p><a href="http://dropdeaddick.com/wp-content/uploads/IMG00103.jpg"><img class="alignnone size-full" src="http://dropdeaddick.com/wp-content/uploads/IMG00103.jpg" alt="" title="IMG00103.jpg" width="640" height="480" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://dropdeaddick.com/2009/snowing-in-houston/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bookworm Addiction</title>
		<link>http://dropdeaddick.com/2009/bookworm-addiction/</link>
		<comments>http://dropdeaddick.com/2009/bookworm-addiction/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 20:03:18 +0000</pubDate>
		<dc:creator>dropdeaddick</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://dropdeaddick.com/?p=56</guid>
		<description><![CDATA[I seemed to have a new found addiction to Bookworm. This is not a new game to me but I recently installed in on my notebook and can&#8217;t seem to stop playing it. To make matters worse, Sharlet of SharletsWorld.com &#8230; <a href="http://dropdeaddick.com/2009/bookworm-addiction/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I seemed to have a new found addiction to Bookworm. This is not a new game to me but I recently installed in on my notebook and can&#8217;t seem to stop playing it. </p>
<p>To make matters worse, Sharlet of SharletsWorld.com has been taunting me about my scores. I think I have her beat with my new score(3,452,580), but I really don&#8217;t see this ending well for me. </p>
<p><a href="http://dropdeaddick.com/wp-content/uploads/bookworm.jpg"><img src="http://dropdeaddick.com/wp-content/uploads/bookworm-300x238.jpg" alt="" title="bookworm" width="300" height="238" class="alignnone size-medium wp-image-95" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://dropdeaddick.com/2009/bookworm-addiction/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Edible Arrangement</title>
		<link>http://dropdeaddick.com/2009/edible-arrangement/</link>
		<comments>http://dropdeaddick.com/2009/edible-arrangement/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 18:29:30 +0000</pubDate>
		<dc:creator>dropdeaddick</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://dropdeaddick.com/2009/edible-arrangement/</guid>
		<description><![CDATA[I received an edible arrangement today from a friend for helping with her web design class. I have seen these before but never tried them nor received one until now. I enjoy fresh fruit but don&#8217;t eat it as often &#8230; <a href="http://dropdeaddick.com/2009/edible-arrangement/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I received an edible arrangement today from a friend for helping with her web design class. I have seen these before but never tried them nor received one until now.  I enjoy fresh fruit but don&#8217;t eat it as often as I should, so this was a welcome treat.</p>
<p>Thanks Cathy!</p>
<p><a href="http://dropdeaddick.com/wp-content/uploads/fruit.jpg"><img src="http://dropdeaddick.com/wp-content/uploads/fruit-300x225.jpg" alt="" title="fruit" width="300" height="225" class="alignnone size-medium wp-image-94" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://dropdeaddick.com/2009/edible-arrangement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My New &#8220;Desk&#8221;</title>
		<link>http://dropdeaddick.com/2009/my-new-desk/</link>
		<comments>http://dropdeaddick.com/2009/my-new-desk/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 15:31:37 +0000</pubDate>
		<dc:creator>dropdeaddick</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://dropdeaddick.com/2009/my-new-desk/</guid>
		<description><![CDATA[My job requires a lot of hours at the keyboard, so I decide to swap my desk for something a bit more comfortable. After a little searching I opted for a recliner and a LCD stand. To round out the &#8230; <a href="http://dropdeaddick.com/2009/my-new-desk/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My job requires a lot of hours at the keyboard, so I decide to swap my desk for something a bit more comfortable. After a little searching I opted for a recliner and a LCD stand. </p>
<p>To round out the setup, I tossed in a wireless keyboard, wireless mouse, and a nice lap board. My only complaints so far are that the stand is held in place by the weight of the recliner and I hate the keyboard.  However, I have yet to knock it over and have pre ordered the new Logitech K340 compact keyboard. </p>
<p><a href="http://dropdeaddick.com/wp-content/uploads/desk.jpg"><img src="http://dropdeaddick.com/wp-content/uploads/desk-300x225.jpg" alt="" title="desk" width="300" height="225" class="alignnone size-medium wp-image-96" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://dropdeaddick.com/2009/my-new-desk/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

