<?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>Research For Experience Design</title>
	<atom:link href="http://mpm17fall2009.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mpm17fall2009.wordpress.com</link>
	<description>First Year New Media, School of Image Arts, Ryerson University</description>
	<lastBuildDate>Wed, 14 Apr 2010 23:11:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mpm17fall2009.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Research For Experience Design</title>
		<link>http://mpm17fall2009.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mpm17fall2009.wordpress.com/osd.xml" title="Research For Experience Design" />
	<atom:link rel='hub' href='http://mpm17fall2009.wordpress.com/?pushpress=hub'/>
		<item>
		<title>CSS Liquid Layout</title>
		<link>http://mpm17fall2009.wordpress.com/2010/04/14/css-liquid-layout-2/</link>
		<comments>http://mpm17fall2009.wordpress.com/2010/04/14/css-liquid-layout-2/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 23:11:47 +0000</pubDate>
		<dc:creator>beau9</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mpm17fall2009.wordpress.com/?p=1662</guid>
		<description><![CDATA[By: Helaena Parkes 1.       What is CSS and how does it work? How do you use CSS to control style and layout of multiple web pages at once? What is the correct HTML for referring to an external style sheet? CSS stands for a cascading style sheet. CSS’ are used all across [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1662&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By: Helaena Parkes</p>
<p><strong>1.	       What is CSS and how does it work? How do you use CSS to control style and layout of multiple web pages at once? What is the correct HTML for referring to an external style sheet?</strong></p>
<p>CSS stands for a cascading style sheet. CSS’ are used all across the World Wide Web to separate websites from their original content in conclusion ensuring better organization, and easier processing when creating websites. When working with CSS, it is partially similar to HTML. However, when working with CSS,  you use HTML or XHTML file to arrange the content, but all of the design (fonts, colors, background, borders, text formatting, link effects, etc.) are done in a CSS file. Two file types are known within CSS, internal and external. When using HTML the correct format is simple.  You must save your file as a .css extension, and saved. This should be done in a separate file and you must attach all HTML pages.  You must create a ink set in between the &lt;head&gt; &lt;head&gt;. This makes everything easier when linking in between pages.</p>
<p>&lt;html&gt;</p>
<p><strong>&lt;head&gt;</strong></p>
<p>&lt;title&gt;&lt;/title&gt;</p>
<p>&lt;link rel=”stylesheet” href=”<strong>main.css</strong>“&gt;</p>
<p><strong>&lt;/head&gt;</strong></p>
<p>&lt;body&gt;</p>
<p><em>…web page content…</em></p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
<p><strong>2. What does the style attribute do and what do declaration, property, and values refer to?</strong></p>
<p>When working with CSS the style attribute refers to you being able to add style anywhere in your site that you please.  The style attribute is used through an HTML document.  When you add it into the html file, it is called &#8220;declaration&#8221; or declaring the style attribute. “Declaration” refers to the action of adding the style attribution into the HTML file. The “value section” of the file is where you would put the specific value of a property in which you would like to change, and the “property section” is where you place particular styles you want to change.</p>
<p><strong>3. What is the CSS box model?</strong></p>
<p>A CSS box model is the genetic make up of the website, as each site is made up of rectangular boxes.  Each box is made generic to its own with specific codes, properties, declarations and values. Each box has a content area and optional surrounding padding, border, and margin areas. The following diagram shows how these areas relate and the terminology used to refer to pieces of margin, border, and padding:</p>
<p><img src="//01338398-95D3-4BC5-AFA7-66214BBF32D1/pastedGraphic.pdf" alt="pastedGraphic.pdf" /></p>
<p><strong>4. How do you set an image as the background of a page?</strong></p>
<p>It takes a very basic code to place an image as the background of your webpage. In the CSS file of your site you would place the code in the body area. {}. background-image: url(“IMAGE URL”);</p>
<p><strong>5. What is liquid layout? How do you build a liquid layout with CSS?</strong></p>
<p>Liquid layout are layouts that are based on percentages of the current browser window&#8217;s size. They flex with the size of the window, even if the current viewer changes their browser size as they&#8217;re viewing the site. they are preferred by designers, as websites with a lot of information to pull through in as little amount of space as possible, these pages usually remain steady in size.</p>
<p>With regards to creating a liquid layout, it is a simple and easy way of layering a web page. A liquid design displays information and images, the website adapts itself to the available space. Using liquid layouts within css is all about absolute positioning. Your boxes within the layouts will fall under this code:</p>
<p>&lt;div&gt;</p>
<p>Content</p>
<p>&lt;/div&gt;</p>
<p>&lt;div&gt;</p>
<p>Navigation</p>
<p>&lt;/div&gt;</p>
<p>&lt;div&gt;</p>
<p>Header image</p>
<p>&lt;/div&gt;</p>
<p>to put content in the box is as follows</p>
<p>div.content {</p>
<p>position: absolute;</p>
<p>margin: <strong>267px</strong> 0px 0px 0px;</p>
<p>width: 749px;</p>
<p><strong>z-index: 1;</strong></p>
<p>}</p>
<p><strong>6. What is the difference between inline and block-level elements? How do you use them?</strong></p>
<p>A block-display element will span the full width of the space available to it, and so will start on a new line in the flow of HTML. The flow will continue on a new line after the block-display element and are used through CSS webpages. The inline elements are usually contained within the block level elements and are mostly used to render text.</p>
<p>***Help from: htmlhelp.com and webdesignsfromscratch.com</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mpm17fall2009.wordpress.com/1662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mpm17fall2009.wordpress.com/1662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mpm17fall2009.wordpress.com/1662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mpm17fall2009.wordpress.com/1662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mpm17fall2009.wordpress.com/1662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mpm17fall2009.wordpress.com/1662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mpm17fall2009.wordpress.com/1662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mpm17fall2009.wordpress.com/1662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mpm17fall2009.wordpress.com/1662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mpm17fall2009.wordpress.com/1662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mpm17fall2009.wordpress.com/1662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mpm17fall2009.wordpress.com/1662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mpm17fall2009.wordpress.com/1662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mpm17fall2009.wordpress.com/1662/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1662&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mpm17fall2009.wordpress.com/2010/04/14/css-liquid-layout-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00b36fad6bddfe4c57799fca3d213f43?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beau9</media:title>
		</media:content>
	</item>
		<item>
		<title>Assignment Presentations</title>
		<link>http://mpm17fall2009.wordpress.com/2010/04/09/assignment-presentations/</link>
		<comments>http://mpm17fall2009.wordpress.com/2010/04/09/assignment-presentations/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 14:48:26 +0000</pubDate>
		<dc:creator>alxbal</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mpm17fall2009.wordpress.com/?p=1636</guid>
		<description><![CDATA[Friday Presentations 13:10-13:20 Social Link: http://www.imagearts.ryerson.ca/ajordan/soliv3/home.html 13:30-13:40: HGX50: http://www.wix.com/TheHGX50/First-Draft 13:50-14:00 Juliet Love: http://imagearts.ryerson.ca/tpokrupanahanni/assignment3/index.html 14:10-14:30: Mindmesh: http://mindmesh2050.wordpress.com/ 14:40-14:50: The Meta Lens: http://imagearts.ryerson.ca/kkapetaneas/assignments/2050/ 15:00-15:10: THE WORLD IN 2050: http://imagearts.ryerson.ca/kang/2050_-_Monica_%26_Kalytta/Welcome.html 15:20-15:30: Year 2050: http://imagearts.ryerson.ca/llou/2050/ 15:30-15:40: Oscar, and Kayla’s group: http://imagearts.ryerson.ca/kclark/Genu-Flek/Genu-Fleck.html 15:50: Jessica ren: http://www.imagearts.ryerson.ca/pren/2050/2050.html Christine and Kathryn: Cuub: http: http://www.imagearts.ryerson.ca/kbarrett/lifein2050.html Gobal Net : http://www.imagearts.ryerson.ca/vwhite/2050/product Tuesday Presentations: 9:10-9:10: AOI [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1636&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Friday Presentations</p>
<li> 13:10-13:20 Social Link: <a href="http://www.imagearts.ryerson.ca/ajordan/soliv3/home.html">http://www.imagearts.ryerson.ca/ajordan/soliv3/home.html</a></li>
<li> 13:30-13:40: HGX50: <a href="http://www.wix.com/TheHGX50/First-Draft">http://www.wix.com/TheHGX50/First-Draft</a></li>
<li> 13:50-14:00 Juliet Love: <a href="http://imagearts.ryerson.ca/tpokrupanahanni/assignment3/index.html">http://imagearts.ryerson.ca/tpokrupanahanni/assignment3/index.html</a></li>
<li>14:10-14:30: Mindmesh: <a href="http://mindmesh2050.wordpress.com/">http://mindmesh2050.wordpress.com/ </a></li>
<li> 14:40-14:50: The Meta Lens: <a href="http://imagearts.ryerson.ca/kkapetaneas/assignments/2050/">http://imagearts.ryerson.ca/kkapetaneas/assignments/2050/ </a></li>
<li> 15:00-15:10: THE WORLD IN 2050: <a href="http://imagearts.ryerson.ca/kang/2050_-_Monica_%26_Kalytta/Welcome.html">http://imagearts.ryerson.ca/kang/2050_-_Monica_%26_Kalytta/Welcome.html</a></li>
<li> 15:20-15:30: Year 2050: <a href="http://imagearts.ryerson.ca/llou/2050/">http://imagearts.ryerson.ca/llou/2050/</a></li>
<li> 15:30-15:40: Oscar, and Kayla’s group: <a href="http://imagearts.ryerson.ca/kclark/Genu-Flek/Genu-Fleck.html">http://imagearts.ryerson.ca/kclark/Genu-Flek/Genu-Fleck.html</a></li>
<li>15:50: Jessica ren: <a href="http://www.imagearts.ryerson.ca/pren/2050/2050.html">http://www.imagearts.ryerson.ca/pren/2050/2050.html</a></li>
<li>Christine and Kathryn: Cuub: http: <a href="http://www.imagearts.ryerson.ca/kbarrett/lifein2050.html">http://www.imagearts.ryerson.ca/kbarrett/lifein2050.html</a></li>
<p>Gobal Net : <a href="http://www.imagearts.ryerson.ca/vwhite/2050/product">http://www.imagearts.ryerson.ca/vwhite/2050/product</a></p>
<p>Tuesday Presentations:</p>
<li>9:10-9:10: AOI</li>
<li>9:30-9:40: <a href="http://imagearts.ryerson.ca/ceilersen/year2050">Life Chip</a></li>
<li>9:40-9:50: Generation of 2050(skipped, not ready):<u> <a href="http://www.imagearts.ryerson.ca/npowell/mpm17/2050.html">http://www.imagearts.ryerson.ca/npowell/mpm17/2050.html<br />
</a></u></li>
<li>10:00-10:10: <a href="http://imagearts.ryerson.ca/pdipalma/MyAccessHome.html">MyAccess</a></li>
<li>10:20-10:30:<a href="http://imagearts.ryerson.ca/lbonsell/2050"> npc bots</a></li>
<li>10:40-10:50: <a href="http://imagearts.ryerson.ca/kpiunno/2050">open source energy</a></li>
<li>11:00-11:10: <a href="http://imagearts.ryerson.ca/rbrown/research%20Final">persocom</a> <u><a href="http://www.facebook.com/profile.php?id=100000930511935&amp;ref=ts">http://www.facebook.com/profile.php?id=100000930511935&amp;ref=ts,<br />
</a></u></li>
<li>11:20: 11:30: Tranceform: <u><a href="http://www.imagearts.ryerson.ca/mpalermo/Pages/tranceform/index.html">http://www.imagearts.ryerson.ca/mpalermo/Pages/tranceform/index.html</a></u></li>
<li> 11:40: 11:50: <a href="http://www.imagearts.ryerson.ca/jwitt/">3D </a>Virtual Shopping</li>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mpm17fall2009.wordpress.com/1636/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mpm17fall2009.wordpress.com/1636/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mpm17fall2009.wordpress.com/1636/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mpm17fall2009.wordpress.com/1636/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mpm17fall2009.wordpress.com/1636/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mpm17fall2009.wordpress.com/1636/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mpm17fall2009.wordpress.com/1636/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mpm17fall2009.wordpress.com/1636/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mpm17fall2009.wordpress.com/1636/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mpm17fall2009.wordpress.com/1636/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mpm17fall2009.wordpress.com/1636/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mpm17fall2009.wordpress.com/1636/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mpm17fall2009.wordpress.com/1636/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mpm17fall2009.wordpress.com/1636/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1636&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mpm17fall2009.wordpress.com/2010/04/09/assignment-presentations/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/08558478e5f2ca9a0bf0e634be5815b2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alxbal</media:title>
		</media:content>
	</item>
		<item>
		<title>Final Assignment: Network cultures in 2050</title>
		<link>http://mpm17fall2009.wordpress.com/2010/04/09/final-assignment-network-cultures-in-2050/</link>
		<comments>http://mpm17fall2009.wordpress.com/2010/04/09/final-assignment-network-cultures-in-2050/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 03:40:26 +0000</pubDate>
		<dc:creator>Konstantino</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mpm17fall2009.wordpress.com/?p=1632</guid>
		<description><![CDATA[Project Title: &#8220;The Meta Lens&#8221; Group Members: Konstantino Kapetaneas, Winnie Kwan, Jonathan Séguin URL: Check it out here!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1632&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Project Title: </strong>&#8220;The Meta Lens&#8221;</p>
<p><strong>Group Members:</strong> Konstantino Kapetaneas, Winnie Kwan, Jonathan Séguin</p>
<p><strong>URL: </strong><a href="http://imagearts.ryerson.ca/kkapetaneas/assignments/2050/" target="_blank">Check it out here!</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mpm17fall2009.wordpress.com/1632/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mpm17fall2009.wordpress.com/1632/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mpm17fall2009.wordpress.com/1632/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mpm17fall2009.wordpress.com/1632/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mpm17fall2009.wordpress.com/1632/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mpm17fall2009.wordpress.com/1632/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mpm17fall2009.wordpress.com/1632/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mpm17fall2009.wordpress.com/1632/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mpm17fall2009.wordpress.com/1632/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mpm17fall2009.wordpress.com/1632/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mpm17fall2009.wordpress.com/1632/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mpm17fall2009.wordpress.com/1632/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mpm17fall2009.wordpress.com/1632/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mpm17fall2009.wordpress.com/1632/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1632&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mpm17fall2009.wordpress.com/2010/04/09/final-assignment-network-cultures-in-2050/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6694ffe4ca508c3cbd80d1f41806106c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Tino</media:title>
		</media:content>
	</item>
		<item>
		<title>Assignment 3: Network Cultures in 2050</title>
		<link>http://mpm17fall2009.wordpress.com/2010/04/07/assignment-3-network-cultures-in-2050/</link>
		<comments>http://mpm17fall2009.wordpress.com/2010/04/07/assignment-3-network-cultures-in-2050/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 02:53:36 +0000</pubDate>
		<dc:creator>ilyana19</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linda lou]]></category>
		<category><![CDATA[llou]]></category>
		<category><![CDATA[ryerson]]></category>

		<guid isPermaLink="false">http://mpm17fall2009.wordpress.com/?p=1626</guid>
		<description><![CDATA[Members: Linda Lou, Lilian Chow Link: http://imagearts.ryerson.ca/llou/2050/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1626&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Members: Linda Lou, Lilian Chow<br />
Link: <a href="http://imagearts.ryerson.ca/llou/2050/" target="_blank">http://imagearts.ryerson.ca/llou/2050/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mpm17fall2009.wordpress.com/1626/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mpm17fall2009.wordpress.com/1626/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mpm17fall2009.wordpress.com/1626/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mpm17fall2009.wordpress.com/1626/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mpm17fall2009.wordpress.com/1626/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mpm17fall2009.wordpress.com/1626/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mpm17fall2009.wordpress.com/1626/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mpm17fall2009.wordpress.com/1626/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mpm17fall2009.wordpress.com/1626/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mpm17fall2009.wordpress.com/1626/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mpm17fall2009.wordpress.com/1626/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mpm17fall2009.wordpress.com/1626/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mpm17fall2009.wordpress.com/1626/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mpm17fall2009.wordpress.com/1626/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1626&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mpm17fall2009.wordpress.com/2010/04/07/assignment-3-network-cultures-in-2050/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a8a806a4a95fdb4d1a0ad3015d37e0de?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lindalou0</media:title>
		</media:content>
	</item>
		<item>
		<title>Network Cultures in 2050 Assignment &#8211; The Life Chip</title>
		<link>http://mpm17fall2009.wordpress.com/2010/04/06/network-cultures-in-2050-assignment-the-life-chip/</link>
		<comments>http://mpm17fall2009.wordpress.com/2010/04/06/network-cultures-in-2050-assignment-the-life-chip/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 16:39:45 +0000</pubDate>
		<dc:creator>Connors E</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mpm17fall2009.wordpress.com/?p=1624</guid>
		<description><![CDATA[Connors Eilersen Jessica Porretta Megan Shier Jenny Truong http://www.imagearts.ryerson.ca/ceilersen/year2050/index.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1624&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Connors Eilersen</p>
<p>Jessica Porretta</p>
<p>Megan Shier</p>
<p>Jenny Truong</p>
<p><a href="http://www.imagearts.ryerson.ca/ceilersen/year2050/index.html">http://www.imagearts.ryerson.ca/ceilersen/year2050/index.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mpm17fall2009.wordpress.com/1624/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mpm17fall2009.wordpress.com/1624/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mpm17fall2009.wordpress.com/1624/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mpm17fall2009.wordpress.com/1624/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mpm17fall2009.wordpress.com/1624/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mpm17fall2009.wordpress.com/1624/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mpm17fall2009.wordpress.com/1624/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mpm17fall2009.wordpress.com/1624/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mpm17fall2009.wordpress.com/1624/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mpm17fall2009.wordpress.com/1624/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mpm17fall2009.wordpress.com/1624/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mpm17fall2009.wordpress.com/1624/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mpm17fall2009.wordpress.com/1624/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mpm17fall2009.wordpress.com/1624/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1624&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mpm17fall2009.wordpress.com/2010/04/06/network-cultures-in-2050-assignment-the-life-chip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bc1e152d344aef02b123284b60acab21?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Connors E</media:title>
		</media:content>
	</item>
		<item>
		<title>Social Networking in 2050</title>
		<link>http://mpm17fall2009.wordpress.com/2010/04/06/social-networking-in-2050/</link>
		<comments>http://mpm17fall2009.wordpress.com/2010/04/06/social-networking-in-2050/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 03:47:32 +0000</pubDate>
		<dc:creator>Alex Jordan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[social networking]]></category>

		<guid isPermaLink="false">http://mpm17fall2009.wordpress.com/?p=1621</guid>
		<description><![CDATA[Project title: SociaLink (see link: http://www.imagearts.ryerson.ca/ajordan/soliv3/home.html ) Group members: Alex Jordan, David Yu, Jessie Cooper, Kim Sokolowski, Nicole Glassman<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1621&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<div>
<p><strong>Project title:</strong> SociaLink (see link:  <a href="http://www.imagearts.ryerson.ca/ajordan/soliv3/home.html">http://www.imagearts.ryerson.ca/ajordan/soliv3/home.html</a> )</p>
<p><strong>Group members: </strong>Alex Jordan, David Yu, Jessie Cooper,  Kim Sokolowski,  Nicole Glassman</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mpm17fall2009.wordpress.com/1621/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mpm17fall2009.wordpress.com/1621/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mpm17fall2009.wordpress.com/1621/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mpm17fall2009.wordpress.com/1621/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mpm17fall2009.wordpress.com/1621/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mpm17fall2009.wordpress.com/1621/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mpm17fall2009.wordpress.com/1621/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mpm17fall2009.wordpress.com/1621/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mpm17fall2009.wordpress.com/1621/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mpm17fall2009.wordpress.com/1621/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mpm17fall2009.wordpress.com/1621/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mpm17fall2009.wordpress.com/1621/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mpm17fall2009.wordpress.com/1621/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mpm17fall2009.wordpress.com/1621/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1621&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mpm17fall2009.wordpress.com/2010/04/06/social-networking-in-2050/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc6bab732918862492239678c2e0a2f5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Alex</media:title>
		</media:content>
	</item>
		<item>
		<title>Sarah, Lauren, Jenny, Sherilyn</title>
		<link>http://mpm17fall2009.wordpress.com/2010/04/06/bots/</link>
		<comments>http://mpm17fall2009.wordpress.com/2010/04/06/bots/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 01:02:00 +0000</pubDate>
		<dc:creator>jennyramroop</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mpm17fall2009.wordpress.com/?p=1614</guid>
		<description><![CDATA[Here&#8217;s the link to our website for Assignment 3: Network cultures in 2050: http://www.imagearts.ryerson.ca/jramroop/2050.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1614&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the link to our website for <strong>Assignment 3: Network cultures in 2050: </strong></p>
<p><a href="http://www.imagearts.ryerson.ca/jramroop/2050.html">http://www.imagearts.ryerson.ca/jramroop/2050.html </a><br />
<strong></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mpm17fall2009.wordpress.com/1614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mpm17fall2009.wordpress.com/1614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mpm17fall2009.wordpress.com/1614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mpm17fall2009.wordpress.com/1614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mpm17fall2009.wordpress.com/1614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mpm17fall2009.wordpress.com/1614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mpm17fall2009.wordpress.com/1614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mpm17fall2009.wordpress.com/1614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mpm17fall2009.wordpress.com/1614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mpm17fall2009.wordpress.com/1614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mpm17fall2009.wordpress.com/1614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mpm17fall2009.wordpress.com/1614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mpm17fall2009.wordpress.com/1614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mpm17fall2009.wordpress.com/1614/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1614&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mpm17fall2009.wordpress.com/2010/04/06/bots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8981bf775de7e971e65f25cbf53873e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jennyramroop</media:title>
		</media:content>
	</item>
		<item>
		<title>2050 Project &#8211; Genu-Flek</title>
		<link>http://mpm17fall2009.wordpress.com/2010/04/05/2050-project-genu-flek/</link>
		<comments>http://mpm17fall2009.wordpress.com/2010/04/05/2050-project-genu-flek/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 21:04:00 +0000</pubDate>
		<dc:creator>clarkayl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mpm17fall2009.wordpress.com/?p=1612</guid>
		<description><![CDATA[Here is a link to our mock-up website for Genu-Flek and Here is a link to our project documentation -Kayla Clark, Jordan Taylor &#38; Oscar Hazelaar<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1612&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.imagearts.ryerson.ca/kclark/Genu-Flek/Genu-Fleck.html">Here</a> is a link to our mock-up website for Genu-Flek</p>
<p>and <a href="http://www.imagearts.ryerson.ca/kclark/Genu-Flek_theTeam.html">Here</a> is a link to our project documentation</p>
<p>-Kayla Clark, Jordan Taylor &amp; Oscar Hazelaar</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mpm17fall2009.wordpress.com/1612/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mpm17fall2009.wordpress.com/1612/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mpm17fall2009.wordpress.com/1612/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mpm17fall2009.wordpress.com/1612/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mpm17fall2009.wordpress.com/1612/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mpm17fall2009.wordpress.com/1612/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mpm17fall2009.wordpress.com/1612/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mpm17fall2009.wordpress.com/1612/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mpm17fall2009.wordpress.com/1612/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mpm17fall2009.wordpress.com/1612/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mpm17fall2009.wordpress.com/1612/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mpm17fall2009.wordpress.com/1612/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mpm17fall2009.wordpress.com/1612/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mpm17fall2009.wordpress.com/1612/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1612&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mpm17fall2009.wordpress.com/2010/04/05/2050-project-genu-flek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c5183dfd85e8dfd5d86394fc5a53d1b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Kayla</media:title>
		</media:content>
	</item>
		<item>
		<title>What is HTML? (Reposted)</title>
		<link>http://mpm17fall2009.wordpress.com/2010/03/31/what-is-html-reposted/</link>
		<comments>http://mpm17fall2009.wordpress.com/2010/03/31/what-is-html-reposted/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 03:48:15 +0000</pubDate>
		<dc:creator>Jessie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mpm17fall2009.wordpress.com/?p=1608</guid>
		<description><![CDATA[This was done by Kim Sokolowski, Jessie Cooper, Liat Shalom and Chloe Martin<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1608&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This was done by Kim Sokolowski, Jessie Cooper, Liat Shalom and Chloe Martin</p>
<p><a href="http://mpm17fall2009.files.wordpress.com/2010/03/001.jpg"><img class="alignnone size-full wp-image-1601" title="001" src="http://mpm17fall2009.files.wordpress.com/2010/03/001.jpg?w=500&#038;h=500" alt="" width="500" height="500" /></a></p>
<p><a href="http://mpm17fall2009.files.wordpress.com/2010/03/002.jpg"><img class="alignnone size-full wp-image-1602" title="002" src="http://mpm17fall2009.files.wordpress.com/2010/03/002.jpg?w=500&#038;h=500" alt="" width="500" height="500" /></a></p>
<p><a href="http://mpm17fall2009.files.wordpress.com/2010/03/003.png"><img class="alignnone size-full wp-image-1603" title="003" src="http://mpm17fall2009.files.wordpress.com/2010/03/003.png?w=500&#038;h=500" alt="" width="500" height="500" /></a></p>
<p><a href="http://mpm17fall2009.files.wordpress.com/2010/03/004.png"><img class="alignnone size-full wp-image-1604" title="004" src="http://mpm17fall2009.files.wordpress.com/2010/03/004.png?w=500&#038;h=500" alt="" width="500" height="500" /></a></p>
<p><a href="http://mpm17fall2009.files.wordpress.com/2010/03/005.png"><img class="alignnone size-full wp-image-1605" title="005" src="http://mpm17fall2009.files.wordpress.com/2010/03/005.png?w=500&#038;h=500" alt="" width="500" height="500" /></a></p>
<p><a href="http://mpm17fall2009.files.wordpress.com/2010/03/006.png"><img class="alignnone size-full wp-image-1606" title="006" src="http://mpm17fall2009.files.wordpress.com/2010/03/006.png?w=500&#038;h=500" alt="" width="500" height="500" /></a></p>
<p><a href="http://mpm17fall2009.files.wordpress.com/2010/03/007.png"><img class="alignnone size-full wp-image-1607" title="007" src="http://mpm17fall2009.files.wordpress.com/2010/03/007.png?w=500&#038;h=500" alt="" width="500" height="500" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mpm17fall2009.wordpress.com/1608/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mpm17fall2009.wordpress.com/1608/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mpm17fall2009.wordpress.com/1608/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mpm17fall2009.wordpress.com/1608/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mpm17fall2009.wordpress.com/1608/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mpm17fall2009.wordpress.com/1608/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mpm17fall2009.wordpress.com/1608/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mpm17fall2009.wordpress.com/1608/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mpm17fall2009.wordpress.com/1608/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mpm17fall2009.wordpress.com/1608/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mpm17fall2009.wordpress.com/1608/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mpm17fall2009.wordpress.com/1608/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mpm17fall2009.wordpress.com/1608/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mpm17fall2009.wordpress.com/1608/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1608&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mpm17fall2009.wordpress.com/2010/03/31/what-is-html-reposted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/52df6c6ad661fb78ac0f6b2877bf1bf5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jessie</media:title>
		</media:content>

		<media:content url="http://mpm17fall2009.files.wordpress.com/2010/03/001.jpg" medium="image">
			<media:title type="html">001</media:title>
		</media:content>

		<media:content url="http://mpm17fall2009.files.wordpress.com/2010/03/002.jpg" medium="image">
			<media:title type="html">002</media:title>
		</media:content>

		<media:content url="http://mpm17fall2009.files.wordpress.com/2010/03/003.png" medium="image">
			<media:title type="html">003</media:title>
		</media:content>

		<media:content url="http://mpm17fall2009.files.wordpress.com/2010/03/004.png" medium="image">
			<media:title type="html">004</media:title>
		</media:content>

		<media:content url="http://mpm17fall2009.files.wordpress.com/2010/03/005.png" medium="image">
			<media:title type="html">005</media:title>
		</media:content>

		<media:content url="http://mpm17fall2009.files.wordpress.com/2010/03/006.png" medium="image">
			<media:title type="html">006</media:title>
		</media:content>

		<media:content url="http://mpm17fall2009.files.wordpress.com/2010/03/007.png" medium="image">
			<media:title type="html">007</media:title>
		</media:content>
	</item>
		<item>
		<title>Nicole Powell: MPM17 Final Project Process Work</title>
		<link>http://mpm17fall2009.wordpress.com/2010/03/28/nicole-powell-mpm17-final-project-process-work/</link>
		<comments>http://mpm17fall2009.wordpress.com/2010/03/28/nicole-powell-mpm17-final-project-process-work/#comments</comments>
		<pubDate>Sun, 28 Mar 2010 19:10:25 +0000</pubDate>
		<dc:creator>nicole</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mpm17fall2009.wordpress.com/?p=1598</guid>
		<description><![CDATA[Here is the page that I will update each week with my process work: Week 1- Developing Idea I wanted to do something based on the article below, the one that you told us to read during our Digital Natives classes. I&#8217;ve decided to do something based on the people of 2050, the mind-state of humans [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1598&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is the page that I will update each week with my process work:</p>
<p><strong>Week 1- Developing Idea</strong></p>
<p>I wanted to do something based on the article below, the one that you told us to read during our Digital Natives classes. I&#8217;ve decided to do something based on the people of 2050, the mind-state of humans in that era, in comparison to the mind-states of the Digital Natives. My narrative will be based on what we will do, how we will act, and the way we think in 2050. I will use the information gained from the article, <em>The Emerging Online Life of the Digital Native: What they do differently because of technology, and how they do it</em>, and research on technology we expect to see in the future to make an informed prediction of how our mind-states will evolve. Next week, I hope to come up with an idea of what type of media I will use to portray my findings, as well as how I will use it.</p>
<p><a href="http://tinyurl.com/aalvk">http://tinyurl.com/aalvk</a></p>
<p><strong>Week 2- Media Concept and Research</strong></p>
<p>I have decided that I will portray my information by way of a manifesto. Just as this generation is called the Digital Native, I will name the generation of 2050 and will create a manifesto for their way of life and their way of thinking. This manifesto, to make things more interesting, will be created using typography animation in Adobe Flash CS4. This week, I have done my research in order to create the manifesto. Next week, I will actually write the manifesto and come up with a name for the generation of 2050. If I have time, I will also do the technical research in how to create a typography animation piece.</p>
<p><em>Research</em></p>
<p><em>Summary of last week&#8217;s article posting:<br />
<span style="font-style:normal;"><a title="http://www48.zippyshare.com/v/17766809/file.html" href="http://www48.zippyshare.com/v/17766809/file.html" target="_blank">http://www48.zippyshare.com/v/17766809/file.html</a></span></em></p>
<p><em>Key points from a TEDtalk with Kevin Kelly:<br />
<span style="font-style:normal;"><a title="http://www48.zippyshare.com/v/11689296/file.html" href="http://www48.zippyshare.com/v/11689296/file.html" target="_blank">http://www48.zippyshare.com/v/11689296/file.html </a></span></em></p>
<p><em>Example of a typography animation:<br />
<span style="font-style:normal;"><a title="http://www.youtube.com/watch?v=pxkM3YTWu9s" href="http://www.youtube.com/watch?v=pxkM3YTWu9s" target="_blank">http://www.youtube.com/watch?v=pxkM3YTWu9s</a></span></em></p>
<p><em><span style="font-style:normal;"><strong>Week 3- Manifesto and Technical Research</strong></span></em></p>
<p><em><span style="font-style:normal;">I have written out my manifesto. I might need to shorten it or make it more concise when it comes to creating the typography animation, but I&#8217;ll try and fit it all in initially. I also managed to find an amazing tutorial on kinetic typography animations. The link to the manifesto and the tutorial are below. The final process update is the finished project. That will be posted on the due date.</span></em></p>
<p><span style="font-style:normal;"><em>Manifesto:<br />
<span style="font-style:normal;"><a title="http://www48.zippyshare.com/v/87411523/file.html" href="http://www48.zippyshare.com/v/87411523/file.html" target="_blank">http://www48.zippyshare.com/v/87411523/file.html</a></span></em></span></p>
<p><span style="font-style:normal;"><em>Kinetic Typography Tutorial:<br />
<span style="font-style:normal;"><a title="http://www.crookedgremlins.com/09/01/2008/kinetic-typography-tutorial/" href="http://www.crookedgremlins.com/09/01/2008/kinetic-typography-tutorial/" target="_blank">http://www.crookedgremlins.com/09/01/2008/kinetic-typography-tutorial/</a></span></em></span></p>
<p><strong>Process Week 4</strong></p>
<p>After much hassle, I finally got the final project to work. As I did not present in class, I wanted to show you how I would have presented it by adding a voice over to the final video. It is a manifesto for the generation of 2050 that describes their mind-state and way of life. Click the link below to  go to the video:</p>
<p>http://www.imagearts.ryerson.ca/npowell/mpm17/2050.html</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mpm17fall2009.wordpress.com/1598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mpm17fall2009.wordpress.com/1598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mpm17fall2009.wordpress.com/1598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mpm17fall2009.wordpress.com/1598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mpm17fall2009.wordpress.com/1598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mpm17fall2009.wordpress.com/1598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mpm17fall2009.wordpress.com/1598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mpm17fall2009.wordpress.com/1598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mpm17fall2009.wordpress.com/1598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mpm17fall2009.wordpress.com/1598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mpm17fall2009.wordpress.com/1598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mpm17fall2009.wordpress.com/1598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mpm17fall2009.wordpress.com/1598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mpm17fall2009.wordpress.com/1598/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mpm17fall2009.wordpress.com&amp;blog=9367265&amp;post=1598&amp;subd=mpm17fall2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mpm17fall2009.wordpress.com/2010/03/28/nicole-powell-mpm17-final-project-process-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c13aa5fc8fef64e524dac187a8b764e6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nicole</media:title>
		</media:content>
	</item>
	</channel>
</rss>
