<?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>VictorByte</title>
	<atom:link href="http://victorbyte.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://victorbyte.net</link>
	<description></description>
	<lastBuildDate>Sun, 22 Aug 2010 04:53:24 +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>Exercise : QObject&#8217;s Child Management.</title>
		<link>http://victorbyte.net/?p=259</link>
		<comments>http://victorbyte.net/?p=259#comments</comments>
		<pubDate>Mon, 26 Jul 2010 03:55:07 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Exercise : QObject's Child Management.]]></category>

		<guid isPermaLink="false">http://victorbyte.net/?p=259</guid>
		<description><![CDATA[void showTree(QObject* theparent){ &#160; &#160;cout &#60;&#60; &#34;\nMember: &#34; + theparent-&#62;objectName() + &#34; - Parent: &#34; + &#160;theparent-&#62;parent()-&#62;objectName(); }]]></description>
		<wfw:commentRss>http://victorbyte.net/?feed=rss2&amp;p=259</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I haven&#8217;t programmed in over two weeks.</title>
		<link>http://victorbyte.net/?p=222</link>
		<comments>http://victorbyte.net/?p=222#comments</comments>
		<pubDate>Wed, 09 Jun 2010 03:03:36 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Front page]]></category>
		<category><![CDATA[citizenship]]></category>
		<category><![CDATA[quebec]]></category>

		<guid isPermaLink="false">http://victorbyte.net/?p=222</guid>
		<description><![CDATA[So I haven&#8217;t programmed in two weeks. The C++ book is still pegged to the second section. I know I have to finish what I started before the next semester starts. This unfinished work reminds me of the many things that I have left behind hoping that I will pick up &#8216;next time&#8217;, when I [...]]]></description>
		<wfw:commentRss>http://victorbyte.net/?feed=rss2&amp;p=222</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook ramble and other things.</title>
		<link>http://victorbyte.net/?p=216</link>
		<comments>http://victorbyte.net/?p=216#comments</comments>
		<pubDate>Sun, 16 May 2010 05:32:02 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Front page]]></category>

		<guid isPermaLink="false">http://victorbyte.net/?p=216</guid>
		<description><![CDATA[A quick note on Facebook: A lot of blogging has been going on about how privacy settings have been rigged in favor of Facebook vs User. While outrage should be expected, rationale should also be coupled with that outrage. The rationale is understood using the web unknowns. Web unknowns: 1. Any transaction over the internet [...]]]></description>
		<wfw:commentRss>http://victorbyte.net/?feed=rss2&amp;p=216</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting change C++</title>
		<link>http://victorbyte.net/?p=213</link>
		<comments>http://victorbyte.net/?p=213#comments</comments>
		<pubDate>Sat, 08 May 2010 06:00:19 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[operators]]></category>

		<guid isPermaLink="false">http://victorbyte.net/?p=213</guid>
		<description><![CDATA[#include &#60;iostream&#62; using namespace std; void change(int a); int main(int argc,char *argv[]){ &#160; double purchaseAmount = 0.0; &#160; double payment = 0.0; &#160; int totalChange = 0; &#160; cout &#60;&#60; &#34;\nEnter purchase amount :\t&#34;; &#160; cin &#62;&#62; purchaseAmount; &#160; cout &#60;&#60; &#34;\nEnter Payment :\t&#34;; &#160; cin &#62;&#62; payment; &#160; totalChange = (payment * 100)-(purchaseAmount * [...]]]></description>
		<wfw:commentRss>http://victorbyte.net/?feed=rss2&amp;p=213</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The game is about repeated “throws” of a pair of dice. Each die has six faces, numbered 1 through 6. A throw results in a number which is the total of the two top faces. The first throw establishes the player’s number. If that number is 7 or 11, the player automatically wins.  If that number is 2, the player automatically loses. Otherwise, the player continues throwing until she wins (by matching her number) or loses (by throwing a 7 or an 11).</title>
		<link>http://victorbyte.net/?p=208</link>
		<comments>http://victorbyte.net/?p=208#comments</comments>
		<pubDate>Fri, 07 May 2010 21:53:27 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[if statement]]></category>
		<category><![CDATA[switch statement]]></category>

		<guid isPermaLink="false">http://victorbyte.net/?p=208</guid>
		<description><![CDATA[#include &#60;iostream&#62; #include &#60;string&#62; #include &#60;cstdlib&#62; #include &#60;ctime&#62; using namespace std; int diceThrow(); void result(int a); void lostThrow(int a); int choice = 0; int whileLoop = 0; int main(int argc,char *argv[]){ &#160; &#160; while(whileLoop == 0){ &#160; &#160; cout &#60;&#60; &#34;Let\'s play dice\n&#34; &#160; &#160; &#34;Press 1 to exit or 2 to throw the dice\n&#34;; [...]]]></description>
		<wfw:commentRss>http://victorbyte.net/?feed=rss2&amp;p=208</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This contact form contains CAPTCHA fields, but the temporary folder for the files (/wp-content/uploads//wpcf7_captcha) does not exist or is not writable</title>
		<link>http://victorbyte.net/?p=183</link>
		<comments>http://victorbyte.net/?p=183#comments</comments>
		<pubDate>Sun, 11 Apr 2010 18:17:26 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Front page]]></category>
		<category><![CDATA[but the temporary folder for the files (/wp-content/uploads//wpcf7_captcha) does not exist or is not writable]]></category>
		<category><![CDATA[This contact form contains CAPTCHA fields]]></category>

		<guid isPermaLink="false">http://victorbyte.net/?p=183</guid>
		<description><![CDATA[Settings, Miss&#8230; Store uploads in this folder /home/vol5/webhost/username/domain name/htdocs/../wp-content/uploads/wpcf7_captcha]]></description>
		<wfw:commentRss>http://victorbyte.net/?feed=rss2&amp;p=183</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable to locate WordPress Content directory (wp-content).</title>
		<link>http://victorbyte.net/?p=180</link>
		<comments>http://victorbyte.net/?p=180#comments</comments>
		<pubDate>Sat, 10 Apr 2010 17:23:02 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Front page]]></category>
		<category><![CDATA[Unable to locate WordPress Content directory (wp-content).]]></category>

		<guid isPermaLink="false">http://victorbyte.net/?p=180</guid>
		<description><![CDATA[It is solved by adding the following code in the end  wp-config.php: if(is_admin()) { add_filter('filesystem_method', create_function('$a', 'return &#34;direct&#34;;' )); define( 'FS_CHMOD_DIR', 0751 ); }]]></description>
		<wfw:commentRss>http://victorbyte.net/?feed=rss2&amp;p=180</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HostsEditor: A simple hosts file editor for Ubuntu and Windows.</title>
		<link>http://victorbyte.net/?p=167</link>
		<comments>http://victorbyte.net/?p=167#comments</comments>
		<pubDate>Wed, 07 Apr 2010 00:59:41 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Front page]]></category>
		<category><![CDATA[hosts]]></category>
		<category><![CDATA[hosts editor]]></category>
		<category><![CDATA[HostsEditor]]></category>
		<category><![CDATA[HostsEditor: A simple hosts file editor for Ubuntu and Windows.]]></category>
		<category><![CDATA[windows hosts editor]]></category>

		<guid isPermaLink="false">http://victorbyte.net/?p=167</guid>
		<description><![CDATA[HostsEditor by victorbyte.net  allows you to edit your hosts file easily. Download HostsEditor.zip [download id="6"] or  the torrent here Extract the zip file to your Desktop. Double click HostsEditor.jar . The list to block one can get it from http://www.mvps.org/ copy and paste to HostsEditor. HostsEditor works from Ubuntu , xp, Vista and windows 7. [...]]]></description>
		<wfw:commentRss>http://victorbyte.net/?feed=rss2&amp;p=167</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy dns mapping for home network, Windows, Linux, Mac and Solaris.</title>
		<link>http://victorbyte.net/?p=162</link>
		<comments>http://victorbyte.net/?p=162#comments</comments>
		<pubDate>Mon, 05 Apr 2010 05:32:45 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Front page]]></category>
		<category><![CDATA[Easy dns mapping for home network]]></category>

		<guid isPermaLink="false">http://victorbyte.net/?p=162</guid>
		<description><![CDATA[This article assumes that you have a web server running on a computer on your home network. To map a domain name to the ip of your web server use the hosts file. In Windows it is found in c:\windows\system32\drivers\etc\ and in Ubuntu Linux it is in /etc/. &#160; Open the hosts file by running [...]]]></description>
		<wfw:commentRss>http://victorbyte.net/?feed=rss2&amp;p=162</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compile using Terminal or Command Prompt.</title>
		<link>http://victorbyte.net/?p=156</link>
		<comments>http://victorbyte.net/?p=156#comments</comments>
		<pubDate>Tue, 30 Mar 2010 20:35:18 +0000</pubDate>
		<dc:creator>Victor</dc:creator>
				<category><![CDATA[Front page]]></category>
		<category><![CDATA[Compile using Terminal or Command Prompt]]></category>

		<guid isPermaLink="false">http://victorbyte.net/?p=156</guid>
		<description><![CDATA[perl perl main.pl python python main.py c gcc -o hello main.c or gcc-3 -o hello main.c (windows) c++ g++ -o hello main.cpp or g++-3 -o hello main.cpp (windows) java javac main.java]]></description>
		<wfw:commentRss>http://victorbyte.net/?feed=rss2&amp;p=156</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- www.000webhost.com Analytics Code -->
<script type="text/javascript" src="http://analytics.hosting24.com/count.php"></script>
<noscript><a href="http://www.hosting24.com/"><img src="http://analytics.hosting24.com/count.php" alt="web hosting" /></a></noscript>
<!-- End Of Analytics Code -->
