<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.expertiza.ncsu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Suziro</id>
	<title>Expertiza_Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.expertiza.ncsu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Suziro"/>
	<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=Special:Contributions/Suziro"/>
	<updated>2026-05-06T11:02:24Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/do_right&amp;diff=11391</id>
		<title>CSC 216/s08/do right</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/do_right&amp;diff=11391"/>
		<updated>2008-04-21T18:50:50Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* The script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Special Notes about Binary Search Trees&lt;br /&gt;
[[Image:Binary_search_tree.png|left|250px|thumb||This is an example of a binary search tree]]&lt;br /&gt;
# the left subtree of a node contains only values less than the node's value;&lt;br /&gt;
# the right subtree of a node contains only values greater than or equal to the node's value.&lt;br /&gt;
===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
==Learning how Binary Search Tree Works==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
Teaching the students how to '''insert''' and '''delete''' nodes from Binary Search Tree. &lt;br /&gt;
&amp;lt;br&amp;gt;'''Insertion'''&lt;br /&gt;
&amp;lt;br&amp;gt;Insertion begins as a search would begin; if the root is not equal to the value, we search the left or right subtrees as before. Eventually, we will reach an external node and add the value as its right or left child, depending on the node's value. In other words, we examine the root and recursively insert the new node to the left subtree if the new value is less than the root, or the right subtree if the new value is greater than or equal to the root.&lt;br /&gt;
&amp;lt;br&amp;gt;'''Deletion&lt;br /&gt;
'''&lt;br /&gt;
&amp;lt;br&amp;gt;There are several cases to be considered:&lt;br /&gt;
    * Deleting a leaf: Deleting a node with no children is easy, as we can simply remove it from the tree.&lt;br /&gt;
    * Deleting a node with one child: Delete it and replace it with its child.&lt;br /&gt;
    * Deleting a node with two children: Suppose the node to be deleted is called N. We replace the value of N with either its &lt;br /&gt;
      in-order successor (the left-most child of the right subtree) or the in-order predecessor (the right-most child of the left &lt;br /&gt;
      subtree).&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
