<?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>@randymelder &#187; C / C++ / Objective-C</title>
	<atom:link href="http://randymelder.com/category/technology/c_cpp_programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://randymelder.com</link>
	<description>random randy ramblings</description>
	<lastBuildDate>Thu, 26 Jan 2012 17:14:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>plotto the office lottery pool iphone app</title>
		<link>http://randymelder.com/2011/07/28/plotto-the-office-lottery-pool-iphone-app/</link>
		<comments>http://randymelder.com/2011/07/28/plotto-the-office-lottery-pool-iphone-app/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 04:46:08 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[C / C++ / Objective-C]]></category>
		<category><![CDATA[iOS iPhone iPad]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[plotto]]></category>

		<guid isPermaLink="false">http://randymelder.com/?p=4481</guid>
		<description><![CDATA[Update: 2011-08-27 - Price change to $.95! yes, just Ninety-Five cents! Rock out America! - Version 1.1 coming soon! - Also, there&#8217;s been some curiosity about data persistence in the app, so let me clear this up. All app data is stored on the phone using a SQLite database. No data is stored remotely and [...]]]></description>
		<wfw:commentRss>http://randymelder.com/2011/07/28/plotto-the-office-lottery-pool-iphone-app/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Book Review: Programming iOS 4</title>
		<link>http://randymelder.com/2011/07/13/book_review_programming_ios_4/</link>
		<comments>http://randymelder.com/2011/07/13/book_review_programming_ios_4/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 22:55:19 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[C / C++ / Objective-C]]></category>
		<category><![CDATA[iOS iPhone iPad]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://randymelder.com/?p=4391</guid>
		<description><![CDATA[&#8220;Programming iOS 4&#8243; by Matt Neuburg; O&#8217;Reilly Media Summary: Good book. Lots of background on Objective-C. Good for experienced programmers that are new to programming Objective-C and those needing review of the basics. Great for programmers new to iOS. I&#8217;ve just finished reading &#8220;Programming iOS 4&#8243; by Matt Neuburg. It&#8217;s a book about programming Objective-C [...]]]></description>
		<wfw:commentRss>http://randymelder.com/2011/07/13/book_review_programming_ios_4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ANSI C++ MySQL Client Wrapper Class</title>
		<link>http://randymelder.com/2010/05/24/ansi-c-mysql-client-wrapper-class/</link>
		<comments>http://randymelder.com/2010/05/24/ansi-c-mysql-client-wrapper-class/#comments</comments>
		<pubDate>Mon, 24 May 2010 21:51:37 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[C / C++ / Objective-C]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[c c++ mysql oop]]></category>

		<guid isPermaLink="false">http://www.randymelder.com/?p=222</guid>
		<description><![CDATA[So as you can imagine by the title, I was recently tasked with working on a command line project for MySQL. I wanted to be able to reuse whatever I made, so that meant creating a down and dirty wrapper class for some of the MySQL C API functions. This is my start. Another requirement [...]]]></description>
		<wfw:commentRss>http://randymelder.com/2010/05/24/ansi-c-mysql-client-wrapper-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CGI Hit Counter</title>
		<link>http://randymelder.com/2010/03/20/cgi-hit-counter/</link>
		<comments>http://randymelder.com/2010/03/20/cgi-hit-counter/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 21:38:27 +0000</pubDate>
		<dc:creator>Randy</dc:creator>
				<category><![CDATA[C / C++ / Objective-C]]></category>
		<category><![CDATA[c plus plus]]></category>
		<category><![CDATA[c programming]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[cgi]]></category>

		<guid isPermaLink="false">http://www.randymelder.com/?p=211</guid>
		<description><![CDATA[C++ Hit Counter, 1.0. Non-Object Oriented. Pretty light weight. // // HitCounter // @author Randy Melder // @version 1.0 // #include &#60;iostream&#62; #include &#60;fstream&#62; using namespace std; // file name const char *filename = "/tmp/hits.bin"; // quantity of hits struct Hits { long unsigned num_hits; }; void readHitsFile(const char *file_name, Hits *hits); void writeHitsFile(const char [...]]]></description>
		<wfw:commentRss>http://randymelder.com/2010/03/20/cgi-hit-counter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

