<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for EPORTFOLIO</title>
	<atom:link href="http://eport.ryanjb.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://eport.ryanjb.com</link>
	<description>RyanJB's EPORTFOLIO</description>
	<pubDate>Mon, 06 Feb 2012 21:10:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>Comment on CSC203 Week 4 TeamWork project by Ryan Bridglal</title>
		<link>http://eport.ryanjb.com/9-java-programming-i-csc203/csc203-week-4-teamwork-project/#comment-68</link>
		<dc:creator>Ryan Bridglal</dc:creator>
		<pubDate>Mon, 06 Apr 2009 08:52:43 +0000</pubDate>
		<guid isPermaLink="false">http://eport.ryanjb.com/?page_id=42#comment-68</guid>
		<description>21 Mar 09    1:45 PM MST

  	Hello everyone, I've been unavailable this week due to cut backs at my job (which means I'm working longer hours to make up for the shortage of employees). I'll get started on this and we should be finished by tommorow. Anyone care to start posting code? Some else can do comments and I'll see if i can throw together a gui. Are you all interested in making this program with a GUI?</description>
		<content:encoded><![CDATA[<p>21 Mar 09    1:45 PM MST</p>
<p>  	Hello everyone, I&#8217;ve been unavailable this week due to cut backs at my job (which means I&#8217;m working longer hours to make up for the shortage of employees). I&#8217;ll get started on this and we should be finished by tommorow. Anyone care to start posting code? Some else can do comments and I&#8217;ll see if i can throw together a gui. Are you all interested in making this program with a GUI?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSC203 Week 4 Discussion by Ryan Bridglal</title>
		<link>http://eport.ryanjb.com/9-java-programming-i-csc203/csc203-week-4-discussion/#comment-67</link>
		<dc:creator>Ryan Bridglal</dc:creator>
		<pubDate>Mon, 06 Apr 2009 08:51:39 +0000</pubDate>
		<guid isPermaLink="false">http://eport.ryanjb.com/?page_id=41#comment-67</guid>
		<description>Brooke Estabrook-Fishinghawk    	 22 Mar 09    9:50 AM MST

&lt;i&gt;   	Response to Ryan

I agree 100%--why do the work if the debugger will do it for you?&lt;/i&gt;</description>
		<content:encoded><![CDATA[<p>Brooke Estabrook-Fishinghawk    	 22 Mar 09    9:50 AM MST</p>
<p><i>   	Response to Ryan</p>
<p>I agree 100%&#8211;why do the work if the debugger will do it for you?</i></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSC203 Week 4 Discussion by Ryan Bridglal</title>
		<link>http://eport.ryanjb.com/9-java-programming-i-csc203/csc203-week-4-discussion/#comment-66</link>
		<dc:creator>Ryan Bridglal</dc:creator>
		<pubDate>Mon, 06 Apr 2009 08:51:14 +0000</pubDate>
		<guid isPermaLink="false">http://eport.ryanjb.com/?page_id=41#comment-66</guid>
		<description>21 Mar 09    1:40 PM MST


	1.Let the debugger do the work for you. There are lots of free debuggers and compilers available. You can find one that helps you debug the program. With the Eclipse IDE, their debugger automatically locates the faulty code and provides suggestions to fix your code. With the NetBeans IDE, it will Identify the faulty code for you, but not provide automatic solutions. It provides suggestions to fix your code, but Eclipse will allow you to add code to help you resolve the situation.

2.Get to know your debuggers and what they can do. Debugging is a powerful tool and each one does the job a little differently; even though they all do the same job. If you don't know how to use it, you won't get to far in programming.

3.During debugging, after the debugger has identified the faulty code, you may not understand why the section is faulty. It's best to read a few lines before or ahead to help you identify why the faulty code is not operation properly. If line 15 is faulty, maybe the method in line 5 is causing it.

4. Another important thing when debugging is rewriting the faulty code. If you don't rewrite</description>
		<content:encoded><![CDATA[<p>21 Mar 09    1:40 PM MST</p>
<p>	1.Let the debugger do the work for you. There are lots of free debuggers and compilers available. You can find one that helps you debug the program. With the Eclipse IDE, their debugger automatically locates the faulty code and provides suggestions to fix your code. With the NetBeans IDE, it will Identify the faulty code for you, but not provide automatic solutions. It provides suggestions to fix your code, but Eclipse will allow you to add code to help you resolve the situation.</p>
<p>2.Get to know your debuggers and what they can do. Debugging is a powerful tool and each one does the job a little differently; even though they all do the same job. If you don&#8217;t know how to use it, you won&#8217;t get to far in programming.</p>
<p>3.During debugging, after the debugger has identified the faulty code, you may not understand why the section is faulty. It&#8217;s best to read a few lines before or ahead to help you identify why the faulty code is not operation properly. If line 15 is faulty, maybe the method in line 5 is causing it.</p>
<p>4. Another important thing when debugging is rewriting the faulty code. If you don&#8217;t rewrite</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSC203 Week 3 Reflection by Ryan Bridglal</title>
		<link>http://eport.ryanjb.com/9-java-programming-i-csc203/csc203-week-3-reflection/#comment-65</link>
		<dc:creator>Ryan Bridglal</dc:creator>
		<pubDate>Mon, 06 Apr 2009 08:49:20 +0000</pubDate>
		<guid isPermaLink="false">http://eport.ryanjb.com/?page_id=40#comment-65</guid>
		<description>1.Not everything can easily be used with multiple applications. I'm talking about creating a java project with the Netbeans IDE and then trying to open it with Eclipse. You can't just copy the files over and expect it to automatically run. It has to be imported into the program.

2.Creating GUI applications are not as hard as they appear to be; especially when you use the IDE to do most of the work for you.

3.There's always a short and quick way to perform an operation. I'm referring to math.min to locate the smallest of multiple numbers. You could write out a few lines of code, using the greater, equal or less than signs; to determine the smallest of a group of numbers. But Math.Min, does it all for you.

4.You have to use multiple resources when learning a programming language. The book is great, but it does not have 100 percent clean and clear logical code. I read through the whole thing and the way the book was composed, they assume you know what they are talking about. It's a little difficult for the beginner programmer to learn from this text. It's more of a reference manual and you have to have multiple resources to learn from. Another great place to find help is through google.

5. You have to find a compiler you are comfortable with, or become comfortable with everything the team you are working with, is using. It's great to master one program, but it does not get you anywhere. If you master multiple tools, you'll be able to adapt to more situations a lot easier. I use Netbeans to cracnk out my applications and I use eclipse to help me learn through the process; because Eclipse automatically provides solutions and shows you through your code.</description>
		<content:encoded><![CDATA[<p>1.Not everything can easily be used with multiple applications. I&#8217;m talking about creating a java project with the Netbeans IDE and then trying to open it with Eclipse. You can&#8217;t just copy the files over and expect it to automatically run. It has to be imported into the program.</p>
<p>2.Creating GUI applications are not as hard as they appear to be; especially when you use the IDE to do most of the work for you.</p>
<p>3.There&#8217;s always a short and quick way to perform an operation. I&#8217;m referring to math.min to locate the smallest of multiple numbers. You could write out a few lines of code, using the greater, equal or less than signs; to determine the smallest of a group of numbers. But Math.Min, does it all for you.</p>
<p>4.You have to use multiple resources when learning a programming language. The book is great, but it does not have 100 percent clean and clear logical code. I read through the whole thing and the way the book was composed, they assume you know what they are talking about. It&#8217;s a little difficult for the beginner programmer to learn from this text. It&#8217;s more of a reference manual and you have to have multiple resources to learn from. Another great place to find help is through google.</p>
<p>5. You have to find a compiler you are comfortable with, or become comfortable with everything the team you are working with, is using. It&#8217;s great to master one program, but it does not get you anywhere. If you master multiple tools, you&#8217;ll be able to adapt to more situations a lot easier. I use Netbeans to cracnk out my applications and I use eclipse to help me learn through the process; because Eclipse automatically provides solutions and shows you through your code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSC203 Week 3 Teach Back by Ryan Bridglal</title>
		<link>http://eport.ryanjb.com/9-java-programming-i-csc203/csc203-week-3-teach-back/#comment-64</link>
		<dc:creator>Ryan Bridglal</dc:creator>
		<pubDate>Mon, 06 Apr 2009 08:48:57 +0000</pubDate>
		<guid isPermaLink="false">http://eport.ryanjb.com/?page_id=39#comment-64</guid>
		<description>I did not submit a teach back presentation.</description>
		<content:encoded><![CDATA[<p>I did not submit a teach back presentation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSC203 Week 3 Math Library by Ryan Bridglal</title>
		<link>http://eport.ryanjb.com/9-java-programming-i-csc203/csc203-week-3-math-library/#comment-63</link>
		<dc:creator>Ryan Bridglal</dc:creator>
		<pubDate>Mon, 06 Apr 2009 08:48:19 +0000</pubDate>
		<guid isPermaLink="false">http://eport.ryanjb.com/?page_id=37#comment-63</guid>
		<description>Brooke Estabrook-Fishinghawk    	 13 Mar 09    7:24 AM MST

&lt;i&gt; Response to Ryan

It is great that you take the extra step to go with thr GUI version. While it takes more time the added effort is well worth the skill level.&lt;/i&gt;</description>
		<content:encoded><![CDATA[<p>Brooke Estabrook-Fishinghawk    	 13 Mar 09    7:24 AM MST</p>
<p><i> Response to Ryan</p>
<p>It is great that you take the extra step to go with thr GUI version. While it takes more time the added effort is well worth the skill level.</i></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSC203 Week 3 Min and Max by Ryan Bridglal</title>
		<link>http://eport.ryanjb.com/9-java-programming-i-csc203/csc203-week-3-min-and-max/#comment-62</link>
		<dc:creator>Ryan Bridglal</dc:creator>
		<pubDate>Mon, 06 Apr 2009 08:47:38 +0000</pubDate>
		<guid isPermaLink="false">http://eport.ryanjb.com/?page_id=38#comment-62</guid>
		<description>Brooke Estabrook-Fishinghawk    	 15 Mar 09    6:43 AM MST

&lt;i&gt; Response to Ryan

You will be our go to GUI guy.&lt;/i&gt;</description>
		<content:encoded><![CDATA[<p>Brooke Estabrook-Fishinghawk    	 15 Mar 09    6:43 AM MST</p>
<p><i> Response to Ryan</p>
<p>You will be our go to GUI guy.</i></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSC203 Week 3 Min and Max by Ryan Bridglal</title>
		<link>http://eport.ryanjb.com/9-java-programming-i-csc203/csc203-week-3-min-and-max/#comment-61</link>
		<dc:creator>Ryan Bridglal</dc:creator>
		<pubDate>Mon, 06 Apr 2009 08:46:50 +0000</pubDate>
		<guid isPermaLink="false">http://eport.ryanjb.com/?page_id=38#comment-61</guid>
		<description>14 Mar 09    3:26 PM MST

  	The following zip file is the complete package, download, unzip and tweak how ever you want it!

it's simple, create gui application.
add 2 buttons,
4 textboxes,
within the program code make the method:

public void Calculation(){

float number1, number2, number3;
number1 = Float.parseFloat(jTextField1.getText());
number2 = Float.parseFloat(jTextField2.getText());
number3 = Float.parseFloat(jTextField3.getText());

float answer = Math.min( number1, Math.min(number2, number3));

jTextField4.setText(String.valueOf(answer));

}

--------+++++and ++++------



public void Clear(){
//clears all text boxes
jTextField1.setText("");
jTextField2.setText("");
jTextField3.setText("");
jTextField4.setText("");
}


Here's calculate button code:
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {

Calculation();
}


and here's the clear button code:
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
Clear();
}



You're done, you have a running application, you should add labels to explain what does what though.
&lt;a href="http://eport.ryanjb.com/wp-content/uploads/2009/04/ryan_bridglal_min0f3numbers.zip" rel="nofollow"&gt;&lt;img src="http://eport.ryanjb.com/wp-includes/images/crystal/archive.png"&gt;&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>14 Mar 09    3:26 PM MST</p>
<p>  	The following zip file is the complete package, download, unzip and tweak how ever you want it!</p>
<p>it&#8217;s simple, create gui application.<br />
add 2 buttons,<br />
4 textboxes,<br />
within the program code make the method:</p>
<p>public void Calculation(){</p>
<p>float number1, number2, number3;<br />
number1 = Float.parseFloat(jTextField1.getText());<br />
number2 = Float.parseFloat(jTextField2.getText());<br />
number3 = Float.parseFloat(jTextField3.getText());</p>
<p>float answer = Math.min( number1, Math.min(number2, number3));</p>
<p>jTextField4.setText(String.valueOf(answer));</p>
<p>}</p>
<p>&#8212;&#8212;&#8211;+++++and ++++&#8212;&#8212;</p>
<p>public void Clear(){<br />
//clears all text boxes<br />
jTextField1.setText(&#8221;");<br />
jTextField2.setText(&#8221;");<br />
jTextField3.setText(&#8221;");<br />
jTextField4.setText(&#8221;");<br />
}</p>
<p>Here&#8217;s calculate button code:<br />
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {</p>
<p>Calculation();<br />
}</p>
<p>and here&#8217;s the clear button code:<br />
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {<br />
Clear();<br />
}</p>
<p>You&#8217;re done, you have a running application, you should add labels to explain what does what though.<br />
<a href="http://eport.ryanjb.com/wp-content/uploads/2009/04/ryan_bridglal_min0f3numbers.zip" rel="nofollow"><img src="http://eport.ryanjb.com/wp-includes/images/crystal/archive.png"/></a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSC203 Week 3 Min and Max by Ryan Bridglal</title>
		<link>http://eport.ryanjb.com/9-java-programming-i-csc203/csc203-week-3-min-and-max/#comment-60</link>
		<dc:creator>Ryan Bridglal</dc:creator>
		<pubDate>Mon, 06 Apr 2009 08:45:06 +0000</pubDate>
		<guid isPermaLink="false">http://eport.ryanjb.com/?page_id=38#comment-60</guid>
		<description>14 Mar 09    3:19 PM MST

OK, the following 3 text files contain the codes for you to look at:

&lt;a href="http://eport.ryanjb.com/wp-content/uploads/2009/04/ryanmin0f3numbersaboutbox.txt" rel="nofollow"&gt;ryanmin0f3numbersaboutbox.txt&lt;/a&gt;

&lt;a href="http://eport.ryanjb.com/wp-content/uploads/2009/04/ryanmin0f3numbersapp.txt" rel="nofollow"&gt;ryanmin0f3numbersapp.txt&lt;/a&gt;

&lt;a href="http://eport.ryanjb.com/wp-content/uploads/2009/04/ryanmin0f3numbersview.txt" rel="nofollow"&gt;ryanmin0f3numbersview.txt&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>14 Mar 09    3:19 PM MST</p>
<p>OK, the following 3 text files contain the codes for you to look at:</p>
<p><a href="http://eport.ryanjb.com/wp-content/uploads/2009/04/ryanmin0f3numbersaboutbox.txt" rel="nofollow">ryanmin0f3numbersaboutbox.txt</a></p>
<p><a href="http://eport.ryanjb.com/wp-content/uploads/2009/04/ryanmin0f3numbersapp.txt" rel="nofollow">ryanmin0f3numbersapp.txt</a></p>
<p><a href="http://eport.ryanjb.com/wp-content/uploads/2009/04/ryanmin0f3numbersview.txt" rel="nofollow">ryanmin0f3numbersview.txt</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSC203 Week 3 Min and Max by Ryan Bridglal</title>
		<link>http://eport.ryanjb.com/9-java-programming-i-csc203/csc203-week-3-min-and-max/#comment-59</link>
		<dc:creator>Ryan Bridglal</dc:creator>
		<pubDate>Mon, 06 Apr 2009 08:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://eport.ryanjb.com/?page_id=38#comment-59</guid>
		<description>14 Mar 09    3:15 PM MST

Hello, one again, I went with the GUI version:

Here's the heart of the code that does it all:

public void Calculation(){

float number1, number2, number3;
number1 = Float.parseFloat(jTextField1.getText());
number2 = Float.parseFloat(jTextField2.getText());
number3 = Float.parseFloat(jTextField3.getText());

float answer = Math.min( number1, Math.min(number2, number3));

jTextField4.setText(String.valueOf(answer));

}

public void Clear(){
//clears all text boxes
jTextField1.setText("");
jTextField2.setText("");
jTextField3.setText("");
jTextField4.setText("");
}


and the buttons that calls these methods.
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
Clear();
}

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {

Calculation();
}

private void jMenuItem1ActionPerformed(java.awt.event.ActionEvent evt) {
Calculation();
}

private void jMenuItem2ActionPerformed(java.awt.event.ActionEvent evt) {
Clear();
}




I made the two methods, and within the calculate and clear buttons/menu items (under my options pane), I called these methods. I decided to do this because it makes no sense to write the code multiple times in each button. I wrote the code once and called it four times.

here's my screen shot:

&lt;a href="http://eport.ryanjb.com/wp-content/uploads/2009/04/minof3_ryan_bridglal.jpg" rel="nofollow"&gt;&lt;img src="http://eport.ryanjb.com/wp-content/uploads/2009/04/minof3_ryan_bridglal-300x187.jpg"&gt;&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>14 Mar 09    3:15 PM MST</p>
<p>Hello, one again, I went with the GUI version:</p>
<p>Here&#8217;s the heart of the code that does it all:</p>
<p>public void Calculation(){</p>
<p>float number1, number2, number3;<br />
number1 = Float.parseFloat(jTextField1.getText());<br />
number2 = Float.parseFloat(jTextField2.getText());<br />
number3 = Float.parseFloat(jTextField3.getText());</p>
<p>float answer = Math.min( number1, Math.min(number2, number3));</p>
<p>jTextField4.setText(String.valueOf(answer));</p>
<p>}</p>
<p>public void Clear(){<br />
//clears all text boxes<br />
jTextField1.setText(&#8221;");<br />
jTextField2.setText(&#8221;");<br />
jTextField3.setText(&#8221;");<br />
jTextField4.setText(&#8221;");<br />
}</p>
<p>and the buttons that calls these methods.<br />
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {<br />
Clear();<br />
}</p>
<p>private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {</p>
<p>Calculation();<br />
}</p>
<p>private void jMenuItem1ActionPerformed(java.awt.event.ActionEvent evt) {<br />
Calculation();<br />
}</p>
<p>private void jMenuItem2ActionPerformed(java.awt.event.ActionEvent evt) {<br />
Clear();<br />
}</p>
<p>I made the two methods, and within the calculate and clear buttons/menu items (under my options pane), I called these methods. I decided to do this because it makes no sense to write the code multiple times in each button. I wrote the code once and called it four times.</p>
<p>here&#8217;s my screen shot:</p>
<p><a href="http://eport.ryanjb.com/wp-content/uploads/2009/04/minof3_ryan_bridglal.jpg" rel="nofollow"><img src="http://eport.ryanjb.com/wp-content/uploads/2009/04/minof3_ryan_bridglal-300x187.jpg"/></a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

