<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/wordpress-mu-1.2.3-2.2.1" -->
<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/"
	>

<channel>
	<title>My ITP Blog</title>
	<link>http://itp.nyu.edu/blogs/al861</link>
	<description></description>
	<pubDate>Thu, 02 Oct 2008 19:40:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=wordpress-mu-1.2.3-2.2.1</generator>
	<language>en</language>
			<item>
		<title>Project#1:  Recontextualizing the Aztec Book</title>
		<link>http://itp.nyu.edu/blogs/al861/2008/10/01/project1-recontextualizing-the-aztec-book/</link>
		<comments>http://itp.nyu.edu/blogs/al861/2008/10/01/project1-recontextualizing-the-aztec-book/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 01:37:52 +0000</pubDate>
		<dc:creator>al861</dc:creator>
		
		<category><![CDATA[Frame By Frame]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/blogs/al861/2008/10/01/project1-recontextualizing-the-aztec-book/</guid>
		<description><![CDATA[For our first major project, I wanted to see if I could make the amazing visuals in different Mesoamerican Aztec codices move.  These codices were manuscripts from modern-day Mexico and chronicled the history (imagined and real) and visual art of the Aztec people.  Starting from their departure from the island of Aztlan and ending with [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />For our first major project, I wanted to see if I could make the amazing visuals in different Mesoamerican Aztec codices move.  These codices were manuscripts from modern-day Mexico and chronicled the history (imagined and real) and visual art of the Aztec people.  Starting from their departure from the island of Aztlan and ending with Spanish subjugation, their history is rich and unforgettable.  The Spaniards destroyed the majority of these texts in the years following 1492, but some survived. They are now housed in places like the Vatican and the Bibliotheque Nacionale de Paris, so needless to say the originals are practically inaccessible.</p>
<p>I chose three manuscripts as my sources:</p>
<p>Codex Borgia-believed to have been composed prior to 1492, this chronicles the various calendarsof the Aztecs.</p>
<p>Codex Boturini-written between 1530-1542, this manuscript is in black and white and records Aztechistory from the departure from Aztlan to the settlement at Tenochtitlan (Mexico City).</p>
<p>Codex Azcatitlan-put together over several decades in the 16th c, this codex starts with Aztlan and goes all the way to Spanish conquest and colonization.</p>
<p>Here are some of the original pictures that I used:</p>
<p><a href="http://itp.nyu.edu/blogs/al861/files/borgia_plate3_small.jpg" title="borgia"><img src="http://itp.nyu.edu/blogs/al861/files/borgia_plate3_small.thumbnail.jpg" alt="borgia" /></a> (Plate from the Codex Borgia)</p>
<p><a href="http://itp.nyu.edu/blogs/al861/files/boturini12_b.jpg" title="boturini"><img src="http://itp.nyu.edu/blogs/al861/files/boturini12_b.thumbnail.jpg" alt="boturini" /></a> (Mexica leaving the island of Aztlan)</p>
<p><a href="http://itp.nyu.edu/blogs/al861/files/azcatitlan_mar_small.jpg" title="mar"><img src="http://itp.nyu.edu/blogs/al861/files/azcatitlan_mar_small.thumbnail.jpg" alt="mar" /></a> (Azcatitlan_encounter w/ Spaniards at sea &amp; on land)</p>
<p>This was really an exercise to see if working with such sources would be manageable or not, so needless to say, the end product is not perfect!</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/blogs/al861/2008/10/01/project1-recontextualizing-the-aztec-book/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HW2-Practice with Eclipse</title>
		<link>http://itp.nyu.edu/blogs/al861/2008/09/17/hw2-practice-with-eclipse/</link>
		<comments>http://itp.nyu.edu/blogs/al861/2008/09/17/hw2-practice-with-eclipse/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 21:36:56 +0000</pubDate>
		<dc:creator>al861</dc:creator>
		
		<category><![CDATA[Frame By Frame]]></category>

		<category><![CDATA[ITP]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/blogs/al861/2008/09/17/hw2-practice-with-eclipse/</guid>
		<description><![CDATA[This week, I made a very simple bouncing ball animation with Eclipse (with Processing core.jar library imported).  Hitting the borders will change the fill color of the ball.  Here is the code:
import processing.core.PApplet;
//simple animation with a bouncing ball changing color
 public class Practice_Hello extends PApplet{
   int x=(int) random(1,100);
    int y=(int) random(1,100);
    int xspeed=1;
    int yspeed=1;
   
   public [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />This week, I made a very simple bouncing ball animation with Eclipse (with Processing core.jar library imported).  Hitting the borders will change the fill color of the ball.  Here is the code:</p>
<p>import processing.core.PApplet;</p>
<p>//simple animation with a bouncing ball changing color</p>
<p> public class Practice_Hello extends PApplet{<br />
   int x=(int) random(1,100);<br />
    int y=(int) random(1,100);<br />
    int xspeed=1;<br />
    int yspeed=1;<br />
   <br />
   public void setup(){<br />
    size(200, 200);<br />
    println(&#8221;Hello World&#8221;);<br />
   }<br />
   <br />
   public void draw(){ <br />
  <br />
    x=x+xspeed;<br />
    y=y+yspeed;</p>
<p>    //part for xspeed<br />
    if(x&gt;width) {<br />
     xspeed=xspeed* -1;<br />
     fill(255,0,0);<br />
    }<br />
   <br />
    if(x&lt;0) {<br />
     xspeed=xspeed* -1;<br />
     fill(0,255,0);<br />
    }</p>
<p>    //part for yspeed<br />
    if (y&gt;height) {<br />
     yspeed=yspeed* -1;<br />
     fill(0,0,255);<br />
    }<br />
   <br />
    if(y&lt;0) {<br />
     yspeed=yspeed* -1;<br />
      fill(100,0,100);<br />
    }<br />
  <br />
    background(100);<br />
    ellipse(x, y,30,30);<br />
   }<br />
  }</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/blogs/al861/2008/09/17/hw2-practice-with-eclipse/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cognitive Science II and Educational Technology</title>
		<link>http://itp.nyu.edu/blogs/al861/2008/09/14/cognitive-science-ii-and-educational-technology/</link>
		<comments>http://itp.nyu.edu/blogs/al861/2008/09/14/cognitive-science-ii-and-educational-technology/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 00:08:57 +0000</pubDate>
		<dc:creator>al861</dc:creator>
		
		<category><![CDATA[CognitiveScience_ECT]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/blogs/al861/2008/09/14/cognitive-science-ii-and-educational-technology/</guid>
		<description><![CDATA[This Fall &#8216;08, I am taking a Steinhardt course entitled &#8220;Cognitive Science II and Educational Technology&#8221;.  We are exploring the ways in which technology-rich environments relate to individual and group cognition.  After gaining an overview of the history of cognitive science and the leading learning theories at play, we will explore specific uses of emerging [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />This Fall &#8216;08, I am taking a Steinhardt course entitled &#8220;Cognitive Science II and Educational Technology&#8221;.  We are exploring the ways in which technology-rich environments relate to individual and group cognition.  After gaining an overview of the history of cognitive science and the leading learning theories at play, we will explore specific uses of emerging media and other technologies for educational purposes.</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/blogs/al861/2008/09/14/cognitive-science-ii-and-educational-technology/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Response1: &#8220;Computers, the Internet, and New Media for Learning&#8221;</title>
		<link>http://itp.nyu.edu/blogs/al861/2008/09/14/response1-computers-the-internet-and-new-media-for-learning/</link>
		<comments>http://itp.nyu.edu/blogs/al861/2008/09/14/response1-computers-the-internet-and-new-media-for-learning/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 00:06:09 +0000</pubDate>
		<dc:creator>al861</dc:creator>
		
		<category><![CDATA[CognitiveScience_ECT]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/blogs/al861/2008/09/14/response1-computers-the-internet-and-new-media-for-learning/</guid>
		<description><![CDATA[Reflections on “Computers, the Internet, and New Media for Learning” by R. Goldman-Segall and J. Maxwell. In W.M. Reynolds &#38; G.E. Miller (Eds.) Handbook of Psychology. Volume 7: Educational Psychology (pp. 393-427). New York: John Wiley and Sons.
Goldman-Segall and Maxwell argue for the adoption of their Points of View theory in thinking about how computers [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />Reflections on “Computers, the Internet, and New Media for Learning” by R. Goldman-Segall and J. Maxwell. In W.M. Reynolds &amp; G.E. Miller (Eds.) <em>Handbook of Psychology</em>. Volume 7: Educational Psychology (pp. 393-427). New York: John Wiley and Sons.</p>
<p>Goldman-Segall and Maxwell argue for the adoption of their Points of View theory in thinking about how computers and digital applications should be used and designed for educational purposes. This view considers the technologies of emerging media as “lenses to explore both self and world through layering viewpoints and looking for underlying patterns that lead to agreement, disagreement, and understanding” (406).</p>
<p> The authors situate their theory within the various ways that theorists have viewed the role that technology plays in cognition. Technology can serve as a learning source, curriculum area, communications media, thinking tool, environment, partner, scaffold and perspectivity toolkit, and writers such as Hiltz, Papert, Scardamalia, Bereiter, and Goldman-Segall provide convincing evidence for the particular roles that they support. The span of these roles actually corresponds closely to the growth of cognitive science, which in the mid-1950s was the study of the mind as some sort of hardwired system which responded to the outside world.</p>
<p>Gardner (1985) chronicles the problematic development of cognitive science and notes that in articulating practical models of learning, subjective, individual areas such as affectation and culture were deemphasized in favor of areas considered more universal and scientific. Additionally, newly developed computers were seen as appropriate tools for facilitating learning since there was a clear “analogy to the human system and to human thought processes” (Gardner 2).</p>
<p> The influence of Vygotsky’s theory of learning as incorporating the social and Winograd’s and Flores’s decentered and situated learning made it possible for theorists to consider technology as enabling “learners to participate as members of communities experiencing and creating new worlds from the points of viewing of their diverse personal identities” (398). This approach allows learner specificities such as culture, ethnicity and gender to play a role in the implementation and design of computer-based and digital learning tools.</p>
<p>The authors provide a very helpful survey of the major tools thus far developed, and explain the theoretical underpinnings informing each application’s design. Since I come from a literature background, the most interesting idea comes from Papert, who “called for an examination of the culture-building implications of Logo practice, and for something he called ‘computer criticism,’ which he proposed as akin to literary criticism” (417). This is a very astute remark since theorists, especially when equipped with certain postmodernist and poststructuralist approaches, were able to view, and acknowledge that they were viewing texts through certain lenses.</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/blogs/al861/2008/09/14/response1-computers-the-internet-and-new-media-for-learning/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Borges y DQ: HW1</title>
		<link>http://itp.nyu.edu/blogs/al861/2008/09/13/borges-y-dq-hw1/</link>
		<comments>http://itp.nyu.edu/blogs/al861/2008/09/13/borges-y-dq-hw1/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 15:11:39 +0000</pubDate>
		<dc:creator>al861</dc:creator>
		
		<category><![CDATA[Frame By Frame]]></category>

		<category><![CDATA[ITP]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/blogs/al861/2008/09/13/borges-y-dq-hw1/</guid>
		<description><![CDATA[For this week&#8217;s assignment, we had to do a simple example of recontextualization.  I selected one of my favorite photos of the Argentine writers, Jorge Luis Borges, since he is one of the great masters of linguistic and thematic recontextualization.  This photo is specifically referencing the idea that &#8220;Every novel is an ideal plane inserted [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />For this week&#8217;s assignment, we had to do a simple example of recontextualization.  I selected one of my favorite photos of the Argentine writers, <a href="http://en.wikipedia.org/wiki/Jorge_Luis_Borges" title="Jorge Luis Borges">Jorge Luis Borges</a>, since he is one of the great masters of linguistic and thematic recontextualization.  This photo is specifically referencing the idea that &#8220;Every novel is an ideal plane inserted into the realm of reality.&#8221;</p>
<p><a href="http://itp.nyu.edu/blogs/al861/files/borgesydq.jpg" title="BorgesyDQ"><img src="http://itp.nyu.edu/blogs/al861/files/borgesydq.thumbnail.jpg" alt="BorgesyDQ" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/blogs/al861/2008/09/13/borges-y-dq-hw1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mixed_Nutz: Day 5 of 5-in-5</title>
		<link>http://itp.nyu.edu/blogs/al861/2008/08/01/mixed_nutz-day-5-of-5-in-5/</link>
		<comments>http://itp.nyu.edu/blogs/al861/2008/08/01/mixed_nutz-day-5-of-5-in-5/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 21:28:21 +0000</pubDate>
		<dc:creator>al861</dc:creator>
		
		<category><![CDATA[5-in-5]]></category>

		<category><![CDATA[ITP]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/blogs/al861/2008/08/01/mixed_nutz-day-5-of-5-in-5/</guid>
		<description><![CDATA[Today I made an interactive bowl of party nutz, which shake and shout the closer you get.  The ER was closed today, so here is a pic that I took last night of the prepared motors.  I will take more and load them soon.  These motors were then embedded in real peanut shells, fed through [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />Today I made an interactive bowl of party nutz, which shake and shout the closer you get.  The ER was closed today, so here <a href="http://itp.nyu.edu/blogs/al861/files/motors.jpg" title="motors.jpg"><img src="http://itp.nyu.edu/blogs/al861/files/motors.thumbnail.jpg" alt="motors.jpg" /></a>is a pic that I took last night of the prepared motors.  I will take more and load them soon.  These motors were then embedded in real peanut shells, fed through the bottom of a plastic bowl, and then decorated w/ regular peanuts.  Next was hooking up a simple recording device which supplied the sound and voila!  Mixed Nutz.!</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/blogs/al861/2008/08/01/mixed_nutz-day-5-of-5-in-5/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Out2Sea</title>
		<link>http://itp.nyu.edu/blogs/al861/2008/07/31/out2sea/</link>
		<comments>http://itp.nyu.edu/blogs/al861/2008/07/31/out2sea/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 23:20:33 +0000</pubDate>
		<dc:creator>al861</dc:creator>
		
		<category><![CDATA[5-in-5]]></category>

		<category><![CDATA[ITP]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/blogs/al861/2008/07/31/out2sea/</guid>
		<description><![CDATA[Today was another work day, so I decided to do a short animation with AfterEffects.  Since I have practically no experience with the program, I wanted to see if I could animate one of my favorite pictures ever.  Here is my inspiration for Day #4 of 5-in-5:
I took this picture when some of [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />Today was another work day, so I decided to do a short animation with AfterEffects.  Since I have practically no experience with the program, I wanted to see if I could animate one of my favorite pictures ever.  Here is my inspiration for Day #4 of 5-in-5:<a href="http://itp.nyu.edu/blogs/al861/files/lakepic1.jpg" title="lakepic"><img src="http://itp.nyu.edu/blogs/al861/files/lakepic1.thumbnail.jpg" alt="lakepic" /></a></p>
<p>I took this picture when some of my friends and I were coming back from a weekend on Amantani Island on Lake Titicaca (in Peru), and it was breathtaking.  I wanted to see if I could deconstruct this picture in AfterEffects and make the water, clouds, and sunlight move, so <a href="http://www.vimeo.com/1444965">here</a> is the finished result.  The resolution is relatively low because I wanted to minimize render time and disk space.</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/blogs/al861/2008/07/31/out2sea/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The U Can&#8217;t Resistor Me Dress-Day3 of 5-in-5</title>
		<link>http://itp.nyu.edu/blogs/al861/2008/07/30/the-u-cant-resistor-me-dress-day3-of-5-in-5/</link>
		<comments>http://itp.nyu.edu/blogs/al861/2008/07/30/the-u-cant-resistor-me-dress-day3-of-5-in-5/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 01:09:52 +0000</pubDate>
		<dc:creator>al861</dc:creator>
		
		<category><![CDATA[5-in-5]]></category>

		<category><![CDATA[ITP]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/blogs/al861/2008/07/30/the-u-cant-resistor-me-dress-day3-of-5-in-5/</guid>
		<description><![CDATA[For Day#3, I tried a wearable, and almost made it to completion.  I hit a snag at the very end when my Lilypad Arduino would not upload.  I am going to continue debugging to try and figure out why it will not upload programs.  I began by selecting a pattern and cutting it out and [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />For Day#3, I tried a wearable, and almost made it to completion.  I hit a snag at the very end when my Lilypad Arduino would not upload.  I am going to continue debugging to try and figure out why it will not upload programs.  I began by selecting a pattern and cutting it out and sewing it up. <a href="http://itp.nyu.edu/blogs/al861/files/pattern.jpg" title="pattern.jpg"><img src="http://itp.nyu.edu/blogs/al861/files/pattern.thumbnail.jpg" alt="pattern.jpg" /></a></p>
<p>Here are some pictures of the finished dress before the circuitry was added, and details of the collar region with circuitry:</p>
<p><a href="http://itp.nyu.edu/blogs/al861/files/dress.jpg" title="dress.jpg"><img src="http://itp.nyu.edu/blogs/al861/files/dress.thumbnail.jpg" alt="dress.jpg" /></a></p>
<p>In these two pictures, ou can see the green USB component to upload programs to the Lilypad.  Unfortunately, this is where I hit a snag.</p>
<p><a href="http://itp.nyu.edu/blogs/al861/files/collar_front.jpg" title="collar_front.jpg"><img src="http://itp.nyu.edu/blogs/al861/files/collar_front.thumbnail.jpg" alt="collar_front.jpg" /></a> (front side of collar region-the collar is adorned with rhinestones, leds and a Lilypad Arduino)      <a href="http://itp.nyu.edu/blogs/al861/files/collar_back.jpg" title="collar_back.jpg"><img src="http://itp.nyu.edu/blogs/al861/files/collar_back.thumbnail.jpg" alt="collar_back.jpg" /></a> (underside of collar region)</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/blogs/al861/2008/07/30/the-u-cant-resistor-me-dress-day3-of-5-in-5/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PCompatible Earrings_5-in-5 Day #2</title>
		<link>http://itp.nyu.edu/blogs/al861/2008/07/29/pcompatible-earrings_5-in-5-day-2/</link>
		<comments>http://itp.nyu.edu/blogs/al861/2008/07/29/pcompatible-earrings_5-in-5-day-2/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 00:02:27 +0000</pubDate>
		<dc:creator>al861</dc:creator>
		
		<category><![CDATA[5-in-5]]></category>

		<category><![CDATA[ITP]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/blogs/al861/2008/07/29/pcompatible-earrings_5-in-5-day-2/</guid>
		<description><![CDATA[Today I made the PCompatible Earrings, earrings made of physical computing parts.  I wanted a short design exercise since I work today, so yesterday I made these sketches: 
Ultimately, though, I let the components themselves dictate the design.  I will let you see which parts you can identify. Here is the finished result:


Be [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />Today I made the PCompatible Earrings, earrings made of physical computing parts.  I wanted a short design exercise since I work today, so yesterday I made these sketches: <a href="http://itp.nyu.edu/blogs/al861/files/earring_designs.jpg" title="designs"><img src="http://itp.nyu.edu/blogs/al861/files/earring_designs.thumbnail.jpg" alt="designs" /></a></p>
<p>Ultimately, though, I let the components themselves dictate the design.  I will let you see which parts you can identify. Here is the finished result:</p>
<p><a href="http://itp.nyu.edu/blogs/al861/files/earrings1.jpg" title="earrings1"><img src="http://itp.nyu.edu/blogs/al861/files/earrings1.thumbnail.jpg" alt="earrings1" /></a></p>
<p><a href="http://itp.nyu.edu/blogs/al861/files/earrings2.jpg" title="earrings2"><img src="http://itp.nyu.edu/blogs/al861/files/earrings2.thumbnail.jpg" alt="earrings2" /></a></p>
<p>Be sure to check out all of the 5-in-5 Day#2 projects <a href="http://5-in-5.com/category/day-2/" title="Day2_5-in-5">here</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/blogs/al861/2008/07/29/pcompatible-earrings_5-in-5-day-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Welcome Robot 1.5_DAY1 of 5-in-5</title>
		<link>http://itp.nyu.edu/blogs/al861/2008/07/28/welcome-robot-15_day1-of-5-in-5/</link>
		<comments>http://itp.nyu.edu/blogs/al861/2008/07/28/welcome-robot-15_day1-of-5-in-5/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 00:22:38 +0000</pubDate>
		<dc:creator>al861</dc:creator>
		
		<category><![CDATA[5-in-5]]></category>

		<category><![CDATA[ITP]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/blogs/al861/2008/07/28/welcome-robot-15_day1-of-5-in-5/</guid>
		<description><![CDATA[Here is a link to DAY 1 of the first ever ITP 5-in-5 Project.  The premise is that all participants create 5 different projects each for 5 days!  It is going to be AMAZING!
http://5-in-5.com 
]]></description>
			<content:encoded><![CDATA[<p id="top" />Here is a link to DAY 1 of the first ever ITP 5-in-5 Project.  The premise is that all participants create 5 different projects each for 5 days!  It is going to be AMAZING!</p>
<p><a href="http://5-in-5.com" title="5-in-5">http://5-in-5.com </a></p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/blogs/al861/2008/07/28/welcome-robot-15_day1-of-5-in-5/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
