<?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</title>
	<atom:link href="http://blog.mixingandremixing.info/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-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.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>
		
	<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>
			<content:encoded><![CDATA[<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>
		
	<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>
			<content:encoded><![CDATA[<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 17 Making a mashup (Chaps 8, 10)</title>
		<link>http://blog.mixingandremixing.info/2010/03/29/day17/</link>
		<comments>http://blog.mixingandremixing.info/2010/03/29/day17/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 19:04:55 +0000</pubDate>
		<dc:creator>raymond.yee</dc:creator>
				<category><![CDATA[Spring 2010]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=989</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+17+Making+a+mashup+%28Chaps+8%2C+10%29&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-03-29&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/03/29/day17/&amp;rft.language=English"></span>
Day 17 notes are available.]]></description>
		
	<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+17+Making+a+mashup+%28Chaps+8%2C+10%29&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-03-29&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/03/29/day17/&amp;rft.language=English"></span>
			<content:encoded><![CDATA[<p><a href="http://blog.mixingandremixing.info/s10/day17/">Day 17 notes</a> are available.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2010/03/29/day17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 16  Project Proposals returned</title>
		<link>http://blog.mixingandremixing.info/2010/03/25/day16/</link>
		<comments>http://blog.mixingandremixing.info/2010/03/25/day16/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 16:18:59 +0000</pubDate>
		<dc:creator>raymond.yee</dc:creator>
				<category><![CDATA[Spring 2010]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=978</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+16++Project+Proposals+returned&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-03-25&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/03/25/day16/&amp;rft.language=English"></span>
See Day 16 notes]]></description>
		
	<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+16++Project+Proposals+returned&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-03-25&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/03/25/day16/&amp;rft.language=English"></span>
			<content:encoded><![CDATA[<p>See <a href="http://blog.mixingandremixing.info/s10/day16/">Day 16 notes</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2010/03/25/day16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 15</title>
		<link>http://blog.mixingandremixing.info/2010/03/15/day15/</link>
		<comments>http://blog.mixingandremixing.info/2010/03/15/day15/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 19:31:32 +0000</pubDate>
		<dc:creator>raymond.yee</dc:creator>
				<category><![CDATA[Spring 2010]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=968</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+15&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-03-15&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/03/15/day15/&amp;rft.language=English"></span>
Day 15 Notes are available.]]></description>
		
	<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+15&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-03-15&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/03/15/day15/&amp;rft.language=English"></span>
			<content:encoded><![CDATA[<p><a href="http://blog.mixingandremixing.info/s10/day15/">Day 15 Notes</a> are available.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2010/03/15/day15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>S10-Day 14</title>
		<link>http://blog.mixingandremixing.info/2010/03/10/day1/</link>
		<comments>http://blog.mixingandremixing.info/2010/03/10/day1/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 20:28:57 +0000</pubDate>
		<dc:creator>raymond.yee</dc:creator>
				<category><![CDATA[Spring 2010]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=956</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=S10-Day+14&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-03-10&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/03/10/day1/&amp;rft.language=English"></span>
See slides.]]></description>
		
	<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=S10-Day+14&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-03-10&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/03/10/day1/&amp;rft.language=English"></span>
			<content:encoded><![CDATA[<p>See <a href="http://docs.google.com/present/view?id=dkkzw5z_27d3jhjff4">slides</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2010/03/10/day1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 13 Lab Day</title>
		<link>http://blog.mixingandremixing.info/2010/03/08/day13/</link>
		<comments>http://blog.mixingandremixing.info/2010/03/08/day13/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 20:23:52 +0000</pubDate>
		<dc:creator>raymond.yee</dc:creator>
				<category><![CDATA[Spring 2010]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=949</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+13+Lab+Day&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-03-08&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/03/08/day13/&amp;rft.language=English"></span>
Day 13 notes]]></description>
		
	<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+13+Lab+Day&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-03-08&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/03/08/day13/&amp;rft.language=English"></span>
			<content:encoded><![CDATA[<p><a href="http://blog.mixingandremixing.info/s10/day13/">Day 13 notes </a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2010/03/08/day13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 12 notes</title>
		<link>http://blog.mixingandremixing.info/2010/03/03/day12/</link>
		<comments>http://blog.mixingandremixing.info/2010/03/03/day12/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 16:21:56 +0000</pubDate>
		<dc:creator>raymond.yee</dc:creator>
				<category><![CDATA[Spring 2010]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=934</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+12+notes&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-03-03&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/03/03/day12/&amp;rft.language=English"></span>
Day 12 notes are available.]]></description>
		
	<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+12+notes&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-03-03&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/03/03/day12/&amp;rft.language=English"></span>
			<content:encoded><![CDATA[<p><a href="http://blog.mixingandremixing.info/s10/day12/">Day 12 notes</a> are available.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2010/03/03/day12/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>S10-Day 11</title>
		<link>http://blog.mixingandremixing.info/2010/03/02/s10-day-11/</link>
		<comments>http://blog.mixingandremixing.info/2010/03/02/s10-day-11/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 18:32:15 +0000</pubDate>
		<dc:creator>raymond.yee</dc:creator>
				<category><![CDATA[Spring 2010]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=924</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=S10-Day+11&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-03-02&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/03/02/s10-day-11/&amp;rft.language=English"></span>
I published notes for Day 11 yesterday.]]></description>
		
	<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=S10-Day+11&amp;rft.aulast=Yee&amp;rft.aufirst=Raymond&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-03-02&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/03/02/s10-day-11/&amp;rft.language=English"></span>
			<content:encoded><![CDATA[<p>I published <a href="http://blog.mixingandremixing.info/s10/day11">notes for Day 11</a> yesterday.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2010/03/02/s10-day-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emily and Ayush&#8217;s Project Proposal</title>
		<link>http://blog.mixingandremixing.info/2010/02/25/emily-and-ayushs-project-proposal/</link>
		<comments>http://blog.mixingandremixing.info/2010/02/25/emily-and-ayushs-project-proposal/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 19:33:33 +0000</pubDate>
		<dc:creator>emily</dc:creator>
				<category><![CDATA[Project Proposals]]></category>
		<category><![CDATA[Spring 2010]]></category>

		<guid isPermaLink="false">http://blog.mixingandremixing.info/?p=900</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=Emily+and+Ayush%26%238217%3Bs+Project+Proposal&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=Project+Proposals&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-02-25&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/02/25/emily-and-ayushs-project-proposal/&amp;rft.language=English"></span>
What problem is your project aimed at solving? Alternatively, why would someone want to use what you are making in your project? The first immediate goal of the American Recovery and Reinvestment Act of 2009 is to “create new jobs as well as save existing ones.” While Emily’s initial project idea was to compare jobs [...]]]></description>
		
	<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=Emily+and+Ayush%26%238217%3Bs+Project+Proposal&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.subject=Project+Proposals&amp;rft.subject=Spring+2010&amp;rft.source=Mixing+and+Remixing+Information&amp;rft.date=2010-02-25&amp;rft.type=blogPost&amp;rft.format=text&amp;rft.identifier=http://blog.mixingandremixing.info/2010/02/25/emily-and-ayushs-project-proposal/&amp;rft.language=English"></span>
			<content:encoded><![CDATA[<p><strong>What problem is your project aimed at solving? Alternatively, why would someone want to use what you are making in your project?</strong></p>
<p>The first immediate goal of the American Recovery and Reinvestment Act of 2009 is to “create new jobs as well as save existing ones.”</p>
<p>While Emily’s initial project idea was to compare jobs created and saved vs. unemployment, some initial research proved that the exact number of jobs created per grant or contract is difficult to determine with the level of regularity and reliability needed for creating a machine-readable, automated data mashup.  A good example is the problem of bulk grants.  The Regents of the University of California have been earmarked to receive a grant of $716 million dollars</p>
<p>which will save some 38,923.98 jobs, but the distribution of those jobs within the state of California is not clearly delineated, and furthermore, the number of jobs is a combination of full-time employees, part-time employees, sub-contractors, and vendor hours, again unspecified by county placement.</p>
<p>Due to these problems&#8211;the lack of consistency and specificity needed to achieve this initial project goal, we will be focusing on a slightly different question within the manageable scope of Alameda County, California:  How has the ARRA affected (or not affected) unemployment in Alameda County, California?  If the ARRA has been “effective,” we would hope to see the level of employment decreasing or remaining steady over time as funds are dispersed.  Of course it is difficult if not impossible to make any causal conclusions by comparing this data as opposed to examining job-for-job data (and taking into account other indices of the recovering economy), which I have already mentioned is an intractable problem until more granular data can be reliable extracted.</p>
<p><strong>Is your project doable given the constraints of time, our starting knowledge, etc?</strong></p>
<p>Yes, we think so.  We’ve narrowed the geographic scope from the entire U.S. to Alameda County and will only be needing two sources of data:</p>
<ol>
<li>Month-by-month unemployment data in Alameda County from January 2009 to the present</li>
<li>The start date of all ARRA grants/contracts dispersed in Alameda County to date</li>
</ol>
<p>The visualization portion will be tricky, but I am confident that we have the resourcefulness necessary to complete this part of the project.</p>
<p><strong>What interface are you imagining? Is it a web, desktop, or mobile application? What platform are you running?</strong></p>
<p>We want to build a web visualization which can be viewed with the Firefox web browser.</p>
<p><strong>What data or services are planning to bring together?</strong></p>
<ol>
<li>Unemployment data from the Bureau of Labor Statistics (http://www.bls.gov/lau/#tables)</li>
<li>ARRA Project award start dates and amounts from http://www.recovery.ca.gov/HTML/RecoveryImpact/map.shtml?county=Alameda</li>
<li>ClearMaps or Tableau or Google Visualization API</li>
</ol>
<p><strong>What’s your plan for getting the data? Often the data you might want might not be easily available.</strong></p>
<p>Downloading the latest unemployment and ARRA files available and filtering for Alameda county.</p>
<p><strong>Do the APIs you plan to use actually support the functionality that you need in your application?</strong></p>
<p>No, we are not using any APIs, except for maybe the Google Visualization API, but that is not a data source.</p>
<p><strong>What programming language do you plan to use?</strong></p>
<p>Either Python or PHP, depending upon which one is easier to use with the data.</p>
<p><strong>Action Plan:</strong></p>
<ol>
<li>Download and examine unemployment and ARRA data files.</li>
<li>Filter the files by Alameda County.</li>
<li>Find zip codes for Alameda County and extract relevant ARRA data from master file.</li>
<li>Investigate best mapping/visualization tool, hopefully one which will allow us to make monthly step-wise comparisons in unemployment, new project contract start dates, and the percentage of ARRA money spent out of the total currently slated for Alameda County.</li>
<li>Integrate the data sets with the visualization utility.</li>
<li>Celebrate.</li>
</ol>
<p><strong>Risk Areas/Mitigation Plan:</strong></p>
<p>Right now our biggest risk is scrubbing the ARRA data.  We imagine that not every award will have listed its zip code, zip codes may span more than just Alameda County, or that field may be blank.</p>
<p>Our best mitigation plan might actually be to expand the scope of the project to include all of California, since the award’s state is a more reliable data point.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mixingandremixing.info/2010/02/25/emily-and-ayushs-project-proposal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