Students can do this on their individual computers or on in groups. Only thing that is needed from the users computer is flash loaded on it.&lt;br /&gt;
&lt;br /&gt;
[http://courses.ncsu.edu/csc216/lec/001/video/t3/BinaryTree.swf Flash link Click Here]&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Video animation, teaches students how to insert and delete from a binary search tree from the different cases mention above. This flash animation also has a built in game that allows players to insert and remove nodes from a binary search tree.&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11112</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11112"/>
		<updated>2008-04-08T16:39:28Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* Participants and props */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Eclipse is an open source community whose projects are focused on building an open development platform comprised of extensible frameworks, tools and runtimes for building, deploying and managing software across the lifecycle. A large and vibrant ecosystem of major technology vendors, innovative start-ups, universities, research institutions and individuals extend, complement and support the Eclipse platform.[[http://eclipse.org 1]]&lt;br /&gt;
&lt;br /&gt;
===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE FOR DUMMIES!!==&lt;br /&gt;
[[Image:Eclipse-logo.png|frame|This is the Eclipse's logo]]&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
''Debugging'': to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
''Shotgun debugging'' : the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;[http://www.download.com/Camtasia-Studio/3000-13633_4-10665109.html?cdlpid=10753215 Camtasia Studio 5 ]&lt;br /&gt;
&amp;lt;br&amp;gt;Projector&lt;br /&gt;
&lt;br /&gt;
Participants will need Eclipse installed on their computer and have downloaded this package here (the testing code mentioned in the video [http://courses.ncsu.edu/csc216/lec/001/video/1/g1/ArrayExercises.java Code]). The video can be watched by clicking here   [http://courses.ncsu.edu/csc216/lec/001/video/1/g1/Debugging.swf Video].&lt;br /&gt;
&lt;br /&gt;
===Common Practices===&lt;br /&gt;
   *Step Execution&lt;br /&gt;
   *Breakpoints&lt;br /&gt;
   *Evaluate expressions&lt;br /&gt;
   *Scrapbooking live code&lt;br /&gt;
   *Hotswap bug fixing&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided. Should aid students in awareness of debugging benefits when using Eclipse.&lt;br /&gt;
&lt;br /&gt;
Debugging Perspective&lt;br /&gt;
* Two ways of Accessing&lt;br /&gt;
* Introduction to the panes in this view&lt;br /&gt;
Three Common Practice&lt;br /&gt;
* Breakpoints&lt;br /&gt;
* Step Execution&lt;br /&gt;
* HotSwap Bug Fixing&lt;br /&gt;
Simple Demonstration of Bad Code corrected&lt;br /&gt;
* Load the file &lt;br /&gt;
* Code Objective&lt;br /&gt;
* Start Debugging&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
''external resources and links to Eclipse Debugging Tutorial''&lt;br /&gt;
&lt;br /&gt;
1.[http://eclipse.org Eclipse Website]&lt;br /&gt;
&lt;br /&gt;
2.[http://www.ibm.com/developerworks/library/os-ecbug/ Debugging with the Eclipse Platform]&lt;br /&gt;
&lt;br /&gt;
3.[http://bill.dudney.net/roller/bill/resource/debugging.pdf Debugging Java With Eclipse]&lt;br /&gt;
&lt;br /&gt;
4.[http://www.developer.com/java/other/article.php/10936_2221711_2 Debugging a Java Program with Eclipse]&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11083</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11083"/>
		<updated>2008-04-04T05:27:42Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Eclipse is an open source community whose projects are focused on building an open development platform comprised of extensible frameworks, tools and runtimes for building, deploying and managing software across the lifecycle. A large and vibrant ecosystem of major technology vendors, innovative start-ups, universities, research institutions and individuals extend, complement and support the Eclipse platform.[[http://eclipse.org 1]]&lt;br /&gt;
&lt;br /&gt;
===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE FOR DUMMIES!!==&lt;br /&gt;
[[Image:Eclipse-logo.png|frame|This is the Eclipse's logo]]&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
''Debugging'': to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
''Shotgun debugging'' : the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;3 students &lt;br /&gt;
&amp;lt;br&amp;gt;[http://www.download.com/Camtasia-Studio/3000-13633_4-10665109.html?cdlpid=10753215 Camtasia Studio 5 ]&lt;br /&gt;
&amp;lt;br&amp;gt;Projector&lt;br /&gt;
&lt;br /&gt;
Participants will need Eclipse installed on their computer and have downloaded this package here (the testing code mentioned in the video '''not available at this time'''). The video can be watched by clicking here [http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.html Video].&lt;br /&gt;
&lt;br /&gt;
===Common Practices===&lt;br /&gt;
   *Step Execution&lt;br /&gt;
   *Breakpoints&lt;br /&gt;
   *Evaluate expressions&lt;br /&gt;
   *Scrapbooking live code&lt;br /&gt;
   *Hotswap bug fixing&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided. Should aid students in awareness of debugging benefits when using Eclipse.&lt;br /&gt;
&lt;br /&gt;
Debugging Perspective&lt;br /&gt;
* Two ways of Accessing&lt;br /&gt;
* Introduction to the panes in this view&lt;br /&gt;
Three Common Practice&lt;br /&gt;
* Breakpoints&lt;br /&gt;
* Step Execution&lt;br /&gt;
* HotSwap Bug Fixing&lt;br /&gt;
Simple Demonstration of Bad Code corrected&lt;br /&gt;
* Load the file &lt;br /&gt;
* Code Objective&lt;br /&gt;
* Start Debugging&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
''external resources and links to Eclipse Debugging Tutorial''&lt;br /&gt;
&lt;br /&gt;
1.[http://eclipse.org Eclipse Website]&lt;br /&gt;
&lt;br /&gt;
2.[http://www.ibm.com/developerworks/library/os-ecbug/ Debugging with the Eclipse Platform]&lt;br /&gt;
&lt;br /&gt;
3.[http://bill.dudney.net/roller/bill/resource/debugging.pdf Debugging Java With Eclipse]&lt;br /&gt;
&lt;br /&gt;
4.[http://www.developer.com/java/other/article.php/10936_2221711_2 Debugging a Java Program with Eclipse]&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11082</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11082"/>
		<updated>2008-04-04T05:27:30Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Eclipse is an open source community whose projects are focused on building an open development platform comprised of extensible frameworks, tools and runtimes for building, deploying and managing software across the lifecycle. A large and vibrant ecosystem of major technology vendors, innovative start-ups, universities, research institutions and individuals extend, complement and support the Eclipse platform.[[http://eclipse.org 1]]&lt;br /&gt;
&lt;br /&gt;
===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE FOR DUMMIES!!==&lt;br /&gt;
[[Image:Eclipse-logo.png|frame|This is the Eclipse's logo]]&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
''Debugging'': to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
''Shotgun debugging'' : the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;3 students &lt;br /&gt;
&amp;lt;br&amp;gt;[http://www.download.com/Camtasia-Studio/3000-13633_4-10665109.html?cdlpid=10753215 Camtasia Studio 5 ]&lt;br /&gt;
&amp;lt;br&amp;gt;Projector&lt;br /&gt;
&lt;br /&gt;
Participants will need Eclipse installed on their computer and have downloaded this package here (the testing code mentioned in the video '''not available at this time'''). The video can be watched by clicking here [http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.html Video].&lt;br /&gt;
&lt;br /&gt;
===Common Practices===&lt;br /&gt;
   *Step Execution&lt;br /&gt;
   *Breakpoints&lt;br /&gt;
   *Evaluate expressions&lt;br /&gt;
   *Scrapbooking live code&lt;br /&gt;
   *Hotswap bug fixing&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided. Should aid students in awareness of debugging benefits when using Eclipse.&lt;br /&gt;
&lt;br /&gt;
Debugging Perspective&lt;br /&gt;
* Two ways of Accessing&lt;br /&gt;
* Introduction to the panes in this view&lt;br /&gt;
Three Common Practice&lt;br /&gt;
* Breakpoints&lt;br /&gt;
* Step Execution&lt;br /&gt;
* HotSwap Bug Fixing&lt;br /&gt;
Simple Demonstration of Bad Code corrected&lt;br /&gt;
* Load the file &lt;br /&gt;
* Code Objective&lt;br /&gt;
* Start Debugging&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
''external resources and links to Eclipse Debugging Tutorial''&lt;br /&gt;
&lt;br /&gt;
1.[http://eclipse.org Eclipse Website]&lt;br /&gt;
&lt;br /&gt;
2.[http://www.ibm.com/developerworks/library/os-ecbug/ Debugging with the Eclipse Platform]&lt;br /&gt;
&lt;br /&gt;
3.[http://bill.dudney.net/roller/bill/resource/debugging.pdf Debugging Java With Eclipse]&lt;br /&gt;
&lt;br /&gt;
4.[http://www.developer.com/java/other/article.php/10936_2221711_2 Debugging a Java Program with Eclipse]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{flash width=&amp;quot;300&amp;quot; url=&amp;quot;http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.swf&amp;quot;}&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11081</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11081"/>
		<updated>2008-04-04T05:27:04Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* Embedding Flash Objects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Eclipse is an open source community whose projects are focused on building an open development platform comprised of extensible frameworks, tools and runtimes for building, deploying and managing software across the lifecycle. A large and vibrant ecosystem of major technology vendors, innovative start-ups, universities, research institutions and individuals extend, complement and support the Eclipse platform.[[http://eclipse.org 1]]&lt;br /&gt;
&lt;br /&gt;
===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE FOR DUMMIES!!==&lt;br /&gt;
[[Image:Eclipse-logo.png|frame|This is the Eclipse's logo]]&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
''Debugging'': to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
''Shotgun debugging'' : the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;3 students &lt;br /&gt;
&amp;lt;br&amp;gt;[http://www.download.com/Camtasia-Studio/3000-13633_4-10665109.html?cdlpid=10753215 Camtasia Studio 5 ]&lt;br /&gt;
&amp;lt;br&amp;gt;Projector&lt;br /&gt;
&lt;br /&gt;
Participants will need Eclipse installed on their computer and have downloaded this package here (the testing code mentioned in the video '''not available at this time'''). The video can be watched by clicking here [http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.html Video].&lt;br /&gt;
&lt;br /&gt;
===Common Practices===&lt;br /&gt;
   *Step Execution&lt;br /&gt;
   *Breakpoints&lt;br /&gt;
   *Evaluate expressions&lt;br /&gt;
   *Scrapbooking live code&lt;br /&gt;
   *Hotswap bug fixing&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided. Should aid students in awareness of debugging benefits when using Eclipse.&lt;br /&gt;
&lt;br /&gt;
Debugging Perspective&lt;br /&gt;
* Two ways of Accessing&lt;br /&gt;
* Introduction to the panes in this view&lt;br /&gt;
Three Common Practice&lt;br /&gt;
* Breakpoints&lt;br /&gt;
* Step Execution&lt;br /&gt;
* HotSwap Bug Fixing&lt;br /&gt;
Simple Demonstration of Bad Code corrected&lt;br /&gt;
* Load the file &lt;br /&gt;
* Code Objective&lt;br /&gt;
* Start Debugging&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
''external resources and links to Eclipse Debugging Tutorial''&lt;br /&gt;
&lt;br /&gt;
1.[http://eclipse.org Eclipse Website]&lt;br /&gt;
&lt;br /&gt;
2.[http://www.ibm.com/developerworks/library/os-ecbug/ Debugging with the Eclipse Platform]&lt;br /&gt;
&lt;br /&gt;
3.[http://bill.dudney.net/roller/bill/resource/debugging.pdf Debugging Java With Eclipse]&lt;br /&gt;
&lt;br /&gt;
4.[http://www.developer.com/java/other/article.php/10936_2221711_2 Debugging a Java Program with Eclipse]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{flash width=&amp;quot;300&amp;quot; url=&amp;quot;http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.swf&amp;quot;}}&lt;br /&gt;
[[Media:http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.swf]]&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11080</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11080"/>
		<updated>2008-04-04T05:26:04Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* Embedding Flash Objects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Eclipse is an open source community whose projects are focused on building an open development platform comprised of extensible frameworks, tools and runtimes for building, deploying and managing software across the lifecycle. A large and vibrant ecosystem of major technology vendors, innovative start-ups, universities, research institutions and individuals extend, complement and support the Eclipse platform.[[http://eclipse.org 1]]&lt;br /&gt;
&lt;br /&gt;
===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE FOR DUMMIES!!==&lt;br /&gt;
[[Image:Eclipse-logo.png|frame|This is the Eclipse's logo]]&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
''Debugging'': to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
''Shotgun debugging'' : the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;3 students &lt;br /&gt;
&amp;lt;br&amp;gt;[http://www.download.com/Camtasia-Studio/3000-13633_4-10665109.html?cdlpid=10753215 Camtasia Studio 5 ]&lt;br /&gt;
&amp;lt;br&amp;gt;Projector&lt;br /&gt;
&lt;br /&gt;
Participants will need Eclipse installed on their computer and have downloaded this package here (the testing code mentioned in the video '''not available at this time'''). The video can be watched by clicking here [http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.html Video].&lt;br /&gt;
&lt;br /&gt;
===Common Practices===&lt;br /&gt;
   *Step Execution&lt;br /&gt;
   *Breakpoints&lt;br /&gt;
   *Evaluate expressions&lt;br /&gt;
   *Scrapbooking live code&lt;br /&gt;
   *Hotswap bug fixing&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided. Should aid students in awareness of debugging benefits when using Eclipse.&lt;br /&gt;
&lt;br /&gt;
Debugging Perspective&lt;br /&gt;
* Two ways of Accessing&lt;br /&gt;
* Introduction to the panes in this view&lt;br /&gt;
Three Common Practice&lt;br /&gt;
* Breakpoints&lt;br /&gt;
* Step Execution&lt;br /&gt;
* HotSwap Bug Fixing&lt;br /&gt;
Simple Demonstration of Bad Code corrected&lt;br /&gt;
* Load the file &lt;br /&gt;
* Code Objective&lt;br /&gt;
* Start Debugging&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
''external resources and links to Eclipse Debugging Tutorial''&lt;br /&gt;
&lt;br /&gt;
1.[http://eclipse.org Eclipse Website]&lt;br /&gt;
&lt;br /&gt;
2.[http://www.ibm.com/developerworks/library/os-ecbug/ Debugging with the Eclipse Platform]&lt;br /&gt;
&lt;br /&gt;
3.[http://bill.dudney.net/roller/bill/resource/debugging.pdf Debugging Java With Eclipse]&lt;br /&gt;
&lt;br /&gt;
4.[http://www.developer.com/java/other/article.php/10936_2221711_2 Debugging a Java Program with Eclipse]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Embedding Flash Objects==&lt;br /&gt;
&lt;br /&gt;
{{flash width=&amp;quot;300&amp;quot; url=&amp;quot;http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.swf&amp;quot;}}&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11079</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11079"/>
		<updated>2008-04-04T05:23:55Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* Embedding Flash Objects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Eclipse is an open source community whose projects are focused on building an open development platform comprised of extensible frameworks, tools and runtimes for building, deploying and managing software across the lifecycle. A large and vibrant ecosystem of major technology vendors, innovative start-ups, universities, research institutions and individuals extend, complement and support the Eclipse platform.[[http://eclipse.org 1]]&lt;br /&gt;
&lt;br /&gt;
===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE FOR DUMMIES!!==&lt;br /&gt;
[[Image:Eclipse-logo.png|frame|This is the Eclipse's logo]]&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
''Debugging'': to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
''Shotgun debugging'' : the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;3 students &lt;br /&gt;
&amp;lt;br&amp;gt;[http://www.download.com/Camtasia-Studio/3000-13633_4-10665109.html?cdlpid=10753215 Camtasia Studio 5 ]&lt;br /&gt;
&amp;lt;br&amp;gt;Projector&lt;br /&gt;
&lt;br /&gt;
Participants will need Eclipse installed on their computer and have downloaded this package here (the testing code mentioned in the video '''not available at this time'''). The video can be watched by clicking here [http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.html Video].&lt;br /&gt;
&lt;br /&gt;
===Common Practices===&lt;br /&gt;
   *Step Execution&lt;br /&gt;
   *Breakpoints&lt;br /&gt;
   *Evaluate expressions&lt;br /&gt;
   *Scrapbooking live code&lt;br /&gt;
   *Hotswap bug fixing&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided. Should aid students in awareness of debugging benefits when using Eclipse.&lt;br /&gt;
&lt;br /&gt;
Debugging Perspective&lt;br /&gt;
* Two ways of Accessing&lt;br /&gt;
* Introduction to the panes in this view&lt;br /&gt;
Three Common Practice&lt;br /&gt;
* Breakpoints&lt;br /&gt;
* Step Execution&lt;br /&gt;
* HotSwap Bug Fixing&lt;br /&gt;
Simple Demonstration of Bad Code corrected&lt;br /&gt;
* Load the file &lt;br /&gt;
* Code Objective&lt;br /&gt;
* Start Debugging&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
''external resources and links to Eclipse Debugging Tutorial''&lt;br /&gt;
&lt;br /&gt;
1.[http://eclipse.org Eclipse Website]&lt;br /&gt;
&lt;br /&gt;
2.[http://www.ibm.com/developerworks/library/os-ecbug/ Debugging with the Eclipse Platform]&lt;br /&gt;
&lt;br /&gt;
3.[http://bill.dudney.net/roller/bill/resource/debugging.pdf Debugging Java With Eclipse]&lt;br /&gt;
&lt;br /&gt;
4.[http://www.developer.com/java/other/article.php/10936_2221711_2 Debugging a Java Program with Eclipse]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Embedding Flash Objects==&lt;br /&gt;
&lt;br /&gt;
{{flash width=&amp;quot;300&amp;quot; url=http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.swf}}&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11078</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11078"/>
		<updated>2008-04-04T05:22:55Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* Embedding Flash Objects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Eclipse is an open source community whose projects are focused on building an open development platform comprised of extensible frameworks, tools and runtimes for building, deploying and managing software across the lifecycle. A large and vibrant ecosystem of major technology vendors, innovative start-ups, universities, research institutions and individuals extend, complement and support the Eclipse platform.[[http://eclipse.org 1]]&lt;br /&gt;
&lt;br /&gt;
===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE FOR DUMMIES!!==&lt;br /&gt;
[[Image:Eclipse-logo.png|frame|This is the Eclipse's logo]]&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
''Debugging'': to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
''Shotgun debugging'' : the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;3 students &lt;br /&gt;
&amp;lt;br&amp;gt;[http://www.download.com/Camtasia-Studio/3000-13633_4-10665109.html?cdlpid=10753215 Camtasia Studio 5 ]&lt;br /&gt;
&amp;lt;br&amp;gt;Projector&lt;br /&gt;
&lt;br /&gt;
Participants will need Eclipse installed on their computer and have downloaded this package here (the testing code mentioned in the video '''not available at this time'''). The video can be watched by clicking here [http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.html Video].&lt;br /&gt;
&lt;br /&gt;
===Common Practices===&lt;br /&gt;
   *Step Execution&lt;br /&gt;
   *Breakpoints&lt;br /&gt;
   *Evaluate expressions&lt;br /&gt;
   *Scrapbooking live code&lt;br /&gt;
   *Hotswap bug fixing&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided. Should aid students in awareness of debugging benefits when using Eclipse.&lt;br /&gt;
&lt;br /&gt;
Debugging Perspective&lt;br /&gt;
* Two ways of Accessing&lt;br /&gt;
* Introduction to the panes in this view&lt;br /&gt;
Three Common Practice&lt;br /&gt;
* Breakpoints&lt;br /&gt;
* Step Execution&lt;br /&gt;
* HotSwap Bug Fixing&lt;br /&gt;
Simple Demonstration of Bad Code corrected&lt;br /&gt;
* Load the file &lt;br /&gt;
* Code Objective&lt;br /&gt;
* Start Debugging&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
''external resources and links to Eclipse Debugging Tutorial''&lt;br /&gt;
&lt;br /&gt;
1.[http://eclipse.org Eclipse Website]&lt;br /&gt;
&lt;br /&gt;
2.[http://www.ibm.com/developerworks/library/os-ecbug/ Debugging with the Eclipse Platform]&lt;br /&gt;
&lt;br /&gt;
3.[http://bill.dudney.net/roller/bill/resource/debugging.pdf Debugging Java With Eclipse]&lt;br /&gt;
&lt;br /&gt;
4.[http://www.developer.com/java/other/article.php/10936_2221711_2 Debugging a Java Program with Eclipse]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Embedding Flash Objects==&lt;br /&gt;
&lt;br /&gt;
{{flash width = &amp;quot;300&amp;quot; url=http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.swf}}&lt;br /&gt;
[[Image:http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.swf]]&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11077</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11077"/>
		<updated>2008-04-04T05:19:09Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* Embedding Flash Objects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Eclipse is an open source community whose projects are focused on building an open development platform comprised of extensible frameworks, tools and runtimes for building, deploying and managing software across the lifecycle. A large and vibrant ecosystem of major technology vendors, innovative start-ups, universities, research institutions and individuals extend, complement and support the Eclipse platform.[[http://eclipse.org 1]]&lt;br /&gt;
&lt;br /&gt;
===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE FOR DUMMIES!!==&lt;br /&gt;
[[Image:Eclipse-logo.png|frame|This is the Eclipse's logo]]&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
''Debugging'': to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
''Shotgun debugging'' : the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;3 students &lt;br /&gt;
&amp;lt;br&amp;gt;[http://www.download.com/Camtasia-Studio/3000-13633_4-10665109.html?cdlpid=10753215 Camtasia Studio 5 ]&lt;br /&gt;
&amp;lt;br&amp;gt;Projector&lt;br /&gt;
&lt;br /&gt;
Participants will need Eclipse installed on their computer and have downloaded this package here (the testing code mentioned in the video '''not available at this time'''). The video can be watched by clicking here [http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.html Video].&lt;br /&gt;
&lt;br /&gt;
===Common Practices===&lt;br /&gt;
   *Step Execution&lt;br /&gt;
   *Breakpoints&lt;br /&gt;
   *Evaluate expressions&lt;br /&gt;
   *Scrapbooking live code&lt;br /&gt;
   *Hotswap bug fixing&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided. Should aid students in awareness of debugging benefits when using Eclipse.&lt;br /&gt;
&lt;br /&gt;
Debugging Perspective&lt;br /&gt;
* Two ways of Accessing&lt;br /&gt;
* Introduction to the panes in this view&lt;br /&gt;
Three Common Practice&lt;br /&gt;
* Breakpoints&lt;br /&gt;
* Step Execution&lt;br /&gt;
* HotSwap Bug Fixing&lt;br /&gt;
Simple Demonstration of Bad Code corrected&lt;br /&gt;
* Load the file &lt;br /&gt;
* Code Objective&lt;br /&gt;
* Start Debugging&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
''external resources and links to Eclipse Debugging Tutorial''&lt;br /&gt;
&lt;br /&gt;
1.[http://eclipse.org Eclipse Website]&lt;br /&gt;
&lt;br /&gt;
2.[http://www.ibm.com/developerworks/library/os-ecbug/ Debugging with the Eclipse Platform]&lt;br /&gt;
&lt;br /&gt;
3.[http://bill.dudney.net/roller/bill/resource/debugging.pdf Debugging Java With Eclipse]&lt;br /&gt;
&lt;br /&gt;
4.[http://www.developer.com/java/other/article.php/10936_2221711_2 Debugging a Java Program with Eclipse]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Embedding Flash Objects==&lt;br /&gt;
&lt;br /&gt;
{{flash width= &amp;quot;300&amp;quot; url=&amp;quot;http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.swf&amp;quot;}}&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11076</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=11076"/>
		<updated>2008-04-04T05:16:57Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Eclipse is an open source community whose projects are focused on building an open development platform comprised of extensible frameworks, tools and runtimes for building, deploying and managing software across the lifecycle. A large and vibrant ecosystem of major technology vendors, innovative start-ups, universities, research institutions and individuals extend, complement and support the Eclipse platform.[[http://eclipse.org 1]]&lt;br /&gt;
&lt;br /&gt;
===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE FOR DUMMIES!!==&lt;br /&gt;
[[Image:Eclipse-logo.png|frame|This is the Eclipse's logo]]&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
''Debugging'': to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
''Shotgun debugging'' : the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;3 students &lt;br /&gt;
&amp;lt;br&amp;gt;[http://www.download.com/Camtasia-Studio/3000-13633_4-10665109.html?cdlpid=10753215 Camtasia Studio 5 ]&lt;br /&gt;
&amp;lt;br&amp;gt;Projector&lt;br /&gt;
&lt;br /&gt;
Participants will need Eclipse installed on their computer and have downloaded this package here (the testing code mentioned in the video '''not available at this time'''). The video can be watched by clicking here [http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.html Video].&lt;br /&gt;
&lt;br /&gt;
===Common Practices===&lt;br /&gt;
   *Step Execution&lt;br /&gt;
   *Breakpoints&lt;br /&gt;
   *Evaluate expressions&lt;br /&gt;
   *Scrapbooking live code&lt;br /&gt;
   *Hotswap bug fixing&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided. Should aid students in awareness of debugging benefits when using Eclipse.&lt;br /&gt;
&lt;br /&gt;
Debugging Perspective&lt;br /&gt;
* Two ways of Accessing&lt;br /&gt;
* Introduction to the panes in this view&lt;br /&gt;
Three Common Practice&lt;br /&gt;
* Breakpoints&lt;br /&gt;
* Step Execution&lt;br /&gt;
* HotSwap Bug Fixing&lt;br /&gt;
Simple Demonstration of Bad Code corrected&lt;br /&gt;
* Load the file &lt;br /&gt;
* Code Objective&lt;br /&gt;
* Start Debugging&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
''external resources and links to Eclipse Debugging Tutorial''&lt;br /&gt;
&lt;br /&gt;
1.[http://eclipse.org Eclipse Website]&lt;br /&gt;
&lt;br /&gt;
2.[http://www.ibm.com/developerworks/library/os-ecbug/ Debugging with the Eclipse Platform]&lt;br /&gt;
&lt;br /&gt;
3.[http://bill.dudney.net/roller/bill/resource/debugging.pdf Debugging Java With Eclipse]&lt;br /&gt;
&lt;br /&gt;
4.[http://www.developer.com/java/other/article.php/10936_2221711_2 Debugging a Java Program with Eclipse]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Embedding Flash Objects==&lt;br /&gt;
{{flash width= &amp;quot;400&amp;quot; url=&amp;quot;http://www4.ncsu.edu/~rnudechu/Debugging/Debugging.swf&amp;quot;}}&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10954</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10954"/>
		<updated>2008-03-30T20:22:07Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
debugging: to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
Shotgun debugging - the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
3 students&lt;br /&gt;
Camtasia Studio 5&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
''external resources and links to Eclipse Debugging Tutorial''&lt;br /&gt;
&lt;br /&gt;
[http://www.ibm.com/developerworks/library/os-ecbug/ Debugging with the Eclipse Platform]&lt;br /&gt;
&lt;br /&gt;
[http://bill.dudney.net/roller/bill/resource/debugging.pdf Debugging Java With Eclipse]&lt;br /&gt;
&lt;br /&gt;
[http://www.developer.com/java/other/article.php/10936_2221711_2 Debugging a Java Program with Eclipse]&lt;br /&gt;
&lt;br /&gt;
[http://eclipsetutorial.sourceforge.net/debugger.html A Video Tutorial To Debugging With Eclipse]&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10953</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10953"/>
		<updated>2008-03-30T20:20:39Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
debugging: to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
Shotgun debugging - the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
3 students&lt;br /&gt;
Camtasia Studio 5&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
''external resources and links to Eclipse Debugging Tutorial''&lt;br /&gt;
&lt;br /&gt;
[http://www.developer.com/java/other/article.php/10936_2221711_2 Debugging a Java Program with Eclipse]&lt;br /&gt;
&lt;br /&gt;
[http://bill.dudney.net/roller/bill/resource/debugging.pdf Debugging Java With Eclipse]&lt;br /&gt;
&lt;br /&gt;
[http://www.ibm.com/developerworks/library/os-ecbug/ Debugging with the Eclipse Platform]&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10950</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10950"/>
		<updated>2008-03-30T20:14:27Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
debugging: to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
Shotgun debugging - the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
3 students&lt;br /&gt;
Camtasia Studio 5&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
''external resources and links to Eclipse Debugging Tutorial''&lt;br /&gt;
&lt;br /&gt;
[http://www.developer.com/java/other/article.php/10936_2221711_2 Debugging a Java Program with Eclipse]&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10949</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10949"/>
		<updated>2008-03-30T20:13:35Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
debugging: to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
Shotgun debugging - the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
3 students&lt;br /&gt;
Camtasia Studio 5&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
''external resources and links to Eclipse Debugging Tutorial''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.developer.com/java/other/article.php/10936_2221711_2&amp;quot;&amp;gt;Debugging a Java Program with Eclipse&amp;lt;/a&amp;gt;&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10948</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10948"/>
		<updated>2008-03-30T20:10:04Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* The script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
debugging: to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
Shotgun debugging - the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
3 students&lt;br /&gt;
Camtasia Studio 5&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
''external resources and links to Eclipse Debugging Tutorial''&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10947</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10947"/>
		<updated>2008-03-30T20:09:27Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
debugging: to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
Shotgun debugging - the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
3 students&lt;br /&gt;
Camtasia Studio 5&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided.&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10946</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10946"/>
		<updated>2008-03-30T20:09:03Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* The problem */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
debugging: to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
Shotgun debugging - the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
''Headings''&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
3 students&lt;br /&gt;
Camtasia Studio 5&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided.&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10945</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10945"/>
		<updated>2008-03-30T20:08:36Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
debugging: to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
Shotgun debugging - the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
3 students&lt;br /&gt;
Camtasia Studio 5&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided.&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10944</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10944"/>
		<updated>2008-03-30T20:08:02Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* Section headings */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
''Headings''&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
debugging: to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
Shotgun debugging - the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
===='''Our Mission'''====&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
3 students&lt;br /&gt;
Camtasia Studio 5&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided.&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10942</id>
		<title>CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC_216/s08/on_good_terms&amp;diff=10942"/>
		<updated>2008-03-30T20:07:02Z</updated>

		<summary type="html">&lt;p&gt;Suziro: /* Formatting Resources */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Formatting Resources===&lt;br /&gt;
[http://meta.wikimedia.org/wiki/Help:Wikitext_examples Formatting Help Guide from MetaWiki]&lt;br /&gt;
&lt;br /&gt;
== Section headings ==&lt;br /&gt;
&lt;br /&gt;
''Headings'' organize your writing into&lt;br /&gt;
sections. The Wiki software can automatically&lt;br /&gt;
generate a [[table of contents]] from them.&lt;br /&gt;
&lt;br /&gt;
==DEBUGGING IN ECLIPSE==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===The problem===&lt;br /&gt;
&lt;br /&gt;
debugging: to search and eliminate malfunctioning elements or errors&lt;br /&gt;
&lt;br /&gt;
Shotgun debugging - the making of relatively undirected changes to software in the hope that a bug will be perturbed out of existence. This almost never works, and usually introduces more bugs. &lt;br /&gt;
&lt;br /&gt;
Many students have been using shotgun debugging to solve errors in their code. One of the leading benefit in using Eclipse is it's debugging feature.&lt;br /&gt;
&lt;br /&gt;
'''Our Mission'''&lt;br /&gt;
We will teach students to utilize the debugging feature in Eclipse. Using a test script of code, a user can follow a video and learn some of the features that goes along debugging in Eclipse.&lt;br /&gt;
&lt;br /&gt;
===Participants and props===&lt;br /&gt;
&lt;br /&gt;
3 students&lt;br /&gt;
Camtasia Studio 5&lt;br /&gt;
&lt;br /&gt;
===The script===&lt;br /&gt;
&lt;br /&gt;
Follow along with the video, using the sample code provided.&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=Talk:CSC_216/s08/on_good_terms&amp;diff=10941</id>
		<title>Talk:CSC 216/s08/on good terms</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=Talk:CSC_216/s08/on_good_terms&amp;diff=10941"/>
		<updated>2008-03-30T20:04:34Z</updated>

		<summary type="html">&lt;p&gt;Suziro: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;How do we add a reference page to wiki&lt;/div&gt;</summary>
		<author><name>Suziro</name></author>
	</entry>
</feed>