<?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>KTurley.com</title>
	<atom:link href="http://kturley.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://kturley.com</link>
	<description>the Notes of a Computer Programmer</description>
	<lastBuildDate>Thu, 19 Aug 2010 19:08:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Easy method to get rid of stubborn malware</title>
		<link>http://kturley.com/?p=301</link>
		<comments>http://kturley.com/?p=301#comments</comments>
		<pubDate>Thu, 19 Aug 2010 19:08:58 +0000</pubDate>
		<dc:creator>kturley</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://kturley.com/?p=301</guid>
		<description><![CDATA[Boot the machine into safe mode with networking. add a new user with administrator privileges. copy the contents of the old account&#8217;s my documents folder to the newly created account. reboot the machine and log on to the new account. If things seem to work fine, delete the old user account.]]></description>
		<wfw:commentRss>http://kturley.com/?feed=rss2&amp;p=301</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Doubly Linked List (C++)</title>
		<link>http://kturley.com/?p=273</link>
		<comments>http://kturley.com/?p=273#comments</comments>
		<pubDate>Thu, 29 Apr 2010 22:45:42 +0000</pubDate>
		<dc:creator>kturley</dc:creator>
				<category><![CDATA[C++ code]]></category>

		<guid isPermaLink="false">http://kturley.com/?p=273</guid>
		<description><![CDATA[This code is an implementation and test driver of a doubly linked list. This list is pointer based and uses dynamic memory. Sorted Doubly Linked List with Insertion and Deletion #include &#60;iostream&#62; #include &#60;cstdlib&#62; #include &#60;string&#62; using namespace std; class Dllist { private: typedef struct Node { string name; Node* next; Node* prev; }; Node* [...]]]></description>
		<wfw:commentRss>http://kturley.com/?feed=rss2&amp;p=273</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Text File the Right Way. (C++)</title>
		<link>http://kturley.com/?p=268</link>
		<comments>http://kturley.com/?p=268#comments</comments>
		<pubDate>Thu, 29 Apr 2010 22:31:25 +0000</pubDate>
		<dc:creator>kturley</dc:creator>
				<category><![CDATA[C++ code]]></category>

		<guid isPermaLink="false">http://kturley.com/?p=268</guid>
		<description><![CDATA[This code is a simple example of how to safely open a text file in C++. Notice the very important check that the file was opened correctly. This covers a range of errors,  most commonly file not found. // Read integers from file and print sum. #include &#60;iostream&#62; #include &#60;iomanip&#62; #include &#60;fstream&#62; #include &#60;string&#62; using [...]]]></description>
		<wfw:commentRss>http://kturley.com/?feed=rss2&amp;p=268</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Press any key to Continue&#8230;(C++)</title>
		<link>http://kturley.com/?p=227</link>
		<comments>http://kturley.com/?p=227#comments</comments>
		<pubDate>Tue, 02 Mar 2010 00:29:24 +0000</pubDate>
		<dc:creator>kturley</dc:creator>
				<category><![CDATA[C++ code]]></category>

		<guid isPermaLink="false">http://kturley.com/?p=227</guid>
		<description><![CDATA[this snippet of code is an alternative to system(&#8220;pause&#8221;) in MS Visual Studio. /* * File: SystemPause.cpp * Author: B Turley * * This function can be used as a substitute for 'system(&#34;pause&#34;)' * in Microsoft Visual Studio * * Created on November 10, 2009, 1:17 AM */ #include &#38;lt;iostream&#38;gt; #include &#38;lt;limits&#38;gt; using namespace std; [...]]]></description>
		<wfw:commentRss>http://kturley.com/?feed=rss2&amp;p=227</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>String to Int function (C++)</title>
		<link>http://kturley.com/?p=222</link>
		<comments>http://kturley.com/?p=222#comments</comments>
		<pubDate>Tue, 16 Feb 2010 23:39:39 +0000</pubDate>
		<dc:creator>kturley</dc:creator>
				<category><![CDATA[C++ code]]></category>

		<guid isPermaLink="false">http://kturley.com/?p=222</guid>
		<description><![CDATA[This little piece of code can convert a string of decimal characters into an integer value.  If you seek to convert a string into a double, see this post. /* * A function to convert a string into an integer */ #include &#38;lt;string&#38;gt; int StringToInt (std::string str) { int total = 0; int length = [...]]]></description>
		<wfw:commentRss>http://kturley.com/?feed=rss2&amp;p=222</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Pretend Radio Class (C++)</title>
		<link>http://kturley.com/?p=209</link>
		<comments>http://kturley.com/?p=209#comments</comments>
		<pubDate>Mon, 15 Feb 2010 07:13:56 +0000</pubDate>
		<dc:creator>kturley</dc:creator>
				<category><![CDATA[C++ code]]></category>

		<guid isPermaLink="false">http://kturley.com/?p=209</guid>
		<description><![CDATA[This C++ class is a good demonstration of Object Orientation in code. Download the  entire code: RadioClass.zip // definition file for class Radio #ifndef RADIO_H #define RADIO_H #include &#60;iostream&#62; using namespace std; const bool FM = true; const bool AM = false; const bool ON = true; const bool OFF = false; const int MIN_VOLUME [...]]]></description>
		<wfw:commentRss>http://kturley.com/?feed=rss2&amp;p=209</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Calculator Program Made in Visual Basic</title>
		<link>http://kturley.com/?p=193</link>
		<comments>http://kturley.com/?p=193#comments</comments>
		<pubDate>Mon, 08 Feb 2010 13:06:24 +0000</pubDate>
		<dc:creator>kturley</dc:creator>
				<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://clicksonlinedesign.com/wordpress/?p=193</guid>
		<description><![CDATA[This simple calculator is a great example for beginners to examine to understand the basics of Visual Basic.  I must warn you that this isn&#8217;t perfect, but perfecting it would be an excellent exercise for a novice Visual Basic programmer. -           Download: VBcalc.zip - This download is a Microsoft Visual Studio [...]]]></description>
		<wfw:commentRss>http://kturley.com/?feed=rss2&amp;p=193</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Doubly linked Stack Class (C++)</title>
		<link>http://kturley.com/?p=170</link>
		<comments>http://kturley.com/?p=170#comments</comments>
		<pubDate>Sat, 06 Feb 2010 02:02:47 +0000</pubDate>
		<dc:creator>kturley</dc:creator>
				<category><![CDATA[C++ code]]></category>

		<guid isPermaLink="false">http://clicksonlinedesign.com/wordpress/?p=170</guid>
		<description><![CDATA[Definition file, stack.h #ifndef STACK_H #define STACK_H #include &#60;string&#62; using namespace std; typedef string ItemType; // Change the datatype of the stack here //------------------------------------------------------------------------- // Class: Stack // Class implements a doubly linked list of string items. //------------------------------------------------------------------------- class Stack { private: class Node; typedef Node* NodePtr; //------------------------------------------------------------------------- // Class: Node // A doubly linked [...]]]></description>
		<wfw:commentRss>http://kturley.com/?feed=rss2&amp;p=170</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome.</title>
		<link>http://kturley.com/?p=133</link>
		<comments>http://kturley.com/?p=133#comments</comments>
		<pubDate>Fri, 05 Feb 2010 15:51:19 +0000</pubDate>
		<dc:creator>kturley</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://clicksonlinedesign.com/wordpress/?p=133</guid>
		<description><![CDATA[This website is a scrapbook of my various projects. Enjoy! B. Kyle Turley 23 years old, married. Computer Science major + mathematics minor  at Southern Illinois University Edwardsville. Owner of Clicks Online Design. My hobbies include vegetable gardening, guitar picking, and forcing computers to do my bidding. email me &#8211;  kyle@kturley.com]]></description>
		<wfw:commentRss>http://kturley.com/?feed=rss2&amp;p=133</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Greatest Common Divisor (Euclidean Algorithm C++)</title>
		<link>http://kturley.com/?p=106</link>
		<comments>http://kturley.com/?p=106#comments</comments>
		<pubDate>Fri, 05 Feb 2010 13:41:50 +0000</pubDate>
		<dc:creator>kturley</dc:creator>
				<category><![CDATA[C++ code]]></category>

		<guid isPermaLink="false">http://clicksonlinedesign.com/wordpress/?p=106</guid>
		<description><![CDATA[This piece of code can determine the GCD of two numbers by applying the euclidean algorithm recursively. // euclid.cpp : main project file. #include &#60;iostream&#62; #include &#60;string&#62; #include &#60;fstream&#62; #include &#60;iomanip&#62; //required to use setw() using namespace std; void setOrder(int num1, int num2); int GCD(int num1, int num2); int main(void) { int num1 = 27; int [...]]]></description>
		<wfw:commentRss>http://kturley.com/?feed=rss2&amp;p=106</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
