<?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/"
	>

<channel>
	<title>Mixing and Remixing Information &#187; Uncategorized</title>
	<atom:link href="http://blog.mixingandremixing.info/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mixingandremixing.info</link>
	<description>A course on mashups and information reuse at the UC Berkeley School of Information</description>
	<lastBuildDate>Mon, 03 May 2010 21:36:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>installing simplejson on ischool.berkeley.edu</title>
		<link>http://blog.mixingandremixing.info/2010/04/25/installing-simplejson-on-ischool-berkeley-edu/</link>
		<comments>http://blog.mixingandremixing.info/2010/04/25/installing-simplejson-on-ischool-berkeley-edu/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 21:28:52 +0000</pubDate>
		<dc:creator>raymond.yee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=1015</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=installing+simplejson+on+ischool.berkeley.edu&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-04-25&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/04/25/installing-simplejson-on-ischool-berkeley-edu/&amp;rft.language=English"></span>
On your own notebook computers with one central site-packages for your python setup, follow instructions at http://pypi.python.org/pypi/setuptools One way is to download http://peak.telecommunity.com/dist/ez_setup.py and run it (i.e., python ez_setup.py) Then you&#8217;ll be able to do easy_install simplejson &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- on people.ischool.berkeley.edu: add to ~/.cshrc: setenv PYTHONPATH ~/lib/python2.5/site-packages then you can run source ~/.cshrc setup your virtual [...]]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=installing+simplejson+on+ischool.berkeley.edu&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-04-25&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/04/25/installing-simplejson-on-ischool-berkeley-edu/&amp;rft.language=English"></span>
<p>On your own notebook computers with one central site-packages for your python setup, follow instructions at <a href="http://pypi.python.org/pypi/setuptools">http://pypi.python.org/pypi/setuptools</a></p>
<p>One way is to download <a href="http://peak.telecommunity.com/dist/ez_setup.py">http://peak.telecommunity.com/dist/ez_setup.py</a></p>
<p>and run it (i.e., python ez_setup.py)</p>
<p>Then you&#8217;ll be able to do</p>
<p>easy_install simplejson</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>on people.ischool.berkeley.edu:</p>
<p>add to ~/.cshrc:</p>
<p>setenv PYTHONPATH ~/lib/python2.5/site-packages</p>
<p>then you can run</p>
<p>source ~/.cshrc</p>
<p>setup your virtual python:</p>
<p>wget http://svn.python.org/projects/sandbox/trunk/setuptools/virtual-python.py<br />
python virtual-python.py</p>
<p>This sets up a custom python environment that you can run from ~/bin</p>
<p>wget http://peak.telecommunity.com/dist/ez_setup.py</p>
<p>~/bin/python ez_setup.py &#8211;prefix=~</p>
<p>Now you&#8217;re ready to install simplejson</p>
<p>~/bin/easy_install &#8211;prefix=~ simplejson</p>
<p>Demo of http://people.ischool.berkeley.edu/~rdhyee/cgi-bin/testsimplejson.py</p>
<p>#!/home/rdhyee/bin/python</p>
<p>import simplejson as json<br />
print &#8220;Content-Type: application/json&#8221;<br />
print</p>
<p>m = {&#8216;states&#8217;:{&#8216;CA&#8217;:'California&#8217;, &#8216;NY&#8217;:'New York&#8217;, &#8216;MM&#8217;:None}, &#8216;provinces&#8217;:{&#8216;ON&#8217;:'Ontario&#8217;,'BC&#8217;:'British Columbia&#8217;}}<br />
m_json = json.dumps(m)<br />
print m_json</p>
<p>Optional &#8212; to install <a href="http://pypi.python.org/pypi/virtualenv">virtualenv</a></p>
<p>~/bin/easy_install &#8211;prefix=~ virtualenv</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2010/04/25/installing-simplejson-on-ischool-berkeley-edu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 24:  Reminders</title>
		<link>http://blog.mixingandremixing.info/2010/04/21/day-24-reminders/</link>
		<comments>http://blog.mixingandremixing.info/2010/04/21/day-24-reminders/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 19:39:42 +0000</pubDate>
		<dc:creator>raymond.yee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=1010</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+24%3A++Reminders&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-04-21&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/04/21/day-24-reminders/&amp;rft.language=English"></span>
A reminder of the schedule: Day 26 Wed 2010-04-28 Project Presentations I Day 27 Mon 2010-05-03 Project Presentations II Day 28 Wed 2010-05-05 Open House Pick which day you want to present on and let me know.  Presentations are up to 15 minutes. Written reports are due on Wednesday, May 5 in class. &#8212;&#8212;- http://flickrworld.appspot.com/static/gmapflickr.html [...]]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+24%3A++Reminders&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-04-21&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/04/21/day-24-reminders/&amp;rft.language=English"></span>
<p>A reminder of the schedule:</p>
<table>
<tbody>
<tr>
<td>Day 26</td>
<td>Wed 2010-04-28</td>
<td>Project Presentations I</td>
</tr>
<tr>
<td>Day 27</td>
<td>Mon 2010-05-03</td>
<td>Project Presentations II</td>
</tr>
<tr>
<td>Day 28</td>
<td>Wed 2010-05-05</td>
<td>Open House</td>
</tr>
</tbody>
</table>
<p>Pick which day you want to present on and let me know.  Presentations are up to 15 minutes.</p>
<p>Written reports are due on Wednesday, May 5 in class.</p>
<p>&#8212;&#8212;-</p>
<p><a href="http://flickrworld.appspot.com/static/gmapflickr.html">http://flickrworld.appspot.com/static/gmapflickr.html</a></p>
<p>I rewrote most of the code in Ch 10 to run using Python on the I School server.  See</p>
<p><a href="http://people.ischool.berkeley.edu/%7Erdhyee/s10/day24/gmapflickr.html">http://people.ischool.berkeley.edu/~rdhyee/s10/day24/gmapflickr.html</a></p>
<p>The proxy code is at <a href="http://people.ischool.berkeley.edu/%7Erdhyee/s10/day24/flickrgeo.py">http://people.ischool.berkeley.edu/~rdhyee/s10/day24/flickrgeo.py</a> &#8212; the proxy runs at <a href="http://people.ischool.berkeley.edu/%7Erdhyee/cgi-bin/s10/day24/flickrgeo.py">http://people.ischool.berkeley.edu/~rdhyee/cgi-bin/s10/day24/flickrgeo.py</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2010/04/21/day-24-reminders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 7 Notes</title>
		<link>http://blog.mixingandremixing.info/2010/02/10/day-7-notes/</link>
		<comments>http://blog.mixingandremixing.info/2010/02/10/day-7-notes/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 20:31:30 +0000</pubDate>
		<dc:creator>raymondyee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=754</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+7+Notes&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-02-10&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/02/10/day-7-notes/&amp;rft.language=English"></span>
See the notes.]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+7+Notes&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-02-10&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/02/10/day-7-notes/&amp;rft.language=English"></span>
<p>See the <a href="http://blog.mixingandremixing.info/s10/day07/">notes</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2010/02/10/day-7-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 6 First look at programming APIs</title>
		<link>http://blog.mixingandremixing.info/2010/02/08/day06/</link>
		<comments>http://blog.mixingandremixing.info/2010/02/08/day06/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 20:20:15 +0000</pubDate>
		<dc:creator>raymondyee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=706</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+6+First+look+at+programming+APIs&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-02-08&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/02/08/day06/&amp;rft.language=English"></span>
