<?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>WhyPad.com &#187; Programming</title>
	<atom:link href="http://www.whypad.com/category/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.whypad.com</link>
	<description>Tools and Tricks for Life and Tech</description>
	<lastBuildDate>Tue, 06 Dec 2011 22:35:45 +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>C# &#8211; NullReferenceException with TableAdapter and Scalar Values</title>
		<link>http://www.whypad.com/posts/c-nullreferenceexception-with-tableadapter-and-scalar-values/1017/</link>
		<comments>http://www.whypad.com/posts/c-nullreferenceexception-with-tableadapter-and-scalar-values/1017/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 22:35:45 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=1017</guid>
		<description><![CDATA[Ok, I&#8217;ve been hacking around this particular problem for a month now, but think I&#8217;ve got a bead on how to stop it. So, I hope this helps someone! The Situation I&#8217;ve got a TableAdapter in C# and I&#8217;m using a Query to return a scalar value that ultimately becomes a double data type. The [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/c-nullreferenceexception-with-tableadapter-and-scalar-values/1017/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iOS &#8211; FMDB is THE End to Your SQLite Nightmares</title>
		<link>http://www.whypad.com/posts/ios-fmdb-is-the-end-to-your-sqlite-nightmares/983/</link>
		<comments>http://www.whypad.com/posts/ios-fmdb-is-the-end-to-your-sqlite-nightmares/983/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 17:42:21 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[iOS]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[FMDB]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=983</guid>
		<description><![CDATA[When you&#8217;re writing apps for iPad or iPhone, you&#8217;ve got a couple of options for you database solutions.  By far the best options (if it fits your app&#8217;s data needs) is Apple&#8217;s own Core Data which can use SQLite as it&#8217;s database store.  Core Data is fast, efficient, an object store, and provides some great integration [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/ios-fmdb-is-the-end-to-your-sqlite-nightmares/983/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iOS &#8211; Get the NSIndexPath for a UITableViewCell by Row and Section</title>
		<link>http://www.whypad.com/posts/ios-get-the-nsindexpath-for-a-uitableviewcell-by-row-and-section/959/</link>
		<comments>http://www.whypad.com/posts/ios-get-the-nsindexpath-for-a-uitableviewcell-by-row-and-section/959/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 17:33:33 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[iOS]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[iPhone and iPad dev]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=959</guid>
		<description><![CDATA[Here&#8217;s a newby tip for iPhone and iPad developers&#8230;I am noob too I was trying to build an indexPath based on a row # and section, but none of the constructors I tried seemed to work&#8230;stuff like indexPathWithIndex: or indexPathWithIndexes:length. Back to the class reference for more reading. I found the answer in the NSIndexPath [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/ios-get-the-nsindexpath-for-a-uitableviewcell-by-row-and-section/959/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress &#8211; Tips on Creating and Updating Tables with dbDelta</title>
		<link>http://www.whypad.com/posts/wordpress-create-updat-tables-with-dbdelta/930/</link>
		<comments>http://www.whypad.com/posts/wordpress-create-updat-tables-with-dbdelta/930/#comments</comments>
		<pubDate>Sat, 23 Apr 2011 22:53:16 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=930</guid>
		<description><![CDATA[One of the reasons I LOVE WordPress is that it makes some mundane programming chores very easy, particularly working with the database. WP uses a modified version of the ezSQL to interact with the database, and provides a number of data cleansing functions, both of which are huge time savers. One other thing that WP [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/wordpress-create-updat-tables-with-dbdelta/930/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geek out: Programmers and Holidays</title>
		<link>http://www.whypad.com/posts/geek-out-programmers-and-dates/921/</link>
		<comments>http://www.whypad.com/posts/geek-out-programmers-and-dates/921/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 16:15:35 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[Miscellany]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[geek humor]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=921</guid>
		<description><![CDATA[A friend of mine shared this little joke&#8230;some of you may appreciate it Why do programmers confuse Halloween and Christmas? Click for answer Because: OCT31 == DEC25 Tweet it if you got it! Cheers, Byron]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/geek-out-programmers-and-dates/921/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Sort a Multi-dimensional Array by Value for a Key</title>
		<link>http://www.whypad.com/posts/php-sort-multi-dimensional-array/848/</link>
		<comments>http://www.whypad.com/posts/php-sort-multi-dimensional-array/848/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 18:37:37 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=848</guid>
		<description><![CDATA[Here&#8217;s a problem I&#8217;ve run into a time or two with sorting arrays. I had a multi-dimension array that I needed to sort on a the values for a specific key (&#8220;name&#8221; in this case). This array is similar to what you would get back from a mysql database query when you use ARRAY_A to [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/php-sort-multi-dimensional-array/848/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress: Code Formatting Plugin for your Blog</title>
		<link>http://www.whypad.com/posts/wordpress-code-formatting-plugin-for-your-blog/490/</link>
		<comments>http://www.whypad.com/posts/wordpress-code-formatting-plugin-for-your-blog/490/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 08:16:49 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=490</guid>
		<description><![CDATA[Sometimes my Googling skills are not what they ought to be.  I searched high and low for a code formatter for this blog, but for some reason I couldn&#8217;t come up with the search terms.  Seriously, in the real world, only a demented nerd would drool over the code presentation on other people&#8217;s blogs&#8230;but there [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/wordpress-code-formatting-plugin-for-your-blog/490/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

