<?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>Random Drake</title>
	<atom:link href="http://randomdrake.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://randomdrake.com</link>
	<description>David Drake Covers Programming, Technology and Turbulence in Life</description>
	<lastBuildDate>Fri, 18 May 2012 15:16:50 +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>A Geek Gets His Day &#8211; Mark Zuckerberg at the Facebook IPO Opening Ceremony</title>
		<link>http://randomdrake.com/2012/05/18/a-geek-gets-his-day-mark-zuckerberg-at-the-facebook-ipo-opening-ceremony/</link>
		<comments>http://randomdrake.com/2012/05/18/a-geek-gets-his-day-mark-zuckerberg-at-the-facebook-ipo-opening-ceremony/#comments</comments>
		<pubDate>Fri, 18 May 2012 15:14:12 +0000</pubDate>
		<dc:creator>David Drake</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://randomdrake.com/?p=625</guid>
		<description><![CDATA[It is always inspiring to see a geek get his day. I don&#8217;t really get into the stock market but seeing the look on Mark Zuckerberg&#8216;s face as pretty awesome. You could almost hear him thiking: &#8220;Holy crap, I did this?&#8221; I thought he may actually shed a tear. I&#8217;m sure I&#8217;m not alone in [...]]]></description>
		<wfw:commentRss>http://randomdrake.com/2012/05/18/a-geek-gets-his-day-mark-zuckerberg-at-the-facebook-ipo-opening-ceremony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing Sticky or Unresponsive Windows in VirtuaWin for Windows 7</title>
		<link>http://randomdrake.com/2012/05/04/fixing-sticky-or-unresponsive-windows-in-virtuawin-for-windows-7/</link>
		<comments>http://randomdrake.com/2012/05/04/fixing-sticky-or-unresponsive-windows-in-virtuawin-for-windows-7/#comments</comments>
		<pubDate>Fri, 04 May 2012 17:05:30 +0000</pubDate>
		<dc:creator>David Drake</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://randomdrake.com/?p=620</guid>
		<description><![CDATA[I love developing with multiple desktops. For a long time I was looking for a solution that would work for me in Windows 7. Some worked, but they all seemed to have difficulties with my terminal windows or just not work very well at all. I use Cygwin running through mintty for my development in [...]]]></description>
		<wfw:commentRss>http://randomdrake.com/2012/05/04/fixing-sticky-or-unresponsive-windows-in-virtuawin-for-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Terminal Scrollbacks Write Data to Local Disk; Even Over SSH</title>
		<link>http://randomdrake.com/2012/03/07/terminal-scrollbacks-write-data-to-local-disk-even-over-ssh/</link>
		<comments>http://randomdrake.com/2012/03/07/terminal-scrollbacks-write-data-to-local-disk-even-over-ssh/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 14:21:46 +0000</pubDate>
		<dc:creator>David Drake</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://randomdrake.com/?p=610</guid>
		<description><![CDATA[I had always taken for granted that my SSH sessions were, well, secure. I just assumed that the contents of the scrollback buffer in a terminal would not be saved anywhere locally for something like this. My assumption was that it was stored in memory and flushed when the session was over. This allowed me [...]]]></description>
		<wfw:commentRss>http://randomdrake.com/2012/03/07/terminal-scrollbacks-write-data-to-local-disk-even-over-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Listing and Downloading Files Over SFTP with PHP and ssh2</title>
		<link>http://randomdrake.com/2012/02/08/listing-and-downloading-files-over-sftp-with-php-and-ssh2/</link>
		<comments>http://randomdrake.com/2012/02/08/listing-and-downloading-files-over-sftp-with-php-and-ssh2/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 15:05:03 +0000</pubDate>
		<dc:creator>David Drake</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://randomdrake.com/?p=590</guid>
		<description><![CDATA[While working on a project, I found myself having to download files using SFTP. This seemed like a fairly straightforward task and I thought PHP would surely have something that could help me along. A quick Google search provided me with ssh2_sftp to take a look at. I work in Micro$oft shop, so the ssh2 [...]]]></description>
		<wfw:commentRss>http://randomdrake.com/2012/02/08/listing-and-downloading-files-over-sftp-with-php-and-ssh2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Disabling Empty Tab Completion in Bash to Prevent Delays</title>
		<link>http://randomdrake.com/2012/01/30/disabling-empty-tab-completion-in-bash-to-prevent-delays/</link>
		<comments>http://randomdrake.com/2012/01/30/disabling-empty-tab-completion-in-bash-to-prevent-delays/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 21:14:57 +0000</pubDate>
		<dc:creator>David Drake</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://randomdrake.com/?p=583</guid>
		<description><![CDATA[While typing in a terminal, tab completion is a huge time saver. Being able to auto-complete file names or commands is very nice, especially if you can&#8217;t quite remember what it is. There are times, however, that this has become quite annoying for me as a developer. More than once a day when I really [...]]]></description>
		<wfw:commentRss>http://randomdrake.com/2012/01/30/disabling-empty-tab-completion-in-bash-to-prevent-delays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Opposite of War Isn&#8217;t Peace, it&#8217;s Creation</title>
		<link>http://randomdrake.com/2011/10/21/the-opposite-of-war-isnt-peace-its-creation/</link>
		<comments>http://randomdrake.com/2011/10/21/the-opposite-of-war-isnt-peace-its-creation/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 17:14:35 +0000</pubDate>
		<dc:creator>David Drake</dc:creator>
				<category><![CDATA[This Turbulent World]]></category>
		<category><![CDATA[devotion]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[military]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[war]]></category>

		<guid isPermaLink="false">http://randomdrake.com/?p=573</guid>
		<description><![CDATA[(Photos: Sgt. Lou Penney) (Full size) I refuse to accept the view that mankind is so tragically bound to the starless midnight of racism and war that the bright daybreak of peace and brotherhood can never become a reality&#8230; I believe that unarmed truth and unconditional love will have the final word.-Dr. Martin Luther King [...]]]></description>
		<wfw:commentRss>http://randomdrake.com/2011/10/21/the-opposite-of-war-isnt-peace-its-creation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Elements with jQuery and Internet Explorer</title>
		<link>http://randomdrake.com/2011/10/13/creating-elements-with-jquery-and-internet-explorer/</link>
		<comments>http://randomdrake.com/2011/10/13/creating-elements-with-jquery-and-internet-explorer/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 14:43:34 +0000</pubDate>
		<dc:creator>David Drake</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://randomdrake.com/?p=566</guid>
		<description><![CDATA[And if I had a gun, with two bullets, and I was in a room with Hitler, Bin Laden and Internet Explorer, I would shoot Internet Explorer twice. When creating HTML elements with jQuery, there is an elegant syntax that was introduced quite a few versions ago. $&#40;&#34;&#60;div/&#62;&#34;, &#123; id: 'someDiv', class: 'someClass', text: 'Some [...]]]></description>
		<wfw:commentRss>http://randomdrake.com/2011/10/13/creating-elements-with-jquery-and-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Joys of Merging Code</title>
		<link>http://randomdrake.com/2011/09/01/the-joys-of-merging-code/</link>
		<comments>http://randomdrake.com/2011/09/01/the-joys-of-merging-code/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 20:32:24 +0000</pubDate>
		<dc:creator>David Drake</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://randomdrake.com/?p=556</guid>
		<description><![CDATA[I consider myself lucky to work at a place where we have someone working QA to ensure the code we&#8217;re pushing out isn&#8217;t going to blow up. When a development ticket has passed through QA, we get an email to let us know. Usually saving the task of merging code until the end of the [...]]]></description>
		<wfw:commentRss>http://randomdrake.com/2011/09/01/the-joys-of-merging-code/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>No, PHP Errors and Notices Do Not Need to be Encoded</title>
		<link>http://randomdrake.com/2011/08/18/no-php-errors-and-notices-do-not-need-to-be-encoded/</link>
		<comments>http://randomdrake.com/2011/08/18/no-php-errors-and-notices-do-not-need-to-be-encoded/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 18:38:19 +0000</pubDate>
		<dc:creator>David Drake</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://randomdrake.com/?p=533</guid>
		<description><![CDATA[Programmers giving other programmers questionable advice is never a good thing. Because of this, I was sort of surprised when I finished reading a post from Neal Poole that hit the front page of Hacker News. Appearing on Hacker News as &#8220;Cross-Site Scripting? In PHP Notices? It&#8217;s more likely than you think,&#8221; his blog post [...]]]></description>
		<wfw:commentRss>http://randomdrake.com/2011/08/18/no-php-errors-and-notices-do-not-need-to-be-encoded/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Zend Framework and the Zend_Db_Select::where() and ::orWhere() Problem</title>
		<link>http://randomdrake.com/2011/08/15/zend-framework-and-their-zend_db_selectwhere-and-orwhere-problem/</link>
		<comments>http://randomdrake.com/2011/08/15/zend-framework-and-their-zend_db_selectwhere-and-orwhere-problem/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 20:52:54 +0000</pubDate>
		<dc:creator>David Drake</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://randomdrake.com/?p=487</guid>
		<description><![CDATA[To say that I dislike Zend Framework, would be an understatement. While it is powerful and capable of quite a bit, I find it to be a bit overkill for many (if not most) tasks and bloated in so many ways. But, I&#8217;m not a huge fan of frameworks to begin with. As programmers, we [...]]]></description>
		<wfw:commentRss>http://randomdrake.com/2011/08/15/zend-framework-and-their-zend_db_selectwhere-and-orwhere-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.966 seconds -->

