<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>OzZy&#039;s Blog</title>
	<atom:link href="http://0zzym.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://0zzym.wordpress.com</link>
	<description>Just another WordPress.com site</description>
	<lastBuildDate>Sun, 18 Jul 2010 17:43:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='0zzym.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>OzZy&#039;s Blog</title>
		<link>http://0zzym.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://0zzym.wordpress.com/osd.xml" title="OzZy&#039;s Blog" />
	<atom:link rel='hub' href='http://0zzym.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Multi-directional Linked Lists and More Templates</title>
		<link>http://0zzym.wordpress.com/2010/07/18/multi-directional-linked-lists-and-more-templates/</link>
		<comments>http://0zzym.wordpress.com/2010/07/18/multi-directional-linked-lists-and-more-templates/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 17:43:02 +0000</pubDate>
		<dc:creator>ozzym</dc:creator>
				<category><![CDATA[OOP344]]></category>
		<category><![CDATA[Seneca]]></category>

		<guid isPermaLink="false">http://0zzym.wordpress.com/?p=24</guid>
		<description><![CDATA[This week we learned about different types of linked lists.  We can create a linked list with pointers going not only forward, but backwards as well.  This makes searching faster. We also learned about Templates.  These are my notes for the &#8220;templates&#8221; section of that lecture: Templates A way to write fill in the blanks [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=24&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This week we learned about different types of linked lists.  We can create a linked list with pointers going not only forward, but backwards as well.  This makes searching faster.</p>
<p>We also learned about Templates.  These are my notes for the &#8220;templates&#8221; section of that lecture:</p>
<div style="font-family:'Courier New', Serif;">
<strong><u>Templates</u></strong><br />
A way to write fill in the blanks code, and the blanks are the data types.</p>
<p>Code is often repeated (copy, past, and substitute) because of differences in data type of the parameters.<br />
Templates allow us to write generic code where data type is filled in automatically at compile time.</p>
<p>***NOTE***<br />
need to overload the insertion operator to display your struct/class if you are using a struct/class for a template.</p>
<p>if you need to write a function to print an array and a double you would need to write 2 functions where the only difference is a few keywords.</p>
<p>we first declare a template class:</p>
<p>#include<br />
using namespace std;</p>
<p>template  //T is like  a blank &#8230; When the compiler sees T it<br />
//knows that T needs to be filled in</p>
<p>// you need to modify your function<br />
void printarray(T arr[],int sz){<br />
for(int i=0;i<br />
cout &amp;lt;&amp;lt; arr[i] &amp;lt;&amp;lt; endl;<br />
}<br />
}</p>
<p>int main(void){<br />
int arr1[5]={5,3,2,1,6};<br />
double arr2[5]={3.3,1.2, 3.14,6.0,7.8};<br />
char arr3[5][10]={&#8220;apples&#8221;,&#8221;oranges&#8221;,&#8221;banana&#8221;,&#8221;pears&#8221;,&#8221;kiwi&#8221;};<br />
}</p>
<p>***NOTE***<br />
You cannot use templates in C, only C++</p>
<p>You can also use Templates for Classes.<br />
There are some rules for Template use in Classes.<br />
•    If you you&#8217;re doing templates, they go in headers.<br />
tlist.h has the code for templates.</p>
<p>If you need multiple templates, you have to declare it as such:<br />
template</p>
<p>you also have to change the declaration a bit:</p>
<p>if your class or struct uses a Template, the compiler doesn&#8217;t know the size of the object so it cannot make it  so it doesn’t see it.<br />
so when you declare one, you have to declare it as such:</p>
<p>Node* x;<br />
You have to use the angle brackets.</p>
<p>Instead of primitive data types, you can use classes in those angle brackets, but you need to make sure that the operations being used are supported for that class. (copy ctor, overloaded operators, etc)</p>
<p>Another thing to not with templates is that with the given code:<br />
template<br />
struct Node{<br />
TYPE data_;<br />
Node* next_;<br />
};</p>
<p>that template declaration ONLY applies to the struct underneath it.<br />
A Template declaration ONLY applies the NEXT code block ONLY.</p>
<p>SO, each function, class, struct that uses templates, needs to have those declarations before it.</p>
<p>So the class needs to have a template declaration.<br />
The function prototypes in the class header needs to have its data types replaced with the template name.
</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/0zzym.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/0zzym.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/0zzym.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/0zzym.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/0zzym.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/0zzym.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/0zzym.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/0zzym.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/0zzym.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/0zzym.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/0zzym.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/0zzym.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/0zzym.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/0zzym.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=24&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://0zzym.wordpress.com/2010/07/18/multi-directional-linked-lists-and-more-templates/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/008938a2f0658b9a7e9166cb30c435a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ozzym</media:title>
		</media:content>
	</item>
		<item>
		<title>Stacks</title>
		<link>http://0zzym.wordpress.com/2010/07/11/stacks/</link>
		<comments>http://0zzym.wordpress.com/2010/07/11/stacks/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 19:56:29 +0000</pubDate>
		<dc:creator>ozzym</dc:creator>
				<category><![CDATA[OOP344]]></category>
		<category><![CDATA[Seneca]]></category>

		<guid isPermaLink="false">http://0zzym.wordpress.com/?p=20</guid>
		<description><![CDATA[This week we also learned about stacks.  Stacks are list type structure that have data stores in a First In Last Out (FILO) manner.  So to put it visually, if you have a stack of books, you would always put the book on top of the stack to add to it.  If you wanted to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=20&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This week we also learned about stacks.  Stacks are list type structure that have data stores in a First In Last Out (FILO) manner.  So to put it visually, if you have a stack of books, you would always put the book on top of the stack to add to it.  If you wanted to remove data from a stack it would also be from the top and only from the top.  It is not possible to remove something not from the top of the stack.  You usually can only see what is happening at the top of the stack and not beneath it.  A stack can be implemented in various ways including linked lists.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/0zzym.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/0zzym.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/0zzym.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/0zzym.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/0zzym.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/0zzym.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/0zzym.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/0zzym.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/0zzym.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/0zzym.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/0zzym.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/0zzym.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/0zzym.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/0zzym.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=20&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://0zzym.wordpress.com/2010/07/11/stacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/008938a2f0658b9a7e9166cb30c435a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ozzym</media:title>
		</media:content>
	</item>
		<item>
		<title>Linked Lists</title>
		<link>http://0zzym.wordpress.com/2010/07/11/linked-lists/</link>
		<comments>http://0zzym.wordpress.com/2010/07/11/linked-lists/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 19:41:49 +0000</pubDate>
		<dc:creator>ozzym</dc:creator>
				<category><![CDATA[OOP344]]></category>
		<category><![CDATA[Seneca]]></category>

		<guid isPermaLink="false">http://0zzym.wordpress.com/?p=17</guid>
		<description><![CDATA[This week, we learned about linked lists.  The linked lists were very confusing at first, but I sort of got them in the end.  They are a nice way to organize data without having to worry to much about memory reallocation; like you have to with C-style null terminated strings. As with a lot of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=17&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This week, we learned about linked lists.  The linked lists were very confusing at first, but I sort of got them in the end.  They are a nice way to organize data without having to worry to much about memory reallocation; like you have to with C-style null terminated strings.</p>
<p>As with a lot of things, they have their pros and cons.  Linked lists are not stored in contiguous memory, so it is easier to change and re-change the same of the list as needed.  But this comes at the prices of having slower index times.  Unlike C-style null terminated strings, where you have a simple index number to go by, linked lists have a starting point; this starting point has a pointer to the first set of data, or node.  These nodes all contain data and a pointer to the next node in the series.  So to get to any given set of data in the list, you would have to go through all of the nodes prior to it.</p>
<p>A linked list is not a standard item in the C/C++ library, it is concept.  So there is not a specific library or keyword to create one.  They are just classes or structs.  You need to have two different classes for a linked list.  The starting point class, and a node class.   The starting point class not only holds the location (pointer) to the first node item in the list, it also holds all the operations that can be done with the lists through member functions, operators, con/destructors, etc.  The node class is simply holds data and a pointer to the next node.  To signify the end of a linked list, the last node would have a NULL value for the pointer to the next node.  Also, if a linked list is empty, the pointer to the first node would also have a NULL value.  One last important item of note, is that when adding nods to a linked list the new node is pushed to the front of the list; between the starting point and the previously newest node.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/0zzym.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/0zzym.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/0zzym.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/0zzym.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/0zzym.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/0zzym.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/0zzym.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/0zzym.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/0zzym.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/0zzym.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/0zzym.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/0zzym.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/0zzym.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/0zzym.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=17&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://0zzym.wordpress.com/2010/07/11/linked-lists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/008938a2f0658b9a7e9166cb30c435a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ozzym</media:title>
		</media:content>
	</item>
		<item>
		<title>Unions</title>
		<link>http://0zzym.wordpress.com/2010/06/13/unions/</link>
		<comments>http://0zzym.wordpress.com/2010/06/13/unions/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 16:56:10 +0000</pubDate>
		<dc:creator>ozzym</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Seneca]]></category>

		<guid isPermaLink="false">http://0zzym.wordpress.com/?p=7</guid>
		<description><![CDATA[We learned about Unions this week. I did not know they existed, but it makes sense. I do not think we will use them though. They work the same way as structs, but they take the size of the largest data member, this is because it overwrites the memory with new data.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=7&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We learned about Unions this week.<br />
I did not know they existed, but it makes sense.<br />
I do not think we will use them though.<br />
They work the same way as structs, but they take the size of the largest data member, this is because it overwrites the memory with new data.  </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/0zzym.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/0zzym.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/0zzym.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/0zzym.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/0zzym.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/0zzym.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/0zzym.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/0zzym.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/0zzym.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/0zzym.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/0zzym.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/0zzym.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/0zzym.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/0zzym.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=7&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://0zzym.wordpress.com/2010/06/13/unions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/008938a2f0658b9a7e9166cb30c435a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ozzym</media:title>
		</media:content>
	</item>
		<item>
		<title>3rd Week</title>
		<link>http://0zzym.wordpress.com/2010/05/29/3rd-week/</link>
		<comments>http://0zzym.wordpress.com/2010/05/29/3rd-week/#comments</comments>
		<pubDate>Sat, 29 May 2010 04:13:32 +0000</pubDate>
		<dc:creator>ozzym</dc:creator>
				<category><![CDATA[OOP344]]></category>
		<category><![CDATA[Seneca]]></category>

		<guid isPermaLink="false">http://0zzym.wordpress.com/?p=8</guid>
		<description><![CDATA[Had a class over IRC this week.  It didn&#8217;t see very successful, but that is probably because that was a lot of people&#8217;s first time using IRC.  We didn&#8217;t get very much course content done over the time spent, however I did learn various ways to optimizing code so that the program runs faster.  So [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=8&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Had a class over IRC this week.  It didn&#8217;t see very successful, but that is probably because that was a lot of people&#8217;s first time using IRC.  We didn&#8217;t get very much course content done over the time spent, however I did learn various ways to optimizing code so that the program runs faster.  So even though the <strong>quantity </strong>of what we learned was small, the <strong>quality </strong>of it was actually really high!  We also went over how the C++ language handles evaluation with &amp;&amp; and ||.  I already knew how a C++ compiler would skip the rest of an If statement if the first part of an &amp;&amp; expression was false (I love you Visual Studio Debugger!).  This way of optimization did not seem to matter in the mickey mouse programs that I have been creating in school so far, but it is a good idea to make a habit of programming that way.  We also learned Pointer Arithmetic and Pointer Notation.</p>
<p>I am anxious to jump right into the project, it seems that  a lot of classes this semester are taking it REAL slow at the beginning.  Maybe it is because second semester is sooo fast paced?  Maybe it is because it is summer?  All I know is that everyone is probably going to end up back loading there courses <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   Which is especially bad for summer semester because a lot of students, like me, have a <strong>full </strong>course squished into the last <strong>half </strong>of the semester!</p>
<p>On a side note, I had some REALLY interesting conversations with tdot and CloudScorpion before and after the class!   They explained some stuff about .Net technologies, cleared up some common misconceptions about PHP, and really got me thinking about trying to learn C# instead of JAVA before the next semester. tdot explained to be one of the subtle differences of C# over C++.</p>
<p>Everything (how he described it to me) in C# is handled as a pointer, but isn&#8217;t referred to as such.  For example: In C++ if you just use a class&#8217; name when passing it to a function, it passes by value.</p>
<p><pre class="brush: plain;">FunctionOne(Student X);</pre></p>
<p>To pass by reference, you have to use the &amp; operator.  As we all SHOULD have learned in OOP244, it is advantageous to pass by reference because passing by value (I hope I&#8217;m getting the terminology right! Don&#8217;t have OOP244 notes on this computer!) copies the entire object when moving into the function.  And as we know, an object could be VERY big in size.</p>
<p><pre class="brush: plain;">FunctionTwo(Student&amp; X);</pre></p>
<p>Anyways in C# if you put just the class&#8217; name in a function call, it automatically passes by reference; the &amp; operator does not have to be inputted.   Another neat little quirk is that accessing instance variables and function members still uses the . operator, not the -&gt; operator.  Even though you are working with pointers!  This is awesome, because Chris threw a lot of new operators at us last semester, and quite often he gave us multiple ways of writing them &gt;_&lt;  This is what tdot told me.  Maybe he was lying about the whole thing!!!!</p>
<p>I also found out that CloudScorpion gets REALLY lonely/bored when he&#8217;s supposed to be working! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   And is a noob because he thinks: (Sonic Adventure 2 &gt; Sonic Adventure 1) !  <strong>CLEARLY </strong>he was trolling!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/0zzym.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/0zzym.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/0zzym.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/0zzym.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/0zzym.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/0zzym.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/0zzym.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/0zzym.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/0zzym.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/0zzym.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/0zzym.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/0zzym.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/0zzym.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/0zzym.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=8&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://0zzym.wordpress.com/2010/05/29/3rd-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/008938a2f0658b9a7e9166cb30c435a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ozzym</media:title>
		</media:content>
	</item>
		<item>
		<title>First Meeting</title>
		<link>http://0zzym.wordpress.com/2010/05/23/first-meeting/</link>
		<comments>http://0zzym.wordpress.com/2010/05/23/first-meeting/#comments</comments>
		<pubDate>Sun, 23 May 2010 23:26:53 +0000</pubDate>
		<dc:creator>ozzym</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Seneca]]></category>

		<guid isPermaLink="false">http://0zzym.wordpress.com/2010/05/23/first-meeting/</guid>
		<description><![CDATA[The HOTYS just had their first meeting. The logs are up. I just realized that I HATE the wikicode that wikis use. I knew EXACTLY what I wanted to do in xHTML/CSS, but wiki was DETERMINED to make it impossible to do. We have come up with coding style set that we are all comfortable [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=5&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The HOTYS just had their first meeting.  The logs are up.  I just realized that I HATE the wikicode that wikis use.  I knew EXACTLY what I wanted to do in xHTML/CSS, but wiki was DETERMINED to make it impossible to do.  </p>
<p>We have come up with coding style set that we are all comfortable with.<br />
Now we wait for the course work&#8230;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/0zzym.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/0zzym.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/0zzym.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/0zzym.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/0zzym.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/0zzym.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/0zzym.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/0zzym.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/0zzym.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/0zzym.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/0zzym.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/0zzym.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/0zzym.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/0zzym.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=5&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://0zzym.wordpress.com/2010/05/23/first-meeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/008938a2f0658b9a7e9166cb30c435a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ozzym</media:title>
		</media:content>
	</item>
		<item>
		<title>2nd Week</title>
		<link>http://0zzym.wordpress.com/2010/05/20/2nd-week/</link>
		<comments>http://0zzym.wordpress.com/2010/05/20/2nd-week/#comments</comments>
		<pubDate>Thu, 20 May 2010 16:54:31 +0000</pubDate>
		<dc:creator>ozzym</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Seneca]]></category>

		<guid isPermaLink="false">http://0zzym.wordpress.com/2010/05/20/2nd-week/</guid>
		<description><![CDATA[It seems that no matter how old you are, making teams is ALWAYS excruciatingly painful. Now that the first round of making teams are done, I decided to get straight to work! Although we cannot do much (Got class next period), our team is going to have our first meeting this Sunday on IRC. Not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=4&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It seems that no matter how old you are, making teams is ALWAYS excruciatingly painful.  Now that the first round of making teams are done, I decided to get straight to work!  Although we cannot do much (Got class next period), our team is going to have our first meeting this Sunday on IRC.  Not much to talk about yet, but I thought that we should get some ground rules down first for styles and whatnot.  </p>
<p>I&#8217;ve done many group oriented assignments and projects before, as has everyone, so I wanted to minimize any many possible cracks and bumps now to attain the highest cohesion between our members.    We seem to have met consensus on the time, so we are a go!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/0zzym.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/0zzym.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/0zzym.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/0zzym.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/0zzym.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/0zzym.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/0zzym.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/0zzym.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/0zzym.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/0zzym.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/0zzym.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/0zzym.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/0zzym.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/0zzym.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=4&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://0zzym.wordpress.com/2010/05/20/2nd-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/008938a2f0658b9a7e9166cb30c435a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ozzym</media:title>
		</media:content>
	</item>
		<item>
		<title>Test 1</title>
		<link>http://0zzym.wordpress.com/2010/05/13/test-1/</link>
		<comments>http://0zzym.wordpress.com/2010/05/13/test-1/#comments</comments>
		<pubDate>Thu, 13 May 2010 16:57:44 +0000</pubDate>
		<dc:creator>ozzym</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://0zzym.wordpress.com/2010/05/13/test-1/</guid>
		<description><![CDATA[This is my first time using a blog, and am testing it out.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=3&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is my first time using a blog, and am testing it out.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/0zzym.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/0zzym.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/0zzym.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/0zzym.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/0zzym.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/0zzym.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/0zzym.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/0zzym.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/0zzym.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/0zzym.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/0zzym.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/0zzym.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/0zzym.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/0zzym.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=3&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://0zzym.wordpress.com/2010/05/13/test-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/008938a2f0658b9a7e9166cb30c435a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ozzym</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://0zzym.wordpress.com/2010/05/13/hello-world/</link>
		<comments>http://0zzym.wordpress.com/2010/05/13/hello-world/#comments</comments>
		<pubDate>Thu, 13 May 2010 13:40:01 +0000</pubDate>
		<dc:creator>ozzym</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://0zzym.wordpress.com/?p=1</guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=1&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/0zzym.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/0zzym.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/0zzym.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/0zzym.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/0zzym.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/0zzym.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/0zzym.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/0zzym.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/0zzym.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/0zzym.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/0zzym.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/0zzym.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/0zzym.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/0zzym.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=0zzym.wordpress.com&amp;blog=13658493&amp;post=1&amp;subd=0zzym&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://0zzym.wordpress.com/2010/05/13/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/008938a2f0658b9a7e9166cb30c435a0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ozzym</media:title>
		</media:content>
	</item>
	</channel>
</rss>
