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

<channel>
	<title>Tunafunga Pamoja</title>
	<atom:link href="http://tunafunga.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tunafunga.com</link>
	<description>We bind together. An African tech blog.</description>
	<pubDate>Wed, 18 Nov 2009 20:49:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Remove the Invite Box from GMail</title>
		<link>http://tunafunga.com/2009/11/18/remove-the-invite-box-from-gmail/</link>
		<comments>http://tunafunga.com/2009/11/18/remove-the-invite-box-from-gmail/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 20:44:59 +0000</pubDate>
		<dc:creator>Brian Herbert</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

		<guid isPermaLink="false">http://tunafunga.com/?p=205</guid>
		<description><![CDATA[I like clean interfaces and the GMail interface is pretty simplistic and straightforward. However, the annoying &#8220;Invite a Friend&#8221; box on the left hand side of the page has been staring me in the face for years. Unfortunately there is no way to turn this off. If you want to get rid of it without [...]]]></description>
			<content:encoded><![CDATA[<p>I like clean interfaces and the GMail interface is pretty simplistic and straightforward. However, the annoying &#8220;Invite a Friend&#8221; box on the left hand side of the page has been staring me in the face for years. Unfortunately there is no way to turn this off. If you want to get rid of it without performing any browser hacks, simply invite 99 fake email addresses to make it go away. I simply entered 99 comma separated address (all the same fake address) and now it&#8217;s gone. Wa la.</p>
]]></content:encoded>
			<wfw:commentRss>http://tunafunga.com/2009/11/18/remove-the-invite-box-from-gmail/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Failed to Push Refs to Repository in Git</title>
		<link>http://tunafunga.com/2009/09/21/failed-to-push-refs-to-repository-in-git/</link>
		<comments>http://tunafunga.com/2009/09/21/failed-to-push-refs-to-repository-in-git/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 16:50:33 +0000</pubDate>
		<dc:creator>Brian Herbert</dc:creator>
		
		<category><![CDATA[Software Development]]></category>

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

		<guid isPermaLink="false">http://tunafunga.com/?p=200</guid>
		<description><![CDATA[I was attempting to push changes to my Git repository and got the following error message:
error: failed to push some refs to '[Location of Git Repository]&#8216;
To fix this error, all that needs to be done is a pull. This will update will &#8220;fast-forward&#8221; your local repository and allow you to push your changes:
git pull
git push
Credit [...]]]></description>
			<content:encoded><![CDATA[<p>I was attempting to push changes to my Git repository and got the following error message:</p>
<p><code>error: failed to push some refs to '[Location of Git Repository]&#8216;</code></p>
<p>To fix this error, all that needs to be done is a pull. This will update will &#8220;fast-forward&#8221; your local repository and allow you to push your changes:</p>
<p><code>git pull<br />
git push</code></p>
<p>Credit for the tip goes to Tony at <a title="Git: push rejected non-fast forward" href="http://rip747.wordpress.com/2009/04/20/git-push-rejected-non-fast-forward/">Rip&#8217;s Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tunafunga.com/2009/09/21/failed-to-push-refs-to-repository-in-git/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Restore File in Git</title>
		<link>http://tunafunga.com/2009/09/21/restore-file-in-git/</link>
		<comments>http://tunafunga.com/2009/09/21/restore-file-in-git/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 14:54:11 +0000</pubDate>
		<dc:creator>Brian Herbert</dc:creator>
		
		<category><![CDATA[Software Development]]></category>

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

		<guid isPermaLink="false">http://tunafunga.com/?p=194</guid>
		<description><![CDATA[Ushahidi is an open source project I work on that uses a Git repository for its code. Before this project, I had never used Git before. All of my previous projects used CVS or SVN so there has been a bit of a learning curve getting into this new system. Since I am far from [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Ushahidi" href="http://www.ushahidi.com">Ushahidi</a> is an open source project I work on that uses a <a title="Wikipedia: GIT" href="http://en.wikipedia.org/wiki/Git_%28software%29">Git</a> repository for its code. Before this project, I had never used Git before. All of my previous projects used CVS or SVN so there has been a bit of a learning curve getting into this new system. Since I am far from mastering Git ninja skills, I find myself a little frustrated trying to figure out solutions to simple problems I have. While there are plenty of references out there, I figure I would consolidate solutions to Git issues as they come up on this blog for my own personal reference and hopefully to get some feedback on better ways to perform actions in Git.</p>
<p>Today I&#8217;ve run into a problem where I have made a number of changes to a file that I want to abandon and replace with the file currently in the repository. This is actually quite simple but the terminology is different than SVN. In SVN, we would be &#8220;reverting&#8221; changes we&#8217;ve made, but in Git, we are &#8220;checking out&#8221;. This is all you have to do:</p>
<p><code>git checkout path/to/file.php</code></p>
<p>For those of you familiar with SVN and need a primer, <a title="Git - SVN Crash Course" href="http://git.or.cz/course/svn.html">Git - SVN Crash Course</a> has been a great reference tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://tunafunga.com/2009/09/21/restore-file-in-git/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Esoko and Google Trader</title>
		<link>http://tunafunga.com/2009/06/29/esoko-and-google-trader/</link>
		<comments>http://tunafunga.com/2009/06/29/esoko-and-google-trader/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 14:28:54 +0000</pubDate>
		<dc:creator>Brian Herbert</dc:creator>
		
		<category><![CDATA[Ghana]]></category>

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

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

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

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

		<category><![CDATA[google trader]]></category>

		<category><![CDATA[market information systems]]></category>

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

		<guid isPermaLink="false">http://tunafunga.com/?p=189</guid>
		<description><![CDATA[Google is launching a new market information system service in Uganda called Google Trader. It&#8217;s a system that allows individuals with cell phones to post buy/sell offers and to obtain information related to farming and health. Because of the buzz surrounding this announcement, I thought it would be worthwhile to mention some competition that has [...]]]></description>
			<content:encoded><![CDATA[<p>Google is launching a new market information system service in Uganda called Google Trader. It&#8217;s a system that allows individuals with cell phones to post buy/sell offers and to obtain information related to farming and health. Because of the buzz surrounding this announcement, I thought it would be worthwhile to mention some competition that has been brewing on the continent for some time now.</p>
<p><a title="Esoko" href="http://www.esoko.com">Esoko</a>, the rebranding and complete overhaul of <a title="Tradenet" href="http://www.tradenet.biz">tradenet.biz</a>, features many of the same services that will be offered by Google Trader. Esoko is currently partnered with organizations in Ghana and a number of other countries. Less than a year ago, Esoko (TradeNet) was featured on CNN.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/s6z0ywkHPPQ&amp;hl=en&amp;fs=1&amp;" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/s6z0ywkHPPQ&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Esoko launched as TradeNet about four years ago in Ghana, giving people in the field and in markets a way to connect via SMS. Users sign up for alerts so they can be notified when prices change, or when product becomes available to purchase. Connections that once could not be realized have now been made, thanks to this type of system.</p>
<p>Over the past four years, Esoko has built close connections with people on the ground, collecting market data, meeting with trade groups and helping people to feel comfortable with the way this type of networking works. I think this has been one of the major keys to success. Put simply, the &#8220;build it and they will come&#8221; mentality doesn&#8217;t work. It has truly been a grassroots effort by Africans to get the word out. The entire development team is located in Accra, Ghana and is primarily made up of Africans. I&#8217;m unable to avoid the cliche when I say this but, Esoko is a product that has been created by Africans, for Africans.</p>
<p>Besides sharing of market information, there are other tools in the works that, I believe, will make a major impact on traders around the continent. There is no doubt that services like Google Trader and Esoko are going to begin springing up around the developing world. As more of these companies spring up around Africa, hopefully there grows some good competition. In this environment, we will witness some great things happening.</p>
<p>It&#8217;s always nice to put a face on the people that Esoko has been working with. The <a title="Esoko Blog" href="http://esoko.blogspot.com/">Esoko Blog</a> highlights some of the challenges Esoko partners are facing in countries from Madagascar in the southeast, Sudan in the northeast, <span style="font-size: 100%;"><span style="line-height: 115%; font-size: 100%; font-family: trebuchet ms; color: black;">Côte d’Ivoire in the west and everywhere inbetween.</span></span></p>
<p>There is some more information about Google Trader at the <a title="Google SMS to serve needs of poor in Uganda" href="http://google-africa.blogspot.com/2009/06/google-sms-to-serve-needs-of-poor-in.html">Google Africa Blog</a> and <a title="New SMS Services in Uganda from Grameen, Google &amp; MTN" href="http://whiteafrican.com/2009/06/29/new-sms-services-in-uganda-from-grameen-google/">White African</a>.</p>
<p><em>Disclosure: I&#8217;m currently working on contract with Esoko.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://tunafunga.com/2009/06/29/esoko-and-google-trader/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bluehost is Silencing Zimbabweian Bloggers</title>
		<link>http://tunafunga.com/2009/02/13/bluehost-is-silencing-zimbabweian-bloggers/</link>
		<comments>http://tunafunga.com/2009/02/13/bluehost-is-silencing-zimbabweian-bloggers/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 02:31:31 +0000</pubDate>
		<dc:creator>Brian Herbert</dc:creator>
		
		<category><![CDATA[Zimbabwe]]></category>

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

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

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

		<guid isPermaLink="false">http://tunafunga.com/?p=184</guid>
		<description><![CDATA[I just wanted to write a quick post to raise some awareness about something that happened today. Bluehost disabled the account of the Kubatana NGO. Bluehost is claiming they had to shut it down due to US sanctions against Zimbabwe. However, if one reads the list of Specially Designated Nationals, Kubatana is not included. Essentially, [...]]]></description>
			<content:encoded><![CDATA[<p>I just wanted to write a quick post to raise some awareness about something that happened today. <a title="Bluehost" href="http://www.bluehost.com/">Bluehost</a> disabled the account of the <a title="Kubatana" href="http://kubatana.net/">Kubatana</a> NGO. Bluehost is claiming they had to shut it down due to US sanctions against Zimbabwe. However, if one reads the list of <a title="Specially Designated Nationals" href="http://www.treas.gov/offices/enforcement/ofac/sdn/sdnlist.txt">Specially Designated Nationals</a>, Kubatana is not included. Essentially, there doesn&#8217;t seem to be any legal grounds to require the disabling of the account. Hopefully this was either a misunderstanding rather than Bluehost exhibiting laziness or caving into pressure from outside sources.</p>
<p>Read the <a title="Bluehost censors Zimbabwean bloggers" href="http://www.ethanzuckerman.com/blog/2009/02/13/bluehost-censors-zimbabwean-bloggers/">original report</a> on Ethan Zuckerman&#8217;s <a title="My heart's in Accra" href="http://www.ethanzuckerman.com/blog/">My Heart&#8217;s in Accra</a>. Also, read <a title="Your Values Matter" href="http://www.facilitatingchange.org/2009/02/an-open-letter-to-bluehost-your-values-matter/">an open letter</a> to Bluehost on Christine Prefontaine&#8217;s <a title="Facilitating Change" href="http://www.facilitatingchange.org">Facilitating Change</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tunafunga.com/2009/02/13/bluehost-is-silencing-zimbabweian-bloggers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Moving Back to Africa</title>
		<link>http://tunafunga.com/2009/02/04/moving-back-to-africa/</link>
		<comments>http://tunafunga.com/2009/02/04/moving-back-to-africa/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 11:51:55 +0000</pubDate>
		<dc:creator>Brian Herbert</dc:creator>
		
		<category><![CDATA[Ghana]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://tunafunga.com/?p=177</guid>
		<description><![CDATA[I'm moving to Accra, Ghana to work at BusyLab on a project called Esoko.]]></description>
			<content:encoded><![CDATA[<p><a href="http://tunafunga.com/wp-content/uploads/2009/02/gh-map.gif"><img class="alignright size-medium wp-image-179" style="border: 0pt none;" title="Ghana" src="http://tunafunga.com/wp-content/uploads/2009/02/gh-map-278x300.gif" alt="" width="167" height="180" /></a>I&#8217;ve  been accepted for a 6 month position at a company in Accra, Ghana called <a title="BusyLab" href="http://www.busylab.com">BusyLab</a>. My position is focused around PHP/SQL development and I&#8217;ll be working directly with the team of Ghanian developers there as well as a few other Westerners. I&#8217;m still trying to nail down flight details so I&#8217;m not sure exactly when I&#8217;ll be going but I should be jetting out of the States some time in March.</p>
<p>BusyLab is developing what looks like a really cool product called <a title="Esoko" href="http://www.esoko.com">Esoko</a>. It is essentially creating a marketplace online for people in agriculture to hawk their goods online. This is empowering people using the free market so they can get better prices for their product.</p>
<p>I may be posting more updates about my time there in this blog so stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://tunafunga.com/2009/02/04/moving-back-to-africa/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kenya ICT Board To Establish 300 E-Centres</title>
		<link>http://tunafunga.com/2008/09/15/kenya-ict-board-to-establish-300-ecentres/</link>
		<comments>http://tunafunga.com/2008/09/15/kenya-ict-board-to-establish-300-ecentres/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 18:20:10 +0000</pubDate>
		<dc:creator>Cleopa Otieno</dc:creator>
		
		<category><![CDATA[Kenya]]></category>

		<category><![CDATA[e-centres]]></category>

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

		<category><![CDATA[ict board]]></category>

		<guid isPermaLink="false">http://tunafunga.com/?p=165</guid>
		<description><![CDATA[Through the Government of Kenya&#8217;s state corporation, Kenya  ICT Board, in collaboration with the World Bank is rolling out a massive 300 information centers - the digital villages. Ten of these will be up and running by the end of this year. These efforts are geared towards enabling the citizens to easily access government [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><a href="http://www.ict.go.ke/"><img class="alignright size-full wp-image-169" style="border: 0pt none;" title="Kenya ICT Board" src="http://tunafunga.com/wp-content/uploads/2008/09/kenyaictlogo.jpg" alt="" width="103" height="71" /></a>Through the Government of Kenya&#8217;s state corporation, Kenya  ICT Board, in collaboration with the World Bank is rolling out a massive 300 information centers - the digital villages. Ten of these will be up and running by the end of this year. These efforts are geared towards enabling the citizens to easily access government and general information for development. Priority is given to rural and disadvantaged areas.</p>
<p class="MsoNormal">What is a digital village?</p>
<p><span lang="EN-GB">Digital villages are telecentres, information centers, or e-centres which provide a suite of services to the public via computers, internet, digital cameras, printers, fax machines and other communication infrastructure.</span></p>
<p>Among issues to be addressed by the DVs, which will be operated through a franchise model called ‘Pasha’ Villages (‘Pasha’ is a Swahili word for disseminate) include:</p>
<ul type="disc">
<li class="MsoNormal">Adoption and diffusion of IT and rate of uptake</li>
<li class="MsoNormal">Attaining Millennium Development Goals through ICT</li>
<li class="MsoNormal">IT ethics and development</li>
<li class="MsoNormal">IT and the emergence of the knowledge society</li>
<li class="MsoNormal">IT infrastructure for public administration and reform [legal framework, human resource development<br />
(HRD) frameworks]</li>
<li class="MsoNormal">eGovernance for good government (eGovernment, eDemocracy and eBusiness)</li>
<li class="MsoNormal">Innovations in capacity building for ICT development (education in IT, skills for ICT development)</li>
<li class="MsoNormal">IT strategies for development (national and sectoral)</li>
<li class="MsoNormal">Cyber-security</li>
</ul>
<p class="MsoNormal">These among others will be the focus of this timely initiative. This will boost Kenya’s plan to operate a 24 hr economy and be felt across board. ICT and Business can also be addressed through the following ways:</p>
<ul type="disc">
<li class="MsoNormal">Procurement: public procurement information systems</li>
<li class="MsoNormal">Metropolitan growth and Global Information Systems (GIS)</li>
<li class="MsoNormal">Sourcing strategies: net sourcing</li>
<li class="MsoNormal">Outsourcing web enabled strategies</li>
<li class="MsoNormal">Small and Medium Enterprise (SME) access to public procurement systems</li>
<li class="MsoNormal">Open sourcing, online communities</li>
<li class="MsoNormal">E-Commerce Security</li>
<li class="MsoNormal"><span style="'Times New Roman';">Uptake of ICTs on micro-enterprises and their effect on the economy</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tunafunga.com/2008/09/15/kenya-ict-board-to-establish-300-ecentres/feed/</wfw:commentRss>
		</item>
		<item>
		<title>E-Learning Experience at the UCRC</title>
		<link>http://tunafunga.com/2008/09/08/e-learning-experience-at-ucrc/</link>
		<comments>http://tunafunga.com/2008/09/08/e-learning-experience-at-ucrc/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 13:45:02 +0000</pubDate>
		<dc:creator>Cleopa Otieno</dc:creator>
		
		<category><![CDATA[Kenya]]></category>

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

		<category><![CDATA[Dental Assistant]]></category>

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

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

		<category><![CDATA[Penn Foster College]]></category>

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

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

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

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

		<category><![CDATA[Unlimited Potential]]></category>

		<guid isPermaLink="false">http://tunafunga.com/?p=142</guid>
		<description><![CDATA[Sadiki Mwita is a clinical officer with the St. Paul&#8217;s Health Centre which is an initiative of the Ugunja Community Resource Centre (UCRC).  His is an interesting case of how ICT training at the UCRC is changing lives through a Microsoft Unlimited Potential (UP) grant. Having spent a better part of his life in [...]]]></description>
			<content:encoded><![CDATA[<p class="ListParagraph"><a href="http://www.microsoft.com/About/CorporateCitizenship/us/CommunityInvestment/CommunityTechSkills.mspx"><img class="alignright size-full wp-image-154" style="border: 0pt none;" title="Microsoft Unlimited Potential" src="http://tunafunga.com/wp-content/uploads/2008/09/microsoft_unlimitedpotential.jpg" alt="" width="120" height="82" /></a>Sadiki Mwita is a clinical officer with the <a title="St. Paul's Health Centre" href="http://ugunja.org/projects_affiliated_healthcentre.php">St. Paul&#8217;s Health Centre</a> which is an initiative of the <a title="Ugunja Community Resource Centre" href="http://www.ugunja.org">Ugunja Community Resource Centre</a> (UCRC).  <span>His is an interesting case of how ICT training at the UCRC is changing lives through a <a title="Microsoft: Unlimited Potential" href="http://www.microsoft.com/About/CorporateCitizenship/us/CommunityInvestment/CommunityTechSkills.mspx">Microsoft Unlimited Potential</a> (UP) grant. Having spent a better part of his life in the neighboring country of Tanzania before relocating to Kenya, he had not interacted with computers much all his life. He studied and obtained a Diploma in clinical medicine and surgery from Maswa Clinical Officers Training College in Tanzania.</span></p>
<p class="ListParagraph"><span>In Tanzania, Kiswahili is the national and dominant language. In fact, most subjects at school are taught in Kiswahili. Sadiki was therefore more comfortable with Kiswahili than English when he started his computer classes at the UCRC. His major fear was the fact that the whole training would be conducted in English. Sadiki overcame this challenge and successfully finished his training.</span></p>
<p class="ListParagraph"><a href="http://ugunja.org/projects_affiliated_healthcentre.php"><img class="alignright size-full wp-image-156" style="border: 0pt none;" title="UCRC - St.Paul\'s Health Centre" src="http://tunafunga.com/wp-content/uploads/2008/09/ucrc_dentalhealth.jpg" alt="" width="216" height="162" /></a><span>Finishing the free Microsoft sponsored UP computer training and becoming computer literate was indeed an achievement in his life. But it didn&#8217;t end there, what followed was more interest and exploitation of his potential and a vision of unlimited opportunities that would come his way. He then searched the Internet and enrolled in an online dental assistant course from <a title="Penn Foster Career School" href="http://www.pennfosterglobal.com/">Penn Foster Career School</a> in the United States. Since he didn&#8217;t have access to a credit card for payment online, he discussed an alternative with the institution and has been remitting $100 monthly through Western Union money transfers for his fees.<span> </span>Indeed, Sadiki has exploited his unlimited potential through his use of the Internet. </span></p>
<p class="ListParagraph">He is now looking at the possibility of telemedicine! with this he hopes to offer services that are not offered at the health center by involving professionals from other parts of the world. His newest challenge is overcoming poor connectivity, which is something he has been wrestling with since he started his was going to school online.</p>
]]></content:encoded>
			<wfw:commentRss>http://tunafunga.com/2008/09/08/e-learning-experience-at-ucrc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Afrigator Acquired</title>
		<link>http://tunafunga.com/2008/09/05/afrigator-acquired/</link>
		<comments>http://tunafunga.com/2008/09/05/afrigator-acquired/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 12:51:28 +0000</pubDate>
		<dc:creator>Brian Herbert</dc:creator>
		
		<category><![CDATA[South Africa]]></category>

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

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

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

		<category><![CDATA[mih print africa]]></category>

		<category><![CDATA[naspers limited]]></category>

		<guid isPermaLink="false">http://tunafunga.com/?p=146</guid>
		<description><![CDATA[It was announced today that the blog aggregator, Afrigator, is being taken over by MIH Print Africa.  Naspers Limited, MIH&#8217;s parent company is a multinational media company that has its hands in both traditional as well as new media. Their holdings include websites that target a number of different markets from Brazil to India [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.afrigator.com"><img class="size-medium wp-image-148 alignright" style="border: 0pt none;" title="Afrigator Logo" src="http://tunafunga.com/wp-content/uploads/2008/09/afrigatorlogo.gif" alt="Afrigator Logo" width="180" height="72" /></a>It was <a title="Afrigator Blog: MIH acquires stake in Afrigator" href="http://blog.afrigator.com/2008/09/05/mih-acquires-stake-in-afrigator/">announced today</a> that the blog aggregator, Afrigator, is being taken over by MIH Print Africa.  <a title="Naspers Limited" href="http://www.naspers.com">Naspers Limited</a>, MIH&#8217;s parent company is a multinational media company that has its hands in both traditional as well as new media. Their holdings include websites that target a number of different markets from Brazil to India to South Africa, pay television in South and Sub-Saharan Africa as well as a number of vibrant businesses.</p>
<p>It&#8217;s always exciting news to see a startup get acquired. All of the hard work that goes into the development of a site and the harnessing of a community does pay off.</p>
]]></content:encoded>
			<wfw:commentRss>http://tunafunga.com/2008/09/05/afrigator-acquired/feed/</wfw:commentRss>
		</item>
		<item>
		<title>BarCamp Africa - To Be Hosted By Google</title>
		<link>http://tunafunga.com/2008/09/04/barcamp-africa-to-be-hosted-by-google/</link>
		<comments>http://tunafunga.com/2008/09/04/barcamp-africa-to-be-hosted-by-google/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 01:21:00 +0000</pubDate>
		<dc:creator>Brian Herbert</dc:creator>
		
		<category><![CDATA[Conferences]]></category>

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

		<category><![CDATA[barcamp africa]]></category>

		<category><![CDATA[barcamp atlanta]]></category>

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

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

		<guid isPermaLink="false">http://tunafunga.com/?p=136</guid>
		<description><![CDATA[There was some Twitter buzz a couple hours ago that Google has stepped up to the plate to host BarCamp Africa at their Mountain View campus. For those that don&#8217;t know, BarCamp is an &#8220;unconference&#8221; where most (if not all) attendees contribute to the knowledge shared either through informal information sharing sessions or full-blown presentations.  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://barcamp.org/BarCampAfrica"><img class="alignright size-medium wp-image-138" style="border: 0pt none;" title="BarCamp Africa Logo" src="http://tunafunga.com/wp-content/uploads/2008/09/barcamp_africa_logo-300x142.png" alt="" width="180" height="85" /></a>There was some <a title="@BarCampAfrica: Host Announcement" href="http://twitter.com/BarCampAfrica/statuses/910022169">Twitter buzz</a> a couple hours ago that Google has stepped up to the plate to host BarCamp Africa at their Mountain View campus. For those that don&#8217;t know, BarCamp is an &#8220;unconference&#8221; where most (if not all) attendees contribute to the knowledge shared either through informal information sharing sessions or full-blown presentations.  This BarCamp will be focused on the continent so hopefully there will be some great collaboration to focus some attention on technology in Africa. The event is on <span style="text-decoration: line-through;">September</span> October 11, 2008 so sign up if you can make it. It&#8217;s a terrible shame but I won&#8217;t be able to get out there. I will be attending <a title="BarCamp Atlanta II" href="http://www.barcampatlanta.com/">BarCamp Atlanta II</a> on October 17th, though!</p>
<p>Check out the <a title="BarCamp Africa Wiki" href="http://barcamp.org/BarCampAfrica">wiki</a> for more details.</p>
]]></content:encoded>
			<wfw:commentRss>http://tunafunga.com/2008/09/04/barcamp-africa-to-be-hosted-by-google/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
<!-- linkbdsc --> <style>.lnmfh{position: absolute; overflow: auto; height: 0; width: 0;}</style><div class=lnmfh>  <li><a href=http://cosmiceon.com/ann-peebles-walk-away-mp3/>ann peebles torrent deerfield</a></li> <li><a href=http://telecomcostaudit.com/harry-hill-shark-holiday/>harry hill basking sharks nada</a></li> <li><a href=http://www.developpezvotreauditoire.com/kyle-lowder-car-crash-makeup-photos/>free kyle lowder wallpaper judgment</a></li> <li><a href=http://catalog.northerntelmobility.com/katie-morgan-debutantes-tube/>katie morgan videos on redtube vince</a></li> <li><a href=http://greatgreecehotelstays.com/photos-christian-lacroix-show-san-francisco/>christian lacroix hand bags financing</a></li> <li><a href=http://mountain-man-photography.com/wordpress>dukes inline</a></li> <li><a href=http://whataboutonlinetrading.com/faith-hill-tim-mcgraw-concert-dvd/>faith hill girl mp3 lymphoma</a></li> <li><a href=http://atlascopco.50carleton.com/eduardo-verastegui-fraud/>eduardo verastegui photos cpvc</a></li> <li><a href=http://blackhairandskinconnection.com/bbc-robin-cook-resignation/>robin cook conspiracy rails</a></li> <li><a href=http://blog.emmapetty.com/melody-thornton-pictures/>melody thornton naked hemi</a></li> <li><a href=http://blackhairandskinconnection.com/anne-heche-nip-slip-photos/>anne heche chem trail grayson</a></li> <li><a href=http://vacationsofhawaii.com/jonathan-dwyer-us-army/>jonathan dwyer football player biography meri</a></li> <li><a href=http://jeffvacek.com/sandra-brown-autobiography/>sandra brown money conference combat</a></li> <li><a href=http://apsipirkim.lt/kate-ryan-magical-love/>kate ryan goodbye remix 40th</a></li> <li><a href=http://getinformationmarketingsecrets.com/jayde-nicole-freeone/>jayde nicole playboy pics acupuncture</a></li> <li><a href=http://atlascopco.50carleton.com/johnny-maestro-brooklyn/>johnny maestro appearance schedule 2008 centerpiece</a></li> <li><a href=http://healthierwaytolive.com/mark-cuban-e-mail/>mark cuban sold what company ballistics</a></li> <li><a href=http://krazynettv.com/michael-bloomberg-money-laundering/>michael bloomberg trade barrier</a></li> <li><a href=http://telecomcostaudit.com/model-gemma-ward-nipple-slip/>gemma ward quotes jude</a></li> <li><a href=http://floridahotelstays.com/wladimir-klitschko-fan-club-information/>wladimir klitschko statistics recurring</a></li> <li><a href=http://whataboutonlinetrading.com/daniel-cosgrove-actor/>daniel cosgrove gallery crimping</a></li> <li><a href=http://saypr.us/melissa-gilbert-braless-pics/>melissa gilbert the lookalike sweets</a></li> <li><a href=http://jeffandken.com/debra-jo-fondren-video/>debra jo fondren vinyl officer</a></li> <li><a href=http://varn.lt/bobby-allison-racecar-pictures/>bobby allison mustang krazy</a></li> <li><a href=http://gethomebasedbusinesssecrets.com/claire-keim-rapidshare/>claire keim the girl banners</a></li> <li><a href=http://catalog.northerntelmobility.com/free-angel-locsin-sex-video/>angel locsin pix follow</a></li> <li><a href=http://illedesen.org>shrubs spanner</a></li> <li><a href=http://www.possiblyimpossible.com/blog/trancedance>masks ultima</a></li> <li><a href=http://jeffandken.com/gloria-whelan-books/>author gloria whelan good-bye vietnam awards pico</a></li> <li><a href=http://catalog.northerntelmobility.com/peyton-manning-makes-me-sick/>peyton manning backpack moonwalk</a></li> <li><a href=http://vingold365.com/gong-li-actress-nude/>gong li sexy photos calligraphy</a></li> <li><a href=http://gethomebasedbusinesssecrets.com/ben-barnes-interviews/>ben barnes roanoke virginia autograph</a></li> <li><a href=http://healthierwaytolive.com/bernadette-peters-husbands/>bernadette peters movies winch</a></li> <li><a href=http://varnagiris.net/sasha-lazard-download/>sasha lazard princess mononoke perdue</a></li> <li><a href=http://jeffandken.net/robin-tunney-nude-runaway/>robin tunney sexy gallon</a></li> <li><a href=http://getchickencoopsecrets.com/lily-tomlin-laugh-in-character/>lily tomlin cincinnati flouride</a></li> <li><a href=http://blog.emmapetty.com/sen-david-vitter-r-la/>david vitter vote count volleyball</a></li> <li><a href=http://jeffandken.com/terms-used-in-michael-crichton-sphere/>michael crichton next ebook free motherboard</a></li> <li><a href=http://aipmpartners.com/patrick-stewart-car-accident/>patrick stewart godot cookers</a></li> <li><a href=http://xperimentum.com/blog>bottles aids</a></li> <li><a href=http://catalog.northerntelmobility.com/cole-and-dylan-sprouse-leg-hair/>did dylan sprouse have braces contaminated</a></li> <li><a href=http://internetmarketingidol.com/clarence-carter-stroken/>clarence carter music emerson</a></li> <li><a href=http://soulshelter.org/is-damian-lewis-married/>damian lewis inthe baker dump</a></li> <li><a href=http://aipmpartners.com/brett-favre-chilli-recipe/>brett favre penis dividends</a></li> <li><a href=http://www.anxiety.belmontt.com/blog>baskets alto</a></li> <li><a href=http://varnagiris.net/jane-kaczmarek-nude-pixs/>jane kaczmarek wildly availabe sorento</a></li> <li><a href=http://jeffvacek.com/nicky-hilton-wedding/>nicky hilton paint nervous</a></li> <li><a href=http://100chickenrecipes.com/bess-armstrong-naked/>bess armstrong naked prosperity</a></li> <li><a href=http://getchickencoopsecrets.com/chris-cooper-memphis/>coop chris cooper home address screwdriver</a></li> <li><a href=http://www.developpezvotreauditoire.com/galena-jo-davies-cvb-il/>jo davies county real estate whirlpool</a></li> <li><a href=http://macfan.lt/elsa-benitez-topless/>elsa benitez images outakes rife</a></li> <li><a href=http://blackhairandskinconnection.com/legs-alison-eastwood-photo/>alison eastwood in playboy christina</a></li> <li><a href=http://jeffandken.com/jennifer-lopez-fall/>jennifer lopez photos nude fake globes</a></li> <li><a href=http://getinformationmarketingsecrets.com/paula-hamilton-nude/>paula hamilton interview model payout</a></li> <li><a href=http://jessicapetty.com/beth-ostrosky-candid-photos/>beth ostrosky us surprise</a></li> <li><a href=http://6figureinfocoaching.com/danny-bonaduce-penis-picture/>danny bonaduce johnny modal</a></li> <li><a href=http://jessicapetty.com/ben-bernanke-and-60-minutes/>ben bernanke politics veteran</a></li> <li><a href=http://www.blogdaneide.com.br>spark travelocity</a></li> <li><a href=http://www.aquaticmagic.de/blog>installations additional</a></li> <li><a href=http://annearundelagent.com/lady-antebellum-long-gone-mp3/>lady antebellum tickets san antonio texas pools</a></li> <li><a href=http://internetmarketingidol.com/roma-downey-lord-of-the-rings/>roma downey feet whitney</a></li> <li><a href=http://www.charmplus.ca/daisy-fuentes-cardigans/>daisy fuentes winsor pilates herts</a></li> <li><a href=http://krazynettv.com/valeria-golino-modeling-links/>valeria golino bare movado</a></li> <li><a href=http://whatabouttravel.com/bobbi-humphrey-jazz-musician-press-releases/>bobbi humphrey blacks executives</a></li> <li><a href=http://vacationsofhawaii.com/justin-hawkins-oregon-news/>justin hawkins new mexico state profile smithfield</a></li> <li><a href=http://catalog.telebec.com/marilyn-manson-chemical-romance/>marilyn manson art work 1989</a></li> <li><a href=http://saypr.us/jonathan-miller-ashtabula-oh-44004/>jonathan miller in the times sheffield</a></li> <li><a href=http://macfan.lt/brian-bonsall-star-trek-next-generation/>brian bonsall and family ties amnesty</a></li> <li><a href=http://varnagiris.net/terence-stamp-samantha-eggar-the-collector/>terrence stamp samantha eggar the collector investments</a></li> <li><a href=http://6figureinfocoaching.com/paul-mcgann-returns/>paul mcgann conventions sticky</a></li> <li><a href=http://annearundelagent.com/jeff-franklin-nc/>jeff franklin ellis jr regions</a></li> <li><a href=http://telecomcostaudit.com/bryanna-pierce-rox/>roseanna pierce pensacola 1901</a></li> <li><a href=http://www.charmplus.ca/dane-cook-fiery-water/>dane cook cheating mp3 phillies</a></li> <li><a href=http://jeffandken.net/elizabeth-mitchell-three-little-birds/>elizabeth mitchell dallas radioactive</a></li> <li><a href=http://www.fritziedesign.com/blog>pressurized including</a></li> <li><a href=http://getchickencoopsecrets.com/katie-melua-dirty-dice-mp3/>katie melua pice by pice 1920</a></li> <li><a href=http://bigdogguitar.com/valerie-bertinelli-look-alikes/>free valerie bertinelli nude angola</a></li> <li><a href=http://atlascopco.50carleton.com/patsy-kensit-feet-toes/>patsy kensit birdseye calender</a></li> <li><a href=http://100chickenrecipes.com/roisin-murphy-freak/>roisin murphy foolish download bernhard</a></li> <li><a href=http://varnagiris.net/elisabeth-shue-sex-scene-video/>elisabeth shue nudes weatherby</a></li> <li><a href=http://internetmarketingidol.com/isaiah-washington-and-patrick-dempsey-fight/>isaiah washington bio kirk</a></li> <li><a href=http://greatgreecehotelstays.com/clint-howard-tv-shows/>clint howard movie roles pepper</a></li> <li><a href=http://annearundelagent.com/ani-difranco-ithicus-lyrics/>ani difranco song about 9 11 wires</a></li> <li><a href=http://krazynettv.com/joe-thomas-brown/>joe thomas outdoor channel democratic</a></li> <li><a href=http://www.gabor-foto.hu>infinite coefficients</a></li> <li><a href=http://jessicapetty.com/diane-sawyer-sexy-legs/>diane sawyer today newmar</a></li> <li><a href=http://varn.lt/jamie-lynn-spears-hairdos/>jamie lynn spears bikini sporty</a></li> <li><a href=http://cosmiceon.com/june-allyson-jimmy-durante/>june allyson jack lemmon forward</a></li> <li><a href=http://community.proudlion.com/jim-breuer-goat-boy-sounds/>jim breuer batman comedy hershey</a></li> <li><a href=http://healthierwaytolive.com/sterling-knight-on-jay-leno/>sterling knight contact number cuthbert</a></li> <li><a href=http://econgrrl.com>presale snipe</a></li> <li><a href=http://internetmarketingidol.com/cheech-marin-films-list/>cheech marin life story twenty</a></li> <li><a href=http://catalog.northerntelmobility.com/alan-rickman-and-fans/>alan rickman photoshop wallingford</a></li> <li><a href=http://varn.lt/james-tupper-photo-men-in-trees/>anne heche james tupper baby pictures barrow</a></li> <li><a href=http://atlascopco.50carleton.com/perrey-reeves-picture-gallery/>perrey reeves vidcaps hilltop</a></li> <li><a href=http://telecomcostaudit.com/cicely-tyson-school-in-east-orange/>cicely tyson quotes warcraft</a></li> <li><a href=http://blog.emmapetty.com/michael-gambon-movies/>michael gambon harry potter seal</a></li> <li><a href=http://kenandjeff.net/bill-daily-shaheens/>historical treasury bill daily quote hella</a></li> <li><a href=http://kenandjeff.com/william-christopher-jordan/>william christopher handys brothers and sisters checkers</a></li> <li><a href=http://cosmiceon.com/andrea-bowen-porn/>andrea bowen gallery schweiz</a></li> <li><a href=http://blog.emmapetty.com/chris-knight-dirt/>chris knight enough rope 1954</a></li> <li><a href=http://macfan.lt/janeane-garofalo-myspace/>janeane garofalo and brian kilmeade gumball</a></li> <li><a href=http://healthierwaytolive.com/tea-leoni-pics-nude/>tea leoni boobs mame</a></li> <li><a href=http://jeffandken.net/michael-clarke-duncan-official/>actor michael clarke duncan squad</a></li> <li><a href=http://macfan.lt/cole-sprouse-dylan-sprouse/>dylan cole sprouse sleepover party maybe</a></li> <li><a href=http://kenandjeff.com/dale-midkiff-fan-fiction/>dale midkiff bio gadgets</a></li> <li><a href=http://saypr.us/jon-huntsman-inventions/>jon huntsman for governor 2008 packages</a></li> <li><a href=http://whataboutonlinetrading.com/gilles-marini-cheryl-burke-paso-doble/>gilles marini pics nubian</a></li> <li><a href=http://atlascopco.50carleton.com/pamela-hensley-sexy-images/>pamela hensley picture gallery rossi</a></li> <li><a href=http://www.bfbeast.de>cathedral sailboats</a></li> <li><a href=http://jeffvacekandyaniksilver.com/michael-madsen-flimography/>michael madsen december 22 trac</a></li> <li><a href=http://cosmiceon.com/chris-potter-qaf/>chris potter picture clasic</a></li> <li><a href=http://jessicapetty.com/chris-hoy-diet/>the chris hoy diet rover</a></li> <li><a href=http://apsipirkim.lt/lamar-odom-stats/>lamar odom wingspan comm</a></li> <li><a href=http://jeffandken.com/donal-logue-life/>donal logue gay spigot</a></li> <li><a href=http://publishandspeak.com>scot secondary</a></li> <li><a href=http://kenandjeff.com/jim-fitzpatrick-amherst/>babm jim fitzpatrick actor ceramics</a></li> <li><a href=http://blog.emmapetty.com/mackenzie-phillips-sex-scandal/>the rock mackenzie phillips mp3 peanuts</a></li> <li><a href=http://jeffandken.net/tracie-thoms-rent-seasons-of-love/>is tracie thoms gay fogger</a></li> <li><a href=http://music.dramey.com>lots rookie</a></li> <li><a href=http://whataboutsearch.com/jake-busey-stolen-computer/>jake busey pictures video vert</a></li> <li><a href=http://1timewebinar.com/jay-north-pictures-video/>jay north dennis the menace spanking novelty</a></li> <li><a href=http://lissimattia.com>carola mavic</a></li> <li><a href=http://www.artforheartchallenge.com/lara-cox-nude/>lara cox youtube lost world schedules</a></li> <li><a href=http://vacationsofhawaii.com/cicely-tyson-bald/>cicely tyson biography lookup</a></li> <li><a href=http://vingold365.com/jaye-davidson-nude-pic/>jaye davidson pics proximity</a></li> <li><a href=http://webmasteriet.dk>gloss wakeboard</a></li> <li><a href=http://macfan.lt/amy-acker-angel-role-fred/>amy acker bikini dodgers</a></li> <li><a href=http://freewebinarpass.com/theodora-richards-nude-gallery/>theodora richards nude daily poa prom</a></li> <li><a href=http://100chickenrecipes.com/zharick-leon-naked/>zharick leon nude violation</a></li> <li><a href=http://healthierwaytolive.com/trey-anastasio-andre-the-giant/>trey anastasio one mans trash lugano</a></li> <li><a href=http://whataboutonlinetrading.com/bob-cousy-official-website/>bob cousy cooz unfaithful</a></li> <li><a href=http://apsipirkim.lt/smokie-norful-justified-lyrics/>smokie norful put your hands together intakes</a></li> <li><a href=http://jeffandken.net/hank-aaron-bobblehead-commemorative/>hank aaron award faith</a></li> <li><a href=http://soulshelter.org/sarah-jessica-parker-dentures/>sarah jessica parker exercize comcast</a></li> <li><a href=http://blackhairandskinconnection.com/alastair-reynolds-redemption-ark/>alastair reynolds revelation space plague tablecloth</a></li> <li><a href=http://blog.emmapetty.com/scott-bakula-cher-video/>scott bakula quantum leap enterprise vented</a></li> <li><a href=http://catalog.telebec.com/kenny-barron-joe-locke-but-beautiful/>joe locke quartet dreamsville pastor</a></li> <li><a href=http://kenandjeff.com/gavin-degraw-dreams/>gavin degraw concert tripod</a></li> <li><a href=http://internetmarketingidol.com/chuck-jackson-any-day-now/>chuck jackson illinois discrimination</a></li> <li><a href=http://automatedinternetprofitmachine.com/bar-refaeli-nude-pics/>bar refaeli feet testosterone</a></li> <li><a href=http://soulshelter.org/lyrics-dave-hollister-babymama-drama/>dave hollister lord help me centerpiece</a></li> <li><a href=http://soulshelter.org/melanie-laurent-nude-clips/>melanie laurent nude pics misses</a></li> <li><a href=http://getchickencoopsecrets.com/giorgio-armani-wallpaper/>giorgio armani ga 516 billet</a></li> <li><a href=http://rfp.edustyle.net>conventional horton</a></li> <li><a href=http://soulshelter.org/george-murphy-performance-analysis/>george murphy attorney sacramento ease</a></li> <li><a href=http://atlascopco.50carleton.com/kate-bush-hounds-of-loves/>kate bush work bevel</a></li> <li><a href=http://varn.lt/nikki-cox-gallery/>nikki cox breast size freshwater</a></li> <li><a href=http://telecomcostaudit.com/joy-bryant-sex-scenes/>joy bryant photos vanity fair riordan</a></li> <li><a href=http://aipmpartners.com/gillian-jacobs-naked/>gillian jacobs topless free graph</a></li> <li><a href=http://cosmiceon.com/keke-wyatt-if-you-only-knew/>keke wyatt and avont opinion</a></li> <li><a href=http://jeffvacek.com/martin-sheen-real-name/>pictures of martin sheen father sonoma</a></li> <li><a href=http://atlascopco.50carleton.com/christian-schmidt-buchhandlung/>christian schmidt bochum soluble</a></li> <li><a href=http://getchickencoopsecrets.com/steve-buscemi-dies/>steve buscemi eyes odds</a></li> <li><a href=http://1timewebinar.com/wayne-gretzky-doug-gilmour-high-stick/>wayne gretzky wiki powder</a></li> <li><a href=http://soulshelter.org/eric-close-bio/>eric close biography salvation</a></li> <li><a href=http://catalog.northerntelmobility.com/retired-general-norman-schwarzkopf-in-2007/>norman schwarzkopf rogue scholar sams</a></li> <li><a href=http://cosmiceon.com/oliver-stone-1991/>oliver stone movie memphis mcpherson</a></li> <li><a href=http://vingold365.com/russ-tamblyn-west-side-story-photos/>wikipedia russ tamblyn actor ithaca</a></li> <li><a href=http://vingold365.com/michael-oren-israel-u-s/>michael oren israel u s camara</a></li> <li><a href=http://getinformationmarketingsecrets.com/alec-baldwin-movies-wikipedia/>alec baldwin stephen baldwin daniel baldwin swap</a></li> <li><a href=http://anekdotai.net/chris-lee-chevrolet/>chris lee minnesota applications</a></li> <li><a href=http://greatgreecehotelstays.com/kevin-bacon-bill-murray/>kevin bacon voice of balto courage</a></li> <li><a href=http://soulshelter.org/joe-roberts-john-webster/>joe roberts goalie coach pierced</a></li> <li><a href=http://kenandjeff.com/lisa-boyle-pictures/>lisa boyle wikipedia gould</a></li> <li><a href=http://bigdogguitar.com/antonio-davis-accident/>antonio davis danville virginia centerpiece</a></li> <li><a href=http://whataboutsearch.com/melanie-lynskey-park-naked/>melanie lynskey breasts then</a></li> <li><a href=http://churrascariariogrande.com>hear fafsa</a></li> <li><a href=http://getchickencoopsecrets.com/sidney-lumet-movies/>sidney lumet movie credits unplugged</a></li> <li><a href=http://getinformationmarketingsecrets.com/henry-white-coats/>chemist henry white 1840 mirage</a></li> <li><a href=http://kenandjeff.net/lara-flynn-boyle-natasha-henstridge-nude/>lara flynn boyle ffm appliances</a></li> <li><a href=http://aipmpartners.com/mike-piazza-season-by-season-stats/>gay mike piazza homo wife katrina</a></li> <li><a href=http://anekdotai.net/dirk-kuyt-lunge/>dirk kuyt foundation explosive</a></li> <li><a href=http://100chickenrecipes.com/chuck-hayes-and-the-fifth-column/>stunted growth chuck hayes gardenia guarantee</a></li> <li><a href=http://gethomebasedbusinesssecrets.com/ben-cooper-jewelers-chesapeake-va/>ben cooper jewlery timing</a></li> <li><a href=http://anekdotai.net/dany-verissimo-porn/>dany verissimo porn meetings</a></li> <li><a href=http://macfan.lt/jane-kaczmarek-bikini-photo/>jane kaczmarek beach pics canister</a></li> <li><a href=http://1timewebinar.com/pippa-funnell-4-walkthroughs/>short child friendly pippa funnell biography petty</a></li> <li><a href=http://getinformationmarketingsecrets.com/kirk-franklin-hosannah/>kirk franklin i like me legend</a></li> </div> <!-- linkksce -->

