<?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>ActiveSPLIT.com &#187; Programming</title>
	<atom:link href="http://www.activesplit.com/wpt/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.activesplit.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 10 Dec 2011 23:49:26 +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>Doxygen</title>
		<link>http://www.activesplit.com/doxygen-tutorial/</link>
		<comments>http://www.activesplit.com/doxygen-tutorial/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 18:33:49 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[documentation generator]]></category>
		<category><![CDATA[doxygen]]></category>
		<category><![CDATA[source code documentation]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=106</guid>
		<description><![CDATA[Doxygen is a source code documentation generator tool. Comment blocks are constructed like this: (JavaDoc style) /** *  multiline bloc&#8230; some text */ /// single ling comment&#8230; some text &#8220;some text&#8221; can be replaced with various special commands in order to make the generated documentation more user friendly. Doxygen special commans overview. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; Main project [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/doxygen-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Eclipse / Doxygen &#8211; Documentation Generator</title>
		<link>http://www.activesplit.com/eclipse-doxygen-documentation-generator/</link>
		<comments>http://www.activesplit.com/eclipse-doxygen-documentation-generator/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 17:22:07 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[documetation generation]]></category>
		<category><![CDATA[doxygen]]></category>
		<category><![CDATA[eclispe]]></category>
		<category><![CDATA[eclox]]></category>
		<category><![CDATA[generate]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[source documentation]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=103</guid>
		<description><![CDATA[Doxygen is a well known source code documentation generator. More information about it is available on their homepage. For all those of you who prefer Eclipse as your main development platform there is a plugin that provides a high-level graphical user interface integration over Doxygen. More info about Eclox.]]></description>
		<wfw:commentRss>http://www.activesplit.com/eclipse-doxygen-documentation-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C++  static keyword</title>
		<link>http://www.activesplit.com/c-plus-plus-static-keyword/</link>
		<comments>http://www.activesplit.com/c-plus-plus-static-keyword/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 23:10:36 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[internal linkage]]></category>
		<category><![CDATA[linkage]]></category>
		<category><![CDATA[static]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=97</guid>
		<description><![CDATA[The static keyword can be used in the following situations. When you declare a variable or function at file scope (global and/or namespace scope), the static keyword specifies that the variable or function has internal linkage. When you declare a variable, the variable has static duration and the compiler initializes it to 0 unless you [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/c-plus-plus-static-keyword/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C++ Generate random numbers in Range</title>
		<link>http://www.activesplit.com/c-generate-random-numbers-in-range/</link>
		<comments>http://www.activesplit.com/c-generate-random-numbers-in-range/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 15:06:49 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[max]]></category>
		<category><![CDATA[min]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[random number]]></category>
		<category><![CDATA[random number generator]]></category>
		<category><![CDATA[range]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=94</guid>
		<description><![CDATA[To make use of the rand() command you must include the cstdlib library #include &#60;cstdlib&#62; Before we generate a random number we call the srand(int) function to seed the randomizer so we dont get the same random number each time. #include &#60;ctime&#62; srand(time(NULL)); // time(NULL) returns seconds since 1.1.1970 To get the random number in [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/c-generate-random-numbers-in-range/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse square bracket [] problem</title>
		<link>http://www.activesplit.com/eclipse-square-bracket-problem/</link>
		<comments>http://www.activesplit.com/eclipse-square-bracket-problem/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 16:04:02 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[eclipse problem]]></category>
		<category><![CDATA[eclipse square bracket problem]]></category>
		<category><![CDATA[square bracket]]></category>
		<category><![CDATA[[]]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=88</guid>
		<description><![CDATA[Some people will experience a problem with Eclipse when trying to close the square brackets []. Eclipse will complain about not beeing able to evaluate a text selection and it won&#8217;t allow you typing that closing bracket. I got frustrated a bit because of not knowing whats going on. It wasn&#8217;t possible to write simple [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/eclipse-square-bracket-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Douglas Crockford: &#8220;The JavaScript Programming Language&#8221;</title>
		<link>http://www.activesplit.com/douglas-crockford-the-javascript-programming-language/</link>
		<comments>http://www.activesplit.com/douglas-crockford-the-javascript-programming-language/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 17:29:03 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[douglas crockford]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[The JavaScript Programming Language]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=85</guid>
		<description><![CDATA[In 4 videos Douglas Crockford gives us a very good overview of Javascript. A must view material for everyone new to Javascript. Douglas Crockford: &#8220;The Javascript Programming Language&#8221;]]></description>
		<wfw:commentRss>http://www.activesplit.com/douglas-crockford-the-javascript-programming-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VC++ .net2 application doesn&#8217;t run on Windows 2000?</title>
		<link>http://www.activesplit.com/vc-net2-application-doesnt-run-on-windows-2000/</link>
		<comments>http://www.activesplit.com/vc-net2-application-doesnt-run-on-windows-2000/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 23:59:35 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[debug mode]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[relase mode]]></category>
		<category><![CDATA[runtime libraries]]></category>
		<category><![CDATA[vc++]]></category>
		<category><![CDATA[vc++ application fail]]></category>
		<category><![CDATA[vc++ runtime libraries]]></category>
		<category><![CDATA[visual studio]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=22</guid>
		<description><![CDATA[Quite often there is a problem that VC++ applications won&#8217;t run on a Windows system that doesn&#8217;t have Visual Studio installed. The two most common reasons for that are: - Missing VC++ runtime libraries You can get them directly fromo Microsoft - The application is compiled in &#8220;Debug&#8221; mode. Some application require to be build [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/vc-net2-application-doesnt-run-on-windows-2000/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change the default language in Vistual Studio 2005</title>
		<link>http://www.activesplit.com/how-to-change-the-default-language-in-vistual-studio-2005/</link>
		<comments>http://www.activesplit.com/how-to-change-the-default-language-in-vistual-studio-2005/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 23:12:35 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[programming language]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[software programming]]></category>
		<category><![CDATA[visual studio]]></category>
		<category><![CDATA[visual studio default language]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=3</guid>
		<description><![CDATA[I ran into a problem of not knowing how to change the default language from C# to C++ in Visual Studio 2005, but finally discovered the solution which wasn&#8217;t simple and easy to find as presumed so I thought it would make a good tip for you guys reading this ;) - Go to Tools [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/how-to-change-the-default-language-in-vistual-studio-2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