Notes to be filled out as we go &#8212; please post your answers to exercises #1 and #2 as responses to the Day 6 notes.]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+6+First+look+at+programming+APIs&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-02-08&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/02/08/day06/&amp;rft.language=English"></span>
<p><a href="http://blog.mixingandremixing.info/s10/day06/">Notes</a> to be filled out as we go &#8212; please post your answers to exercises #1 and #2 as responses to the <a href="http://blog.mixingandremixing.info/s10/day06/">Day 6 notes</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2010/02/08/day06/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Today is the Spring 2009 Open House</title>
		<link>http://blog.mixingandremixing.info/2009/05/11/today-is-the-spring-2009-open-house/</link>
		<comments>http://blog.mixingandremixing.info/2009/05/11/today-is-the-spring-2009-open-house/#comments</comments>
		<pubDate>Mon, 11 May 2009 16:57:04 +0000</pubDate>
		<dc:creator>raymond.yee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=483</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Today+is+the+Spring+2009+Open+House&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2009-05-11&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2009/05/11/today-is-the-spring-2009-open-house/&amp;rft.language=English"></span>
On behalf of my students in the Mixing and Remixing Information Spring 2009 class, I&#8217;d like to invite you to our Open House: Monday, May 11 12:45-2pm 110 South Hall, UC Berkeley Bring your friends along and forward this email to others you think will be interested.  All are welcome. At the Open House, students [...]]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Today+is+the+Spring+2009+Open+House&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2009-05-11&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2009/05/11/today-is-the-spring-2009-open-house/&amp;rft.language=English"></span>
<div class="moz-text-html" lang="x-western">
<div class="moz-text-html" lang="x-western">
<div class="moz-text-html" lang="x-western">On behalf of my students in the Mixing and Remixing Information Spring 2009 class, I&#8217;d like to invite you to our Open House:</p>
<p>Monday, May 11 12:45-2pm<br />
110 South Hall, UC Berkeley</p>
<p>Bring your friends along and forward this email to others you think will be interested.  All are welcome.</p>
<p>At the Open House, students will be presenting their semester-long projects, which all reuse or recombine information to create something new.  We will be setting up the room for poster-style presentations.  Light refreshments will be served. Please feel free to drop by anytime during the hour to see some demos and talk to the students.  I think that you&#8217;ll be impressed by the imagination and hard work of the projects.</p>
<p>For more information, please contact feel contact me (Raymond Yee  &#8212; <a class="moz-txt-link-abbreviated" href="mailto:yee@berkeley.edu">yee@berkeley.edu</a>)</p>
<p>Six projects will be presented.  See <a class="moz-txt-link-freetext" href="../s09/class-projects/">http://blog.mixingandremixing.info/s09/class-projects/</a> for an updated listing:</p>
<p class="paragraph"><strong>WattzonFacebook</strong><br />
Becky Hurwitz</p>
<p class="paragraph">Wattzon creates tools for people to understand the energy they use in the various activities of their lives. The company believes that if we know more about the embodied energy consumption of the things and activities in our lives, that we will begin to look for alternative things and activities to reduce our personal energy consumption. I believe that we might use even less energy if we know more about other people’s energy uses. This mashup is a Facebook application that takes advantage of the Wattzon API to allow Facebook users to share their Wattzon energy consumption data with one another.</p>
<p class="paragraph"><strong>Personal Online Activity Aggregator </strong><br />
Stephanie Pakrul</p>
<p class="paragraph">Going a step beyond lifestreaming, this mashup collects data using a local desktop application and Drupal-based web app. Focused on data collected via the RescueTime service, it aggregates desktop and web browser activity, along with email and other communication logs, with publicly available RSS feeds. This provides a more complete picture of one’s computer and online activity in one central location, which can be shared online.</p>
<p class="paragraph"><strong>India Votes </strong><br />
Gopal Vaswani</p>
<p class="paragraph">Indian General Election is the largest election held in the world and an average Indian is very much involved with the election process. There are discussions and debates in all quarters of the country about the effectiveness of the current government and predictions for the next government. I am motivated to help in this discussion and debate through the use of mixing-remixing course project. It is practically impossible to cover all aspects of the election for the purpose of this project so I have decided to focus on providing a small set of information which can help people conduct debates and discussion and know more about their constituency. Currently there is limited tool and information available online where a user can view the election history of any particular Indian constituency. People interested in politics would very much like to growth or decline of political parties over the years in a specific constituency. This data will satisfy the curious, prompt debate and might provide a prediction for the next election.</p>
<p class="paragraph"><strong>Sempervitae.org </strong><br />
Ben Cohen, Michael Lissner, and Nat Wharton</p>
<p class="paragraph">As more and more personal information moves online, a need for digital curation develops that needs to be addressed. Sempervitae.org aims to help people manage their digital assets while they are alive so that after their death, a friend or family member can take specific actions on their behalf.</p>
<p class="paragraph">Sempervitae.org is a django-based mashup between facebook, google, and twitter. It allows you to import your google contacts for use throughout the site, post a status update on facebook, send one last tweet after your death, and to close your twitter account, should you desire.</p>
<p class="paragraph"><strong>FoodieMash </strong><br />
Andy Brooks and Donna Leo</p>
<p class="paragraph">You’re hungry. You want to try a new restaurant in your area, but don’t want to surf multiple restaurant review sites. And you want to know what the restaurant or its food looks like. Does it look hip? Is the food presented as a work of art?</p>
<p class="paragraph">FoodieMash takes user-contributed restaurant ratings from popular sites and presents them in a simple interface. Users enter the type of food they’d like to eat and we gather together the ratings for the matching restaurants that are in close proximity. Rather than having to separately navigate to Yelp, Yahoo Local, and other review sites to find a good restaurant, you can simply go to FoodieMash. And to help you better gauge if it’s your type of place, we show you a matching photograph from Flickr.</p>
<p class="paragraph"><strong>Dora.fm </strong><br />
Isaac Salier-Hellendag</p>
<p class="paragraph"><span class="nobr"><a href="http://dora.fm/" target="rwikiexternal">http://dora.fm</a></span></p>
<p class="paragraph">Dora is a mashup of Pandora streaming internet radio and Twitter, the fast-growing “micoblogging” service. The goal is to streamline tweets about what Pandora’s playing for Twitter users, so that it’s easier to communicate and share your thoughts about the music you’re hearing, and maybe explore some new music while you’re at it. Sure, Gtalk and AIM provide a way for you to broadcast info about your iTunes music through your status/away message. But if we’re talking music and status updates in ‘09, Pandora and Twitter are where it’s at.</p>
<p class="paragraph">Users can add @replies, RT’s, or any other message to their tweet to add their thoughts on their music or whatever else comes to mind. They can also include a dora.fm link that will lead their followers to a Dora page with information about the song they tweeted, plus a brief sample of the song and an option to quickly create a new Pandora station based on the song. Dora users can also access a “profile” page for their Dora tweets (ex. <span class="nobr"><a href="http://dora.fm/u/dorafm" target="rwikiexternal">http://dora.fm/u/dorafm</a></span>), where they can see how many visitors have clicked their dora.fm links and how many users have created stations based on the songs they’ve tweeted.</p>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2009/05/11/today-is-the-spring-2009-open-house/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 27 Notes</title>
		<link>http://blog.mixingandremixing.info/2009/05/04/day-27-notes/</link>
		<comments>http://blog.mixingandremixing.info/2009/05/04/day-27-notes/#comments</comments>
		<pubDate>Mon, 04 May 2009 17:47:26 +0000</pubDate>
		<dc:creator>raymond.yee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=469</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+27+Notes&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2009-05-04&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2009/05/04/day-27-notes/&amp;rft.language=English"></span>
A few points I want to relay to my class before the semester ends: the importance of learning how to learn.  I highly recommend Hunt, Andrew. Pragmatic thinking and learning : refactor your &#8220;wetware&#8221;. Raleigh: Pragmatic, 2008. there will be more and more APIs every day there will be more and more  programming platforms in [...]]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+27+Notes&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2009-05-04&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2009/05/04/day-27-notes/&amp;rft.language=English"></span>
<p>A few points I want to relay to my class before the semester ends:</p>
<ul>
<li>the importance of learning how to learn.  I highly recommend Hunt, Andrew. <span style="font-style: italic;">Pragmatic thinking and learning : refactor your &#8220;wetware&#8221;</span>. Raleigh: Pragmatic, 2008.</li>
<li>there will be more and more APIs every day</li>
<li>there will be more and more  programming platforms in which to integrate these APIs</li>
<li>scraping, alas, will remain a necessary technique</li>
<li>I think that a project-driven approach to a powerful way to learn &#8212; though it is a trade off of breadth for depth</li>
<li>think about how things must work</li>
<li>tracking what you do know and what you don&#8217;t know</li>
<li>articulating exactly where are stuck is a good skill and necessary to the debugging process</li>
<li>proposing, refining, and implementing ideas will be things you&#8217;ll do a lot of in your careers</li>
<li>I&#8217;d definitely like to hear what my students thought of the semester &#8212; I&#8217;d like to stay in touch</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2009/05/04/day-27-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 25:  Preparing for presentations and open house</title>
		<link>http://blog.mixingandremixing.info/2009/04/27/day-25-preparing-for-presentations-and-open-house/</link>
		<comments>http://blog.mixingandremixing.info/2009/04/27/day-25-preparing-for-presentations-and-open-house/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 23:17:52 +0000</pubDate>
		<dc:creator>raymond.yee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=459</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+25%3A++Preparing+for+presentations+and+open+house&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2009-04-27&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2009/04/27/day-25-preparing-for-presentations-and-open-house/&amp;rft.language=English"></span>
Thanks to Ben for leading us through a demo of Sinatra (&#8220;a DSL [domain specific language] for quickly creating web-applications in Ruby with minimal effort&#8221;) and Heroku, which is described in the docs as follows: Heroku is a completely novel approach to deploying web applications. Forget about servers; the fundamental unit is the app. Use [...]]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+25%3A++Preparing+for+presentations+and+open+house&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2009-04-27&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2009/04/27/day-25-preparing-for-presentations-and-open-house/&amp;rft.language=English"></span>
<p>Thanks to Ben for leading us through a demo of <a href="http://www.sinatrarb.com/intro.html">Sinatra</a> (&#8220;a DSL [<a href="http://en.wikipedia.org/wiki/Domain-specific_programming_language">domain specific language</a>] for quickly creating web-applications in Ruby with minimal effort&#8221;) and <a href="http://heroku.com/">Heroku</a>, which is described in the docs as follows:</p>
<blockquote><p>Heroku is a completely novel approach to deploying web applications. Forget about servers; the fundamental unit is the app. Use the Heroku client gem to create and manage apps from the command line. Then deploy your code with Git, and control the running app with the remote Ruby console and rake commands.</p></blockquote>
<p>We&#8217;re also in the home stretch for this course &#8212; that means that students will present their projects to the rest of the class next week and to the general public at the class open house on May 11. The details for what I&#8217;m looking for are found at <a href="http://blog.mixingandremixing.info/s09/presentations-reports-openhouse/">Final Presentations, Report, and Open House</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2009/04/27/day-25-preparing-for-presentations-and-open-house/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 21:  Talks on screen-scraping and usability</title>
		<link>http://blog.mixingandremixing.info/2009/04/14/day-21-talks-on-screen-scraping-and-usability/</link>
		<comments>http://blog.mixingandremixing.info/2009/04/14/day-21-talks-on-screen-scraping-and-usability/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 00:50:00 +0000</pubDate>
		<dc:creator>raymond.yee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=437</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+21%3A++Talks+on+screen-scraping+and+usability&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2009-04-14&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2009/04/14/day-21-talks-on-screen-scraping-and-usability/&amp;rft.language=English"></span>
On Monday, April 13, we had talks on screen-scraping and usability.]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+21%3A++Talks+on+screen-scraping+and+usability&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2009-04-14&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2009/04/14/day-21-talks-on-screen-scraping-and-usability/&amp;rft.language=English"></span>
<p>On Monday, April 13, we had <a href="http://blog.mixingandremixing.info/s09/day21/">talks on screen-scraping and usability</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2009/04/14/day-21-talks-on-screen-scraping-and-usability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 20 Drupal introduction</title>
		<link>http://blog.mixingandremixing.info/2009/04/08/drupal-introduction/</link>
		<comments>http://blog.mixingandremixing.info/2009/04/08/drupal-introduction/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 22:47:23 +0000</pubDate>
		<dc:creator>raymond.yee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=432</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+20+Drupal+introduction&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2009-04-08&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2009/04/08/drupal-introduction/&amp;rft.language=English"></span>
Thanks, Stephanie, for introducing us today to Drupal.  Her notes can be found at http://tinyurl.com/drupal-mashup http://tinyurl.com/drupal-mashup-slides]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+20+Drupal+introduction&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2009-04-08&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2009/04/08/drupal-introduction/&amp;rft.language=English"></span>
<p>Thanks, Stephanie, for introducing us today to Drupal.  Her notes can be found at</p>
<ul>
<li><a href="http://tinyurl.com/drupal-mashup">http://tinyurl.com/drupal-mashup</a></li>
<li><a href="http://tinyurl.com/drupal-mashup-slides">http://tinyurl.com/drupal-mashup-slides</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2009/04/08/drupal-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 19 &#8212; welcome to Brian Carver</title>
		<link>http://blog.mixingandremixing.info/2009/04/06/day-19-welcome-to-brian-carver/</link>
		<comments>http://blog.mixingandremixing.info/2009/04/06/day-19-welcome-to-brian-carver/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 16:54:33 +0000</pubDate>
		<dc:creator>raymond.yee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=418</guid>
		<description><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+19+%26%238212%3B+welcome+to+Brian+Carver&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2009-04-06&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2009/04/06/day-19-welcome-to-brian-carver/&amp;rft.language=English"></span>
See the notes for today&#8217;s class at http://blog.mixingandremixing.info/s09/day19/]]></description>
			<content:encoded><![CDATA[	
	<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;rfr_id=info%3Asid%2Focoins.info%3Agenerator&amp;rft.title=Day+19+%26%238212%3B+welcome+to+Brian+Carver&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Uncategorized&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2009-04-06&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2009/04/06/day-19-welcome-to-brian-carver/&amp;rft.language=English"></span>
<p>See the notes for today&#8217;s class at <a href="http://blog.mixingandremixing.info/s09/day19/">http://blog.mixingandremixing.info/s09/day19/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2009/04/06/day-19-welcome-to-brian-carver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

