<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/css" href="http://wiki.western.edu/mcis/skins/common/feed.css?116"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.western.edu/mcis/index.php?title=Special:Recentchanges&amp;feed=atom</id>
		<title>MCIS Wiki - Recent changes [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.western.edu/mcis/index.php?title=Special:Recentchanges&amp;feed=atom"/>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php/Special:Recentchanges"/>
		<updated>2009-11-21T10:00:27Z</updated>
		<subtitle>Track the most recent changes to the wiki in this feed.</subtitle>
		<generator>MediaWiki 1.12.0</generator>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=CIS280-f09&amp;diff=26729&amp;oldid=prev</id>
		<title>CIS280-f09</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=CIS280-f09&amp;diff=26729&amp;oldid=prev"/>
				<updated>2009-11-20T15:59:33Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;What's Due&lt;/span&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 15:59, 20 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 8:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 8:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;=== What's Due ===&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;=== What's Due ===&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Project: (Due Wednesday, November 18) [[CIS280-f09/Schedule/project &lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;12&lt;/del&gt;|&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;Expressions&lt;/del&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Project: (Due Wednesday, November 18) [[CIS280-f09/Schedule/project &lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;13&lt;/ins&gt;|&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;Calculus&lt;/ins&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Professor Peterson</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=CIS280-f09/Schedule/project_13&amp;diff=26728&amp;oldid=prev</id>
		<title>CIS280-f09/Schedule/project 13</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=CIS280-f09/Schedule/project_13&amp;diff=26728&amp;oldid=prev"/>
				<updated>2009-11-20T05:50:23Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Simplification&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Parsing and Evaluation ==&lt;br /&gt;
&lt;br /&gt;
Assigned: November 19&lt;br /&gt;
&lt;br /&gt;
Due: December 1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Derivatives ===&lt;br /&gt;
&lt;br /&gt;
Look at http://en.wikipedia.org/wiki/Derivative for a quick overview of this subject.  See http://en.wikipedia.org/wiki/Differentiation_rules for the rules we'll implement.&lt;br /&gt;
&lt;br /&gt;
Write code that implements the following rules:&lt;br /&gt;
* Variables: the derivative of a variable is 1 if it is the variable that you are differentiating against (&amp;quot;x&amp;quot;) otherwise 0&lt;br /&gt;
* Constants: the derivative is 0&lt;br /&gt;
* Addition/subtraction: add / subtract the derivatives of the operands&lt;br /&gt;
* Multiplication: see the product rule&lt;br /&gt;
* Division: see the quotient rule &lt;br /&gt;
* Power: handle the case where the exponent is a positive integer only&lt;br /&gt;
* Sin / cos: use the chain rule and basic trig rules (do this last!)&lt;br /&gt;
* All other functions should cause the program to exit&lt;br /&gt;
&lt;br /&gt;
Create a Derivative class that works the same way as the simplify class.  You'll need to modify the Program and FunctionHandler classes to add derivative functions.&lt;br /&gt;
&lt;br /&gt;
Transformation should never alter existing tree structure - always make new structure instead of modifying old structure.&lt;br /&gt;
&lt;br /&gt;
=== Simplification ===&lt;br /&gt;
&lt;br /&gt;
Write a method that tests for tree equality.  Using this, simplify t + t to be 2*t, where t is any tree.  Do a similar thing for -, *, and /.&lt;br /&gt;
&lt;br /&gt;
For every simplification rule, give this rule a name (like &amp;quot;add constants&amp;quot; or &amp;quot;multiply by 1&amp;quot;) and print out the input and output to the simplification as it is performed.  For example, for 1*x-0, print something like&lt;br /&gt;
 Multiply by 1: 1*x = x&lt;br /&gt;
 Add 0: x+0 = 0&lt;br /&gt;
&lt;br /&gt;
Come up with three more simplification rules that make your expressions easier to read.&lt;br /&gt;
&lt;br /&gt;
Remove the annoying &amp;quot;.0&amp;quot; when integer constants are printed!&lt;br /&gt;
&lt;br /&gt;
=== Final Report ===&lt;br /&gt;
Write a program which reads a single line of input: equations separated by &amp;quot;;&amp;quot;.  For each of the formulas in the equation,&lt;br /&gt;
* Print the size (number of operators, variables, and constants), depth, and names of variables referenced in the equation.&lt;br /&gt;
* Take the derivative of the equation with respect to x and print this result before simplification&lt;br /&gt;
* Simplify, printing the simplification steps as you go&lt;br /&gt;
* For the final result, print the size (number of operators, variables, and constants), depth, and names of variables referenced in the equation.&lt;br /&gt;
* Stop the program when the user types a blank line.&lt;br /&gt;
&lt;br /&gt;
Write a report in the wiki that:&lt;br /&gt;
* Shows the three simplification rules you add to the system with examples of each in action&lt;br /&gt;
* Gives a number of complex examples of your program in action&lt;br /&gt;
* Discusses what simplifications you could add that would make the results better&lt;br /&gt;
&lt;br /&gt;
Everyone has to write a different report.  If you are working with someone, you need to come up with 3 different simplifications for each person.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Sample Test Cases ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Parse of x is x&lt;br /&gt;
d/dx = 1.0&lt;br /&gt;
Parse of 1 is 1.0&lt;br /&gt;
d/dx = 0.0&lt;br /&gt;
Parse of x+y is x+y&lt;br /&gt;
d/dx = 1.0+0.0&lt;br /&gt;
Parse of 4*x is 4.0*x&lt;br /&gt;
d/dx = 4.0*1.0+0.0*x&lt;br /&gt;
Parse of x-x*x is x-x*x&lt;br /&gt;
d/dx = 1.0-(x*1.0+1.0*x)&lt;br /&gt;
Parse of x/x is x/x&lt;br /&gt;
d/dx = (1.0*x-x*1.0)/(x*x)&lt;br /&gt;
Parse of 1/x is 1.0/x&lt;br /&gt;
d/dx = (0.0*x-1.0*1.0)/(x*x)&lt;br /&gt;
Parse of x*x+2*x-1 is x*x+2.0*x-1.0&lt;br /&gt;
d/dx = x*1.0+1.0*x+(2.0*1.0+0.0*x)-0.0&lt;br /&gt;
Parse of sin(x) is sin(x)&lt;br /&gt;
d/dx = oos(x)*1.0&lt;br /&gt;
Parse of sin(x*x) is sin(x*x)&lt;br /&gt;
d/dx = oos(x*x)*(x*1.0+1.0*x)&lt;br /&gt;
Parse of x+x*x+x is x+x*x+x&lt;br /&gt;
d/dx = 1.0+(x*1.0+1.0*x)+1.0&lt;br /&gt;
Parse of 4*x is 4.0*x&lt;br /&gt;
Simplified d/dx = 4.0&lt;br /&gt;
Parse of x-x*x is x-x*x&lt;br /&gt;
Simplified d/dx = 1.0-(x+x)&lt;br /&gt;
Parse of x/x is x/x&lt;br /&gt;
Simplified d/dx = (x-x)/(x*x)&lt;br /&gt;
Parse of 1/x is 1.0/x&lt;br /&gt;
Simplified d/dx = -1.0/(x*x)&lt;br /&gt;
Parse of x*x+2*x-1 is x*x+2.0*x-1.0&lt;br /&gt;
Simplified d/dx = x+x+2.0&lt;br /&gt;
Parse of sin(x) is sin(x)&lt;br /&gt;
Simplified d/dx = cos(x)&lt;br /&gt;
Parse of sin(x*x) is sin(x*x)&lt;br /&gt;
Simplified d/dx = cos(x*x)*(x+x)&lt;br /&gt;
Parse of x+x*x+x is x+x*x+x&lt;br /&gt;
Simplified d/dx = x+x+2.0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Extra Credit ===&lt;/div&gt;</summary>
		<author><name>Professor Peterson</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=CIS150-f09&amp;diff=26722&amp;oldid=prev</id>
		<title>CIS150-f09</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=CIS150-f09&amp;diff=26722&amp;oldid=prev"/>
				<updated>2009-11-19T23:01:59Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 23:01, 19 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 14:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 14:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;== Current Reading and Homework ==&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;== Current Reading and Homework ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Reading: [[CIS150-f09/Reading/&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;Censorship / Google Books / FBI / Google Privacy&lt;/del&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Reading: [[CIS150-f09/Reading/&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;Wikipedia&lt;/ins&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Homework: Term Paper Outline / References&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Homework: Term Paper Outline / References&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Professor Peterson</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=CIS150-f09/Reading/Wikipedia&amp;diff=26721&amp;oldid=prev</id>
		<title>CIS150-f09/Reading/Wikipedia</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=CIS150-f09/Reading/Wikipedia&amp;diff=26721&amp;oldid=prev"/>
				<updated>2009-11-19T23:01:34Z</updated>
		
		<summary type="html">&lt;p&gt;New page: Reading: * http://mailer.fsu.edu/~bstvilia/papers/stvilia_wikipedia_infoWork_p.pdf - read through 4.2  Diary:  Look at topics covered in http://meta.wikimedia.org/wiki/Wikipedia_sociology ...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Reading:&lt;br /&gt;
* http://mailer.fsu.edu/~bstvilia/papers/stvilia_wikipedia_infoWork_p.pdf - read through 4.2&lt;br /&gt;
&lt;br /&gt;
Diary:&lt;br /&gt;
&lt;br /&gt;
Look at topics covered in http://meta.wikimedia.org/wiki/Wikipedia_sociology - pick one and summarize it in your diary and be ready to answer questions about it in class.&lt;br /&gt;
&lt;br /&gt;
Be ready to talk about diary entries from the 2 previous classes!&lt;/div&gt;</summary>
		<author><name>Professor Peterson</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=CIS150-f09/Reading&amp;diff=26720&amp;oldid=prev</id>
		<title>CIS150-f09/Reading</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=CIS150-f09/Reading&amp;diff=26720&amp;oldid=prev"/>
				<updated>2009-11-19T22:47:22Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 22:47, 19 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 24:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 24:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* November 17: [[/Censorship|Censorship and Google Books]] (Jeremy Nelson)&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* November 17: [[/Censorship|Censorship and Google Books]] (Jeremy Nelson)&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* November 19: [[/Censorship / Google Books / FBI / Google Privacy]]&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* November 19: [[/Censorship / Google Books / FBI / Google Privacy]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* November 25: Wikipedia&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* November 25: &lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;[[/&lt;/ins&gt;Wikipedia&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;|Wikipedia]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* December 1: Sociology / Anthropology&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* December 1: Sociology / Anthropology&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* December 3: Green Computing&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* December 3: Green Computing&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* December 8: Applications&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* December 8: Applications&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* December 10: Term paper presentations&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* December 10: Term paper presentations&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Professor Peterson</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=User:Kevin_sears/November_19&amp;diff=26719&amp;oldid=prev</id>
		<title>User:Kevin sears/November 19</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=User:Kevin_sears/November_19&amp;diff=26719&amp;oldid=prev"/>
				<updated>2009-11-19T16:35:46Z</updated>
		
		<summary type="html">&lt;p&gt;New page: http://www.theage.com.au/articles/2008/09/04/1220121394391.html   Google Crome web browser had some problems with the EULA (End User Licence Agreement).  Users who downloaded the free brow...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;http://www.theage.com.au/articles/2008/09/04/1220121394391.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Google Crome web browser had some problems with the EULA (End User Licence Agreement).  Users who downloaded the free browser yesterday were asked to agree to a clause that gave Google a &amp;quot;perpetual, irrevocable, worldwide, royalty-free, and non-exclusive licence to reproduce, adapt, modify, translate, publish, publicly, perform, publicly display and distribute&amp;quot; any information they typed into a website.  Of course as soon as the law was involved they had to change their agreement.&lt;/div&gt;</summary>
		<author><name>Kevin sears</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=User:Brian_Johnson/November_19&amp;diff=26718&amp;oldid=prev</id>
		<title>User:Brian Johnson/November 19</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=User:Brian_Johnson/November_19&amp;diff=26718&amp;oldid=prev"/>
				<updated>2009-11-19T16:08:10Z</updated>
		
		<summary type="html">&lt;p&gt;New page: Google and other search databases can present security risks. These risks are due to all of the data collected and stored by the various sites’ spiders. Due to the vast amount of informa...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Google and other search databases can present security risks. These risks are due to all of the data collected and stored by the various sites’ spiders. Due to the vast amount of information stored by their servers a new genre of hacking has emerged. These so called Google hackers use special search terms and operators to reveal private information including usernames and passwords that have been archived in the Google databases. Additionally, they can use these Google searches to find vulnerabilities in websites by seeing what software their severs are running.  &lt;br /&gt;
&lt;br /&gt;
I believe there is some concern about the amount of information Google has collected on its users. This concern comes from the great potential for misuse as displayed in this article. We must realize when a company has a valuable resource (in this case user information) others are going to try to get access to that resource especially when doing so involves is rather simple. So we must decide. Is it worth letting a company control all this information? Should there be regulation regarding the specific types of data and duration it can be stored?  While we do not know the exact extent of the data stored by Google and other search databases I believe it should be the standard to not store usernames and other information that can easily on its own be traced to a particular person.  &lt;br /&gt;
&lt;br /&gt;
http://www.pcworld.com/businesscenter/article/181548/google_dashboard_creates_security_and_privacy_concerns.html&lt;br /&gt;
&lt;br /&gt;
http://www.informit.com/articles/article.aspx?p=170880&lt;/div&gt;</summary>
		<author><name>Brian Johnson</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=User:Colin_Greenwood/November_19&amp;diff=26717&amp;oldid=prev</id>
		<title>User:Colin Greenwood/November 19</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=User:Colin_Greenwood/November_19&amp;diff=26717&amp;oldid=prev"/>
				<updated>2009-11-19T16:02:07Z</updated>
		
		<summary type="html">&lt;p&gt;New page: http://www.washingtonpost.com/wp-dyn/content/article/2009/09/15/AR2009091503182.html  The article is about the USA Patriot Act set to expire in December of this year. In the middle of Obam...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;http://www.washingtonpost.com/wp-dyn/content/article/2009/09/15/AR2009091503182.html&lt;br /&gt;
&lt;br /&gt;
The article is about the USA Patriot Act set to expire in December of this year. In the middle of Obama's campaign for presidency he changed his stance on the act. He has decided to appeal to congress to keep the act but modify it giving it less power than it currently has. The three provisions set to expire Dec. 31 allow investigators to monitor through roving wiretaps suspects who may be trying to escape detection by switching cellphone numbers, obtain business records of national security targets, and track &amp;quot;lone wolves&amp;quot; who may be acting alone on behalf of foreign powers or terrorist groups. The new act will also terminate the immunity to prosecution granted to telecommunication companies for all electronic wiretap programs. The telecom companies will still be immune if they can prove taps or similar surveillance was done under FBI or other government supervision, before the companies had an alarmly free reign over who was monitored and who wasn't.&lt;/div&gt;</summary>
		<author><name>Colin Greenwood</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=CIS150-f09&amp;diff=26716&amp;oldid=prev</id>
		<title>CIS150-f09</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=CIS150-f09&amp;diff=26716&amp;oldid=prev"/>
				<updated>2009-11-19T15:18:48Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 15:18, 19 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 14:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 14:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;== Current Reading and Homework ==&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;== Current Reading and Homework ==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Reading: [[CIS150-f09/Reading/Censorship]]&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Reading: [[CIS150-f09/Reading/Censorship &lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;/ Google Books / FBI / Google Privacy&lt;/ins&gt;]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Homework: Term Paper Outline / References&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Homework: Term Paper Outline / References&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Professor Peterson</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=User:Alyssa_Crum/CIS150/November_19&amp;diff=26715&amp;oldid=prev</id>
		<title>User:Alyssa Crum/CIS150/November 19</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=User:Alyssa_Crum/CIS150/November_19&amp;diff=26715&amp;oldid=prev"/>
				<updated>2009-11-19T14:42:39Z</updated>
		
		<summary type="html">&lt;p&gt;New page: http://users.rcn.com/kyp/kaminer.html  http://www.spectacle.org/cs/cypa.html  http://news.cnet.com/2100-1023-238888.html  This is a rather old case, and I don't know how far it went, but B...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;http://users.rcn.com/kyp/kaminer.html&lt;br /&gt;
&lt;br /&gt;
http://www.spectacle.org/cs/cypa.html&lt;br /&gt;
&lt;br /&gt;
http://news.cnet.com/2100-1023-238888.html&lt;br /&gt;
&lt;br /&gt;
This is a rather old case, and I don't know how far it went, but Boston libraries, for a few years at least, had/have CyberPatrol software that supposedly blocks certain contents from browsers in an attempt to make them much safer places for children to gain information, much attached to Tuesday's topic. This one is unique, though, because interestingly enough, CyberPatrol doesn't want people to know which sites they are blocking, and if someone DOES know what they are, they could tell you that some of them are legitimate and not explicit. There was a code put out a while back that allowed you to see which websites were being blocked, but CyberPatrol took the &amp;quot;hackers&amp;quot; to court, saying that posting the code on websites was copyright infringment, even though, according to the ACLU, it wasn't.&lt;/div&gt;</summary>
		<author><name>Alyssa Crum</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=User:Adam/CIS150&amp;diff=26714&amp;oldid=prev</id>
		<title>User:Adam/CIS150</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=User:Adam/CIS150&amp;diff=26714&amp;oldid=prev"/>
				<updated>2009-11-19T08:01:56Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 08:01, 19 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 20:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 20:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[[TermPaper]]&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[[TermPaper]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;[[TermPaper:Example.doc]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Adam</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=TermPaper&amp;diff=26713&amp;oldid=prev</id>
		<title>TermPaper</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=TermPaper&amp;diff=26713&amp;oldid=prev"/>
				<updated>2009-11-19T07:58:39Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Intro&lt;br /&gt;
&lt;br /&gt;
Network Neutrality is a principle used when discussing the capabilities of current day network service providers who have the ability to provide restrictions for towards sites, content, and platforms. The terms popularity did not take off until early 2000s when concerns about the subject kicked off with the questioning about how much power these companies should have. &lt;br /&gt;
&lt;br /&gt;
Net Neutrality rules &lt;br /&gt;
-Common rules.&lt;br /&gt;
-Recent issues 	&lt;br /&gt;
-such as discriminatory problems.&lt;br /&gt;
&lt;br /&gt;
Level of service&lt;br /&gt;
-how and why companies can charge for different speeds.&lt;br /&gt;
&lt;br /&gt;
Data discrimination&lt;br /&gt;
-ability to discriminate against specific packets&lt;br /&gt;
&lt;br /&gt;
Internet Protocol&lt;br /&gt;
&lt;br /&gt;
Tiered Internet&lt;br /&gt;
-Tiered hierarchy. &lt;br /&gt;
-levels of hierarchy and why specific levels are more important.&lt;br /&gt;
&lt;br /&gt;
Both sides of Net Neutrality-&lt;br /&gt;
for- &lt;br /&gt;
pros- 	&lt;br /&gt;
cons-&lt;br /&gt;
against-&lt;br /&gt;
pros-&lt;br /&gt;
cons-&lt;br /&gt;
&lt;br /&gt;
Conclusion &lt;br /&gt;
&lt;br /&gt;
A lot of our readings will be used for references.&lt;br /&gt;
http://www.nytimes.com/idg/IDG_852573C40069388000257443006A5D55.html?partner=rssnyt&amp;amp;emc=rss&lt;/div&gt;</summary>
		<author><name>Adam</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=User:Adam/CIS150&amp;diff=26711&amp;oldid=prev</id>
		<title>User:Adam/CIS150</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=User:Adam/CIS150&amp;diff=26711&amp;oldid=prev"/>
				<updated>2009-11-19T07:54:36Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 07:54, 19 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 18:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 18:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|}&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|}&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[[130 Million Cards]]&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[[130 Million Cards]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;[[TermPaper]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Adam</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=Special:Log/upload&amp;diff=0&amp;oldid=prev</id>
		<title>Special:Log/upload</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=Special:Log/upload&amp;diff=0&amp;oldid=prev"/>
				<updated>2009-11-19T04:53:34Z</updated>
		
		<summary type="html">&lt;p&gt;uploaded &amp;quot;&lt;a href=&quot;/mcis/index.php/Image:BrianJohnsonOutline.doc&quot; title=&quot;Image:BrianJohnsonOutline.doc&quot;&gt;Image:BrianJohnsonOutline.doc&lt;/a&gt;&amp;quot;&lt;/p&gt;
</summary>
		<author><name>Brian Johnson</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=Term_Paper_Outline&amp;diff=26709&amp;oldid=prev</id>
		<title>Term Paper Outline</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=Term_Paper_Outline&amp;diff=26709&amp;oldid=prev"/>
				<updated>2009-11-19T04:52:52Z</updated>
		
		<summary type="html">&lt;p&gt;New page: &lt;a href=&quot;/mcis/images/c/ce/BrianJohnsonOutline.doc&quot; class=&quot;internal&quot; title=&quot;BrianJohnsonOutline.doc&quot;&gt;media:brianJohnsonOutline.doc&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[media:brianJohnsonOutline.doc]]&lt;/div&gt;</summary>
		<author><name>Brian Johnson</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=User:Brian_Johnson&amp;diff=26708&amp;oldid=prev</id>
		<title>User:Brian Johnson</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=User:Brian_Johnson&amp;diff=26708&amp;oldid=prev"/>
				<updated>2009-11-19T04:52:02Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 04:52, 19 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 58:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 58:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|  || [[Term Paper Stuff]] ||&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|  || [[Term Paper Stuff]] ||&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;|  || [[Term Paper Outline]] ||&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|}&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|}&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Brian Johnson</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=User:Levi_Nichols/CIS150/November_19&amp;diff=26707&amp;oldid=prev</id>
		<title>User:Levi Nichols/CIS150/November 19</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=User:Levi_Nichols/CIS150/November_19&amp;diff=26707&amp;oldid=prev"/>
				<updated>2009-11-19T04:31:59Z</updated>
		
		<summary type="html">&lt;p&gt;New page: [http://www.pcworld.com/businesscenter/article/181548/google_dashboard_creates_security_and_privacy_concerns.html http://www.pcworld.com/businesscenter/article/181548/google_dashboard_crea...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[http://www.pcworld.com/businesscenter/article/181548/google_dashboard_creates_security_and_privacy_concerns.html http://www.pcworld.com/businesscenter/article/181548/google_dashboard_creates_security_and_privacy_concerns.html]&lt;br /&gt;
&lt;br /&gt;
This article talks about how Google Dashboard searches through your files on your computer and then stores and indexes that information at Google when the user uses the search on the dashboard. This causes concern in people who keep very inportant and confidential files such as financial and personal documents on their computer. It makes the users wonder how much Google actually knows about them just from retrieving and storing their files from their home computer. My reaction to this is, what purpose would Google have to want all of this personal information readily available to them? And why can't they have a search that just &amp;quot;searches&amp;quot; for the information the user would want and not &amp;quot;hack&amp;quot; that computer to store files?&lt;/div&gt;</summary>
		<author><name>Levi Nichols</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=Colin%27s_Term_Paper&amp;diff=26706&amp;oldid=prev</id>
		<title>Colin's Term Paper</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=Colin%27s_Term_Paper&amp;diff=26706&amp;oldid=prev"/>
				<updated>2009-11-19T02:22:36Z</updated>
		
		<summary type="html">&lt;p&gt;New page: Basic Outline, Future of Gaming Consoles  *Intro  * Next Generation of Microsoft (xbox 720) http://xboxfreedom.com/xbox-720-game-console/ specs: http://vision.pcvsconsole.com/xbox-2011-spe...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Basic Outline, Future of Gaming Consoles&lt;br /&gt;
&lt;br /&gt;
*Intro&lt;br /&gt;
&lt;br /&gt;
* Next Generation of Microsoft (xbox 720)&lt;br /&gt;
http://xboxfreedom.com/xbox-720-game-console/&lt;br /&gt;
specs: http://vision.pcvsconsole.com/xbox-2011-specs/&lt;br /&gt;
Amd and ATI: http://www.geek.com/articles/games/amd-and-ati-contracted-to-provide-next-generation-xbox-chips-20091015/&lt;br /&gt;
&lt;br /&gt;
* Next Generation of Sony (play station 4)&lt;br /&gt;
http://www.forbes.com/2008/07/28/game-consoles-nextgen-tech-intel-cx_cm_0729consoles.html&lt;br /&gt;
http://sonyps4.com/playstation-4-will-be-the-first/&lt;br /&gt;
good general site: http://www.ps4forums.org/&lt;br /&gt;
speculative specs: http://www.edepot.com/playstation4.html&lt;br /&gt;
&lt;br /&gt;
* Next Generation of Nintendo (unknown)&lt;br /&gt;
&lt;br /&gt;
* Console Free Gaming&lt;br /&gt;
http://kotaku.com/5190395/could-the-future-of-gaming-be-console-free&lt;br /&gt;
http://loot-ninja.com/2009/08/15/the-future-of-console-gaming-doesnt-involve-a-console-wait-wut/&lt;br /&gt;
http://www.kotaku.com.au/2009/05/steven-spielberg-predicts-console-free-virtual-reality-gaming-future/&lt;br /&gt;
http://www.forbes.com/2009/03/27/video-games-cloud-technology-personal-tech-games.html&lt;br /&gt;
&lt;br /&gt;
* Virtual Reality Gaming&lt;br /&gt;
http://en.wikipedia.org/wiki/Virtual_reality&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://www.fireflake.com/game/2008/08/20/the-future-of-console-gaming/&lt;br /&gt;
http://www.fireflake.com/game/2009/05/07/future-of-gaming-consoles-take-2/&lt;/div&gt;</summary>
		<author><name>Colin Greenwood</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=User:Colin_Greenwood&amp;diff=26705&amp;oldid=prev</id>
		<title>User:Colin Greenwood</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=User:Colin_Greenwood&amp;diff=26705&amp;oldid=prev"/>
				<updated>2009-11-19T02:21:24Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 02:21, 19 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan='4' align='center' class='diff-multi'&gt;(2 intermediate revisions not shown.)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 49:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 49:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* Homework 6: [[media:colingreenwood-hwk6.ppt]]&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* Homework 6: [[media:colingreenwood-hwk6.ppt]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;* [[Colin's Term Paper]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Colin Greenwood</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=User:Tim_Ballard/CIS410/State&amp;diff=26702&amp;oldid=prev</id>
		<title>User:Tim Ballard/CIS410/State</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=User:Tim_Ballard/CIS410/State&amp;diff=26702&amp;oldid=prev"/>
				<updated>2009-11-18T22:44:58Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 22:44, 18 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan='4' align='center' class='diff-multi'&gt;(One intermediate revision not shown.)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[[Image:State.png]]&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[[Image:State.png]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;[http://http://en.wikipedia.org/wiki/State_pattern State Pattern]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Tim Ballard</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=CIS190-f09/Assignments&amp;diff=26700&amp;oldid=prev</id>
		<title>CIS190-f09/Assignments</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=CIS190-f09/Assignments&amp;diff=26700&amp;oldid=prev"/>
				<updated>2009-11-18T21:04:52Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 21:04, 18 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 9:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 9:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* Vince / Jose: Space Invaders&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* Vince / Jose: Space Invaders&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* Lindsey / Tyler: Breakout&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* Lindsey / Tyler: Breakout&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;* Brian / Nic: Shooting Game&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;* Jerimiah / Aaron: Pac Man&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;* Nathianial: Asteroids&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;* Jason / Jason: Shooting&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;----&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;----&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Professor Peterson</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=User:Tim_Ballard/CIS410/State&amp;diff=26699&amp;oldid=prev</id>
		<title>User:Tim Ballard/CIS410/State</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=User:Tim_Ballard/CIS410/State&amp;diff=26699&amp;oldid=prev"/>
				<updated>2009-11-18T19:56:35Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 19:56, 18 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan='4' align='center' class='diff-multi'&gt;(One intermediate revision not shown.)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;===State Pattern===&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;===State Pattern===&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;The state pattern is used to change the state of an object at runtime, i.e partially change the objects type at runtime.&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;[[Image:State.png]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Tim Ballard</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=Special:Log/upload&amp;diff=0&amp;oldid=prev</id>
		<title>Special:Log/upload</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=Special:Log/upload&amp;diff=0&amp;oldid=prev"/>
				<updated>2009-11-18T19:50:55Z</updated>
		
		<summary type="html">&lt;p&gt;uploaded &amp;quot;&lt;a href=&quot;/mcis/index.php/Image:State.png&quot; title=&quot;Image:State.png&quot;&gt;Image:State.png&lt;/a&gt;&amp;quot;: State Design pattern uml&lt;/p&gt;
</summary>
		<author><name>Tim Ballard</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=User:Tim_Ballard/CIS410/State&amp;diff=26696&amp;oldid=prev</id>
		<title>User:Tim Ballard/CIS410/State</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=User:Tim_Ballard/CIS410/State&amp;diff=26696&amp;oldid=prev"/>
				<updated>2009-11-18T19:49:44Z</updated>
		
		<summary type="html">&lt;p&gt;New page: ===State Pattern===&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;===State Pattern===&lt;/div&gt;</summary>
		<author><name>Tim Ballard</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=CIS190-f09/Assignments&amp;diff=26695&amp;oldid=prev</id>
		<title>CIS190-f09/Assignments</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=CIS190-f09/Assignments&amp;diff=26695&amp;oldid=prev"/>
				<updated>2009-11-18T04:26:40Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 04:26, 18 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;Due December 1:&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;Final Game, First Draft&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;Get approval for a game and create a first draft of the game.&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;Games:&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;* Patrick: Banana Toss&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;* Vince / Jose: Space Invaders&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;* Lindsey / Tyler: Breakout&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;----&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Due Nov 12:&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Due Nov 12:&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Professor Peterson</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=Homework_2:_Weekly_Summary_Poster&amp;diff=26694&amp;oldid=prev</id>
		<title>Homework 2: Weekly Summary Poster</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=Homework_2:_Weekly_Summary_Poster&amp;diff=26694&amp;oldid=prev"/>
				<updated>2009-11-18T03:24:04Z</updated>
		
		<summary type="html">&lt;p&gt;New page: &lt;a href=&quot;/mcis/images/5/5a/Eredding-hw1.ppt&quot; class=&quot;internal&quot; title=&quot;Eredding-hw1.ppt&quot;&gt;Weekly Summary Poster&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[media:eredding-hw1.ppt|Weekly Summary Poster]]&lt;/div&gt;</summary>
		<author><name>Subzero1032</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=User:Subzero1032/CIS150&amp;diff=26693&amp;oldid=prev</id>
		<title>User:Subzero1032/CIS150</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=User:Subzero1032/CIS150&amp;diff=26693&amp;oldid=prev"/>
				<updated>2009-11-18T03:23:40Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 03:23, 18 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 23:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 23:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;=== Homework Assignments ===&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;=== Homework Assignments ===&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* [[&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;media:eredding-hw1.ppt|&lt;/del&gt;Homework 1: Weekly Summary Poster]]&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* [[Homework 1&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;: Computer News Presentation]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;* [[Homework 2&lt;/ins&gt;: Weekly Summary Poster]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* [[Homework 3: Computer History Poster]]&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* [[Homework 3: Computer History Poster]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* [[Homework 4: Computer Industry Poster]]&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* [[Homework 4: Computer Industry Poster]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Subzero1032</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=Special:Log/upload&amp;diff=0&amp;oldid=prev</id>
		<title>Special:Log/upload</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=Special:Log/upload&amp;diff=0&amp;oldid=prev"/>
				<updated>2009-11-18T03:21:31Z</updated>
		
		<summary type="html">&lt;p&gt;uploaded &amp;quot;&lt;a href=&quot;/mcis/index.php/Image:Eredding-150-TpaperOutline.doc&quot; title=&quot;Image:Eredding-150-TpaperOutline.doc&quot;&gt;Image:Eredding-150-TpaperOutline.doc&lt;/a&gt;&amp;quot;&lt;/p&gt;
</summary>
		<author><name>Subzero1032</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=Term_Paper:_Windows_7&amp;diff=26691&amp;oldid=prev</id>
		<title>Term Paper: Windows 7</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=Term_Paper:_Windows_7&amp;diff=26691&amp;oldid=prev"/>
				<updated>2009-11-18T03:20:37Z</updated>
		
		<summary type="html">&lt;p&gt;New page: References used for creating the outline and term paper:  http://www.pcworld.com/article/172602/windows_7_review.html  http://en.wikipedia.org/wiki/Windows_7  http://www.techradar.com/news...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;References used for creating the outline and term paper:&lt;br /&gt;
&lt;br /&gt;
http://www.pcworld.com/article/172602/windows_7_review.html&lt;br /&gt;
&lt;br /&gt;
http://en.wikipedia.org/wiki/Windows_7&lt;br /&gt;
&lt;br /&gt;
http://www.techradar.com/news/computing/pc/18-cool-things-windows-7-does-that-vista-doesn-t-628892&lt;br /&gt;
&lt;br /&gt;
http://www.pcmag.com/article2/0,2817,2348903,00.asp&lt;br /&gt;
&lt;br /&gt;
http://gizmodo.com/5330609/windows-7-review-you-can-quit-complaining-now&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[media:eredding-150-TpaperOutline.doc|Term Paper Outline]]&lt;/div&gt;</summary>
		<author><name>Subzero1032</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=User:Subzero1032/CIS150&amp;diff=26690&amp;oldid=prev</id>
		<title>User:Subzero1032/CIS150</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=User:Subzero1032/CIS150&amp;diff=26690&amp;oldid=prev"/>
				<updated>2009-11-18T03:16:27Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 03:16, 18 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 30:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 30:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;=== Term Paper ===&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;=== Term Paper ===&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;* [[Term Paper: Windows 7]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Subzero1032</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=User:Brian_Johnson/November_12&amp;diff=26689&amp;oldid=prev</id>
		<title>User:Brian Johnson/November 12</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=User:Brian_Johnson/November_12&amp;diff=26689&amp;oldid=prev"/>
				<updated>2009-11-18T02:52:24Z</updated>
		
		<summary type="html">&lt;p&gt;New page: The controversy I have chosen regards Facebook.com’s use of user’s activities and images. In 2007 Facebook.com began using the Beacon ad platform which featured ads on the site beside ...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;The controversy I have chosen regards Facebook.com’s use of user’s activities and images. In 2007 Facebook.com began using the Beacon ad platform which featured ads on the site beside pictures of friends who had purchased the products.  The site claims they only use information the users choose to share. I view this as a rather strange argument since everything you put on the site you are choosing to share. So does this mean everything uploaded by users to the site is fair game?  This information was used by advertisers to do a sort of word of mouth advertizing in which they used your likeness to draw your friends’ attention to their products ad. &lt;br /&gt;
&lt;br /&gt;
A month after the start of the ad campaign the site issued a formal apology for not offering an option for users to opt out. At this time they gave users the option of opting out of the program.  The pressure to change came from users and privacy advocates. &lt;br /&gt;
&lt;br /&gt;
http://www.internetnews.com/webcontent/article.php/3803306&lt;br /&gt;
&lt;br /&gt;
http://www.internetnews.com/bus-news/article.php/3714951&lt;/div&gt;</summary>
		<author><name>Brian Johnson</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=Kevin_Sears_150_Term_Paper&amp;diff=26688&amp;oldid=prev</id>
		<title>Kevin Sears 150 Term Paper</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=Kevin_Sears_150_Term_Paper&amp;diff=26688&amp;oldid=prev"/>
				<updated>2009-11-18T00:25:53Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 00:25, 18 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan='4' align='center' class='diff-multi'&gt;(One intermediate revision not shown.)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 12:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 12:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;http://autos.aol.com/article/future-safety-advances&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;http://autos.aol.com/article/future-safety-advances&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;http://ezinearticles.com/?What-Are-Some-Of-The-Potential-Problems-With-The-New-Technology-In-Automobiles&amp;amp;id=350304&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;----&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;----&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 17:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 18:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Outline:&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Outline:&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Into:  The technology in cars has come a long way.  Some &lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;new computer technology in cars &lt;/del&gt;and &lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;their benefits &lt;/del&gt;are &lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;safety features&lt;/del&gt;, &lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;GPS navigation&lt;/del&gt;, and &lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;entertainment &lt;/del&gt;technology. &lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt; &lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Into:  The technology in cars has come a long way.  Some &lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;points &lt;/ins&gt;and &lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;topics &lt;/ins&gt;are &lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;new technology&lt;/ins&gt;, &lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;the problems with the technology&lt;/ins&gt;, and &lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;the future of the &lt;/ins&gt;technology. &lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;   &lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Introduction&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Introduction&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;Safety Features&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;New Technology&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;     *Examples&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;     *Examples&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 29:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 30:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;     *Benefits&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;     *Benefits&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;GPS Navigation&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;The Problems with the Technology&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;     *Problems&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;     *Examples&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;     *Examples&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;     &lt;/del&gt;*&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;Features&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;The Future with the Technology&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;     *Benefits&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&amp;#160;&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;*Entertainment&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;     *Examples&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;     *Examples&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Kevin sears</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=CIS150-f09/Reading/Censorship_/_Google_Books_/_FBI_/_Google_Privacy&amp;diff=26686&amp;oldid=prev</id>
		<title>CIS150-f09/Reading/Censorship / Google Books / FBI / Google Privacy</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=CIS150-f09/Reading/Censorship_/_Google_Books_/_FBI_/_Google_Privacy&amp;diff=26686&amp;oldid=prev"/>
				<updated>2009-11-17T23:17:15Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Reading:&lt;br /&gt;
&lt;br /&gt;
* http://www.wired.com/politics/security/news/2007/08/wiretap&lt;br /&gt;
* http://www.wired.com/threatlevel/2007/06/appeals_court_s/&lt;br /&gt;
* http://www.nytimes.com/2002/04/22/business/new-economy-copyright-dispute-with-church-scientology-forcing-google-some.html&lt;br /&gt;
* http://www.slate.com/id/2175651/&lt;br /&gt;
&lt;br /&gt;
Diary:&lt;br /&gt;
* Be ready with your previous diary entry&lt;br /&gt;
* Write a diary on one of the following, including a link to your source, a summary, and a reaction:&lt;br /&gt;
** Find something related to government surveillance and the laws governing it or the technologies enabling it&lt;br /&gt;
** Or, find something related to privacy concerns involving Google / search technology&lt;br /&gt;
** Or, find something about private censorship in which people or corporations are attempting to censor the Internet&lt;/div&gt;</summary>
		<author><name>Professor Peterson</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=CIS150-f09/Reading&amp;diff=26684&amp;oldid=prev</id>
		<title>CIS150-f09/Reading</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=CIS150-f09/Reading&amp;diff=26684&amp;oldid=prev"/>
				<updated>2009-11-17T23:07:35Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 23:07, 17 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 23:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 23:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* November 12: [[/Privacy|Privacy]]&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* November 12: [[/Privacy|Privacy]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* November 17: [[/Censorship|Censorship and Google Books]] (Jeremy Nelson)&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* November 17: [[/Censorship|Censorship and Google Books]] (Jeremy Nelson)&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* November &lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;29&lt;/del&gt;: &lt;del style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;Bitsy&lt;/del&gt;&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* November &lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;19&lt;/ins&gt;: &lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;[[/Censorship / Google Books / FBI / Google Privacy]]&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* November 25: Wikipedia&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* November 25: Wikipedia&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* December 1: Sociology / Anthropology&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* December 1: Sociology / Anthropology&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Professor Peterson</name></author>	</entry>

	<entry>
		<id>http://wiki.western.edu/mcis/index.php?title=Kevin_Sears_150_Term_Paper&amp;diff=26683&amp;oldid=prev</id>
		<title>Kevin Sears 150 Term Paper</title>
		<link rel="alternate" type="text/html" href="http://wiki.western.edu/mcis/index.php?title=Kevin_Sears_150_Term_Paper&amp;diff=26683&amp;oldid=prev"/>
				<updated>2009-11-17T19:03:19Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 19:03, 17 November 2009&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan='4' align='center' class='diff-multi'&gt;(3 intermediate revisions not shown.)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 8:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 8:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;http://www.computeruser.com/articles/2309,1,2,1,0901,04.html&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;http://www.computeruser.com/articles/2309,1,2,1,0901,04.html&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;http://www.wjactv.com/automotive/18658482/detail.html&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;http://autos.aol.com/article/future-safety-advances&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 13:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 16:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Outline:&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Outline:&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;Into:  The technology in cars has come a long way.  Some new computer technology in cars and their benefits are safety features, GPS navigation, and entertainment technology.  &lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;*Introduction&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;*Safety Features&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;     *Examples&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;     *Features&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;     *Benefits&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;*GPS Navigation&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;     *Examples&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;     *Features&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;     *Benefits&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;*Entertainment&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;     *Examples&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;     *Features&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;     *Benefits&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;*Conclusion&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Kevin sears</name></author>	</entry>

	</feed>