<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Overclock.net - Overclocking.net - Coding and Programming</title>
		<link>http://www.overclock.net/</link>
		<description />
		<language>en</language>
		<lastBuildDate>Sat, 21 Nov 2009 05:56:48 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>1</ttl>
		<image>
			<url>http://static.overclock.net/images/oc/misc/rss.jpg</url>
			<title>Overclock.net - Overclocking.net - Coding and Programming</title>
			<link>http://www.overclock.net/</link>
		</image>
		<item>
			<title>Pie graph - Javascript</title>
			<link>http://www.overclock.net/coding-programming/612879-pie-graph-javascript.html</link>
			<pubDate>Fri, 20 Nov 2009 19:47:53 GMT</pubDate>
			<description><![CDATA[Hey, 
 
I need some help with a javascript "graph" that would retrieve the data from a survey and/or form and output it in a pie graph of some sort.  I've looked at places like DynamicDrive, but they have absolute values while I need the array to retrieve the data off XML.  Does anyone know how I'd...]]></description>
			<content:encoded><![CDATA[<div>Hey,<br />
<br />
I need some help with a javascript &quot;graph&quot; that would retrieve the data from a survey and/or form and output it in a pie graph of some sort.  I've looked at places like DynamicDrive, but they have absolute values while I need the array to retrieve the data off XML.  Does anyone know how I'd go about it, or could anyone give me an example?</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>godsgift2dagame</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/612879-pie-graph-javascript.html</guid>
		</item>
		<item>
			<title>C++ for FIRST Robotics Competition</title>
			<link>http://www.overclock.net/coding-programming/612412-c-first-robotics-competition.html</link>
			<pubDate>Thu, 19 Nov 2009 23:16:36 GMT</pubDate>
			<description>I am in my schools robotics team and I am the only programmer on the team so I will have a lot of work to do once we get to the 6 week building season. I am wondering if anyone knows what C++ library they use in the FIRST Robotics Competition.  
 
I know they use RobotC in FIRST Tech Challenge but...</description>
			<content:encoded><![CDATA[<div>I am in my schools robotics team and I am the only programmer on the team so I will have a lot of work to do once we get to the 6 week building season. I am wondering if anyone knows what C++ library they use in the FIRST Robotics Competition. <br />
<br />
I know they use RobotC in FIRST Tech Challenge but I believe they use something else for FRC. <br />
<br />
We don't get much information on the game until January 6, 2010 but I want to familiarize myself with the how the library is used to control motors, and solenoids. <br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>Darkknight512</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/612412-c-first-robotics-competition.html</guid>
		</item>
		<item>
			<title>I need help, upgrading a mini game in C</title>
			<link>http://www.overclock.net/coding-programming/612223-i-need-help-upgrading-mini-game.html</link>
			<pubDate>Thu, 19 Nov 2009 17:22:26 GMT</pubDate>
			<description><![CDATA[Hi! 
Well, since I started learning C the other day, I thought it was pretty cool... I went through a few things, and just learned about loops. (*EDIT: Forgot to mention the language... it's C ) 
 
So, this post is to ask if you cuold shed me some light, without giving me the code right away, you...]]></description>
			<content:encoded><![CDATA[<div>Hi!<br />
Well, since I started learning C the other day, I thought it was pretty cool... I went through a few things, and just learned about loops. (*EDIT: Forgot to mention the language... it's C )<br />
<br />
So, this post is to ask if you cuold shed me some light, without giving me the code right away, you see my little game below; I want to upgrade it.<br />
<br />
If you can give me a well detailed picture, I would appreciate since I need to learn, so neither a direct asnwer or formula would do.<br />
<br />
I want:<br />
<br />
1) The program to count the number of times the user tried a number before finding the random one.<br />
printf(&quot;Contrats, after % number of times, you found it&quot;, variable)<br />
<br />
2) I want the program to ask if the user want to try another game, using booleen (always true, false = endgame)<br />
<br />
and 3rd) I want it to be a 2 players game, someone enters the &quot;random&quot; number, and the other person tries to find it... BUT! We MUST be able to choose wether its gonna be a 1 player (random generated number) or 2 players.<br />
<br />
:)<br />
I need some help from you coders :shock2: <br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">/*<br />
<br />
Less or More Mini-game-------------<br />
<br />
*/<br />
<br />
<br />
#include &lt;stdio.h&gt;<br />
#include &lt;stdlib.h&gt;<br />
#include &lt;time.h&gt;<br />
<br />
<br />
int main ( int argc, char** argv )<br />
{<br />
&nbsp; &nbsp; int guessNumber = 0, inputNumber = 0;<br />
&nbsp; &nbsp; const int MAX = 100, MIN = 1;<br />
<br />
&nbsp; &nbsp; // Generating the random number<br />
<br />
&nbsp; &nbsp; srand(time(NULL));<br />
&nbsp; &nbsp; guessNumber = (rand() % (MAX - MIN + 1)) + MIN;<br />
<br />
&nbsp; &nbsp; /* Loop of the program. It repeats until the user finds the guessNumber<br />
&nbsp; &nbsp; */<br />
<br />
&nbsp; &nbsp; do<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; // It asks for the number<br />
&nbsp; &nbsp; &nbsp; &nbsp; printf(&quot;What is the number ? &quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; scanf(&quot;%d&quot;, &amp;inputNumber);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; // We compare the input number with the guessNumber<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (guessNumber &gt; inputNumber)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf(&quot;It's more !\n\n&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; else if (guessNumber &lt; inputNumber)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf(&quot;It's less !\n\n&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf (&quot;Congrats, you found the mysterious number !!!\n\n&quot;);<br />
&nbsp; &nbsp; } while (inputNumber != guessNumber);<br />
<br />
}</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>Exutus</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/612223-i-need-help-upgrading-mini-game.html</guid>
		</item>
		<item>
			<title>Forgot bat command :(</title>
			<link>http://www.overclock.net/coding-programming/612025-forgot-bat-command.html</link>
			<pubDate>Thu, 19 Nov 2009 05:23:15 GMT</pubDate>
			<description>Hi everyone. 
 
I was just programming a bat script and forgot what is the command to show the contents of a file, for instance a txt document. 
 
Thanks, FiX</description>
			<content:encoded><![CDATA[<div>Hi everyone.<br />
<br />
I was just programming a bat script and forgot what is the command to show the contents of a file, for instance a txt document.<br />
<br />
Thanks, FiX</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>FiX</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/612025-forgot-bat-command.html</guid>
		</item>
		<item>
			<title>could use someone familiar with html and javascript to get a form to work right</title>
			<link>http://www.overclock.net/coding-programming/612010-could-use-someone-familiar-html-javascript.html</link>
			<pubDate>Thu, 19 Nov 2009 04:40:05 GMT</pubDate>
			<description>if anyone has some time and can get on xfire or aim, i have the javascript for a really simple applet however i dont know how exactly how to get it to work with the buttons that are provided by this form my teacher gave us. 
 
thanks</description>
			<content:encoded><![CDATA[<div>if anyone has some time and can get on xfire or aim, i have the javascript for a really simple applet however i dont know how exactly how to get it to work with the buttons that are provided by this form my teacher gave us.<br />
<br />
thanks</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>Dark-Asylum</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/612010-could-use-someone-familiar-html-javascript.html</guid>
		</item>
		<item>
			<title>Issue with Batch File</title>
			<link>http://www.overclock.net/coding-programming/611581-issue-batch-file.html</link>
			<pubDate>Wed, 18 Nov 2009 16:07:38 GMT</pubDate>
			<description>I have a small batch file that i am working on that will check for new files within certain folders and Download them to my external drives.  It will also detect what drive letter my external drive is.  Once it works, I am going to have it loop to the beggining so it will loop continuous, thus...</description>
			<content:encoded><![CDATA[<div>I have a small batch file that i am working on that will check for new files within certain folders and Download them to my external drives.  It will also detect what drive letter my external drive is.  Once it works, I am going to have it loop to the beggining so it will loop continuous, thus giving me a neet backup tool.<br />
<br />
The problem that i am having is in the first for loop.  When the forfiles run, it never SETs the variable.  I can put ECHO in front and it will echo what i need to record, but when i remove it, it wont be stored.   <br />
<br />
Also, if you have a better recomendation on how to go about this, please let me know.<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">@echo off<br />
cls<br />
<br />
Set TODAY=%DATE%<br />
ECHO %TODAY%<br />
<br />
REM - This finds the drive letter and directory in my External Hard Drive<br />
FOR %%L IN (A B D E F G H I J K L M N O P Q R X) DO forfiles /p %%L: /s /m Bob /c &quot;cmd /c if @isdir==TRUE SET Bob=@path&quot;<br />
FOR %%L IN (A B D E F G H I J K L M N O P Q R X) DO forfiles /p %%L: /s /m Michael /c &quot;cmd /c if @isdir==TRUE SET Michael=@PATH&quot;<br />
ECHO ------<br />
ECHO %Bob%<br />
ECHO %Michael%<br />
Echo -------<br />
PAUSE<br />
<br />
REM - This checks my mapped drives for new files in those folder and then copys it to my exernal drives.<br />
<br />
FOR %%L IN (W Y Z) DO forfiles /p %%L: /d:%TODAY% /s /m Bob /c &quot;cmd /c echo replace @path %Bob% /a&quot;<br />
FOR %%L IN (W Y Z) DO forfiles /p %%L: /d:%TODAY% /s /m Michael /c &quot;cmd /c echo replace @path %Michael% /a&quot;<br />
<br />
ECHO Finished copying.<br />
PAUSE</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>Mrzev</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/611581-issue-batch-file.html</guid>
		</item>
		<item>
			<title>Fast log off</title>
			<link>http://www.overclock.net/coding-programming/610960-fast-log-off.html</link>
			<pubDate>Tue, 17 Nov 2009 16:45:10 GMT</pubDate>
			<description>Some time ago someone posted up some code for a fast shut down. 
 
Could someone help me out to get a a similar thing for a fast log off?</description>
			<content:encoded><![CDATA[<div>Some time ago someone posted up some code for a fast shut down.<br />
<br />
Could someone help me out to get a a similar thing for a fast log off?</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>Aaroman</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/610960-fast-log-off.html</guid>
		</item>
		<item>
			<title>The Square Root Function?</title>
			<link>http://www.overclock.net/coding-programming/610656-square-root-function.html</link>
			<pubDate>Tue, 17 Nov 2009 02:15:42 GMT</pubDate>
			<description><![CDATA[We've been given this STUPID assignment to "learn loops" in Java class. 
 
We have to calculate the square root of a number, without using the built in square root function :doh: 
 
Here's the damn instruction  
 
Code: 
--------- 
         *FindRootBabylonian*() // calculates the square root using...]]></description>
			<content:encoded><![CDATA[<div>We've been given this STUPID assignment to &quot;learn loops&quot; in Java class.<br />
<br />
We have to calculate the square root of a number, without using the built in square root function :doh:<br />
<br />
Here's the damn instruction <br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&nbsp; &nbsp; &nbsp; &nbsp;  <b><font face="&amp;quot">FindRootBabylonian</font></b><font face="&amp;quot">() // calculates the square root using&nbsp;  Babylonian algorithm and modifies the count instance data</font><br />
&nbsp; &nbsp; &nbsp; &nbsp;  <b><font face="&amp;quot">FindRootHeron</font></b><font face="&amp;quot">()</font><font face="&amp;quot">&nbsp;  // calculates the&nbsp;  square root using the Heron algorithm and modifies the count instance data</font></code><hr />
</div>I've Googled all over, trying to figure out this crap. (I know how to use loops very well, I'm just clueless about these two &quot;algorithms.&quot;<br />
<br />
If someone can give me an idea how to calculate the roots via these &quot;methods&quot; that'd be great.<br />
<br />
I don't need the code or anything, just an idea of how to calculate them via these methods.<br />
<br />
Help is rewarded</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>AMD+nVidia</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/610656-square-root-function.html</guid>
		</item>
		<item>
			<title>problem with threads/semaphores</title>
			<link>http://www.overclock.net/coding-programming/610557-problem-threads-semaphores.html</link>
			<pubDate>Mon, 16 Nov 2009 23:12:09 GMT</pubDate>
			<description><![CDATA[I need one thread to continually generate (increment counters to max of 100) H, O, and C. 
 
When I get 12H, 6O, 6C I need to have my other thread decrement the counters by appropriate amounts 
 
 
Code: 
--------- 
#include <stdio.h> 
#include <stdlib.h> 
#include <semaphore.h>]]></description>
			<content:encoded><![CDATA[<div>I need one thread to continually generate (increment counters to max of 100) H, O, and C.<br />
<br />
When I get 12H, 6O, 6C I need to have my other thread decrement the counters by appropriate amounts<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">#include &lt;stdio.h&gt;<br />
#include &lt;stdlib.h&gt;<br />
#include &lt;semaphore.h&gt;<br />
#include &lt;sys/types.h&gt;<br />
#include &lt;signal.h&gt;<br />
#include &lt;pthread.h&gt;<br />
<br />
int HMol = 0;<br />
int CMol = 0;<br />
int OMol = 0;<br />
int glucose = 0;<br />
sem_t lock;<br />
&nbsp; &nbsp; int count = 0;<br />
void generate(void);<br />
void consume(void);<br />
int main()<br />
{<br />
&nbsp; &nbsp; sem_init(&amp;lock, 0, 1);<br />
&nbsp; &nbsp; pthread_t generator, consumer;<br />
&nbsp; &nbsp; pthread_create( &amp;generator, NULL, generate, NULL);<br />
&nbsp; &nbsp; pthread_join(generator, NULL);<br />
&nbsp; &nbsp; pthread_create( &amp;consumer, NULL, consume, NULL);<br />
&nbsp; &nbsp; pthread_join(consumer, NULL);<br />
&nbsp; &nbsp; return 0;<br />
}<br />
<br />
void generate()<br />
{<br />
&nbsp; &nbsp; printf(&quot;H: %i\tO: %i\tC: %i\n&quot;, HMol, CMol, OMol);<br />
<br />
&nbsp; &nbsp; while(count++ &lt; 50)<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; int i = rand()%3;<br />
&nbsp; &nbsp; &nbsp; &nbsp; sem_wait(&amp;lock);<br />
&nbsp; &nbsp; &nbsp; &nbsp; switch(i)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 0: if(HMol &lt; 100) HMol++;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 1: if(CMol &lt; 100) CMol++;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 2: if(OMol &lt; 100) OMol++;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; printf(&quot;H: %i\tO: %i\tC: %i\n&quot;, HMol, CMol, OMol);<br />
&nbsp; &nbsp; &nbsp; &nbsp; sem_post(&amp;lock);<br />
&nbsp; &nbsp; }<br />
}<br />
<br />
void consume()<br />
{<br />
&nbsp; &nbsp; while(count &lt; 50)<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; printf(&quot;Trying\n&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; sem_wait(&amp;lock);<br />
&nbsp; &nbsp; &nbsp; &nbsp; if(CMol &gt;= 6 &amp;&amp; HMol &gt;= 12 &amp;&amp; OMol &gt;= 6)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glucose++;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CMol -= 6;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; HMol -= 12;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; OMol -= 6;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; if(sem_post(&amp;lock) == -1)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fprintf(stderr, &quot;Unable to unlock semaphore&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; }<br />
}</code><hr />
</div>right now it just generates, never decrements.</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>serge2k</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/610557-problem-threads-semaphores.html</guid>
		</item>
		<item>
			<title>Java Programming Help</title>
			<link>http://www.overclock.net/coding-programming/610161-java-programming-help.html</link>
			<pubDate>Mon, 16 Nov 2009 03:49:04 GMT</pubDate>
			<description><![CDATA[import java.util.Scanner; 
public class Program12 { 
public static void main(String[] args) { 
Scanner input = new Scanner(System.in); 
String[] words = new String[1000]; 
int n = 0; 
boolean status = false; 
do { 
System.out.print("Please enter a word: "); 
words[n] = input.next();]]></description>
			<content:encoded><![CDATA[<div>import java.util.Scanner;<br />
public class Program12 {<br />
public static void main(String[] args) {<br />
Scanner input = new Scanner(System.in);<br />
String[] words = new String[1000];<br />
int n = 0;<br />
boolean status = false;<br />
do {<br />
System.out.print(&quot;Please enter a word: &quot;);<br />
words[n] = input.next();<br />
status = words[n].equals(&quot;$$$&quot;);<br />
n++;<br />
} while (status == false);<br />
sort(words, n);<br />
for (int s = 0; s &lt; n; s++) {<br />
System.out.println(words[s]);<br />
}<br />
}<br />
public static void sort(String[] words, int length) {<br />
String hold;<br />
for (int n = 0; n &lt; length - 1; n++) {<br />
for (int m = n + 1; m &lt; length; m++) {<br />
hold = words[n];<br />
words[n] = words[m];<br />
words[m] = hold;<br />
}<br />
}<br />
}<br />
}<br />
 <br />
 <br />
How do I print each word that I inputted once? Such as when I input pork, late, moon, and late. Late should be printed once. How do I print a count beside each word telling how many times it occurs?</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>Buster</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/610161-java-programming-help.html</guid>
		</item>
		<item>
			<title><![CDATA[what is this old program? 10 Print "****" 20 print "****" 30 goto 10]]></title>
			<link>http://www.overclock.net/coding-programming/610125-what-old-program-10-print-20-a.html</link>
			<pubDate>Mon, 16 Nov 2009 02:39:05 GMT</pubDate>
			<description><![CDATA[I mean... it probably wouldn't work on a new version of windows such as XP or vista (I know the irony in saying XP is new)... But if I wanted to run that on an old PC what would I have saved it as? I should know this... Alas I don't!]]></description>
			<content:encoded><![CDATA[<div>I mean... it probably wouldn't work on a new version of windows such as XP or vista (I know the irony in saying XP is new)... But if I wanted to run that on an old PC what would I have saved it as? I should know this... Alas I don't!</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>Dead!</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/610125-what-old-program-10-print-20-a.html</guid>
		</item>
		<item>
			<title>Connection Issue, or browser??? Cant get to Regions.</title>
			<link>http://www.overclock.net/coding-programming/609560-connection-issue-browser-cant-get-regions.html</link>
			<pubDate>Sun, 15 Nov 2009 02:14:58 GMT</pubDate>
			<description><![CDATA[Did not where else to put this, but i figured maybe, by SOME CHANCE, someone here would be able to help me. 
 
For some reason, no matter what, i can not load up Regions.com (http://www.regions.com/) to check my banking, just says "page not responding", firefox or IE8. I can go to any other...]]></description>
			<content:encoded><![CDATA[<div>Did not where else to put this, but i figured maybe, by SOME CHANCE, someone here would be able to help me.<br />
<br />
For some reason, no matter what, i can not load up <a href="http://www.regions.com/" target="_blank">Regions.com</a> to check my banking, just says &quot;page not responding&quot;, firefox or IE8. I can go to any other website, do anything else, but just not regions. funny thing is i can access the site by going through a proxy, however i cant log in that way. obvioulsy the tech support from Verizon(my ISP) is as about as helpful as a sack of potatoes. They said contact the <i>manufacturer</i> of my PC, as its my problem, not theirs. (i laughed a little)<br />
<br />
any help would be GREATLY appreciated. i have tried the normal, ccleaner, browser reset/reinstall, router/modem reset, and all that, and to no avail????</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>l4n b0y</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/609560-connection-issue-browser-cant-get-regions.html</guid>
		</item>
		<item>
			<title>any decent javascript debuggers?</title>
			<link>http://www.overclock.net/coding-programming/608679-any-decent-javascript-debuggers.html</link>
			<pubDate>Fri, 13 Nov 2009 09:11:18 GMT</pubDate>
			<description>right now for my class im using coffeecup to right javascript in html so all i get is an html source file. it runs but after the first prompt for input it just says that the script is making my browser really slow and asks if i want to close it, if i dont close it nothing happens anyway. im not...</description>
			<content:encoded><![CDATA[<div>right now for my class im using coffeecup to right javascript in html so all i get is an html source file. it runs but after the first prompt for input it just says that the script is making my browser really slow and asks if i want to close it, if i dont close it nothing happens anyway. im not getting any script errors and this editor doesnt show syntax errors and doesnt have debugging so...any help would be appreciated</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>Dark-Asylum</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/608679-any-decent-javascript-debuggers.html</guid>
		</item>
		<item>
			<title><![CDATA[[C++ Help Needed] Passing information from a text file to an array to a function]]></title>
			<link>http://www.overclock.net/coding-programming/608093-c-help-needed-passing-information-text.html</link>
			<pubDate>Thu, 12 Nov 2009 11:58:09 GMT</pubDate>
			<description>:wheee:</description>
			<content:encoded><![CDATA[<div>:wheee:</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>TheGrayNobleman</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/608093-c-help-needed-passing-information-text.html</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED]C won't add floats...]]></title>
			<link>http://www.overclock.net/coding-programming/607963-solved-c-wont-add-floats.html</link>
			<pubDate>Thu, 12 Nov 2009 04:25:08 GMT</pubDate>
			<description><![CDATA[I'm working on a scheduling/multithreading assignment, and I'm creating multiple threads that wait for different periods of time before finishing. 
 
I was having issues with all of the threads finishing at the same time, despite having different waiting times. 
 
I put some debug statements in and...]]></description>
			<content:encoded><![CDATA[<div>I'm working on a scheduling/multithreading assignment, and I'm creating multiple threads that wait for different periods of time before finishing.<br />
<br />
I was having issues with all of the threads finishing at the same time, despite having different waiting times.<br />
<br />
I put some debug statements in and I simply cannot believe what I'm seeing:<br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="6" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				float a = args-&gt;arr*1000;<br />
    float s = ((float)start.tv_sec*(float)1000) + ((float)start.tv_usec/(float)1000);<br />
    float f = s + a;<br />
printf(&quot;Arrival time = %f\nStart  = %f\nFinish = %f\n&quot;, a,s,f);
			
			<hr />
		</td>
	</tr>
	</table>
</div>I tried to make it as clear as possible for debugging purposes, and somehow I get this as output:<br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="6" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				Arrival time = 300.000000<br />
Start  = 1257999564800.000000<br />
Finish = 1257999564800.000000<br />
Flow  1 arrives: arrival time (0.30), transmission time (6.0), priority ( 3). <br />
Arrival time = 600.000000<br />
Start  = 1257999564800.000000<br />
Finish = 1257999564800.000000<br />
Flow  2 arrives: arrival time (0.60), transmission time (7.0), priority ( 1). <br />
Arrival time = 300.000000<br />
Start  = 1257999564800.000000<br />
Finish = 1257999564800.000000<br />
Flow  3 arrives: arrival time (0.30), transmission time (5.0), priority ( 3).
			
			<hr />
		</td>
	</tr>
	</table>
</div>Now, Start is s, Finish is f, and Arrival is a, and if you trace the code you'll see that f = s + a, and if you trace that to the output you'll see that for the first you get 1257999564800.000000 + 300.000000, which should equal 1257999565100, but instead the addition apparently never happens!<br />
<b><font size="7"><br />
OMG I BROKE C</font></b><br />
<br />
<br />
Any ideas before I send this off to my prof?</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>nathris</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/607963-solved-c-wont-add-floats.html</guid>
		</item>
		<item>
			<title>Java assignment help</title>
			<link>http://www.overclock.net/coding-programming/607872-java-assignment-help.html</link>
			<pubDate>Thu, 12 Nov 2009 01:34:02 GMT</pubDate>
			<description><![CDATA[I have no idea what to do. I understand what the assignment wants but I don't know how to go about doing it.  
 
Attached is the code and the pdf describing the details. Help would be great seeing as I suck at java]]></description>
			<content:encoded><![CDATA[<div>I have no idea what to do. I understand what the assignment wants but I don't know how to go about doing it. <br />
<br />
Attached is the code and the pdf describing the details. Help would be great seeing as I suck at java</div>


	<br />
	<div style="padding:6px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<table cellpadding="0" cellspacing="3" border="0">
			<tr>
	<td><img class="inlineimg" src="http://static.overclock.net/images/oc/attach/pdf.gif" alt="File Type: pdf" width="16" height="16" border="0" style="vertical-align:baseline" /></td>
	<td><a href="http://www.overclock.net/attachments/coding-programming/129024d1257989633-java-assignment-help-assignment3-directions.pdf">Assignment3 directions.pdf</a> (7.7 KB)</td>
</tr><tr>
	<td><img class="inlineimg" src="http://static.overclock.net/images/oc/attach/zip.gif" alt="File Type: zip" width="16" height="16" border="0" style="vertical-align:baseline" /></td>
	<td><a href="http://www.overclock.net/attachments/coding-programming/129025d1257989633-java-assignment-help-assignment-3.zip">Assignment 3.zip</a> (14.1 KB)</td>
</tr>
			</table>
		</fieldset>
	

	</div>
]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>gex80</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/607872-java-assignment-help.html</guid>
		</item>
		<item>
			<title>I am brand new to programming{hellp}</title>
			<link>http://www.overclock.net/coding-programming/607671-i-am-brand-new-programming-hellp.html</link>
			<pubDate>Wed, 11 Nov 2009 19:03:23 GMT</pubDate>
			<description><![CDATA[I'm teaching myself in my spare time (which is plentiful since i got fired recently). I have NO previous experience with any language and I want to knnow what language will give me a better understanding and be easier to move to other languages. 
BUT I need it to be fairly easy to grasp in the...]]></description>
			<content:encoded><![CDATA[<div>I'm teaching myself in my spare time (which is plentiful since i got fired recently). I have NO previous experience with any language and I want to knnow what language will give me a better understanding and be easier to move to other languages.<br />
BUT I need it to be fairly easy to grasp in the beginner stages. I'm in school now to get AA in computer programming and my school will be teaching a beginner C++ class but after that it is all JAVA. and a SQL class at the end. I want to do some programming in spare time to prepare for these classes and get a deeper understanding is java easy to learn?<br />
<br />
<br />
<br />
Also I read that Android uses JAVA for their apps and I want to develop apps for mobile devices.</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>k1ngcor3y</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/607671-i-am-brand-new-programming-hellp.html</guid>
		</item>
		<item>
			<title>Is there Game Devs here ?</title>
			<link>http://www.overclock.net/coding-programming/607614-there-game-devs-here.html</link>
			<pubDate>Wed, 11 Nov 2009 16:54:17 GMT</pubDate>
			<description><![CDATA[(*Game developpers*) 
 
Didn't know where to post this thread... Here or in Video Games - General. 
Or music. 
 
The thing is that I make music, and I want to make some for videogames sinces many years (started making demos back in 2003). 
 
I'm looking for some people (Game developpers) who would...]]></description>
			<content:encoded><![CDATA[<div>(<b>Game developpers</b>)<br />
<br />
Didn't know where to post this thread... Here or in Video Games - General.<br />
Or music.<br />
<br />
The thing is that I make music, and I want to make some for videogames sinces many years (started making demos back in 2003).<br />
<br />
I'm looking for some people (Game developpers) who would be looking for a sound/music guy.<br />
<u>LoL</u>.<br />
<br />
edit: bleh... here's an example of some stuff that could fit, let's say, something maybe...<br />
If that sounds good, be sure that I can come up with something sounding the opposite (demonic)<br />
<div style="display: none;" id="ame_noshow_other_1258783008_1">
        <a href="http://www.youtube.com/watch?v=XVk7E0uA-z4" title="YouTube- For a fairy from Paradise" target="_blank">YouTube- For a fairy from Paradise</a>
</div>
<div style="display: inline;" id="ame_doshow_other_1258783008_1">
<div align="center">
<table class="tborder" cellpadding="6" cellspacing="1" width="425" style="margin:10px 0">
<thead>
        <tr>
                <td class="tcat" colspan="2" style="text-align:center">
                        <a href="http://www.youtube.com/watch?v=XVk7E0uA-z4" title="YouTube- For a fairy from Paradise" target="_blank">YouTube- For a fairy from Paradise</a>
                </td>
        </tr>
</thead>
<tbody>
        <tr>
                <td class="panelsurround" align="center">
<!-- AME YouTube -->
<object width="425" height="350">
<param name=''movie'' value="http://www.youtube.com/v/XVk7E0uA-z4&amp;ap=%2526fmt%3D18&amp;fs=1"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/XVk7E0uA-z4&amp;ap=%2526fmt%3D18&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="350" wmode="transparent"></embed></object>
</td>
        </tr>
</tbody>
</table></div>
</div></div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>Exutus</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/607614-there-game-devs-here.html</guid>
		</item>
		<item>
			<title>Backup Shell Script and CRON job?</title>
			<link>http://www.overclock.net/coding-programming/607095-backup-shell-script-cron-job.html</link>
			<pubDate>Tue, 10 Nov 2009 18:19:37 GMT</pubDate>
			<description>hey all, 
 
I need some help making a backup script for a project.  I have a directory on my computer (/home/images/) that I would like to backup when the folder gets to be a specific size (200MB).  When the folder gets to be this size, I would like to make a .tar.gz of the pictures, put the...</description>
			<content:encoded><![CDATA[<div>hey all,<br />
<br />
I need some help making a backup script for a project.  I have a directory on my computer (/home/images/) that I would like to backup when the folder gets to be a specific size (200MB).  When the folder gets to be this size, I would like to make a .tar.gz of the pictures, put the pictures in the backup folder, and then delete the images.  Here is what I have so far (doesn't work)<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">#!/bin/bash<br />
# Backup Script<br />
<br />
echo &quot;\nWelcome to the backup script\n&quot;<br />
cd /home/images<br />
<br />
//here is where the size issue comes into play?<br />
tar -pczf -N `date`.tar.gz /home/images/backup <br />
<br />
fi<br />
<br />
exit 0;</code><hr />
</div>Can anyone help?</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>sc30317</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/607095-backup-shell-script-cron-job.html</guid>
		</item>
		<item>
			<title>GUI interface using visual basic to track the killers IP address</title>
			<link>http://www.overclock.net/coding-programming/606777-gui-interface-using-visual-basic-track.html</link>
			<pubDate>Tue, 10 Nov 2009 04:16:42 GMT</pubDate>
			<description><![CDATA[I'm new, but I recognize a fail in writing that script. 
 
:gotproof: 
 
YouTube- GUI interface using visual basic to track the killers IP address CSI]]></description>
			<content:encoded><![CDATA[<div>I'm new, but I recognize a fail in writing that script.<br />
<br />
:gotproof:<br />
<br />
<div style="display: none;" id="ame_noshow_other_1258783008_2">
        <a href="http://www.youtube.com/watch?v=hkDD03yeLnU" title="YouTube- GUI interface using visual basic to track the killers IP address CSI" target="_blank">YouTube- GUI interface using visual basic to track the killers IP address CSI</a>
</div>
<div style="display: inline;" id="ame_doshow_other_1258783008_2">
<div align="center">
<table class="tborder" cellpadding="6" cellspacing="1" width="425" style="margin:10px 0">
<thead>
        <tr>
                <td class="tcat" colspan="2" style="text-align:center">
                        <a href="http://www.youtube.com/watch?v=hkDD03yeLnU" title="YouTube- GUI interface using visual basic to track the killers IP address CSI" target="_blank">YouTube- GUI interface using visual basic to track the killers IP address CSI</a>
                </td>
        </tr>
</thead>
<tbody>
        <tr>
                <td class="panelsurround" align="center">
<!-- AME YouTube -->
<object width="425" height="350">
<param name=''movie'' value="http://www.youtube.com/v/hkDD03yeLnU&amp;ap=%2526fmt%3D18&amp;fs=1"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/hkDD03yeLnU&amp;ap=%2526fmt%3D18&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="350" wmode="transparent"></embed></object>
</td>
        </tr>
</tbody>
</table></div>
</div></div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>Exutus</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/606777-gui-interface-using-visual-basic-track.html</guid>
		</item>
		<item>
			<title>Learning to program at the age of 25. IS IT TOO OLD?</title>
			<link>http://www.overclock.net/coding-programming/606464-learning-program-age-25-too-old.html</link>
			<pubDate>Mon, 09 Nov 2009 19:48:22 GMT</pubDate>
			<description>:kookoo: 
 
I see kids on forums that started like at 13-14. 
Here I am, starting with C at 25. 
 
(took some BV in highschoolwhen I was 14 but was fooling around much of the time, downloading Emus and Roms and learning how to unzip .zips as well) 
LOL</description>
			<content:encoded><![CDATA[<div>:kookoo:<br />
<br />
I see kids on forums that started like at 13-14.<br />
Here I am, starting with C at 25.<br />
<br />
(took some BV in highschoolwhen I was 14 but was fooling around much of the time, downloading Emus and Roms and learning how to unzip .zips as well)<br />
LOL</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>Exutus</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/606464-learning-program-age-25-too-old.html</guid>
		</item>
		<item>
			<title>My very first C program compiles but..lol (help)</title>
			<link>http://www.overclock.net/coding-programming/606202-my-very-first-c-program-compiles.html</link>
			<pubDate>Mon, 09 Nov 2009 05:02:37 GMT</pubDate>
			<description>Hey! :) So I printed an e-book to learn C in 7 days. 
 
Well at the end of the 1st day/lesson, they want the students to make a program of their own... like 2+3=5 or something... 
And I thought I had to do something a little bit more useful to me than learning to count, because I think I understood...</description>
			<content:encoded><![CDATA[<div>Hey! :) So I printed an e-book to learn C in 7 days.<br />
<br />
Well at the end of the 1st day/lesson, they want the students to make a program of their own... like 2+3=5 or something...<br />
And I thought I had to do something a little bit more useful to me than learning to count, because I think I understood how to get 2+3 to work like c=a+b<br />
<br />
Anyway, my program is to calculate the Delay (in MiliSeconds) that I need to set in a guitar pedal, to play along with a given tempo, so the notes repeat between the bars... anyway that's not important if you are not so much in music hehe.<br />
<br />
The problem is that, I'd probably learn the stuff in day/lesson 2 but I want a feedback of you guys, and why it doesn't work as I want it to.<br />
<br />
I learned the // so I wrote the instructions :)<br />
You may laugh because it's my very first (beside Hello world tuto and 3-4 examples).<br />
<br />
Here's the Code:<br />
<br />
<br />
<br />
#include &lt;stdio.h&gt;<br />
main() //This program is to calculate a certain DELAY value for a given tempo<br />
{<br />
  int e,m,x,y;<br />
  printf(&quot;Enter value for x :&quot;); //That would be the BPM's<br />
  scanf(&quot;%d&quot;,&amp;x); //I enter let's say.. 120PBM<br />
  y=m/x; //I need to divide a minute by the BPM's value<br />
  m=60; //Here is where I define the value of a minute in seconds<br />
  e=y/2; //E is the result I want (The result of the 1st equation above divided by 2)<br />
  printf(&quot;Echo = %d\n&quot;,e);<br />
  system(&quot;pause&quot;);<br />
}<br />
<br />
<br />
<br />
Thanks!</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>Exutus</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/606202-my-very-first-c-program-compiles.html</guid>
		</item>
		<item>
			<title>C++: Class Time</title>
			<link>http://www.overclock.net/coding-programming/606104-c-class-time.html</link>
			<pubDate>Mon, 09 Nov 2009 01:36:06 GMT</pubDate>
			<description><![CDATA[PHP: 
--------- 
#include <iostream> 
#include <ctime> 
using namespace std; 
 
 
 
class Time]]></description>
			<content:encoded><![CDATA[<div><div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">PHP Code:</div>
	<div class="alt2">
		<hr />
		<code style="white-space:nowrap">
		<div dir="ltr" style="text-align:left;">
			<!-- php buffer start --><code><span style="color: #000000">
<span style="color: #0000BB"></span><span style="color: #FF8000">#include&nbsp;&lt;iostream&gt;<br />#include&nbsp;&lt;ctime&gt;<br /></span><span style="color: #0000BB">using&nbsp;namespace&nbsp;std</span><span style="color: #007700">;<br /><br /><br /><br />class&nbsp;</span><span style="color: #0000BB">Time<br /></span><span style="color: #007700">{<br />public:<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">int&nbsp;hour</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">int&nbsp;minute</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">int&nbsp;second</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">int&nbsp;time</span><span style="color: #007700">;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">Time</span><span style="color: #007700">()<br />&nbsp;&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">time&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">time</span><span style="color: #007700">(</span><span style="color: #0000BB">0</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;&nbsp;}<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">Time</span><span style="color: #007700">(</span><span style="color: #0000BB">int&nbsp;newTime</span><span style="color: #007700">)<br />&nbsp;&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">time&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">newTime</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;}<br /><br />};<br /><br /></span><span style="color: #0000BB">int&nbsp;main</span><span style="color: #007700">()<br />{<br />&nbsp;&nbsp;</span><span style="color: #0000BB">Time&nbsp;time</span><span style="color: #007700">;<br />&nbsp;&nbsp;</span><span style="color: #0000BB">cout&nbsp;</span><span style="color: #007700">&lt;&lt;&nbsp;</span><span style="color: #0000BB">time</span><span style="color: #007700">.</span><span style="color: #0000BB">getHour</span><span style="color: #007700">()&nbsp;&lt;&lt;&nbsp;</span><span style="color: #DD0000">":"&nbsp;</span><span style="color: #007700">&lt;&lt;&nbsp;</span><span style="color: #0000BB">time</span><span style="color: #007700">.</span><span style="color: #0000BB">getMinute</span><span style="color: #007700">()&nbsp;&lt;&lt;&nbsp;</span><span style="color: #DD0000">":"&nbsp;</span><span style="color: #007700">&lt;&lt;&nbsp;</span><span style="color: #0000BB">time</span><span style="color: #007700">.</span><span style="color: #0000BB">getSecond</span><span style="color: #007700">()&nbsp;&lt;&lt;&nbsp;</span><span style="color: #0000BB">endl</span><span style="color: #007700">;<br /><br />&nbsp;&nbsp;</span><span style="color: #0000BB">Time&nbsp;time1</span><span style="color: #007700">(</span><span style="color: #0000BB">555550</span><span style="color: #007700">);<br />&nbsp;&nbsp;</span><span style="color: #0000BB">cout&nbsp;</span><span style="color: #007700">&lt;&lt;&nbsp;</span><span style="color: #0000BB">time1</span><span style="color: #007700">.</span><span style="color: #0000BB">getHour</span><span style="color: #007700">()&nbsp;&lt;&lt;&nbsp;</span><span style="color: #DD0000">":"&nbsp;</span><span style="color: #007700">&lt;&lt;&nbsp;</span><span style="color: #0000BB">time1</span><span style="color: #007700">.</span><span style="color: #0000BB">getMinute</span><span style="color: #007700">()&nbsp;&lt;&lt;&nbsp;</span><span style="color: #DD0000">":"&nbsp;</span><span style="color: #007700">&lt;&lt;&nbsp;</span><span style="color: #0000BB">time1</span><span style="color: #007700">.</span><span style="color: #0000BB">getSecond</span><span style="color: #007700">()&nbsp;&lt;&lt;&nbsp;</span><span style="color: #0000BB">endl</span><span style="color: #007700">;<br /><br />&nbsp;&nbsp;return&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">;<br />}<br /><br /><br /></span><span style="color: #0000BB">int&nbsp;time</span><span style="color: #007700">()<br />{<br />&nbsp;&nbsp;</span><span style="color: #0000BB">int&nbsp;totalSeconds&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">time</span><span style="color: #007700">(</span><span style="color: #0000BB">0</span><span style="color: #007700">);<br /><br />&nbsp;&nbsp;</span><span style="color: #0000BB">int&nbsp;currentSecond&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">totalSeconds&nbsp;</span><span style="color: #007700">%&nbsp;</span><span style="color: #0000BB">60</span><span style="color: #007700">;<br /><br />&nbsp;&nbsp;</span><span style="color: #0000BB">int&nbsp;totalMinutes&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">totalSeconds&nbsp;</span><span style="color: #007700">/&nbsp;</span><span style="color: #0000BB">60</span><span style="color: #007700">;<br /><br />&nbsp;&nbsp;</span><span style="color: #0000BB">int&nbsp;currentMinute&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">totalMinutes&nbsp;</span><span style="color: #007700">%&nbsp;</span><span style="color: #0000BB">60</span><span style="color: #007700">;<br /><br />&nbsp;&nbsp;</span><span style="color: #0000BB">int&nbsp;totalHours&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">totalMinutes&nbsp;</span><span style="color: #007700">/&nbsp;</span><span style="color: #0000BB">60</span><span style="color: #007700">;<br /><br />&nbsp;&nbsp;</span><span style="color: #0000BB">int&nbsp;currentHour&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">totalHours&nbsp;</span><span style="color: #007700">%&nbsp;</span><span style="color: #0000BB">24</span><span style="color: #007700">;<br /><br />&nbsp;&nbsp;return&nbsp;</span><span style="color: #0000BB">currentHour</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">currentMinute</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">currentSecond</span><span style="color: #007700">;<br />}&nbsp;<br /></span><span style="color: #0000BB"></span>
</span>
</code><!-- php buffer end -->
		</div>
		</code>
		<hr />
	</div>
</div>Ok so i have that so far.<br />
<br />
The purpose of this code is to display the current time, and display the time if the seconds were <b>555550</b>. The result should be something like:<br />
<br />
Current Time is hh/mm/ss<br />
<br />
Current Time for 555550 seconds is 10 hours, 19 minutes, 9 seconds.<br />
<br />
I don't know where to go from here. <br />
<br />
As with my other threads, any help deserves REP++ :D</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>Mikey122687</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/606104-c-class-time.html</guid>
		</item>
		<item>
			<title>Random Number Generator in C++</title>
			<link>http://www.overclock.net/coding-programming/606081-random-number-generator-c.html</link>
			<pubDate>Mon, 09 Nov 2009 01:04:10 GMT</pubDate>
			<description>How do randomly generate a number from 1 to 6 in C++? 
 
Thanks</description>
			<content:encoded><![CDATA[<div>How do randomly generate a number from 1 to 6 in C++?<br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>JTD92</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/606081-random-number-generator-c.html</guid>
		</item>
		<item>
			<title>Easiest language to start with?</title>
			<link>http://www.overclock.net/coding-programming/605792-easiest-language-start.html</link>
			<pubDate>Sun, 08 Nov 2009 13:29:21 GMT</pubDate>
			<description><![CDATA[Hey. 
So what programming language is the easiest to start with and easy to move on to other languages? What I'm looking for is the best starter language :) 
I've been searching the web but it's different from thread to thread, some say it's Python, some says it's Visual Basic and some say that you...]]></description>
			<content:encoded><![CDATA[<div>Hey.<br />
So what programming language is the easiest to start with and easy to move on to other languages? What I'm looking for is the best starter language :)<br />
I've been searching the web but it's different from thread to thread, some say it's Python, some says it's Visual Basic and some say that you should just jump right into Java or C++.. :headscrat I'll appreciate any answer, oh and please include why that language is the best to start with and maybe some websites with tutorials and stuff :D <br />
<br />
/Cyberbot</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>Cyberbot</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/605792-easiest-language-start.html</guid>
		</item>
		<item>
			<title>Visual Basic or C++</title>
			<link>http://www.overclock.net/coding-programming/605760-visual-basic-c.html</link>
			<pubDate>Sun, 08 Nov 2009 09:02:06 GMT</pubDate>
			<description><![CDATA[Hey guys. Have to take intro classes to both C/C++ and Visual Basic at college. I don't want and couldn't handle taking them both at the same time. Which one should I take first?]]></description>
			<content:encoded><![CDATA[<div>Hey guys. Have to take intro classes to both C/C++ and Visual Basic at college. I don't want and couldn't handle taking them both at the same time. Which one should I take first?</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>mikek1024</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/605760-visual-basic-c.html</guid>
		</item>
		<item>
			<title>Can someone write a basic code for me?</title>
			<link>http://www.overclock.net/coding-programming/605252-can-someone-write-basic-code-me.html</link>
			<pubDate>Sat, 07 Nov 2009 14:14:08 GMT</pubDate>
			<description><![CDATA[Hi. :) 
 
Well, I need a code to translate Celsius, into "Girs". 
 
 
---Quote (Originally by TnB= Gir)--- 
I think we should use a whole new temperature scale. Take the given values of said measurement in all three main systems (F, C, and K), add them up, divide by three, and multiply it by the...]]></description>
			<content:encoded><![CDATA[<div>Hi. :)<br />
<br />
Well, I need a code to translate Celsius, into &quot;Girs&quot;.<br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="6" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				<div>
					Originally Posted by <strong>TnB= Gir</strong>
					(Post 7588528)
				</div>
				<div style="font-style:italic">I think we should use a whole new temperature scale. Take the given values of said measurement in all three main systems (F, C, and K), add them up, divide by three, and multiply it by the speed of light squared.<br />
<br />
Simple.</div>
			
			<hr />
		</td>
	</tr>
	</table>
</div>That's how you get &quot;Girs&quot; but I'd like a program that can do this automatically, for lolz. :p<br />
<br />
You might get a nice surprise if you do it for me. ^^</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>meticadpa</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/605252-can-someone-write-basic-code-me.html</guid>
		</item>
		<item>
			<title>Help with error in my C++ homework...  (program done, error fixed :D, 1 little bug..)</title>
			<link>http://www.overclock.net/coding-programming/604974-help-error-my-c-homework-program.html</link>
			<pubDate>Sat, 07 Nov 2009 00:28:40 GMT</pubDate>
			<description><![CDATA[Ok, I have the program done, and down to 1 error, but I have no clue what it could be.  It'd be great if you guys could help me find this error.  (oh, and in case you're wondering, yes the chapter is on functions :P ) 
 
Here's the source: 
 
 
Code: 
--------- 
/* 
Name:		Nathan Peterson...]]></description>
			<content:encoded><![CDATA[<div>Ok, I have the program done, and down to 1 error, but I have no clue what it could be.  It'd be great if you guys could help me find this error.  (oh, and in case you're wondering, yes the chapter is on functions :P )<br />
<br />
Here's the source:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">/*<br />
Name:&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Nathan Peterson<br />
Date:&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; November 4, 2009<br />
Assignment: Chapter 5 Programming Exercise 14<br />
*/<br />
<br />
#include &lt;iostream&gt;<br />
#include &lt;iomanip&gt;<br />
#include &lt;fstream&gt;<br />
#include &lt;string&gt;<br />
using namespace std;<br />
<br />
void reset(string&amp; name, int&amp; t1, int&amp; t2, int&amp; t3, int&amp; t4, int&amp; t5, double&amp; avgT);<br />
void readStudent(ifstream inData, string&amp; name, int&amp; t1, int&amp; t2, int&amp; t3, int&amp; t4, int&amp; t5);<br />
void calculateAverage(int t1, int t2, int t3, int t4, int t5, double&amp; avgT);<br />
int calculateGrade(double avgT);<br />
void writeDisplay(ofstream&amp; outData, string name, int t1, int t2, int t3, int t4, int t5, double avgT, char grade);<br />
<br />
int main()<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; int t1=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; int t2=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; int t3=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; int t4=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; int t5=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; string name=&quot;&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; double avgT=0.0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; int count=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; double sumAvg=0.0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; double classAvg=0.0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; char grade=' ';<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; ifstream inData;<br />
&nbsp; &nbsp; &nbsp; &nbsp; ofstream outData;<br />
&nbsp; &nbsp; &nbsp; &nbsp; inData.open(&quot;C:\\Ch5PE14in.txt&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; outData.open(&quot;C:\\Ch5PE14out.txt&quot;);<br />
<br />
system(&quot;cls&quot;);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;Student&quot; &lt;&lt; setw(5) &lt;&lt; &quot;Test1&quot; &lt;&lt; setw(3) &lt;&lt; &quot;Test2&quot; &lt;&lt; setw(3) &lt;&lt; &quot;Test4&quot; &lt;&lt; setw(3) &lt;&lt; &quot;Test5&quot; &lt;&lt; setw(3) &lt;&lt; &quot;Average&quot; &lt;&lt; setw(8) &lt;&lt; &quot;Grade&quot; &lt;&lt;endl;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; while(inData.eof())<br />
&nbsp; &nbsp; &nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; reset(name, t1, t2, t3, t4, t5, avgT);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; readStudent(inData, name, t1, t2, t3, t4, t5);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; calculateAverage(t1, t2, t3, t4, t5, avgT);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; grade=(calculateGrade(avgT));<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; static_cast&lt;char&gt;(grade);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; writeDisplay(outData, name, t1, t2, t3, t4, t5, avgT, grade);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sumAvg=sumAvg+avgT;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; count++;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; classAvg=(sumAvg/count);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;Class Average= &quot; &lt;&lt; classAvg &lt;&lt;endl;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; inData.close();<br />
&nbsp; &nbsp; &nbsp; &nbsp; outData.close();<br />
<br />
return(0);<br />
}<br />
<br />
void reset(string&amp; name, int&amp; t1, int&amp; t2, int&amp; t3, int&amp; t4, int&amp; t5, double&amp; avgT)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; t1=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; t2=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; t3=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; t4=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; t5=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; name=&quot;&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; avgT=0.0;<br />
}<br />
<br />
void readStudent(ifstream inData, string&amp; name, int&amp; t1, int&amp; t2, int&amp; t3, int&amp; t4, int&amp; t5)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; inData &gt;&gt; name &gt;&gt; t1 &gt;&gt; t2 &gt;&gt; t3 &gt;&gt; t4 &gt;&gt; t5;<br />
}<br />
<br />
void calculateAverage(int t1, int t2, int t3, int t4, int t5, double&amp; avgT)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; avgT=((t1+t2+t3+t4+t5)/5);<br />
}<br />
<br />
int calculateGrade(double avgT)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; char grade=' ';<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; if(avgT&gt;=.9)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; grade='A';<br />
&nbsp; &nbsp; &nbsp; &nbsp; else if(avgT&gt;=.8)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; grade='B';<br />
&nbsp; &nbsp; &nbsp; &nbsp; else if(avgT&gt;=.7)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; grade='C';<br />
&nbsp; &nbsp; &nbsp; &nbsp; else if(avgT&gt;=.6)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; grade='D';<br />
&nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; grade='F';<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; return grade;<br />
}<br />
<br />
void writeDisplay(ofstream&amp; outData, string name, int t1, int t2, int t3, int t4, int t5, double avgT, char grade)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; outData &lt;&lt; name &lt;&lt; t1 &lt;&lt; t2 &lt;&lt; t3 &lt;&lt; t4 &lt;&lt; t5 &lt;&lt;endl;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; name &lt;&lt; t1 &lt;&lt; t2 &lt;&lt; t3 &lt;&lt; t4 &lt;&lt; t5 &lt;&lt;endl;<br />
}</code><hr />
</div>The program is supposed to read a name and a series of five test scores from a file, then calculate the average for that student's tests and their grade, as well as the overall class average.  Then it needs to output it to a text file, and to the screen.  (Oh, and the functions &quot;calculateAverage&quot; and &quot;calculateGrade&quot; are required by the assignment)<br />
<br />
The data it's reading is in this format:<br />
<br />
Johnson 85 83 77 91 76<br />
Aniston 80 90 95 93 48<br />
Cooper 78 81 11 90 73<br />
Gupta 92 83 30 69 87<br />
Blair 23 45 96 38 59<br />
Clark 60 85 45 39 67<br />
Kennedy 77 31 52 74 83<br />
Bronson 93 94 89 77 97<br />
Sunny 79 85 28 93 82<br />
Smith 85 72 49 75 63<br />
<br />
Here's the error I keep getting:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">c:\program files (x86)\microsoft visual studio 9.0\vc\include\fstream(676) : error C2248: 'std::basic_ios&lt;_Elem,_Traits&gt;::basic_ios' : cannot access private member declared in class 'std::basic_ios&lt;_Elem,_Traits&gt;'<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; with<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; [<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _Elem=char,<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _Traits=std::char_traits&lt;char&gt;<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; ]<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; c:\program files (x86)\microsoft visual studio 9.0\vc\include\ios(151) : see declaration of 'std::basic_ios&lt;_Elem,_Traits&gt;::basic_ios'<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; with<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; [<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _Elem=char,<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _Traits=std::char_traits&lt;char&gt;<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; ]<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; This diagnostic occurred in the compiler generated function 'std::basic_ifstream&lt;_Elem,_Traits&gt;::basic_ifstream(const std::basic_ifstream&lt;_Elem,_Traits&gt; &amp;)'<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; with<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; [<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _Elem=char,<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _Traits=std::char_traits&lt;char&gt;<br />
1&gt;&nbsp; &nbsp; &nbsp; &nbsp; ]</code><hr />
</div>Thanks for any help!</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>31337</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/604974-help-error-my-c-homework-program.html</guid>
		</item>
		<item>
			<title>Help with Java Pizza</title>
			<link>http://www.overclock.net/coding-programming/604891-help-java-pizza.html</link>
			<pubDate>Fri, 06 Nov 2009 21:59:04 GMT</pubDate>
			<description><![CDATA[Ok so i am working on an assignment and iv been trying to figure out the error i am getting when compling heres a screen shot of the error and below is the code: 
 
 
Code: 
--------- 
public class DemoSwitch 
{ 
 
    public static void main(String args[]) 
    {]]></description>
			<content:encoded><![CDATA[<div>Ok so i am working on an assignment and iv been trying to figure out the error i am getting when compling heres a screen shot of the error and below is the code:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">public class DemoSwitch<br />
{<br />
<br />
&nbsp; &nbsp; public static void main(String args[])<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; char num = 's';<br />
&nbsp; &nbsp; &nbsp; &nbsp; String checksize;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; switch(num)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 's' :&nbsp;  checksize = &quot;Small&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 'm' :&nbsp;  checksize = &quot;Medium&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case 'l' :&nbsp;  checksize = &quot;Large&quot;;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; if ((checksize == &quot;Small&quot;)||(checksize == &quot;Medium&quot;)||(checksize == &quot;Large&quot;))<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.out.println(&quot;Your Size is: &quot; + checksize);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.out.println(&quot;Invalid&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; <br />
}</code><hr />
</div></div>


	<br />
	<div style="padding:6px">

	
		<fieldset class="fieldset">
			<legend>Attached Thumbnails</legend>
			<div style="padding:3px">
			
<a href="http://www.overclock.net/attachments/coding-programming/128456d1257544725-help-java-pizza-error1.jpg" rel="Lightbox_7584191" id="attachment128456" target="_blank"><img class="thumbnail" src="http://www.overclock.net/attachments/coding-programming/128456d1257544725t-help-java-pizza-error1.jpg" border="0" alt="Click image for larger version

Name:	error1.JPG
Views:	N/A
Size:	34.2 KB
ID:	128456" /></a>
&nbsp;

			</div>
		</fieldset>
	

	

	

	

	</div>
]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>mojoopo</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/604891-help-java-pizza.html</guid>
		</item>
		<item>
			<title>Overclocking a Keyboard control</title>
			<link>http://www.overclock.net/coding-programming/604626-overclocking-keyboard-control.html</link>
			<pubDate>Fri, 06 Nov 2009 09:18:25 GMT</pubDate>
			<description>not sure if this is in the right spot... 
 
im having a hard time increasing my keyboard repeater speed beyond 31. 
in my control panel/keyboard properties/speed i can only get the repeat rate to 31 (the number value) which is max out on the properties. 
 
i heard you can increase it beyond that...</description>
			<content:encoded><![CDATA[<div>not sure if this is in the right spot...<br />
<br />
im having a hard time increasing my keyboard repeater speed beyond 31.<br />
in my control panel/keyboard properties/speed i can only get the repeat rate to 31 (the number value) which is max out on the properties.<br />
<br />
i heard you can increase it beyond that with a regedit. but all the ones i used doesnt work. am i using the wrong programs? <br />
<br />
thanks.</div>

]]></content:encoded>
			<category domain="http://www.overclock.net/coding-programming/">Coding and Programming</category>
			<dc:creator>Coolwaters</dc:creator>
			<guid isPermaLink="true">http://www.overclock.net/coding-programming/604626-overclocking-keyboard-control.html</guid>
		</item>
	</channel>
</rss>
