<?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>Seth Keiper &#187; Coding and Programming</title>
	<atom:link href="http://sethkeiper.com/category/overall/left-brain/coding-and-programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://sethkeiper.com</link>
	<description>Children are smarter than any of us. Know how I know that? I don&#039;t know one child with a full time job and children.</description>
	<lastBuildDate>Sat, 07 Jan 2012 16:29:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Drop all MySQL Stored Procedures</title>
		<link>http://sethkeiper.com/2011/06/29/drop-all-mysql-stored-procedures/</link>
		<comments>http://sethkeiper.com/2011/06/29/drop-all-mysql-stored-procedures/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 16:45:01 +0000</pubDate>
		<dc:creator>Seth Keiper</dc:creator>
				<category><![CDATA[Coding and Programming]]></category>
		<category><![CDATA[Left Brain]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Overall]]></category>

		<guid isPermaLink="false">http://sethkeiper.com/?p=115</guid>
		<description><![CDATA[Ever want to drop all MySQL Stored Procedures? Here is how you can do it: USE &#60;DATABASENAME&#62;; SELECT CONCAT_WS("", "DROP PROCEDURE IF EXISTS ", `R`.`SPECIFIC_NAME` ) AS DeleteStorePrecedure FROM `information_schema`.`ROUTINES` AS R WHERE `R`.`ROUTINE_TYPE` = "PROCEDURE" AND `R`.`ROUTINE_SCHEMA` = DATABASE() ; Alternatively, you can load this data into an outputted file: USE &#60;DATABASENAME&#62;; SELECT CONCAT_WS("", [...]]]></description>
		<wfw:commentRss>http://sethkeiper.com/2011/06/29/drop-all-mysql-stored-procedures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle VM VirtualBox 4.0.2</title>
		<link>http://sethkeiper.com/2011/01/18/oracle-vm-virtualbox-4-0-2/</link>
		<comments>http://sethkeiper.com/2011/01/18/oracle-vm-virtualbox-4-0-2/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 13:36:33 +0000</pubDate>
		<dc:creator>Seth Keiper</dc:creator>
				<category><![CDATA[BSD]]></category>
		<category><![CDATA[C or C++]]></category>
		<category><![CDATA[Coding and Programming]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Left Brain]]></category>
		<category><![CDATA[Overall]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://sk.c-wd.net/wp/?p=49</guid>
		<description><![CDATA[Oracle made a maintenance update release of Oracle VM VirtualBox version 4.0.2 today. You can download it now, or read about the changes in the ChangeLog.]]></description>
		<wfw:commentRss>http://sethkeiper.com/2011/01/18/oracle-vm-virtualbox-4-0-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL CREATE DATABASE with UTF8</title>
		<link>http://sethkeiper.com/2010/09/28/mysql-create-database-with-utf8/</link>
		<comments>http://sethkeiper.com/2010/09/28/mysql-create-database-with-utf8/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 18:43:10 +0000</pubDate>
		<dc:creator>Seth Keiper</dc:creator>
				<category><![CDATA[BSD]]></category>
		<category><![CDATA[Coding and Programming]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[OSes]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://sk.c-wd.net/wp/?p=34</guid>
		<description><![CDATA[From time to time, I tend to forget simple things, such as the exact syntax for creating a UTF8 database in MySQL. Here is an example: CREATE DATABASE IF NOT EXISTS `database_name` CHARACTER SET utf8 COLLATE utf8_general_ci; There we go.]]></description>
		<wfw:commentRss>http://sethkeiper.com/2010/09/28/mysql-create-database-with-utf8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sphider: a FOSS search engine</title>
		<link>http://sethkeiper.com/2009/07/27/sphider-a-foss-search-engine/</link>
		<comments>http://sethkeiper.com/2009/07/27/sphider-a-foss-search-engine/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 00:16:19 +0000</pubDate>
		<dc:creator>Seth Keiper</dc:creator>
				<category><![CDATA[Coding and Programming]]></category>
		<category><![CDATA[Left Brain]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Overall]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://sk.c-wd.net/wp/?p=25</guid>
		<description><![CDATA[Of course, you could just write your own spider/search engine. Not overly complex nor deeply involved. But what if you need it *now*? Enter in Sphider. Sphider is a lightweight web spider and search engine written in PHP, using MySQL as its back end database. Also the html is templatable. And kicker: it is free [...]]]></description>
		<wfw:commentRss>http://sethkeiper.com/2009/07/27/sphider-a-foss-search-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Standards Based Flash for XHTML or HTML</title>
		<link>http://sethkeiper.com/2008/03/08/html-for-standards-based-flash/</link>
		<comments>http://sethkeiper.com/2008/03/08/html-for-standards-based-flash/#comments</comments>
		<pubDate>Sat, 08 Mar 2008 07:45:58 +0000</pubDate>
		<dc:creator>Seth Keiper</dc:creator>
				<category><![CDATA[(x)HTML]]></category>

		<guid isPermaLink="false">http://sk.c-wd.net/wp/2008/03/08/html-for-standards-based-flash/</guid>
		<description><![CDATA[After wondering about this for a few days, I have seen places on the web attempt this. Surely, it must be possible to do and at the same be cross-browser compatible. Well, the following method works in both IE, FF, Opera, and Safari. Also, this method is valid in HTML 4.01 Strict and valid in [...]]]></description>
		<wfw:commentRss>http://sethkeiper.com/2008/03/08/html-for-standards-based-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(x)HTML DocTypes</title>
		<link>http://sethkeiper.com/2007/03/16/xhtml-doctypes/</link>
		<comments>http://sethkeiper.com/2007/03/16/xhtml-doctypes/#comments</comments>
		<pubDate>Fri, 16 Mar 2007 06:38:53 +0000</pubDate>
		<dc:creator>Seth Keiper</dc:creator>
				<category><![CDATA[(x)HTML]]></category>

		<guid isPermaLink="false">http://sk.c-wd.net/wp/2007/03/16/xhtml-doctypes/</guid>
		<description><![CDATA[HTML 4.01 Strict: &#60;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&#62; XHTML 1.0 Transitional: &#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&#62; XHTML 1.0 Strict: &#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&#62; XHTML 1.1: &#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"&#62;]]></description>
		<wfw:commentRss>http://sethkeiper.com/2007/03/16/xhtml-doctypes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML Runaway</title>
		<link>http://sethkeiper.com/2007/03/16/xml-runaway/</link>
		<comments>http://sethkeiper.com/2007/03/16/xml-runaway/#comments</comments>
		<pubDate>Fri, 16 Mar 2007 06:30:21 +0000</pubDate>
		<dc:creator>Seth Keiper</dc:creator>
				<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://sk.c-wd.net/wp/2007/03/16/xml-runaway/</guid>
		<description><![CDATA[&#60;?xml version="1.0" encoding="utf-8"?&#62; &#60;root&#62; &#60;say&#62;Hello&#60;/say&#62; &#60;/root&#62;]]></description>
		<wfw:commentRss>http://sethkeiper.com/2007/03/16/xml-runaway/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

