<?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>RacoonCode</title>
	<atom:link href="http://racooncode.com/feed" rel="self" type="application/rss+xml" />
	<link>http://racooncode.com</link>
	<description></description>
	<lastBuildDate>Thu, 29 Mar 2012 05:23:50 +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>Google Reader: Workaround for sharing</title>
		<link>http://racooncode.com/2011/12/02/google-reader-workaround-for-sharing</link>
		<comments>http://racooncode.com/2011/12/02/google-reader-workaround-for-sharing#comments</comments>
		<pubDate>Fri, 02 Dec 2011 04:51:00 +0000</pubDate>
		<dc:creator>Saira</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Google Reader]]></category>

		<guid isPermaLink="false">http://racooncode.com/?p=2894</guid>
		<description><![CDATA[[Credit for Featured Image: Marina Zaitseva] As we are all aware Google Reader disabled sharing other than on Google+ in it&#8217;s new version. This obviously upset me immensely because I used my share feed for [...]]]></description>
			<content:encoded><![CDATA[<p>[Credit for Featured Image: <a href="http://agirlsbusiness.wordpress.com/2011/06/28/hallo-guten-tag-hier-spricht-google-reader/">Marina Zaitseva</a>]</p>
<p>As we are all aware Google Reader disabled sharing other than on Google+ in it&#8217;s new version. This obviously upset me immensely because I used my share feed for my blog. After trying out numerous suggestions, this is what worked:</p>
<p>1. Subscribe to your original shared feed<br />
2. Pray to God you had created a public tag prior to the switch-over to the new reader and despite whatever you named it, use it! Newly created tags are by default private and there is no means of making them public at the moment.<br />
3. Using the old tag, create a bundle. There should be drop-down to the right of the tag name in the left pane.<br />
4. Also add/drag the subscribed shared feed into the bundle.<br />
5. Change all your blog widgets using the original Shared feed RSS to the RSS feed for this new bundle.</p>
<p>I tried using Chrome extensions to display the original shared icon but that has a number of issues:<br />
- The extensions stopped working for me soon after<br />
- My email got hacked into around the time I got the extensions. It could have been because of insecure scripts<br />
- Google is going to eventually remove the original sharing from its API so might as well stick with something they&#8217;re not going to scrap soon. Or one would hope so.</p>
<p>Hope this helps some fellow frustrated soul.</p>
]]></content:encoded>
			<wfw:commentRss>http://racooncode.com/2011/12/02/google-reader-workaround-for-sharing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting ODK XML Data to CSV</title>
		<link>http://racooncode.com/2011/11/09/converting-odk-xml-data-to-csv</link>
		<comments>http://racooncode.com/2011/11/09/converting-odk-xml-data-to-csv#comments</comments>
		<pubDate>Wed, 09 Nov 2011 22:23:41 +0000</pubDate>
		<dc:creator>Saira</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://racooncode.com/?p=2869</guid>
		<description><![CDATA[[Featured Image: Open Data Kit &#124; Civic Commons] Context: Household survey in rural Tanzania Task: Combine data from XML files and display in an Excel File Challenges: Nested loop within survey which required questions to [...]]]></description>
			<content:encoded><![CDATA[<p>[Featured Image: <a href="http://civiccommons.org/apps/open-data-kit">Open Data Kit | Civic Commons</a>]</p>
<p><strong>Context</strong>: Household survey in rural Tanzania<br />
<strong> </strong></p>
<p><strong>Task</strong>: Combine data from XML files and display in an Excel File</p>
<p><strong>Challenges</strong>:</p>
<ul style="list-style-type: circle;">
<li>Nested loop within survey which required questions to be repeated so survey and questions were not one-to-one</li>
<li>Number of fields for survey exceeded 255</li>
<li>Each survey was in a separate file</li>
<li>&gt;350 submission files so need mass combination and conversion</li>
</ul>
<p><strong>Data Provided:</strong></p>
<ul style="list-style-type: circle;">
<li>Survey in XML format for <a href="http://opendatakit.org/use/collect/">ODK Collect</a></li>
<li>Submissions in XML format using ODK Collect. Naming of submission files based on survey name, data and time collected.</li>
</ul>
<p>The following methods were attempted in extracting data. Some successful, some not, with clear reasons as to why not.</p>
<p><strong>Method 1: Use Excel </strong></p>
<p>Excel&#8217;s XML to CSV or XLS function is very easy to use but issues were:</p>
<ul style="list-style-type: circle;">
<li>Each XML file is saved to a separate CSV file so does not aggregate data.</li>
<li>Does not take into account nested XML and will only add in columns for the primary level in XML</li>
</ul>
<p><strong>Method 2: Use MS Access</strong></p>
<p>The idea was to first import into Access and then to CSV. Importing to Access worked exceptionally well. It automatically creates related tables for nested XML tags. However issues were:</p>
<ul style="list-style-type: circle;">
<li>The size of the survey itself was too big to store in an Access table. It would have taken far too long to change data types one by one. In addition if the table was broken up, the automatic feature for import would not work. There is probably a way to do all this in Visual Basic but again time constraints.</li>
</ul>
<p><strong>Method 3: Install ODK Aggregate and use inbuilt stable version of ODK Briefcase:</strong></p>
<p>ODK Briefcase is the companion tool for <a href="http://opendatakit.org/use/aggregate/">ODK Aggregate</a> to import and export data from ODK generated files. However the inbuilt version could only:</p>
<ul style="list-style-type: circle;">
<li>Import one file at a time</li>
<li>ODK Aggregate is a little complicated to install. You can either install it on Google App Engine or locally but the installation procedure is a tad confusing.</li>
</ul>
<p><strong>Method 4: KoBo Post Processor</strong></p>
<p><a href="http://code.google.com/p/kobo/">KoBo Post Processor</a> is a third party tool to aggregate data from XML files. However the issues with this were:</p>
<ul style="list-style-type: circle;">
<li>Could not read the nested XML data</li>
<li>Had it&#8217;s own algorithm for displaying columns and did not follow the survey format</li>
</ul>
<p><strong>Method 5: Stand Alone Beta Version of ODK Briefcase</strong></p>
<p>Using <a href="https://code.google.com/p/opendatakit/downloads/detail?name=ODK%20Briefcase%20v1.0%20Beta%202.jar&amp;can=2&amp;q=">ODK Briefcase v1.0 Beta 2.jar</a> is the method which worked but since there wasn&#8217;t much documentation on this, it took awhile to figure out and find. There are only a couple of threads on the <a href="http://groups.google.com/group/opendatakit-developers">ODK Developers</a> Google Group which mention this. There were obviously a ton of issues considering it&#8217;s in Beta mode but after a number of tweaks and re-positioning data it worked. Issues faced during this process and remedies:</p>
<ul style="list-style-type: circle;">
<li>ODK Briefcase requires it reads the data from a very specific directory structure. It needs to be the exact same as that created by ODK Aggregate for forms. Example of the directory structure in the ODK Briefcase folder:
<p style="margin-left: 10px;">Forms</p>
<p style="margin-left: 20px;">Tanzanian Survey</p>
<p style="margin-left: 30px;">Instances</p>
<p style="margin-left: 40px;">TanzanianSurvey-11032011-1203</p>
<p style="margin-left: 50px;">submission.xml</p>
</li>
<li>It is important that the XML data file be named submission.xml which is only possible if each submission is in a different folder. Unfortunately our data was not named submission.xml so I used <a href="http://www.bulkrenameutility.co.uk/Main_Intro.php">Bulk Rename Utility</a>. There are other ways to bulk rename in Windows but the search and replace using F2 method adds a number in parenthesis which would not work.</li>
<li>Regarding the nested XML, since there were only 37 files where this was the case, we went through each file and flattened it to one level. However Windows doesn&#8217;t let you search within XML files so you&#8217;d probably need to download some software like XML Search</li>
</ul>
<p>Ideally all of this could have been done by writing a simple script and writing to the same CSV file. However I was aiming to find something which could have been replicable by a non-tech individual. Looking forward to the next version of ODK Briefcase.</p>
]]></content:encoded>
			<wfw:commentRss>http://racooncode.com/2011/11/09/converting-odk-xml-data-to-csv/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You live in Tetnus?</title>
		<link>http://racooncode.com/2011/06/23/you-live-in-tetnus</link>
		<comments>http://racooncode.com/2011/06/23/you-live-in-tetnus#comments</comments>
		<pubDate>Thu, 23 Jun 2011 08:06:46 +0000</pubDate>
		<dc:creator>Saira</dc:creator>
				<category><![CDATA[Tanzania]]></category>

		<guid isPermaLink="false">http://racooncode.com/?p=2857</guid>
		<description><![CDATA[[Warning: Exaggeration happens. Sometimes. And other times life is just THAT funny.] The Kindle Chronicles: First week into Tanzania, Kindle dies. Or well freezes. All I could make out is half an advertisement of some [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-2858" title="potterearnie" src="http://racooncode.com/wordpress/http://racooncode.com/wordpress/wp-content/uploads/2011/06/potterearnie-120x120.jpg" alt="" width="120" height="120" />[Warning: Exaggeration happens. Sometimes. And other times life is just THAT funny.]</p>
<p><strong>The Kindle Chronicles:</strong></p>
<p>First week into Tanzania, <a href="#note1">Kindle</a> dies. Or well freezes. All I could make out is half an advertisement of some exotic beach locale with a drink with an umbrella in it. I don&#8217;t want a drink with an umbrella in it! I want to be able to read about the epic adventures of Sigma Force in some totally ridiculous escapade in the heart of the Arctic! (*rant partially over*). Amazon gets called. They&#8217;re quite willing to send a replacement yet considering there are quite a few shipments to the UNDP which have been in transit for months, I decide to be safe and am now having it shipped to another chap who is coming to Tabora at the end of the month. The fact that the customer representative thought I lived in a country called Tetnus did not help alleviate my fears. The icing on the cake is the email I received last night which informed me that I must sent them the damaged kindle within 30 days to not incur charges for the replacement. No clue yet how I will achieve this but am being cheerfully optimistic today. I was not cheerfully optimistic when I received the email yesterday. (In case you were wondering)<br />
<strong><br />
Bus Mayhem at Ubungu Bus Station:</strong></p>
<p>We, being the starving college students that we are, decided to take a bus to Tabora. Our taxi driver graciously offered to take us to the station to buy tickets since we would be ripped off otherwise. Lo and behold we got ripped off irrespective. Got sold tickets for a bus which doesn&#8217;t even go to Tabora AND got overcharged to boot. Miraculously our Swaheli teacher managed to get our money back after threatening police involvement and we managed to get the correct NBS tickets. Other than the leaking fuel tank, the drivers misconception that he was on an ATV and the five hour moonlit (which was possibly the most beautiful sky I have ever seen) drive on a dirt road, the trip was fairly uneventful.</p>
<p><strong>Escape from the Dar Town Centre with a Exotic Driver to Paradise VER 2.0:</strong></p>
<p>I can&#8217;t come up with a word to describe the driver. Just one word. Exotic was the closest I could manage. He was a native of Zanzibar, late 50s I think, wearing<em> </em>tinted <a href="#note2">pince-nez</a> and according to Hannah, probably couldn&#8217;t see out of one eye. I got to be the lucky passenger seat driver and witnessed firsthand how it would feel to sit in the <a href="#note3">Knight bus from Harry Potter</a>. Laura has a much more detailed post on this over at <a href="http://tanzanialaura.blogspot.com/2011/06/teksi.html" target="_blank">Teksi!</a> We ended up at Hotel Meditteraneo which was &#8230; as mentioned&#8230;. paradise version 2 in the middle of nowhere.<br />
<strong><br />
Jan Rambo Snake Killa! </strong>(this will be completely lost on anyone who did not grow up in Pakistan):</p>
<p>Of late, we do a lot of zooming along dirt tracks in SUVs complete with punctured tires, dust and rattled bones. Recently the driver suddenly stopped and proceeded to attempt to reverse over a silver, lightening fast snake. When that did not work, all men in vehicle exited and proceeded to take turns tossing massive rocks at the snake until they were fairly sure it had been annihilated to the point that even reincarnation seemed doubtful. Plenty of fatal snake bite stories in this part of the world so every time I get off my bed, that&#8217;s the first thing I check for. Awesome way to wake up no?</p>
<p><strong>A Day Sniffing Tobacco. Literally:</strong></p>
<p><a href="http://racooncode.com/2011/06/21/the-tobacco-industry-in-tabora">http://racooncode.com/2011/06/21/the-tobacco-industry-in-tabora</a></p>
<p><strong>What the Hell Am I Doing Here?</strong></p>
<p>Work-wise overloaded with eHealth, mapping, internet connectivity and electricity issues and will attempt to update the blog as much as I can to give you an idea of what&#8217;s happening on the ground.</p>
<p><sup><a name="note1"></a>1</sup> Amazonian monopoly of epic proportions on the world of ebook readers and all consequent associated monopolistic disadvantages. No page numbers. I&#8217;m serious. You can&#8217;t navigate to a page number. I&#8217;m guessing the programmer working on this doesn&#8217;t read much. Or get out much. Or have a girlfriend, who reads.<br />
<sup><a name="note2"></a>2</sup> <a href="http://en.wikipedia.org/wiki/Pince-nez" target="_blank"> http://en.wikipedia.org/wiki/Pince-nez</a><br />
<sup><a name="note3"></a>3</sup> <a href="http://harrypotter.wikia.com/wiki/Ernie_Prang" target="_blank">http://harrypotter.wikia.com/wiki/Ernie_Prang</a></p>
]]></content:encoded>
			<wfw:commentRss>http://racooncode.com/2011/06/23/you-live-in-tetnus/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Tobacco Industry in Tabora</title>
		<link>http://racooncode.com/2011/06/21/the-tobacco-industry-in-tabora</link>
		<comments>http://racooncode.com/2011/06/21/the-tobacco-industry-in-tabora#comments</comments>
		<pubDate>Tue, 21 Jun 2011 06:36:17 +0000</pubDate>
		<dc:creator>Saira</dc:creator>
				<category><![CDATA[Agriculture]]></category>

		<guid isPermaLink="false">http://racooncode.com/?p=2839</guid>
		<description><![CDATA[[All images via Hannah Ayers] Smoke and dust seem to be unavoidable in this city. On Sunday I woke up to the distinct smell of someone burning something outside my window. While the dust won&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_2848" class="wp-caption alignleft" style="width: 210px"><img class="size-full wp-image-2848" title="tobacco leaves" src="http://racooncode.com/wordpress/http://racooncode.com/wordpress/wp-content/uploads/2011/06/tobacco-leaves.jpg" alt="" width="200" height="150" /><p class="wp-caption-text">Tobacco Leaves</p></div>
<p>[All images via Hannah Ayers]</p>
<p>Smoke and dust seem to be unavoidable in this city. On Sunday I woke up to the distinct smell of someone burning something outside my window. While the dust won&#8217;t wipe off my skin. I&#8217;ve taken to using baby wipes. At least I feel clean for all of twenty seconds.</p>
<p>Voluntarily inhaling smoke is something only the expats indulge in yet this region happens to be one of the most prominent tobacco growing regions in Tanzania. Tabora is full of tobacco farmers and company representatives who all happen to be incredibly nice people with the most interesting stories to share. One of the tobacco gentleman very graciously offered to take us with him to a tobacco market in a village last Thursday and gave us the lowdown on the process and industry. Considering all my experience in Africa up till this point has been in the NGO sector, it was quite enlightening seeing a functioning industry despite it&#8217;s controversial nature. The government takes an active role in encouraging the industry and the system of grading and loaning inputs is quite efficient. In the Tabora region farmers grow the tobacco plant and keep removing leaves as they ripen. Then they burn them in specially built tobacco burning huts to remove all the moisture from them. These are then sorted by the farmer according to grades and then sold at a very organized tobacco market where officials check the merchandise and buyers make bids.</p>
<p>The Millennium Villages Project does not encourage the production of tobacco which is quite understandable considering the nature of the organization and the worldwide condemnation of the tobacco industry. There have been attempts to encourage cotton growing within the region as a cash crop (see <a href="http://www.time.com/time/magazine/article/0,9171,1647466,00.html">Jeff Sachs in TIME July 2007</a>) but the farmers did not take well to this scheme and the initiative was abandoned. From what I remember in Pakistan, cotton is very susceptible to pests but it would be interesting to look into other reasons why this may have failed. It makes one wonder what other cash crops could be grown in Tabora which would not carry the negative connotations of tobacco, yet be able to function within a successful business model. What high return crops/industry would encourage private investment?</p>
<p>When I first landed in Tanzania, it seemed like they had a decent supply of sugar cane and I couldn&#8217;t help considering potential sugar mills like those in Punjab which have made their owners quite rich. Also in Tabora itself lowland rice paddies can be seen everywhere and must have decent rice production in the wet season. Yet the dry season completely cripples the system and the wet season merely serves to keep it on life support. Random thought which is probably quite naive: What if we pooled all aid money and concentrated it entirely on water access? Would all other sectors sort themselves out?</p>
<p>Additional Links:</p>
<p><a href="http://www.corpwatch.org/article.php?id=4028" target="_blank">CropWatch: The Tobacco Industry Impacts on Tanzania</a> by Ross Hammond (1997)</p>
<p><a href="http://www.tobacco.org/articles/country/tanzania/" target="_blank">Tobacco.org: Article Listing for Tanzania</a></p>
<div id="attachment_2846" class="wp-caption alignleft" style="width: 160px"><img class="size-full wp-image-2846" title="tobacco barn" src="http://racooncode.com/wordpress/http://racooncode.com/wordpress/wp-content/uploads/2011/06/tobacco-barn.jpg" alt="" width="150" height="200" /><p class="wp-caption-text">Tobacco Barn</p></div>
<div id="attachment_2847" class="wp-caption alignleft" style="width: 160px"><img class="size-full wp-image-2847" title="tobacco grades" src="http://racooncode.com/wordpress/http://racooncode.com/wordpress/wp-content/uploads/2011/06/tobacco-grades.jpg" alt="" width="150" height="200" /><p class="wp-caption-text">Tobacco Grades</p></div>
<div id="attachment_2849" class="wp-caption alignleft" style="width: 160px"><img class="size-full wp-image-2849" title="tobacco market1" src="http://racooncode.com/wordpress/http://racooncode.com/wordpress/wp-content/uploads/2011/06/tobacco-market1.jpg" alt="" width="150" height="200" /><p class="wp-caption-text">Tobacco Market</p></div>
]]></content:encoded>
			<wfw:commentRss>http://racooncode.com/2011/06/21/the-tobacco-industry-in-tabora/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Barca! And some Turkish team whose name I can&#8217;t remember</title>
		<link>http://racooncode.com/2011/06/17/barca-and-some-turkish-team-whose-name-i-cant-remember</link>
		<comments>http://racooncode.com/2011/06/17/barca-and-some-turkish-team-whose-name-i-cant-remember#comments</comments>
		<pubDate>Fri, 17 Jun 2011 08:01:18 +0000</pubDate>
		<dc:creator>Saira</dc:creator>
				<category><![CDATA[Tanzania]]></category>
		<category><![CDATA[Turkey]]></category>

		<guid isPermaLink="false">http://racooncode.com/?p=2834</guid>
		<description><![CDATA[So here start the usual monthly/bimonthly missives from the heart of this itty bitty safari hostel smack in the middle of the car repair shops in Dar es Salaam. The room has skylights on each [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://racooncode.com/wordpress/http://racooncode.com/wordpress/wp-content/uploads/2011/06/DSC_0122.jpg"><img class="alignleft size-medium wp-image-2835" title="DSC_0122" src="http://racooncode.com/wordpress/http://racooncode.com/wordpress/wp-content/uploads/2011/06/DSC_0122-400x266.jpg" alt="" width="320" height="213" /></a>So here start the usual monthly/bimonthly missives from the heart of this itty bitty safari hostel smack in the middle of the car repair shops in Dar es Salaam. The room has skylights on each end which are always open and consequently I can hear each and every word uttered by my neighbours. Also was woken up frantically by knocking on my door at 5:30 a.m. today morning and the conversation went somewhat like this:</p>
<p>*frantic knocking*<br />
Saira: *ignores first bout of frantic knocking*<br />
*MUCH LOUDER frantic knocking*<br />
Saira: Who is it? *one eye refusing to unstick*<br />
Knocker: Wade<br />
Saira: Wade who?<br />
Wade: I just wanted to make sure you guys have woken up for the safari. So psyched!<br />
Saira: I think you have the wrong room (followed by quite a few choice expletives in the reccesses of her brain)</p>
<p>So&#8230; lets see&#8230; usual headings:</p>
<p><strong>Turkish Delight and ze Awesome Nibbling Party of 6 (well 5 ) which consumed it:</strong></p>
<p>I will live in Istanbul some day. Seriously. Some of the nicest people I&#8217;ve ever met. Did a two day stopover with five awesome friends of mine, which included regular yelps of surprise when timed lights in the dorm bathroom went off, the 100+ pictures of the sunset we took from the Asian side, the Monica kidnapping (pseudo) by locals for a photography session in the Blue Mosque and so forth. We also happened to be there when one of the local teams won a football game and the whole town went ballistic. Streams of people literally flowed towards Taxim square where we happened to be staying and despite it being a Sunday the streets were jammed at 2 a.m. As for the Turkish delight, I&#8217;m not much of a fan but my fellow travellers partook with relish.</p>
<p><strong>Bongoyo: Hannah Quickeye, Laura Babblefish</strong>, <strong>Saira uh&#8230;(I&#8217;ll come with something) and Vinay as the mysterious Charlie:</strong></p>
<p>&nbsp;</p>
<p><strong> </strong>Quickeye due to her being able to pick up on things Laura and I seem to be completely missing; from returning keys when exiting the hostel to God knows what. Google babblefish. Bongoyo is an island off the coast of Dar. Involves getting on one boat and then another boat and then yet another boat and stepping onto my version of paradise. Oh and not forgetting the pre- and post- gelato.</p>
<p><strong>Rat Brawl on the Rooftop of the New Africa Hotel complete with Heart Jarring Dare Devil Act:</strong></p>
<p>So&#8230; we went to dinner at New Africa Hotel. Some swanky Thai place on the 9th floor. Decided to have desert after and somehow managed to get seated at a deserted poolside table. Did I mention swanky? Now generally when one uses a word such as &#8220;swanky&#8221; one does not expect New York size rats trudging along on terraces. But there it was. Trudging along. Until&#8230; it met another equally massive member of it&#8217;s species and before one could say &#8220;Whatthecrap&#8221;, both rats gave high pitched squeaks, stood on their hind legs, grabbed each other by the arms in true wrestling fashion and toppled off the ledge. Out of sheer concern for their safety (Im sure) one of our party gave quite the exclamation after which yet another topple took place with the rat landing at ground level barely 5 feet from us and scurrying away into the undergrowth. Lets just say&#8230; we will not be staying at this &#8220;swanky&#8221; hotel in the future.</p>
<p>I distinctly remember promising someone a poem on some obscure topic yet can&#8217;t for the life of me remember who I made the promise to and what the topic was so&#8230; maybe next time.</p>
<p>Miss you all!</p>
]]></content:encoded>
			<wfw:commentRss>http://racooncode.com/2011/06/17/barca-and-some-turkish-team-whose-name-i-cant-remember/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can Technology End Poverty?</title>
		<link>http://racooncode.com/2010/11/27/can-technology-end-poverty</link>
		<comments>http://racooncode.com/2010/11/27/can-technology-end-poverty#comments</comments>
		<pubDate>Sat, 27 Nov 2010 14:20:48 +0000</pubDate>
		<dc:creator>Saira</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://racooncode.com/?p=2815</guid>
		<description><![CDATA[[Featured Image: Technology by João Marques] The myth of scale is seductive because it is easier to spread technology than to effect extensive change in social attitudes and human capacity. In other words, it is much [...]]]></description>
			<content:encoded><![CDATA[<p>[Featured Image: <a href="http://bk1ll3r.deviantart.com/art/Technology-103031071?q=boost%3Apopular%20technology&amp;qo=12">Technology</a> by João Marques]</p>
<blockquote><p>The myth of scale is seductive because it is easier to spread technology than to effect extensive change in social attitudes and human capacity. In other words, it is much less painful to purchase a hundred thousand PCs than to provide a real education for a hundred thousand children; it is easier to run a text-messaging health hotline than to convince people to boil water before ingesting it; it is easier to write an app that helps people find out where they can buy medicine than it is to persuade them that medicine is good for their health.</p></blockquote>
<p>&#8211; <a href="http://www.bostonreview.net/BR35.6/toyama.php">Kentaro Toyama</a></p>
]]></content:encoded>
			<wfw:commentRss>http://racooncode.com/2010/11/27/can-technology-end-poverty/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net Change 2010: Mobile Tech</title>
		<link>http://racooncode.com/2010/06/10/net-change-2010-mobile-tech</link>
		<comments>http://racooncode.com/2010/06/10/net-change-2010-mobile-tech#comments</comments>
		<pubDate>Thu, 10 Jun 2010 19:52:03 +0000</pubDate>
		<dc:creator>Saira</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Workshops & Seminars]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://racooncode.com/?p=2780</guid>
		<description><![CDATA[Wednesday, 9th June was spent attending the Mobile Tech portion of the Net Change 2010 conference here in Toronto. Following are some highlights and notes related to it: Mobile Takeover: How cell phones are leading [...]]]></description>
			<content:encoded><![CDATA[<p>Wednesday, 9th June was spent attending the <a href="http://www.netchangeweek.ca/conference/events/mobile-tech-for-social-change-2/">Mobile Tech</a> portion of the <a href="http://www.netchangeweek.ca/">Net Change 2010</a> conference here in Toronto. Following are some highlights and notes related to it:</p>
<p><strong>Mobile Takeover: How cell phones are leading to economic and democratic  progress</strong><br />
Professor Iqbal Z. Quadir (Founder, <a href="http://www.grameenphone.com/">GrameenPhone</a>)</p>
<ul style="list-style:circle">
<li>Professor Quadir works at the <a href="http://legatum.mit.edu">Legatum Centre for MIT</a> which encourages entrepreneurship in developing countries as a means of economic growth.</li>
<li>&#8220;For-profit is a healthy thing&#8221;</li>
<li>&#8220;Concentration of resources is related to economic degradation&#8221; For example concentration of power.</li>
<li>&#8220;Governments managing people&#8221; versus &#8220;People managing governments&#8221;. Democratization usually leads from the former to the latter.</li>
<li>England&#8217;s move towards a more egalitarian state started from tax collection</li>
<li>&#8220;The history of liberty is a history of the limitation  of governmental power, not the increase of it.&#8221;  &#8211; Woodrow Wilson</li>
<li>Commented on the title for <a href="http://www.amazon.com/Elusive-Quest-Growth-Economists-Misadventures/dp/026205065X">The Elusive Quest for Growth: Economists&#8217; Adventures and Misadventures in the Tropics </a> by William Easterly. He was referring to the fact that economists can get away with being deemed adventurous where as other professions, such as say doctors, couldn&#8217;t possibly refer to their forays in health as adventures. Showing a stark difference in how we perceive health and poverty. Not much of a feedback loop when it comes to economic endeavors in the developing regions.</li>
<li>&#8220;Connectivity is productivity&#8221;</li>
<li>Myth debunking: &#8220;Poor people are resources&#8221; NOT &#8220;Poor people are recipients&#8221;</li>
<li>Recommended reading: &#8220;Global Heroes&#8221;, The Economist; &#8220;The world turned upside down&#8221;, The Economist; &#8220;<a href="http://www.amazon.com/Other-Greeks-Agrarian-Western-Civilization/dp/0520209354">The Other Greeks: The Family Farm and the Agrarian Roots of Western Civilization</a>&#8221; by Victor Davis Hanson</li>
</ul>
<p><a href="http://mobileactive.org/"><img class="aligncenter size-medium wp-image-2802" title="mobileactivefile73" src="http://racooncode.com/wordpress/http://racooncode.com/wordpress/wp-content/uploads/2010/06/mobileactivefile73-e1276199271725-400x102.jpg" alt="" width="400" height="102" /></a></p>
<p><strong>Katrin Verclas, <a href="http://mobileactive.org/">MobileActive.org</a>: </strong><strong>Mobiles and Non-Profits</strong></p>
<ul style="list-style:circle">
<li>Planning to read her report <a href="http://mobileactive.org/wireless-technology-social-change-trends-ngo-mobile-use" target="_blank">Wireless Technology for Social Change: Trends in NGO  Mobile Use</a></li>
<li>Interesting point: Phones are far more intimate than computers and this should be kept in mind when designing mobile campaigns.</li>
<li>Case studies for mobile usage in advocacy:
<ul>
<li>Greenpeace Argentina &#8211; <a href="http://mobileactive.org/text-messaging-save-trees">Text Messaging to Save Trees </a></li>
<li>It&#8217;s OUR Healthcare! (IOH) &#8211; <a href="http://mobileactive.org/howtos/how-run-text-screen-campaign">How to Run a Text-to-Screen Campaign</a></li>
<li><a href="http://www.pathwaystohousing.org/">Pathways to Housing</a>: <a href="http://mobileactive.org/interactive-texts-take-over-public-spaces">Interactive Texts Involve You in Public Spaces</a></li>
</ul>
</li>
<li>Reference to <a href="http://www.youtube.com/user/Direct">YouTube DIRECT</a> which allows you to embed the upload functionality of YouTube directly into your own  site.</li>
<li><a href="http://www.txtualhealing.com/">TXTual Healing</a>: Projecting messages onto interactive SMS displays across urban areas.</li>
<li>Requesting and receiving information via text message:
<ul>
<li><a href="http://climatecounts.org/">Climate Counts</a> &#8211; Get climate related information for a company by using the keyword <strong>cc</strong> plus the company name to short code 30644 in the United States</li>
<li><a href="http://www.blueocean.org/fishphone/index.html">The Blue Ocean Institute | Fishphone</a> &#8211; &#8220;To find out about your seafood choice, text 30644 with the message FISH  and the name of the fish in question. We’ll text you back with our  assessment and better alternatives to fish with significant  environmental concerns.&#8221;</li>
</ul>
</li>
<li>Mobile possibilities:
<ul>
<li>Blue-tooth advertising</li>
<li>Blackberry Messaging (BBM)</li>
<li><a href="http://en.wikipedia.org/wiki/Unstructured_Supplementary_Service_Data">Unstructured Supplementary Service Data</a> (USSD): Short session based messaging e.g. for getting minutes for pre-paid phone plans.</li>
<li><a href="http://en.wikipedia.org/wiki/2-way_iSMS">Interactive SMS</a> (iSMS)</li>
<li><a href="http://www.frontlinesms.com/">FrontlineSMS</a></li>
<li>Mobile websites</li>
</ul>
</li>
<li>Preventing abuse: <a href="http://mmaglobal.com/policies/code-of-conduct">Mobile Marketing Association Code of Conduct</a></li>
<li>Cost: India and South East Asia have the cheapest vendors as of now. Looking to see how Bharti buying Zain will affect markets elsewhere. PINK!. Sorry just had to. Every time I think of Zain I think of pink. Deep, vibrant, shocking pink!</li>
</ul>
<p><strong>Lisa Campbell Salazar, <a href="http://www.mobilerevolutions.org/">TakingITMobile</a></strong></p>
<p>This was a remote presentation via Skype. Was a little difficult to follow but I got a better idea of what the aim was when I visited the project website. Mostly gathering data from a number of developing countries regarding how youth use mobile technology.</p>
<p><strong>Michelle Hamilton Page <em>Toronto Public Health, </em>Proximity Marketing</strong></p>
<ul style="list-style:circle">
<li><a href="http://www.hypertag.com/">Hyper Tag</a>: A wearable device which can broadcast / transfer information via blue-tooth. Michelle spoke about past and future campaigns utilizing this device. The phones receiving the information have to be set to discoverable and the user has the capability to accept or reject a transmission request.</li>
<li><a href="http://inspot.org/">inspot.org</a>: STD notification / encouragement for testing e-cards. This was a service one of the Toronto Public Health campaigns was promoting. The conversion rate (in this case the number of phones observed versus phones reached) was fairly high. However there seemed to be more of a focus on dissemination and less on the final goal. Michelle mentioned though that they are planning to improve their analysis methods.</li>
<li><a href="http://www.urbandna.ca/">UrbanDNA:</a> The company Toronto Public Health chose to partner with for this particular kind of campaign.</li>
<li>Observation: Mass distribution did not work well for them and they found one-on-one got a lot more people involved.</li>
<li><a href="http://en.wikipedia.org/wiki/Short_code">Short Code</a> woes: Need to make sure you own them. Could end up in a situation where you lose them after they&#8217;ve been established as branding or marketing contact points.</li>
</ul>
<p><strong>Kelisha Peart, <a href="http://www.black-cap.com">Black CAP</a><br />
</strong></p>
<ul style="list-style:circle">
<li>Case Study: Focus groups in targeted regions within the Greater Toronto Area</li>
<li>Interesting results. See website for more details</li>
</ul>
<p><strong><a href="http://twitter.com/himabatavia">Hima Bhatavia</a> for Jim Monis, <a href="http://www.mobilegiving.ca/">Mobile Giving Foundation</a>:</strong></p>
<p>Company started in the United States and from what I gathered they proceeded to form partnerships with mobile carriers which allow users to use short codes to donate money to charities. The donation shows up on their cellphone bill at the end of the month. The Mobile Giving Foundation charges each charity around $350 to sign up and sends out checks every 60-90 days. Currently there seem to be a number of partner organizations which facilitate the process such as <a href="http://www.zipgive.com/">ZipGive</a>.</p>
<p><strong>Andrew D’Amico, <a href="http://www.zipgive.com/">ZipGive</a></strong></p>
<ul style="list-style:circle">
<li>Currently running the Young Artists for Haiti campaign</li>
<li>Maximum donation cap: Set to $30 since if a user chooses not to pay their bill, the carrier gets saddled with the cost.</li>
<li>However there is the potential to activate monthly donations or a multi-layered pledge option for larger donations.</li>
<li>Does not have GEO tagging capability (Important consideration pointed out by <a href="http://www.dalezak.ca/">Dale Zak</a>)</li>
<li>Currently all text outs are handled by ZipGive. They have their own databases of users which can be populated by data you provide. I believe the software has the capability to allow companies to send out their own text outs, but for the moment it&#8217;s centralized to prevent abuse. But I think down the road there should be more control within the individual companies. It would probably cost less and save time spent communicating with the middle man.</li>
<li>Feedback loops need strengthening i.e. a means of co-relating texts sent out with number of users who followed up on them</li>
<li>Premium text messages: One of the audience members wondered why those are not being used instead of the short codes. Apparently there isn&#8217;t a cap on the donation amount in those cases. According to the presenters, the charities do not get a 100% of the proceeds of premium text messages and some carriers have chosen to disable this option since it has been known for abuse.</li>
<li>SMS vs <a href="http://en.wikipedia.org/wiki/QR_codes">QR Codes</a>: Unfortunately I don&#8217;t know much about QR codes but according to the presenters these tend to be restricted to applications within smart phones. If any of you have any addition information, feel free to use the comments sections of this post.</li>
</ul>
<p><strong>Measuring Success on Mobile, <em>Katrin Verclas (<a href="http://mobilebenchmarks.org/">mobilebenchmarks.org</a>)</em></strong></p>
<p>Kartrin recently launched a website which is related to collecting, analyzing and disseminating information about metrics related to using mobile technology for advocacy, fund raising etc. MobileActive partnered with <a href="http://www.mrss.com/">M+R Strategic Services</a> for this project. Some interesting things which came up during this conversation:</p>
<ul style="list-style:circle">
<li>Keyword opt-in is really low</li>
<li>Even though you may have blocked your cellphone number so that people can&#8217;t see it when you call, it will still be displayed in you text message them.</li>
<li>Important to consider churn rate (rate at which mobile numbers go bad)</li>
<li>A re-opt in is required if you switch carriers even if there is number portability</li>
<li>Incentive to participate can be good e.g. free airtime.</li>
<li>Emphasis on the FailFast concept i.e. by all means try but know when to quit.</li>
</ul>
<p><strong>Mobile Volunteerism <em>Dale Zak <a href="http://apps4good.ca/">Apps4Good.ca</a></em></strong></p>
<p>I could not make it for this one since it was at the same time as Katrin&#8217;s but be sure to check out the website and I&#8217;ll try and post up any related presentation material as soon as I can get hold of it.</p>
<p><strong>Workshop: Building Mobile into My Communication Strategy, <a href="http://hjcnewmedia.com/">HJC</a></strong></p>
<p>By this point I was a little wiped out. There were some interesting projects people were working on but all in all I don&#8217;t think many people had come with a specific project in mind. Most seemed to be considering the potential.</p>
<p><strong>Random Observations at the Conference</strong>:</p>
<ul style="list-style:circle">
<li>Everyone had a Mac with the exception of one Thinkpad and my Dell.</li>
<li>Majority had iPhones and Blackberrys. Katrin and I seemed to be the only ones with Android based smart phones.</li>
<li>The digital installation was AWESOME. It was called SEED and the idea was that you could call in a local number and a seed would appear on the screen which was attributed to you. You could then use phone keys to grow and spread your tree. After you were finished, your virtual tree would be added to the virtual forest and <a href="http://www.evergreen.ca/">Evergreen</a> would plant a real tree in lieu of the one you created virtually.</li>
<li><a href="http://www.marigoldsandonions.com/">Marigolds &amp; Onions</a>: I really liked lunch so here&#8217;s a shout out to the caterers.</li>
<li>Twitter tag for the conference: <a href="http://twitter.com/#search?q=%23ncwk">#ncwk</a></li>
<li>Last but not least shout out to the organizers for a great event!</li>
<li>And yes I know there are not enough pictures primarily because I forgot to take along my SLR.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://racooncode.com/2010/06/10/net-change-2010-mobile-tech/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now Physically on the TTC!</title>
		<link>http://racooncode.com/2010/06/04/now-on-the-rocket</link>
		<comments>http://racooncode.com/2010/06/04/now-on-the-rocket#comments</comments>
		<pubDate>Fri, 04 Jun 2010 13:14:38 +0000</pubDate>
		<dc:creator>Saira</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://racooncode.com/?p=2747</guid>
		<description><![CDATA[One of a websites I worked on a couple of months ago is now on TTC streetcars and other vehicles!]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://racooncode.com/wordpress/http://racooncode.com/wordpress/wp-content/uploads/2010/06/1102270401.jpg"><img class="aligncenter size-medium wp-image-2749" title="110227040" src="http://racooncode.com/wordpress/http://racooncode.com/wordpress/wp-content/uploads/2010/06/1102270401-400x175.jpg" alt="" width="400" height="175" /></a></p>
<p style="text-align: left;">One of a websites I worked on a couple of months ago is now on TTC streetcars and other vehicles!</p>
]]></content:encoded>
			<wfw:commentRss>http://racooncode.com/2010/06/04/now-on-the-rocket/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TechKnowFile 2010</title>
		<link>http://racooncode.com/2010/05/27/techknowfile-2010</link>
		<comments>http://racooncode.com/2010/05/27/techknowfile-2010#comments</comments>
		<pubDate>Thu, 27 May 2010 16:53:02 +0000</pubDate>
		<dc:creator>Saira</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Workshops & Seminars]]></category>
		<category><![CDATA[utoronto]]></category>

		<guid isPermaLink="false">http://racooncode.com/?p=2672</guid>
		<description><![CDATA[TechKnowFile 2010 was held on the 26th of May at University of Toronto. It was basically a one day conference with the usual keynote speaker and multiple breakout sessions you could choose from. In this [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://techknowfile.org/"><img class="aligncenter size-medium wp-image-2676" title="pasada_logo" src="http://racooncode.com/wordpress/http://racooncode.com/wordpress/wp-content/uploads/2010/05/pasada_logo-399x65.png" alt="" width="399" height="65" /></a></p>
<p>TechKnowFile 2010 was held on the 26th of May at <a href="http://www.utoronto.ca">University of Toronto</a>. It was basically a one day conference with the usual keynote speaker and multiple breakout sessions you could choose from. In this post I am going to be sharing some highlights and my thoughts on the content.</p>
<p>Oddly enough I wasn&#8217;t supposed to be presenting, only facilitating a demo. Yet it somehow worked out that I ended up having a fair bit to say. Interesting experience.</p>
<p><strong>Scholars, Scholarship and the Scholarly Enterprise in the Digital Age<br />
Richard Katz, Vice President, EDUCAUSE</strong></p>
<p>The event kicked off with a keynote from Richard N. Katz of <a href="http://www.educause.edu/">EDUCAUSE</a> and <a href="http://www.educause.edu/ecar">ECAR</a>. The primary focus of the presentation was on scholarship then and now. He drew from his own experiences in research and compared them to current scholars who could get access to primary sources over the internet within a fraction of the time it would have taken him 20-30 years ago. He also discussed <a href="http://en.wikipedia.org/wiki/Category:Open_universities">open universities</a> such as <a href="http://www.phoenix.edu/">University of Phoenix</a> which has approximately 300,000 students and how University of Toronto has to keep all this in context when planning for the future and being competitive in the modern world.</p>
<p>One other topic he touched upon was the rise of private/public institutions other than Universities which are being given equal importance of late when it comes to being experts in certain fields. In his view, they tend to be pursuing their own agenda unlike supposedly institutes of higher learning which are more broad in their approach. I don&#8217;t necessarily agree with this though. Universities of late are becoming more and more focused on the financial bottom line and very often research is based on which industry giant is willing to fund it. Obviously the company/industry involved is only going to end up funding projects which work in their favor majority of the time.</p>
<p>One thing I did like about his talk though was his emphasis on how fast things change. He referred to the current crisis in the newspaper industry and how whilst they were still working towards improving presses, the internet completely took over and got rid of the need for presses in the first place. This again was a recurring cautionary tale across the conference.</p>
<p><strong>Vegan Cats and the Oncoming Tsunami &#8211; Marden Paul</strong></p>
<p><a href="http://ca.linkedin.com/pub/marden-paul/8/a61/134">Marden Paul</a> was probably the most engaging speaker I&#8217;ve come across in some time. Flew off tangents every five minutes but on a larger scale his concepts seemed to be a cohesive whole.</p>
<p>The vegan cat phenomenon stemmed from meat requiring more energy to process it than that required to process vegetables. Around 9 times as much. So eventually meat will become a commodity and cats being one of few entirely carnivore beings could be in a bit of fix. Preparing for the future, one may choose to slowly encourage cats to eat vegetables and maybe eventually push evolution to the point that you end up with vegan cats. This was more of a metaphor for planning for the future in a number of spheres and his suggestion for being Bifocular i.e. managing to look at the immediate and the distant future simultaneously. There was a sarcastic reference to the Hitchhiker&#8217;s Guide to the Universe SEP (Somebody Else&#8217;s Problem) concept too.</p>
<p>There was also some discussion on how other universities are changing the way they do business. For example <a href="http://www.asu.edu/">Arizona State University</a> which has outsourced all information technology services. This may seem extreme but could potentially work well in areas often disrupted by natural disasters, thus less loss and existing infrastructure to turn to when rebuilding.</p>
<p>One of the questions from the audience was a bit thought provoking. A gentleman suggested that there is a tendency among universities to be either leftist or centre focused with regard to their policies and that does at times shut out other opinions.</p>
<p>Yet another suggestion from the audience regarding matching profiles to courses similar to match.com got me thinking about an android application aggregating course information using web services from each department. Unfortunately that went up in smoke when the realization hit me that majority of the departments still set up course calendars manually and don&#8217;t have database back ends.</p>
<p><strong>eMarX &#8211; Extending functionality in ROSI Express, SWS with UTM web applications  &#8211; Andrew Wang &amp; Cesar Mejia</strong></p>
<p>This was my department&#8217;s presentation and the one I ended up doing the demo for. Basically a rewrite of an existing mark collection, approval, amendment application from a Perl stand alone to a java based portlet within a portal. Over the past six months the software stack was Liferay as the portal, Glassfish as the server, EJB 3.0, Java Server Pages and Seam with ICEFaces adding ajax functionality.  However of late we seem to be moving to Tomcat and UPortal primarily due to more concrete efforts by the university to eventually go <a href="http://www.kuali.org/">Kuali</a>.</p>
<p><strong>Network Monitoring with OpenSource Tools &#8211; Glenn Attwood</strong></p>
<p>I was interested in this specific session since I&#8217;m probably going to be in East Africa next summer working on the <a href="http://www.millenniumvillages.org/">Millennium Villages Project</a>. From my past experiences living on the continent, from the context of the computer person per se, one ends up troubleshooting a lot of network and hardware issues in addition to whatever software task you get assigned. So brushing up on one&#8217;s knowledge of low cost solutions is always a good thing.</p>
<p>Glenn covered a number of open source tools which the University of Toronto Scarborough Campus (UTSC) uses:</p>
<p><a href="http://oss.oetiker.ch/rrdtool/">RRDTool</a> (Red Robin Database Tool): UTSC is using the Perl binding and uses it primarily to track trends over time.</p>
<p><a href="http://oss.oetiker.ch/smokeping/">SmokePing</a>: Used for switches and works by sending pings at regularly intervals to specified locations. Can also set up a slave which does the pinging and sends data to a central data collection server. The graphs are quite useful for seeing fluctuations in package transfer and loss. You can also set it up to send notification emails based on specified thresholds for ping loss.</p>
<p><a href="http://oss.oetiker.ch/mrtg/">MRTG </a>(Multi Router Traffic Grapher): I was a little lost on this one since my network acronym knowledge is somewhat limited and Glenn got a little technical.</p>
<p><a href="http://netdisco.org/">NETDISCO</a></p>
<p>One of the major questions asked at the end of the session was why UTSC chose to stick with open source when they are commercial options available. Glenn pointed out there is definitely a cost element but also commercial tools tend to be fully integrated and may require more upkeep and less possibility for customization.</p>
<p><strong>Core vs. Context: Lessons From the Trenches of Application Development &#8211; Mark Hume</strong></p>
<p>I wasn&#8217;t impressed with this session. It seemed to be more a demonstration of a CMS and suggestions/recommendations were aimed at the layman. There was also some discussion at the end about why NGSIS (Next Generation Student Information Services) is not a good idea. The argument given was that it&#8217;s a new system scraping all existing systems and replacing them. However there seems to be some miscommunication since the web services he was referring to was pretty much what NGSIS is planning to do. Even PHP applications will eventually be able to communicate with the ROSI DB via web services if all goes according to plan. In addition the potential introduction of Kuali is likely to change the dynamics quite a bit.</p>
<p><strong>CIO&#8217;s Address, Closing of the conference Robert Cook, CIO</strong></p>
<p>Rob Cook basically just went over current plans at U Toronto such as:</p>
<ul>
<li>NGSIS: Next Generation Student Information Services</li>
<li>Network Renewal: Wireless</li>
<li>Data Centre Upgrade</li>
</ul>
<p>And it was all wrapped up with all kinds of prizes which were mostly mice and headsets.</p>
<p><strong>Food (More for feedback purposes):</strong></p>
<ul>
<li>Breakfast: Loved the abundance of fruit</li>
<li>Smoked Chicken sandwich: Dry. I&#8217;d go for the egg next time</li>
<li>Cookies: Good</li>
<li>Snack: Those Welsh&#8217;s gummy bears were pretty awesome but the rest&#8230; nah.</li>
<li>Networking buffet: Apparently the whole food budget got spent here. Really good dips, shrimp, spinach pastries. Although not enough sushi because I was only ten minutes late and didn&#8217;t get any.</li>
</ul>
<p>In short, muchas gracias to the organizers. All in all I enjoyed it and it was interesting finding out more about what&#8217;s happening across the university tech wise.</p>
<p>Website: <a href="http://techknowfile.org/">http://techknowfile.org/</a><br />
Twitter: <a href="http://twitter.com/techknowfile">http://twitter.com/techknowfile</a><br />
hashtag: <a href="http://twitter.com/search?q=%23tkf2010">#tkf2010</a></p>
]]></content:encoded>
			<wfw:commentRss>http://racooncode.com/2010/05/27/techknowfile-2010/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Some content movement</title>
		<link>http://racooncode.com/2010/05/19/some-content-movement</link>
		<comments>http://racooncode.com/2010/05/19/some-content-movement#comments</comments>
		<pubDate>Wed, 19 May 2010 15:09:33 +0000</pubDate>
		<dc:creator>Saira</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://racooncode.com/?p=2659</guid>
		<description><![CDATA[For some time I&#8217;ve had the company introduction on the front page of this site and I&#8217;m starting to realize&#8230; it&#8217;s a little boring. So the blog has been given precedence. Working on a couple [...]]]></description>
			<content:encoded><![CDATA[<p>For some time I&#8217;ve had the company introduction on the front page of this site and I&#8217;m starting to realize&#8230; it&#8217;s a little boring. So the blog has been given precedence. Working on a couple of things:</p>
<p></p>
<p>a) A separate feed for tech. jobs in the global south and the not-for-profit sector.<br />
b) More detailed posts on initiatives under way.</p>
<p>Maybe right after I write up a decent app. for Skype on Android. Fring is bloody buggy.</p>
]]></content:encoded>
			<wfw:commentRss>http://racooncode.com/2010/05/19/some-content-movement/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

