<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Matrich</title>
	
	<link>http://www.matrich.net</link>
	<description>Matovu Richard, a Ugandan Christian Software Engineer</description>
	<lastBuildDate>Mon, 24 Dec 2012 08:23:46 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Matrich" /><feedburner:info uri="matrich" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>Matrich</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to: Automatically Apply Parent Page Template To All Sub Pages In WordPress</title>
		<link>http://feedproxy.google.com/~r/Matrich/~3/DanslSIRAwg/how-to-automatically-apply-parent-page-template-to-all-sub-pages-in-wordpress.htm</link>
		<comments>http://www.matrich.net/blog/wordpress/how-to-automatically-apply-parent-page-template-to-all-sub-pages-in-wordpress.htm#comments</comments>
		<pubDate>Tue, 25 Sep 2012 09:58:32 +0000</pubDate>
		<dc:creator>Matrich</dc:creator>
				<category><![CDATA[Tutorials & How-tos]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.matrich.net/?p=850</guid>
		<description><![CDATA[WordPress has a great feature of Page Templates which enable certain pages to use a different template other than the default page.php template. Sometimes you might require to structure certain content in to pages and sub pages and would like the sub pages to use the parent page&#8217;s template. In order to achieve this, you [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://wordpress.org" title="WordPress" target="_blank">WordPress</a> has a great feature of <a href="http://codex.wordpress.org/Pages#Page_Templates"  target="_blank">Page Templates</a> which enable certain pages to use a different template other than the default page.php template.</p>
<p><img src="http://www.matrich.net/wp-content/uploads/parent-page-template.jpg" alt="Using Parent Page Template For Sub Pages" title="Using Parent Page Template For Sub Pages" class="alignright" />Sometimes you might require to structure certain content in to pages and sub pages and would like the sub pages to use the parent page&#8217;s template. In order to achieve this, you would have to manually select the custom page template while creating each of the sub pages. This is too tidous and manual if you have so many sub pages, I therefore created a custom code snippet in the theme&#8217;s functions.php file to automatically use the parent page&#8217;s custom page template without having to manually selecting the custom page template when creating the sub pages.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> switch_page_template<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$post</span><span style="color: #339933;">;</span>
    <span style="color: #666666; font-style: italic;">// Checks if current post type is a page, rather than a post</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_page<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>	
		<span style="color: #666666; font-style: italic;">// Checks if page is parent, if yes, return</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_parent</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span>
			<span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_parent</span> <span style="color: #339933;">!=</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #009900;">&#41;</span>
		<span style="color: #009900;">&#123;</span>
			<span style="color: #000088;">$parent_page_template</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_parent</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'_wp_page_template'</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
			<span style="color: #000088;">$template</span> <span style="color: #339933;">=</span> TEMPLATEPATH <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;/<span style="color: #006699; font-weight: bold;">{$parent_page_template}</span>&quot;</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">file_exists</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$template</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				load_template<span style="color: #009900;">&#40;</span><span style="color: #000088;">$template</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				<span style="color: #990000;">exit</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span>
		<span style="color: #009900;">&#125;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_redirect'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'switch_page_template'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>After inserting the above code snippet in functions.php, I created a page, applied the custom template to it and therefore all the sub pages under this page used its parent page template. </p>
<p><em>Hope it will be useful to someone out there and feel free to <a href="http://www.matrich.net/contact-matrich">contact me </a> in case of any other help or leave a comment below</em></p>

<div class="wp_rp_wrap  wp_rp_plain" id="wp_rp_first"><div class="wp_rp_content"><h3 class="related_post_title">Other Related Entries</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-250" data-post-type="none" ><a href="http://www.matrich.net/blog/programming/how-to-solve-cannot-add-library-problem-arrayindexoutofbounds-in-netbeans-on-vista.htm" class="wp_rp_title">How To: Solve &#8220;Cannot add Library&#8221; Problem (ArrayIndexOutOfBounds) in Netbeans on Vista</a> (0)<br /><small>Netbeans IDE is one of the famous IDEs used by Java and other programmers and it is especially ve...</small></li><li data-position="1" data-poid="in-98" data-post-type="none" ><a href="http://www.matrich.net/blog/programming/wp-cpanel-login-plugin.htm" class="wp_rp_title">WP CPanel Login Plugin</a> (8)<br /><small>WP CPanel Login is a WordPress plugin that lets you log in directly into your CPanel from WordPre...</small></li><li data-position="2" data-poid="in-95" data-post-type="none" ><a href="http://www.matrich.net/blog/wordpress-plugins/wp-cpanel-email-login-plugin.htm" class="wp_rp_title">WP CPanel Email Login Plugin</a> (33)<br /><small>UPDATED: Now works with WordPress 2.8.1 and above.

WP CPanel Email Login is a WordPress plugin...</small></li><li data-position="3" data-poid="in-161" data-post-type="none" ><a href="http://www.matrich.net/blog/matrich/matrich-featured-on-we-love-wp.htm" class="wp_rp_title">Matrich featured on We Love WP</a> (0)<br /><small>Before we saw the year 2007 end, I redesigned my blog and I am glad to see that my blog design ha...</small></li><li data-position="4" data-poid="in-218" data-post-type="none" ><a href="http://www.matrich.net/blog/web/wordpress-26-released.htm" class="wp_rp_title">WordPress 2.6. Released</a> (0)<br /><small>For WordPress users, fanatics and well-wishers, you got more reason to smile. WordPress 2.6. has ...</small></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
<img src="http://feeds.feedburner.com/~r/Matrich/~4/DanslSIRAwg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.matrich.net/blog/wordpress/how-to-automatically-apply-parent-page-template-to-all-sub-pages-in-wordpress.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.matrich.net/blog/wordpress/how-to-automatically-apply-parent-page-template-to-all-sub-pages-in-wordpress.htm</feedburner:origLink></item>
		<item>
		<title>Young Workers Fun Day 2012</title>
		<link>http://feedproxy.google.com/~r/Matrich/~3/k8cLzyVMF1o/young-workers-fun-day-2012.htm</link>
		<comments>http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm#comments</comments>
		<pubDate>Fri, 29 Jun 2012 09:54:23 +0000</pubDate>
		<dc:creator>Matrich</dc:creator>
				<category><![CDATA[Event or Workshop]]></category>
		<category><![CDATA[Young Workers]]></category>
		<category><![CDATA[Fun Day]]></category>
		<category><![CDATA[Young Workers Fun Day]]></category>

		<guid isPermaLink="false">http://www.matrich.net/?p=782</guid>
		<description><![CDATA[This month I was very privileged to be a part of the organizing committee of the Young Workers Fun Day 2012 and it was no doubt the place to be for any young working people out there. As a way of having young christian people living a holistic Godly life, we set out for a [...]]]></description>
				<content:encoded><![CDATA[<p>This month I was very privileged to be a part of the organizing committee of the Young Workers Fun Day 2012 and it was no doubt the place to be for any young working people out there. As a way of having young christian people living a holistic Godly life, we set out for a whole day full of fun at its very best  with great food, swimming, fun games, bicycle riding, tug of war, football, sack race, sauna &#038; steam, networking, 2-3 hour non-stop dance session with the best Christian DJ in town.</p>
<p>I must say that it was such an incredible time and great thanks to our chief guests i.e. Young Workers who were able to make it for the day, the rest of the organizing committee and the committee teams from all districts.</p>
<p><em>For the rest, please enjoy the photos below</em></p>

<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5092' title='Bamboo Corner'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5092-150x150.jpg" class="attachment-thumbnail" alt="Bamboo Corner" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5095' title='Surveying The Gwa'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5095-150x150.jpg" class="attachment-thumbnail" alt="Surveying The Gwa" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5096' title='Part of YW Fun Day Committee'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5096-150x150.jpg" class="attachment-thumbnail" alt="Part of YW Fun Day Committee" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5097' title='SAM_5097'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5097-150x150.jpg" class="attachment-thumbnail" alt="SAM_5097" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5099' title='SAM_5099'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5099-150x150.jpg" class="attachment-thumbnail" alt="SAM_5099" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5387' title='Dance Sampling'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5387-150x150.jpg" class="attachment-thumbnail" alt="Dance Sampling" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5388' title='Show Dem'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5388-150x150.jpg" class="attachment-thumbnail" alt="Show Dem" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5390' title='Opening Snack'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5390-150x150.jpg" class="attachment-thumbnail" alt="Opening Snack" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5391' title='Derek as usual'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5391-150x150.jpg" class="attachment-thumbnail" alt="Derek as usual" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5393' title='Matrich in bilawuli'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5393-150x150.jpg" class="attachment-thumbnail" alt="Matrich in bilawuli" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5394' title='SAM_5394'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5394-150x150.jpg" class="attachment-thumbnail" alt="SAM_5394" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5395' title='SAM_5395'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5395-150x150.jpg" class="attachment-thumbnail" alt="SAM_5395" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5396' title='SAM_5396'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5396-150x150.jpg" class="attachment-thumbnail" alt="SAM_5396" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5397' title='SAM_5397'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5397-150x150.jpg" class="attachment-thumbnail" alt="SAM_5397" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5399' title='SAM_5399'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5399-150x150.jpg" class="attachment-thumbnail" alt="SAM_5399" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5400' title='SAM_5400'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5400-150x150.jpg" class="attachment-thumbnail" alt="SAM_5400" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5402' title='SAM_5402'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5402-150x150.jpg" class="attachment-thumbnail" alt="SAM_5402" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5405' title='SAM_5405'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5405-150x150.jpg" class="attachment-thumbnail" alt="SAM_5405" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5406' title='SAM_5406'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5406-150x150.jpg" class="attachment-thumbnail" alt="SAM_5406" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5407' title='SAM_5407'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5407-150x150.jpg" class="attachment-thumbnail" alt="SAM_5407" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5408' title='SAM_5408'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5408-150x150.jpg" class="attachment-thumbnail" alt="SAM_5408" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5409' title='SAM_5409'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5409-150x150.jpg" class="attachment-thumbnail" alt="SAM_5409" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5411' title='SAM_5411'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5411-150x150.jpg" class="attachment-thumbnail" alt="SAM_5411" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5412' title='SAM_5412'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5412-150x150.jpg" class="attachment-thumbnail" alt="SAM_5412" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5413' title='SAM_5413'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5413-150x150.jpg" class="attachment-thumbnail" alt="SAM_5413" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5414' title='SAM_5414'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5414-150x150.jpg" class="attachment-thumbnail" alt="SAM_5414" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5417' title='SAM_5417'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5417-150x150.jpg" class="attachment-thumbnail" alt="SAM_5417" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5418' title='SAM_5418'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5418-150x150.jpg" class="attachment-thumbnail" alt="SAM_5418" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5419' title='SAM_5419'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5419-150x150.jpg" class="attachment-thumbnail" alt="SAM_5419" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5420' title='SAM_5420'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5420-150x150.jpg" class="attachment-thumbnail" alt="SAM_5420" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5421' title='SAM_5421'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5421-150x150.jpg" class="attachment-thumbnail" alt="SAM_5421" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5422' title='SAM_5422'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5422-150x150.jpg" class="attachment-thumbnail" alt="SAM_5422" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5427' title='SAM_5427'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5427-150x150.jpg" class="attachment-thumbnail" alt="SAM_5427" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5429' title='SAM_5429'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5429-150x150.jpg" class="attachment-thumbnail" alt="SAM_5429" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5430' title='SAM_5430'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5430-150x150.jpg" class="attachment-thumbnail" alt="SAM_5430" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5438' title='SAM_5438'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5438-150x150.jpg" class="attachment-thumbnail" alt="SAM_5438" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5449' title='SAM_5449'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5449-150x150.jpg" class="attachment-thumbnail" alt="SAM_5449" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5451' title='SAM_5451'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5451-150x150.jpg" class="attachment-thumbnail" alt="SAM_5451" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5452' title='SAM_5452'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5452-150x150.jpg" class="attachment-thumbnail" alt="SAM_5452" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5453' title='SAM_5453'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5453-150x150.jpg" class="attachment-thumbnail" alt="SAM_5453" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5454' title='SAM_5454'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5454-150x150.jpg" class="attachment-thumbnail" alt="SAM_5454" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5455' title='SAM_5455'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5455-150x150.jpg" class="attachment-thumbnail" alt="SAM_5455" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5456' title='SAM_5456'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5456-150x150.jpg" class="attachment-thumbnail" alt="SAM_5456" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5457' title='SAM_5457'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5457-150x150.jpg" class="attachment-thumbnail" alt="SAM_5457" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5459' title='SAM_5459'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5459-150x150.jpg" class="attachment-thumbnail" alt="SAM_5459" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5462' title='SAM_5462'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5462-150x150.jpg" class="attachment-thumbnail" alt="SAM_5462" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5463' title='SAM_5463'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5463-150x150.jpg" class="attachment-thumbnail" alt="SAM_5463" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5464' title='SAM_5464'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5464-150x150.jpg" class="attachment-thumbnail" alt="SAM_5464" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5465' title='SAM_5465'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5465-150x150.jpg" class="attachment-thumbnail" alt="SAM_5465" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5467' title='SAM_5467'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5467-150x150.jpg" class="attachment-thumbnail" alt="SAM_5467" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5470' title='SAM_5470'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5470-150x150.jpg" class="attachment-thumbnail" alt="SAM_5470" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5471' title='SAM_5471'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5471-150x150.jpg" class="attachment-thumbnail" alt="SAM_5471" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5473' title='SAM_5473'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5473-150x150.jpg" class="attachment-thumbnail" alt="SAM_5473" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5487' title='SAM_5487'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5487-150x150.jpg" class="attachment-thumbnail" alt="SAM_5487" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5488' title='SAM_5488'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5488-150x150.jpg" class="attachment-thumbnail" alt="SAM_5488" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5489' title='SAM_5489'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5489-150x150.jpg" class="attachment-thumbnail" alt="SAM_5489" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/sam_5496' title='The Best Bilawuli'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_5496-150x150.jpg" class="attachment-thumbnail" alt="The Best Bilawuli" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/attachment/slunch' title='Enjoying Lunch'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/slunch-150x150.jpg" class="attachment-thumbnail" alt="Enjoying Lunch" /></a>


<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Other Related Entries</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-695" data-post-type="none" ><a href="http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm" class="wp_rp_title">Young Workers Camp 2011</a> (0)<br /><small>Sometime back in June, 2011, I was privileged and blessed to attend the Young Workers Camp 2011, ...</small></li><li data-position="1" data-poid="in-647" data-post-type="none" ><a href="http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm" class="wp_rp_title">Sharp Guyz Re-Union</a> (0)<br /><small>The life at campus and after campus is completely different especially in the social aspect, whil...</small></li><li data-position="2" data-poid="in-465" data-post-type="none" ><a href="http://www.matrich.net/gallery/event-or-workshop/africa-source-2.htm" class="wp_rp_title">Africa Source 2</a> (0)<br /><small>At the beginning of 2007, I was privileged to be invited to attend the Africa Source 2 workshop w...</small></li><li data-position="3" data-poid="in-297" data-post-type="none" ><a href="http://www.matrich.net/blog/travel-tours/fifa-world-cup-2010-experience.htm" class="wp_rp_title">FIFA World Cup 2010 Experience</a> (0)<br /><small>Sanibona...!!! After a long time without posting, I am back with my greatest adventure tour exper...</small></li><li data-position="4" data-poid="in-183" data-post-type="none" ><a href="http://www.matrich.net/blog/matrich/happy-easter-holidays.htm" class="wp_rp_title">HAPPY EASTER HOLIDAYS</a> (0)<br /><small>During this Easter festival, I would like to testify of God's Goodness, Mercy and Grace to me thr...</small></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
<img src="http://feeds.feedburner.com/~r/Matrich/~4/k8cLzyVMF1o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm</feedburner:origLink></item>
		<item>
		<title>Sharp Guyz Re-Union</title>
		<link>http://feedproxy.google.com/~r/Matrich/~3/g_55l3vA1Bk/sharp-guyz-re-union.htm</link>
		<comments>http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm#comments</comments>
		<pubDate>Tue, 13 Sep 2011 09:56:43 +0000</pubDate>
		<dc:creator>Matrich</dc:creator>
				<category><![CDATA[Event or Workshop]]></category>
		<category><![CDATA[Friends]]></category>
		<category><![CDATA[Beach]]></category>

		<guid isPermaLink="false">http://www.matrich.net/?p=647</guid>
		<description><![CDATA[The life at campus and after campus is completely different especially in the social aspect, while at campus, you make loads of friends who you can easily meet and after campus, most of those get lost in the corners of this world and most times, you need to make new friends who are in the [...]]]></description>
				<content:encoded><![CDATA[<p>The life at campus and after campus is completely different especially in the social aspect, while at campus, you make loads of friends who you can easily meet and after campus, most of those get lost in the corners of this world and most times, you need to make new friends who are in the environment you operate in.</p>
<p>After several years after campus, I got a thought of having those good friends from campus especially those from my crazy discussion group, <em><a href="http://www.matrich.net/gallery/friends-gallery/sharp-guyz-luncheon.htm" title="Sharp Guyz Luncheon">The Sharp Guyz</a></em> meet and get together somewhere outside our busy schedules.</p>
<p>On 13th August, 2011, we set out to <a href="http://www.imperialhotels.co.ug/impresortbeachoverview.html" title="Imperial Resort Beach" target="_blank">Imperial Resort Beach</a> where we chilled and had loads of fun as you can witness for yourself.</p>

<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03420' title='DSC03420'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03420-150x150.jpg" class="attachment-thumbnail" alt="DSC03420" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03428' title='DSC03428'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03428-150x150.jpg" class="attachment-thumbnail" alt="DSC03428" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03432' title='DSC03432'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03432-150x150.jpg" class="attachment-thumbnail" alt="DSC03432" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03433' title='DSC03433'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03433-150x150.jpg" class="attachment-thumbnail" alt="DSC03433" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03434' title='DSC03434'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03434-150x150.jpg" class="attachment-thumbnail" alt="DSC03434" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03438' title='DSC03438'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03438-150x150.jpg" class="attachment-thumbnail" alt="DSC03438" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03440' title='DSC03440'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03440-150x150.jpg" class="attachment-thumbnail" alt="DSC03440" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03444' title='DSC03444'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03444-150x150.jpg" class="attachment-thumbnail" alt="DSC03444" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03446' title='DSC03446'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03446-150x150.jpg" class="attachment-thumbnail" alt="DSC03446" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03448' title='DSC03448'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03448-150x150.jpg" class="attachment-thumbnail" alt="DSC03448" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03453' title='DSC03453'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03453-150x150.jpg" class="attachment-thumbnail" alt="DSC03453" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03454' title='DSC03454'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03454-150x150.jpg" class="attachment-thumbnail" alt="DSC03454" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03455' title='DSC03455'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03455-150x150.jpg" class="attachment-thumbnail" alt="DSC03455" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03457' title='DSC03457'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03457-150x150.jpg" class="attachment-thumbnail" alt="DSC03457" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03458' title='DSC03458'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03458-150x150.jpg" class="attachment-thumbnail" alt="DSC03458" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03459' title='DSC03459'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03459-150x150.jpg" class="attachment-thumbnail" alt="DSC03459" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03461' title='DSC03461'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03461-150x150.jpg" class="attachment-thumbnail" alt="DSC03461" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03463' title='DSC03463'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03463-150x150.jpg" class="attachment-thumbnail" alt="DSC03463" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03467' title='DSC03467'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03467-150x150.jpg" class="attachment-thumbnail" alt="DSC03467" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03473' title='DSC03473'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03473-150x150.jpg" class="attachment-thumbnail" alt="DSC03473" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03477' title='DSC03477'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03477-150x150.jpg" class="attachment-thumbnail" alt="DSC03477" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03478' title='DSC03478'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03478-150x150.jpg" class="attachment-thumbnail" alt="DSC03478" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03482' title='Moze taking her on'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03482-150x150.jpg" class="attachment-thumbnail" alt="Moze taking her on" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03486' title='Happiness is killing me'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03486-150x150.jpg" class="attachment-thumbnail" alt="Happiness is killing me" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03487' title='It is not yet over, Moze'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03487-150x150.jpg" class="attachment-thumbnail" alt="It is not yet over, Moze" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03488' title='Leero dance'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03488-150x150.jpg" class="attachment-thumbnail" alt="Matrich displaying talent" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03492' title='Now full of food'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03492-150x150.jpg" class="attachment-thumbnail" alt="Now full of food" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03494' title='The kintus getting into the mood'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03494-150x150.jpg" class="attachment-thumbnail" alt="The kintus getting into the mood" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03495' title='Show us your move'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03495-150x150.jpg" class="attachment-thumbnail" alt="Show us your move" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03496' title='Aaaah, it is done like this'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03496-150x150.jpg" class="attachment-thumbnail" alt="Aaaah, it is done like this" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03499' title='The Kintus getting down'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03499-150x150.jpg" class="attachment-thumbnail" alt="The Kintus getting down" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03500' title='Yes, this is how it is done'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03500-150x150.jpg" class="attachment-thumbnail" alt="Yes, this is how it is done" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03501' title='Lindah taking on Kintu'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03501-150x150.jpg" class="attachment-thumbnail" alt="Lindah taking on Kintu" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03502' title='Lindah getting more...'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03502-150x150.jpg" class="attachment-thumbnail" alt="Lindah getting more..." /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03507' title='The Moses'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03507-150x150.jpg" class="attachment-thumbnail" alt="The Moses" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03509' title='Eehh, Lindah told you'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03509-150x150.jpg" class="attachment-thumbnail" alt="Eehh, Lindah told you" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03510' title='The Joses'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03510-150x150.jpg" class="attachment-thumbnail" alt="The Joses" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03514' title='Samba gamba'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03514-150x150.jpg" class="attachment-thumbnail" alt="Samba gamba" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03522' title='The Kintus on fire'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03522-150x150.jpg" class="attachment-thumbnail" alt="The Kintus on fire" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03525' title='Alf, The Veteran Bachelor'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03525-150x150.jpg" class="attachment-thumbnail" alt="Alf, The Veteran Bachelor" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03527' title='The clue'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03527-150x150.jpg" class="attachment-thumbnail" alt="The Clue" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/attachment/dsc03528' title='The Sharp Guyz'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03528-150x150.jpg" class="attachment-thumbnail" alt="The Sharp Guyz" /></a>


<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Other Related Entries</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-101" data-post-type="none" ><a href="http://www.matrich.net/blog/friends/my-web-iginiter-george-kwabenah-appiah.htm" class="wp_rp_title">My Web Igniter &#8211; George Appiah</a> (0)<br /><small>It has been quite a long time since I posted anything on my blog due to the busy schedules I have...</small></li><li data-position="1" data-poid="in-47" data-post-type="none" ><a href="http://www.matrich.net/blog/friends/kinobe-soul-language-cd.htm" class="wp_rp_title">Kinobe: Soul Language CD</a> (0)<br /><small>Today as I chatted with one of my good friends Kinobe, I was happy to hear that he had recorded a...</small></li><li data-position="2" data-poid="in-133" data-post-type="none" ><a href="http://www.matrich.net/blog/matrich/happy-new-year-2008.htm" class="wp_rp_title">Happy New Year 2008</a> (0)<br /><small>It is finally here. As usual, many people around the world prepare and are always excited to cele...</small></li><li data-position="3" data-poid="in-487" data-post-type="none" ><a href="http://www.matrich.net/gallery/friends-gallery/sharp-guyz-luncheon.htm" class="wp_rp_title">Sharp Guyz Luncheon</a> (1)<br /><small>While on campus, we had a great crazy discussion group, The Sharp Guyz. After three years of grea...</small></li><li data-position="4" data-poid="in-695" data-post-type="none" ><a href="http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm" class="wp_rp_title">Young Workers Camp 2011</a> (0)<br /><small>Sometime back in June, 2011, I was privileged and blessed to attend the Young Workers Camp 2011, ...</small></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
<img src="http://feeds.feedburner.com/~r/Matrich/~4/g_55l3vA1Bk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm</feedburner:origLink></item>
		<item>
		<title>Young Workers Camp 2011</title>
		<link>http://feedproxy.google.com/~r/Matrich/~3/LsvF04_DjVY/young-workers-camp-2011.htm</link>
		<comments>http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm#comments</comments>
		<pubDate>Sun, 14 Aug 2011 07:11:20 +0000</pubDate>
		<dc:creator>Matrich</dc:creator>
				<category><![CDATA[Event or Workshop]]></category>
		<category><![CDATA[Camp]]></category>
		<category><![CDATA[Friends]]></category>
		<category><![CDATA[Young Workers]]></category>
		<category><![CDATA[Young Workers Camp]]></category>
		<category><![CDATA[YW]]></category>
		<category><![CDATA[YW Camp]]></category>

		<guid isPermaLink="false">http://www.matrich.net/?p=695</guid>
		<description><![CDATA[Sometime back in June, 2011, I was privileged and blessed to attend the Young Workers Camp 2011, the first camp I have attended which isn&#8217;t computer related. The three days&#8217; camp was themed &#8220;Bearing fruit in all seasons&#8221; &#8211; Psalms 1:1-3 and throughout those days, I had time for reflection, learning, prayer, fun and games. [...]]]></description>
				<content:encoded><![CDATA[<p>Sometime back in June, 2011, I was privileged and blessed to attend the <a href="http://www.watotochurch.com/youngworkers/" title="Young Workers" target="_blank">Young Workers</a> Camp 2011, the first camp I have attended which isn&#8217;t computer related. </p>
<p>The three days&#8217; camp was themed <strong><em>&#8220;Bearing fruit in all seasons&#8221; &#8211; Psalms 1:1-3</em></strong> and throughout those days, I had time for reflection, learning, prayer, fun and games. Our minds we surely renewed by the Word and teaching of God; and we were very blessed with several sessions from Peter Asiimwe. </p>
<p>Certainly, I met many young working people and learnt a lot about bearing a lasting fruit in all seasons. Great thanks to our visionary leadership and the organizing committee for the work well done and I can&#8217;t wait for next year&#8217;s camp. </p>

<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc01997' title='Getting into the mood'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC01997-150x150.jpg" class="attachment-thumbnail" alt="Getting into the mood" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc02038' title='Camp fire'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC02038-150x150.jpg" class="attachment-thumbnail" alt="Camp fire" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc02043' title='Derek displaying his strokes'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC02043-150x150.jpg" class="attachment-thumbnail" alt="Derek displaying his strokes" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc02051' title='The dance taking off'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC02051-150x150.jpg" class="attachment-thumbnail" alt="The dance taking off" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc02060' title='Dancing around camp fire'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC02060-150x150.jpg" class="attachment-thumbnail" alt="Dancing around camp fire" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc02061' title='Koona Dance'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC02061-150x150.jpg" class="attachment-thumbnail" alt="Koona Dance" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc02062' title='Dancing at the peak'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC02062-150x150.jpg" class="attachment-thumbnail" alt="Dancing at the peak" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc02066' title='Cutting Camp Cake'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC02066-150x150.jpg" class="attachment-thumbnail" alt="Cutting Camp Cake" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc02069' title='Bearing fruit'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC02069-150x150.jpg" class="attachment-thumbnail" alt="Bearing fruit" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc02076' title='Enjoying the atmosphere'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC02076-150x150.jpg" class="attachment-thumbnail" alt="Enjoying the atmosphere" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc02082' title='Tea Break'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC02082-150x150.jpg" class="attachment-thumbnail" alt="Tea Break" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc02088' title='Young Workers Posers'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC02088-150x150.jpg" class="attachment-thumbnail" alt="Young Workers Posers" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc03876' title='Mpa Fansi'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC03876-150x150.jpg" class="attachment-thumbnail" alt="Mpa Fansi" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc06805' title='Christian values in Education'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC06805-150x150.jpg" class="attachment-thumbnail" alt="Christian values in Education" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc06808' title='Listening to YW Dreams'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC06808-150x150.jpg" class="attachment-thumbnail" alt="Listening to YW Dreams" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc06809' title='Paying Attention'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC06809-150x150.jpg" class="attachment-thumbnail" alt="Paying Attention" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc06811' title='Christian values in culture'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC06811-150x150.jpg" class="attachment-thumbnail" alt="Christian values in culture" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc06813' title='Team Leader Sharing'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC06813-150x150.jpg" class="attachment-thumbnail" alt="Team Leader Sharing" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dsc06828' title='Get ready for...'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC06828-150x150.jpg" class="attachment-thumbnail" alt="Get ready for..." /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dscf2404' title='Worship Team'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSCF2404-150x150.jpg" class="attachment-thumbnail" alt="Worship Team" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dscf2405' title='Peter Asiimwe'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSCF2405-150x150.jpg" class="attachment-thumbnail" alt="Peter Asiimwe" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dscf2411' title='Christian values'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSCF2411-150x150.jpg" class="attachment-thumbnail" alt="Christian values" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dscf2412' title='Christian values in economics'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSCF2412-150x150.jpg" class="attachment-thumbnail" alt="Christian values in economics" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dscf2413' title='Peter leading discussion'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSCF2413-150x150.jpg" class="attachment-thumbnail" alt="Peter leading discussion" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dscf2415' title='Matrich, Bishop, Jucinta, ...'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSCF2415-150x150.jpg" class="attachment-thumbnail" alt="Matrich, Bishop, Jucinta, ..." /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dscf2430' title='Happiness in the air'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSCF2430-150x150.jpg" class="attachment-thumbnail" alt="Happiness in the air" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dscf2436' title='Togetherness'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSCF2436-150x150.jpg" class="attachment-thumbnail" alt="Togetherness" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/dscf2439' title='YW Central'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSCF2439-150x150.jpg" class="attachment-thumbnail" alt="YW Central" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/img_1549' title='Koona Dance'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/IMG_1549-150x150.jpg" class="attachment-thumbnail" alt="Koona Dance" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/img_1556' title='Dance to another level'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/IMG_1556-150x150.jpg" class="attachment-thumbnail" alt="Dance to another level" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/img_1557' title='Dancing to the right'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/IMG_1557-150x150.jpg" class="attachment-thumbnail" alt="Dancing to the right" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/img_1558' title='Dancing talent'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/IMG_1558-150x150.jpg" class="attachment-thumbnail" alt="Dancing talent" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/img_2011' title='Leading Worship'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/IMG_2011-150x150.jpg" class="attachment-thumbnail" alt="Leading Worship" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/img_2022' title='Discussion'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/IMG_2022-150x150.jpg" class="attachment-thumbnail" alt="Discussion" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/img_2039' title='Dancing isnt easy'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/IMG_2039-150x150.jpg" class="attachment-thumbnail" alt="Dancing isnt easy" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/img_2040' title='Like so'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/IMG_2040-150x150.jpg" class="attachment-thumbnail" alt="Like so" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/img_2043' title='Let me show you'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/IMG_2043-150x150.jpg" class="attachment-thumbnail" alt="Let me show you" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/img_2051' title='How is it done?'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/IMG_2051-150x150.jpg" class="attachment-thumbnail" alt="How is it done?" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/img_2052' title='Don&#039;t sprinkle on me'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/IMG_2052-150x150.jpg" class="attachment-thumbnail" alt="Don&#039;t sprinkle on me" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/jumpingyw' title='Young Workers Oyee'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/jumpingyw-150x150.jpg" class="attachment-thumbnail" alt="Young Workers Oyee" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/matrich-2' title='What is up, Matrich?'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/matrich1-150x150.jpg" class="attachment-thumbnail" alt="What is up, Matrich?" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_0034' title='Discussion on culture'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_0034-150x150.jpg" class="attachment-thumbnail" alt="Discussion on culture" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_0035' title='Discussion on econmics'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_0035-150x150.jpg" class="attachment-thumbnail" alt="Discussion on econmics" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_0037' title='Jeff Sharing'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_0037-150x150.jpg" class="attachment-thumbnail" alt="Jeff Sharing" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_0048' title='Reena and Peter'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_0048-150x150.jpg" class="attachment-thumbnail" alt="Reena and Peter" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_0059' title='Food Time'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_0059-150x150.jpg" class="attachment-thumbnail" alt="Food Time" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_0069' title='Peter and YW listening'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_0069-150x150.jpg" class="attachment-thumbnail" alt="Peter and YW listening" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_0072' title='Babu sharing'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_0072-150x150.jpg" class="attachment-thumbnail" alt="Babu sharing" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_0073' title='Listening carefully'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_0073-150x150.jpg" class="attachment-thumbnail" alt="Listening carefully" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_0075' title='How education should be'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_0075-150x150.jpg" class="attachment-thumbnail" alt="How education should be" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_0111' title='Worshiping God'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_0111-150x150.jpg" class="attachment-thumbnail" alt="Worshiping God" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_4751' title='What has he said?'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_4751-150x150.jpg" class="attachment-thumbnail" alt="What has he said?" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_4752' title='Derek didn&#039;t understand'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_4752-150x150.jpg" class="attachment-thumbnail" alt="Derek didn&#039;t understand" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_4753' title='The Team Leader, Peter'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_4753-150x150.jpg" class="attachment-thumbnail" alt="The Team Leader, Peter" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_4762' title='Eeh, kino kiika'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_4762-150x150.jpg" class="attachment-thumbnail" alt="Eeh, kino kiika" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_4767' title='Enjoying Break Time'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_4767-150x150.jpg" class="attachment-thumbnail" alt="Enjoying Break Time" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_4771' title='Dance around the fire'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_4771-150x150.jpg" class="attachment-thumbnail" alt="Dance around the fire" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_4802' title='Enjoying the food'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_4802-150x150.jpg" class="attachment-thumbnail" alt="Enjoying the food" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_4842' title='YW Camp Committee'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_4842-150x150.jpg" class="attachment-thumbnail" alt="YW Camp Committee" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_4843' title='YW Camp 2011 Cake'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_4843-150x150.jpg" class="attachment-thumbnail" alt="YW Camp 2011 Cake" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_4847' title='And who is who?'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_4847-150x150.jpg" class="attachment-thumbnail" alt="And who is who?" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_4849' title='Cross-checking'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_4849-150x150.jpg" class="attachment-thumbnail" alt="Cross-checking" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_4850' title='It was worth while'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_4850-150x150.jpg" class="attachment-thumbnail" alt="It was worth while" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/sam_4855' title='YW Central Members'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/SAM_4855-150x150.jpg" class="attachment-thumbnail" alt="YW Central Members" /></a>
<a href='http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/attachment/youngworkers' title='The Young Workers'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/youngworkers-150x150.jpg" class="attachment-thumbnail" alt="The Young Workers" /></a>


<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Other Related Entries</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-782" data-post-type="none" ><a href="http://www.matrich.net/gallery/event-or-workshop/young-workers-fun-day-2012.htm" class="wp_rp_title">Young Workers Fun Day 2012</a> (0)<br /><small>This month I was very privileged to be a part of the organizing committee of the Young Workers Fu...</small></li><li data-position="1" data-poid="in-647" data-post-type="none" ><a href="http://www.matrich.net/gallery/event-or-workshop/sharp-guyz-re-union.htm" class="wp_rp_title">Sharp Guyz Re-Union</a> (0)<br /><small>The life at campus and after campus is completely different especially in the social aspect, whil...</small></li><li data-position="2" data-poid="in-101" data-post-type="none" ><a href="http://www.matrich.net/blog/friends/my-web-iginiter-george-kwabenah-appiah.htm" class="wp_rp_title">My Web Igniter &#8211; George Appiah</a> (0)<br /><small>It has been quite a long time since I posted anything on my blog due to the busy schedules I have...</small></li><li data-position="3" data-poid="in-133" data-post-type="none" ><a href="http://www.matrich.net/blog/matrich/happy-new-year-2008.htm" class="wp_rp_title">Happy New Year 2008</a> (0)<br /><small>It is finally here. As usual, many people around the world prepare and are always excited to cele...</small></li><li data-position="4" data-poid="in-80" data-post-type="none" ><a href="http://www.matrich.net/blog/matrich/great-stuff-in-march-2007.htm" class="wp_rp_title">Great stuff in March 2007</a> (0)<br /><small>Wow! what a great month in this great year 2007. It is really amazing and I give the Glory back t...</small></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
<img src="http://feeds.feedburner.com/~r/Matrich/~4/LsvF04_DjVY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.matrich.net/gallery/event-or-workshop/young-workers-camp-2011.htm</feedburner:origLink></item>
		<item>
		<title>Cape of Good Hope and Table Mountain</title>
		<link>http://feedproxy.google.com/~r/Matrich/~3/RC322Ym16aI/cape-of-good-hope-and-table-mountain.htm</link>
		<comments>http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm#comments</comments>
		<pubDate>Sat, 06 Aug 2011 04:22:03 +0000</pubDate>
		<dc:creator>Matrich</dc:creator>
				<category><![CDATA[Tour or Travel]]></category>
		<category><![CDATA[Cape Point]]></category>
		<category><![CDATA[Cape Town]]></category>
		<category><![CDATA[South Africa]]></category>
		<category><![CDATA[Table Mountains]]></category>
		<category><![CDATA[tour]]></category>
		<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://www.matrich.net/?p=615</guid>
		<description><![CDATA[Sjoe, a few months ago, I had a great opportunity to be in Cape Town, one of the great cities in Sausi South Africa. Ever since I started traveling on work-related issues, this was one of my most relaxing especially that it came in at a time when I surely needed a rest from work. [...]]]></description>
				<content:encoded><![CDATA[<p>Sjoe, a few months ago, I had a great opportunity to be in Cape Town, one of the great cities in <del datetime="2011-08-06T03:26:35+00:00">Sausi</del> South Africa. Ever since I started traveling on work-related issues, this was one of my most relaxing especially that it came in at a time when I surely needed a rest from work. In not some many days before the trip, I had actually spent a few days and nights putting some manners into a certain system which wasn’t behaving itself. Also luckily after one day of our arrival, Sausi had a public holiday which gave us ample time to relax and also visit several places in Cape Town.</p>
<p>I would like to thank God, The Almighty, for enabling me get the visa in record time and for the safe while there. Of course, this trip wouldn’t have been that incredible without our hosts, Reagola. These guys made our trip so comfortable, interesting and adventurous Have a great look at what God has blessed Cape Town with. Whenever I travel throughout the world, I see God&#8217;s invisible qualities — his eternal power and divine nature as described in Romans 1:20.</p>
<blockquote><p>Romans 1:20 &#8211; For since the creation of the world God’s invisible qualities—his eternal power and divine nature—have been clearly seen, being understood from what has been made, so that people are without excuse</p></blockquote>

<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0009' title='View of the Table Mountain'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0009-150x150.jpg" class="attachment-thumbnail" alt="View of the Table Mountain" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0036' title='Road in the Rock'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0036-150x150.jpg" class="attachment-thumbnail" alt="Road in the Rock" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0047' title='Above in the Mountain'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0047-150x150.jpg" class="attachment-thumbnail" alt="Above in the Mountain" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0051' title='Above in the Table Mountains'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0051-150x150.jpg" class="attachment-thumbnail" alt="Above in the Table Mountains" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0057' title='Closer Shot'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0057-150x150.jpg" class="attachment-thumbnail" alt="Closer Shot" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0064' title='Table Mountains'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0064-150x150.jpg" class="attachment-thumbnail" alt="Table Mountains" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0066' title='Enjoying the breeze'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0066-150x150.jpg" class="attachment-thumbnail" alt="Enjoying the breeze" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0086' title='Arrival at Cape of Good Hope'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0086-150x150.jpg" class="attachment-thumbnail" alt="Arrival at Cape of Good Hope" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0107' title='Cape Point'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0107-150x150.jpg" class="attachment-thumbnail" alt="Cape Point" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0110' title='Enjoying Cape Point'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0110-150x150.jpg" class="attachment-thumbnail" alt="Enjoying Cape Point" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0111' title='Atlantic Ocean'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0111-150x150.jpg" class="attachment-thumbnail" alt="Atlantic Ocean" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0112' title='Lighthouse at Cape Point'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0112-150x150.jpg" class="attachment-thumbnail" alt="Lighthouse at Cape Point" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0123' title='die Kaap van Goeie Hoop'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0123-150x150.jpg" class="attachment-thumbnail" alt="die Kaap van Goeie Hoop" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0125' title='Cape of Good Hope'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0125-150x150.jpg" class="attachment-thumbnail" alt="Cape of Good Hope" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0132' title='Cape of Good Hope Rocks'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0132-150x150.jpg" class="attachment-thumbnail" alt="Cape of Good Hope Rocks" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0133' title='Indian Ocean ending'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0133-150x150.jpg" class="attachment-thumbnail" alt="Indian Ocean ending" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0136' title='Atlantic Ocean beginning'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0136-150x150.jpg" class="attachment-thumbnail" alt="Atlantic Ocean beginning" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0138' title='Meeting of Indian and Atlantic oceans'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0138-150x150.jpg" class="attachment-thumbnail" alt="Meeting of Indian and Atlantic oceans" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0147' title='Rocks sheilding the oceans'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0147-150x150.jpg" class="attachment-thumbnail" alt="Rocks sheilding the oceans" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0158' title='Matrich and Ali enjoying'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0158-150x150.jpg" class="attachment-thumbnail" alt="Matrich and Ali enjoying" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0162' title='Scenic Walk'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0162-150x150.jpg" class="attachment-thumbnail" alt="Scenic Walk" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0179' title='Roads through rocks'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0179-150x150.jpg" class="attachment-thumbnail" alt="Roads through rocks" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0184' title='Road along the mountains'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0184-150x150.jpg" class="attachment-thumbnail" alt="Road along the mountains" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0195' title='Beautiful sunset'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0195-150x150.jpg" class="attachment-thumbnail" alt="Beautiful sunset" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0206' title='Matrich in the mountains'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0206-150x150.jpg" class="attachment-thumbnail" alt="Matrich in the mountains" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/attachment/dsc_0226' title='Cape Town Stadium'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC_0226-150x150.jpg" class="attachment-thumbnail" alt="Cape Town Stadium" /></a>


<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Other Related Entries</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-575" data-post-type="none" ><a href="http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm" class="wp_rp_title">FIFA World Cup 2010</a> (0)<br /><small>I was surely privileged to witness the first FIFA World Cup on African soil live in South Africa....</small></li><li data-position="1" data-poid="in-297" data-post-type="none" ><a href="http://www.matrich.net/blog/travel-tours/fifa-world-cup-2010-experience.htm" class="wp_rp_title">FIFA World Cup 2010 Experience</a> (0)<br /><small>Sanibona...!!! After a long time without posting, I am back with my greatest adventure tour exper...</small></li><li data-position="2" data-poid="in-540" data-post-type="none" ><a href="http://www.matrich.net/gallery/tour-or-travel/study-tour-to-the-netherlands.htm" class="wp_rp_title">Study Tour to The Netherlands</a> (0)<br /><small>After a long and hectic semester, our faculty organized a student study tour in The Netherlands w...</small></li><li data-position="3" data-poid="in-508" data-post-type="none" ><a href="http://www.matrich.net/gallery/awards-ceremony/mtandao-afrika-awards-ceremony-2006.htm" class="wp_rp_title">Mtandao Afrika Awards Ceremony 2006</a> (0)<br /><small>Once again, I participated in the Mtandao Afrika competition where I coached a team to come up wi...</small></li><li data-position="4" data-poid="in-199" data-post-type="none" ><a href="http://www.matrich.net/blog/matrich/study-tour-to-the-netherlands-day-1.htm" class="wp_rp_title">Study Tour to The Netherlands &#8211; Day 1</a> (1)<br /><small>The first day of our study tour was really quite busy though it provided a very good insight for ...</small></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
<img src="http://feeds.feedburner.com/~r/Matrich/~4/RC322Ym16aI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm</feedburner:origLink></item>
		<item>
		<title>My family participates and featured in the eLearning Africa Conference 2011</title>
		<link>http://feedproxy.google.com/~r/Matrich/~3/mv0cne7-yYk/my-family-participates-and-featured-in-the-elearning-africa-conference-2011.htm</link>
		<comments>http://www.matrich.net/blog/workshops-events/my-family-participates-and-featured-in-the-elearning-africa-conference-2011.htm#comments</comments>
		<pubDate>Fri, 29 Jul 2011 09:24:34 +0000</pubDate>
		<dc:creator>Matrich</dc:creator>
				<category><![CDATA[Workshops & Events]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[Workshop]]></category>

		<guid isPermaLink="false">http://www.matrich.net/?p=605</guid>
		<description><![CDATA[eLearning Africa is the Africa Continent’s premier annual conference on ICT-enhanced learning. This year the conference was held in Tanzania between the 25 &#8211; 27 May, 2011. As a family, we were very priveleged to have two of our family members i.e. dad, Mr. Kakinda Daniel Lugudde and my youngest brother, Allan Kakinda take active [...]]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.matrich.net/wp-content/uploads/AllanKakindaELA.jpg" alt="Allan at eLearning Africa Conference" title="Allan at eLearning Africa Conference" class="alignleft" /><a href="http://www.elearning-africa.com/" title="eLearning Africa" target="_blank">eLearning Africa</a> is the Africa Continent’s premier annual conference on ICT-enhanced learning. This year the conference was held in Tanzania between the 25 &#8211; 27 May, 2011. As a family, we were very priveleged to have two of our family members i.e. dad, Mr. Kakinda Daniel Lugudde and my youngest brother, Allan Kakinda take active and lead roles in the conference. </p>
<p>Allan was featured in two articles at the conference website i.e. <a href="http://www.elearning-africa.com/eLA_Newsportal/youth-voice-and-employability-ict-in-africa/" title="Mobilising Africa’s youth with the help of ICTs" target="_blank">Mobilising Africa’s youth with the help of ICTs</a> and <a href="http://www.elearning-africa.com/eLA_Newsportal/how-social-networks-train-social-skills/" title="How social networks train social skills" target="_blank">How social networks train social skills</a>. </p>
<p>While at the conference, they made several presentations including:</p>
<ul>
<li>Integrating 21st Century Pedagogy in Sexuality Education – A case study of the World Starts With Me (WSWM) project by Kakinda Daniel, Training Director, SchoolNet/iEARN Uganda</li>
<li>Introduction to International Collaboration – A case study of iEARN (International Education and Resource Network by Allan Kakinda, SchoolNet/iEARN-Uganda</li>
</ul>
<p>They also chaired a number of sessions which included:</p>
<ul>
<li>Wazup? Youth Voices on Life, Love and eLearning chaired by Allan Kakinda</li>
<li>Strategies to Enhance Student Motivation and Career Awareness chaired by Daniel Lugudde Kakinda</li>
</ul>
<p>Just a few days, an eLearning Africa Conference 2011 video was released and it featured both Allan and dad (Daniel). Please enjoy the video below:</p>
<div align="center">[There is a video that cannot be displayed in this feed. <a href="http://www.matrich.net/blog/workshops-events/my-family-participates-and-featured-in-the-elearning-africa-conference-2011.htm">Visit the blog entry to see the video.]</a></div>
<p><strong><em>As a family, we are very proud and happy to have had such a great opportunity. Kudos to dad and Allan.</em></strong></p>

<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Other Related Entries</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-29" data-post-type="none" ><a href="http://www.matrich.net/blog/technology-tools/uderb-workshop.htm" class="wp_rp_title">UDERB Workshop</a> (1)<br /><small>This Tuesday, I was invited by the SchoolNet Uganda Executive and Training Director, Mr Daniel Ka...</small></li><li data-position="1" data-poid="in-246" data-post-type="none" ><a href="http://www.matrich.net/blog/schoolnet/headteachers-ict-sensitization-workshop.htm" class="wp_rp_title">Headteachers&#8217; ICT Sensitization Workshop</a> (3)<br /><small>We have just concluded an ICT Sensitization and Training Workshop for Headteachers of primary and...</small></li><li data-position="2" data-poid="in-80" data-post-type="none" ><a href="http://www.matrich.net/blog/matrich/great-stuff-in-march-2007.htm" class="wp_rp_title">Great stuff in March 2007</a> (0)<br /><small>Wow! what a great month in this great year 2007. It is really amazing and I give the Glory back t...</small></li><li data-position="3" data-poid="in-286" data-post-type="none" ><a href="http://www.matrich.net/blog/workshops-events/pys60-presentation-at-the-mobile-applications-programming-workshop.htm" class="wp_rp_title">PyS60 Presentation at the Mobile Applications Programming Workshop</a> (4)<br /><small>Yesterday, I was privileged to give a presentation about Python for Series 60 in the Mobile Appli...</small></li><li data-position="4" data-poid="in-74" data-post-type="none" ><a href="http://www.matrich.net/blog/mtandao-afrika/maf-youth-camp-trainings.htm" class="wp_rp_title">MAf Youth Camp Trainings</a> (2)<br /><small>During the camp, there were several training programs which we organised. The first training intr...</small></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
<img src="http://feeds.feedburner.com/~r/Matrich/~4/mv0cne7-yYk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.matrich.net/blog/workshops-events/my-family-participates-and-featured-in-the-elearning-africa-conference-2011.htm/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.matrich.net/blog/workshops-events/my-family-participates-and-featured-in-the-elearning-africa-conference-2011.htm</feedburner:origLink></item>
		<item>
		<title>FIFA World Cup 2010</title>
		<link>http://feedproxy.google.com/~r/Matrich/~3/cEVhoqx3l_s/fifa-world-cup-2010.htm</link>
		<comments>http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm#comments</comments>
		<pubDate>Wed, 28 Jul 2010 21:33:27 +0000</pubDate>
		<dc:creator>Matrich</dc:creator>
				<category><![CDATA[Tour or Travel]]></category>
		<category><![CDATA[tour]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[World Cup]]></category>
		<category><![CDATA[World Cup 2010]]></category>

		<guid isPermaLink="false">http://www.matrich.net/?p=575</guid>
		<description><![CDATA[I was surely privileged to witness the first FIFA World Cup on African soil live in South Africa. I would like to thank my employees MTN Uganda for offering me such an incredible opportunity. It was surely a lifetime experience which is priceless and will remain to be remembered in our lives. Please enjoy with [...]]]></description>
				<content:encoded><![CDATA[<p>I was surely privileged to witness the first FIFA World Cup on African soil live in South Africa. I would like to thank my employees MTN Uganda for offering me  such an incredible opportunity. It was surely a lifetime experience which is priceless and will remain to be remembered in our lives. </p>
<p>Please enjoy with me the remarkable experience I had during the World Cup of 2010.</p>

<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00359' title='Arrival for World Cup'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00359-150x150.jpg" class="attachment-thumbnail" alt="Arrival for World Cup" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00371' title='All Excited'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00371-150x150.jpg" class="attachment-thumbnail" alt="All Excited" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00373' title='MTN SA Welcome'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00373-150x150.jpg" class="attachment-thumbnail" alt="MTN SA Welcome" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00393' title='Tasting how it will go...'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00393-150x150.jpg" class="attachment-thumbnail" alt="Tasting how it will go..." /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00418' title='Shopping Mall'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00418-150x150.jpg" class="attachment-thumbnail" alt="Shopping Mall" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00447' title='Meeting Cambridge'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00447-150x150.jpg" class="attachment-thumbnail" alt="Meeting Cambridge" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00449' title='Having dinner with Cambridge'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00449-150x150.jpg" class="attachment-thumbnail" alt="Having dinner with Cambridge" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00468' title='Ugandan clue'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00468-150x150.jpg" class="attachment-thumbnail" alt="Ugandan clue" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00488' title='DSC00488'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00488-150x150.jpg" class="attachment-thumbnail" alt="DSC00488" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00493' title='In front of Soccer City Stadium'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00493-150x150.jpg" class="attachment-thumbnail" alt="In front of Soccer City Stadium" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00512' title='Matrich at the MTN VIP Lounge'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00512-150x150.jpg" class="attachment-thumbnail" alt="Matrich at the MTN VIP Lounge" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00550' title='Blowing up for the game'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00550-150x150.jpg" class="attachment-thumbnail" alt="Blowing up for the game" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00558' title='Matrich cheering at the stadium'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00558-150x150.jpg" class="attachment-thumbnail" alt="Matrich cheering at the stadium" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00567' title='Matrich catching the excitement'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00567-150x150.jpg" class="attachment-thumbnail" alt="Matrich catching the excitement" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00576' title='Together cheering up'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00576-150x150.jpg" class="attachment-thumbnail" alt="Together cheering up" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00577' title='Matrich Cheering up '><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00577-150x150.jpg" class="attachment-thumbnail" alt="Matrich Cheering up" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00597' title='Ghana Uruguay Game going on'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00597-150x150.jpg" class="attachment-thumbnail" alt="Ghana Uruguay Game going on" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00603' title='Excitement after Ghana goal'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00603-150x150.jpg" class="attachment-thumbnail" alt="Excitement after Ghana goal" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00639' title='Disappointment after the loose'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00639-150x150.jpg" class="attachment-thumbnail" alt="Disappointment after the loose" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00652' title='Outside Soccer City Stadium'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00652-150x150.jpg" class="attachment-thumbnail" alt="Outside Soccer City Stadium" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00662' title='Matrich enjoying lunch'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00662-150x150.jpg" class="attachment-thumbnail" alt="Matrich enjoying lunch" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00680' title='Matrich with Zakumi'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00680-150x150.jpg" class="attachment-thumbnail" alt="Matrich with Zakumi" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00797' title='Done after the trip'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00797-150x150.jpg" class="attachment-thumbnail" alt="Done after the trip" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00812' title='Matrich at the airport'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00812-150x150.jpg" class="attachment-thumbnail" alt="Matrich at the airport" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00840' title='At the airport'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00840-150x150.jpg" class="attachment-thumbnail" alt="At the airport" /></a>
<a href='http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/attachment/dsc00846' title='Enjoying the experience'><img width="150" height="150" src="http://www.matrich.net/wp-content/uploads/DSC00846-150x150.jpg" class="attachment-thumbnail" alt="Enjoying the experience" /></a>


<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Other Related Entries</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-297" data-post-type="none" ><a href="http://www.matrich.net/blog/travel-tours/fifa-world-cup-2010-experience.htm" class="wp_rp_title">FIFA World Cup 2010 Experience</a> (0)<br /><small>Sanibona...!!! After a long time without posting, I am back with my greatest adventure tour exper...</small></li><li data-position="1" data-poid="in-615" data-post-type="none" ><a href="http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm" class="wp_rp_title">Cape of Good Hope and Table Mountain</a> (3)<br /><small>Sjoe, a few months ago, I had a great opportunity to be in Cape Town, one of the great cities in ...</small></li><li data-position="2" data-poid="in-540" data-post-type="none" ><a href="http://www.matrich.net/gallery/tour-or-travel/study-tour-to-the-netherlands.htm" class="wp_rp_title">Study Tour to The Netherlands</a> (0)<br /><small>After a long and hectic semester, our faculty organized a student study tour in The Netherlands w...</small></li><li data-position="3" data-poid="in-508" data-post-type="none" ><a href="http://www.matrich.net/gallery/awards-ceremony/mtandao-afrika-awards-ceremony-2006.htm" class="wp_rp_title">Mtandao Afrika Awards Ceremony 2006</a> (0)<br /><small>Once again, I participated in the Mtandao Afrika competition where I coached a team to come up wi...</small></li><li data-position="4" data-poid="in-62" data-post-type="none" ><a href="http://www.matrich.net/blog/schoolnet/whowhatwhere-maf-camp.htm" class="wp_rp_title">MAf Youth Camp &#8211; 2007</a> (0)<br /><small>This year's MAf Youth Camp will be the 3rd Annual Mtandao Afrika Youth Camp and Awards Ceremony a...</small></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
<img src="http://feeds.feedburner.com/~r/Matrich/~4/cEVhoqx3l_s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm</feedburner:origLink></item>
		<item>
		<title>FIFA World Cup 2010 Experience</title>
		<link>http://feedproxy.google.com/~r/Matrich/~3/qROC2shYm_0/fifa-world-cup-2010-experience.htm</link>
		<comments>http://www.matrich.net/blog/travel-tours/fifa-world-cup-2010-experience.htm#comments</comments>
		<pubDate>Sun, 11 Jul 2010 15:31:36 +0000</pubDate>
		<dc:creator>Matrich</dc:creator>
				<category><![CDATA[Travel & Tours]]></category>
		<category><![CDATA[tour]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[World Cup]]></category>
		<category><![CDATA[World Cup 2010]]></category>

		<guid isPermaLink="false">http://www.matrich.net/?p=297</guid>
		<description><![CDATA[Sanibona&#8230;!!! After a long time without posting, I am back with my greatest adventure tour experience ever. I think you can surely guess what it&#8217;s about. Definitely, it&#8217;s about the FIFA World Cup 2010, the first World Cup on African soil. With just a few hours to the finals of this biggest sports event, I [...]]]></description>
				<content:encoded><![CDATA[<p><strong><em>Sanibona&#8230;!!!</em></strong> After a long time without posting, I am back with my greatest <del datetime="2010-07-11T14:55:49+00:00">adventure</del> <del datetime="2010-07-11T14:55:49+00:00">tour</del> experience ever. I think you can surely guess what it&#8217;s about. Definitely, it&#8217;s about the <a href="http://www.fifa.com/">FIFA World Cup 2010</a>, the first World Cup on African soil. </p>
<p><img src="http://www.matrich.net/wp-content/uploads/matrich-fifaworldcup2010.jpg" alt="Matrich at Soccer City Stadium" title="Matrich at Soccer City Stadium" class="alignleft" />With just a few hours to the finals of this biggest sports event, I was among those who were so privileged, and indeed blessed, to be part of this event. I am now part of those who witnessed live the first world cup hosted on African soil in Sausi (South Africa). For my entire life, it was also my first time to watch a football match live in a stadium. Luckily enough, this wasn&#8217;t just a stadium but it was in one of the most artistic and awe-inspiring football venues on the African continent i.e. <a href="http://www.soccercity2010.co.za/">Soccer City Stadium</a> which hosted the opening ceremony and will host the finals. Woow!! What a blessing!!! </p>
<p>Being sponsored by MTN itself, I and the team had an incredible, fantastic time and this World Cup will remain part of our memory lanes. It was surely a lifetime experience which is priceless and will remain to be remembered in our lives.</p>
<p>Having been to SA before, I couldn&#8217;t imagine what I would expect during the world cup. However, it was so cool to feel the World Cup environment live. I must commend the organizers and South Africa for the great work done over there. </p>
<p>We had a number of tours around the city and the hospitality in Sausi (SA) and around the stadium was so great and fabulous. In the stadium, I was seated a few rows away from the pitch and we enjoyed the match. The support in the stadium was very phenomena and it is worthy an experience for any football fan out there. Together as Africa United fans, we blew the vuvuzelas and cheered the players to the maximum we could though there was so much pressure. Seeing penalty shoot-outs was also great though we lost out.</p>
<p><img src="http://www.matrich.net/wp-content/uploads/matrich-vuvuzela.jpg" alt="Matrich blowing a vuvuzela at Soccer City Stadium" title="Matrich blowing a vuvuzela at Soccer City Stadium" class="centered" /></p>
<p>I must say that this World Cup surely leaves a big legacy behind and we (Africans) are so much proud of hosting it. It was also full of surprises as winners of each game weren&#8217;t very obvious. Great thanks to the organizers of our trip especially MTN Uganda and MTN Group for the incredible work well done. It was so fantastic (ayoba) that words above are kind of understatement of the whole experience. Most importantly, I give thanks to God, The Almighty, for his continuous blessing as I was among the few who watched this historical World Cup live. </p>
<p><strong><em>Ayoba, Ayoba&#8230;!!!</em></strong></p>

<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Other Related Entries</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-575" data-post-type="none" ><a href="http://www.matrich.net/gallery/tour-or-travel/fifa-world-cup-2010.htm" class="wp_rp_title">FIFA World Cup 2010</a> (0)<br /><small>I was surely privileged to witness the first FIFA World Cup on African soil live in South Africa....</small></li><li data-position="1" data-poid="in-615" data-post-type="none" ><a href="http://www.matrich.net/gallery/tour-or-travel/cape-of-good-hope-and-table-mountain.htm" class="wp_rp_title">Cape of Good Hope and Table Mountain</a> (3)<br /><small>Sjoe, a few months ago, I had a great opportunity to be in Cape Town, one of the great cities in ...</small></li><li data-position="2" data-poid="in-540" data-post-type="none" ><a href="http://www.matrich.net/gallery/tour-or-travel/study-tour-to-the-netherlands.htm" class="wp_rp_title">Study Tour to The Netherlands</a> (0)<br /><small>After a long and hectic semester, our faculty organized a student study tour in The Netherlands w...</small></li><li data-position="3" data-poid="in-202" data-post-type="none" ><a href="http://www.matrich.net/blog/matrich/bicycles-in-the-netherlands.htm" class="wp_rp_title">Bicycles in The Netherlands</a> (6)<br /><small>You might be wondering It is incredible to believe that almost everyone in Netherlands uses a bic...</small></li><li data-position="4" data-poid="in-199" data-post-type="none" ><a href="http://www.matrich.net/blog/matrich/study-tour-to-the-netherlands-day-1.htm" class="wp_rp_title">Study Tour to The Netherlands &#8211; Day 1</a> (1)<br /><small>The first day of our study tour was really quite busy though it provided a very good insight for ...</small></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
<img src="http://feeds.feedburner.com/~r/Matrich/~4/qROC2shYm_0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.matrich.net/blog/travel-tours/fifa-world-cup-2010-experience.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.matrich.net/blog/travel-tours/fifa-world-cup-2010-experience.htm</feedburner:origLink></item>
		<item>
		<title>Celebrating CSS Naked Day 2010</title>
		<link>http://feedproxy.google.com/~r/Matrich/~3/J1mWM91J0AM/celebrating-css-naked-day-2010.htm</link>
		<comments>http://www.matrich.net/blog/internet/celebrating-css-naked-day-2010.htm#comments</comments>
		<pubDate>Fri, 09 Apr 2010 06:17:08 +0000</pubDate>
		<dc:creator>Matrich</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[naked day]]></category>

		<guid isPermaLink="false">http://www.matrich.net/?p=295</guid>
		<description><![CDATA[Goosh!! I completely forgot about the CSS Naked Day and when I checked on my website, I realized that there was something wrong. I automatically remembered about being CSS naked and automatically googled to check if it was the day. Thankfully it was the D-day and thanks to the function I added to my site [...]]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.matrich.net/wp-content/uploads/naked-day-2010.png" alt="CSS NAKED DAY 2010" title="CSS NAKED DAY 2010" class="alignright" /> Goosh!! I completely forgot about the <a href="http://naked.dustindiaz.com/">CSS Naked Day</a> and when I checked on my website, I realized that there was something wrong. I automatically remembered about being CSS naked and automatically googled to check if it was the day. Thankfully it was the D-day and thanks to the function I added to my site to automatically make my website css naked every year.</p>
<p>So for the second year in a row, I am joining the entire web community to celebrate this big day as a way of demonstrating my compliance to web standards i.e. proper semantic markup and a good hierarchy structure.</p>
<p><em>For more details, visit <a href="http://naked.dustindiaz.com/">http://naked.dustindiaz.com/</a> and in case you got any running websites, you can join the celebration.</em></p>

<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Other Related Entries</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-277" data-post-type="none" ><a href="http://www.matrich.net/blog/web/celebrating-css-naked-day-2009.htm" class="wp_rp_title">Celebrating CSS Naked Day 2009</a> (0)<br /><small>Today, I am joining the entire web community to celebrate the CSS Naked Day 2009. The qualificati...</small></li><li data-position="1" data-poid="in-167" data-post-type="none" ><a href="http://www.matrich.net/blog/matrich/matrich-featured-on-css-hive.htm" class="wp_rp_title">Matrich featured on CSS Hive</a> (2)<br /><small>Once again, my website re-design has been featured on CSS Hive - CSS Hive is a hive full of dange...</small></li><li data-position="2" data-poid="in-170" data-post-type="none" ><a href="http://www.matrich.net/blog/technology-tools/software/get-your-google-analytics-at-your-desktop.htm" class="wp_rp_title">Get Your Google Analytics at your desktop</a> (0)<br /><small>I was thinking of how I could use Google APIs to create and off line application which uses some ...</small></li><li data-position="3" data-poid="in-161" data-post-type="none" ><a href="http://www.matrich.net/blog/matrich/matrich-featured-on-we-love-wp.htm" class="wp_rp_title">Matrich featured on We Love WP</a> (0)<br /><small>Before we saw the year 2007 end, I redesigned my blog and I am glad to see that my blog design ha...</small></li><li data-position="4" data-poid="in-216" data-post-type="none" ><a href="http://www.matrich.net/blog/web/facebook-lab-builder.htm" class="wp_rp_title">Facebook | Lab Builder</a> (2)<br /><small>Yesterday, I wrote about a web application which was built within four days and I was and am kind...</small></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
<img src="http://feeds.feedburner.com/~r/Matrich/~4/J1mWM91J0AM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.matrich.net/blog/internet/celebrating-css-naked-day-2010.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.matrich.net/blog/internet/celebrating-css-naked-day-2010.htm</feedburner:origLink></item>
		<item>
		<title>Plotting Graphs on Python for Series 60 (PyS60)</title>
		<link>http://feedproxy.google.com/~r/Matrich/~3/3dkB0Nz36do/plotting-graphs-on-python-for-series-60-pys60.htm</link>
		<comments>http://www.matrich.net/blog/programming/plotting-graphs-on-python-for-series-60-pys60.htm#comments</comments>
		<pubDate>Sun, 21 Mar 2010 09:42:59 +0000</pubDate>
		<dc:creator>Matrich</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials & How-tos]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Mobile Programming]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[PyS60]]></category>
		<category><![CDATA[Python for Series 60]]></category>

		<guid isPermaLink="false">http://www.matrich.net/?p=287</guid>
		<description><![CDATA[While developing an application for one of my projects, I had a need to plot several graphs showing the trends of the inputted data. In the course of finding a solution for this, I came across a great PyS60 API called PySchart by Marcel Pinheiro Caraciolo which provides a standard to construct graphs on PyS60 [...]]]></description>
				<content:encoded><![CDATA[<p>While developing an application for one of my projects, I had a need to plot several graphs showing the trends of the inputted data. In the course of finding a solution for this, I came across a great PyS60 API called <a href="http://code.google.com/p/pyschart/"><strong>PySchart</strong></a> by <a href="http://www.mobideia.com"><strong>Marcel Pinheiro Caraciolo</strong></a> which provides a standard to construct graphs on PyS60 platform. </p>
<p><img src="http://www.matrich.net/wp-content/uploads/PySchart.jpg" alt="Line Chart using PySchart on PyS60" title="Line Chart using PySchart on PyS60" class="alignleft" />However, PySchart couldn&#8217;t plot several line graphs on the same canvas yet this was very important in my application as I wanted the user to easily make comparison for the different item&#8217;s trends. Luckily, the project had been released under the GNU General Public License v2. I talked to the Caraciolo who was very kind enough to give me the necessary support to improve the line chart portion of the project.</p>
<p>Today, I have uploaded an improved version of the line chart API/library which allows support for different line graphs on the same canvas. </p>
<p>Below is a simple code snippet on how you can implement the graph in the image above.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
</pre></td><td class="code"><pre class="python" style="font-family:monospace;"><span style="color: #ff7700;font-weight:bold;">from</span> appuifw <span style="color: #ff7700;font-weight:bold;">import</span> *
<span style="color: #ff7700;font-weight:bold;">import</span> e32
<span style="color: #ff7700;font-weight:bold;">from</span> linechart <span style="color: #ff7700;font-weight:bold;">import</span> LineChart
&nbsp;
<span style="color: #ff7700;font-weight:bold;">def</span> quit<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>:
    <span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">&quot;Exit key pressed&quot;</span>
    app_lock.<span style="color: #dc143c;">signal</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
&nbsp;
canvas <span style="color: #66cc66;">=</span> Canvas<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
app.<span style="color: black;">body</span> <span style="color: #66cc66;">=</span> canvas
&nbsp;
dataset <span style="color: #66cc66;">=</span> <span style="color: black;">&#91;</span><span style="color: black;">&#91;</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">0</span><span style="color: #66cc66;">,</span> <span style="color: #ff4500;">32.5</span><span style="color: black;">&#41;</span><span style="color: #66cc66;">,</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">1</span><span style="color: #66cc66;">,</span> <span style="color: #ff4500;">45.0</span><span style="color: black;">&#41;</span><span style="color: #66cc66;">,</span> <span style="color: black;">&#40;</span><span style="color: #ff4500;">2</span><span style="color: #66cc66;">,</span> <span style="color: #ff4500;">90.0</span><span style="color: black;">&#41;</span><span style="color: black;">&#93;</span><span style="color: #66cc66;">,</span><span style="color: black;">&#91;</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">0</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">32.7</span><span style="color: black;">&#41;</span><span style="color: #66cc66;">,</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">1</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">67.5</span><span style="color: black;">&#41;</span><span style="color: #66cc66;">,</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">2.0</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">67.3</span><span style="color: black;">&#41;</span><span style="color: #66cc66;">,</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">3</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">100</span><span style="color: black;">&#41;</span><span style="color: #66cc66;">,</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">4</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">65</span><span style="color: black;">&#41;</span><span style="color: black;">&#93;</span><span style="color: black;">&#93;</span>
chart <span style="color: #66cc66;">=</span> LineChart<span style="color: black;">&#40;</span>app.<span style="color: black;">body</span>.<span style="color: black;">size</span><span style="color: #66cc66;">,</span><span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">5</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">1</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">0</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">125</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">25</span><span style="color: black;">&#93;</span><span style="color: #66cc66;">,</span> dataset<span style="color: #66cc66;">,</span> <span style="color: black;">&#91;</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">255</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">140</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">0</span><span style="color: black;">&#41;</span><span style="color: #66cc66;">,</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">51</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">96</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">161</span><span style="color: black;">&#41;</span><span style="color: #66cc66;">,</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">114</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">171</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">242</span><span style="color: black;">&#41;</span><span style="color: #66cc66;">,</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">16</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">77</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">140</span><span style="color: black;">&#41;</span><span style="color: #66cc66;">,</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">250</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">210</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">125</span><span style="color: black;">&#41;</span><span style="color: #66cc66;">,</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">206</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">125</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">49</span><span style="color: black;">&#41;</span><span style="color: black;">&#93;</span><span style="color: #66cc66;">,</span> legend<span style="color: #66cc66;">=</span><span style="color: black;">&#91;</span><span style="color: #483d8b;">&quot;Revenues&quot;</span><span style="color: #66cc66;">,</span> <span style="color: #483d8b;">&quot;Profits&quot;</span><span style="color: black;">&#93;</span><span style="color: #66cc66;">,</span> colorBack <span style="color: #66cc66;">=</span> <span style="color: black;">&#40;</span><span style="color: #ff4500;">237</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">246</span><span style="color: #66cc66;">,</span><span style="color: #ff4500;">253</span><span style="color: black;">&#41;</span><span style="color: #66cc66;">,</span> xaxislabels<span style="color: #66cc66;">=</span><span style="color: black;">&#91;</span><span style="color: #483d8b;">&quot;Jan&quot;</span><span style="color: #66cc66;">,</span><span style="color: #483d8b;">&quot;Feb&quot;</span><span style="color: #66cc66;">,</span><span style="color: #483d8b;">&quot;Mar&quot;</span><span style="color: #66cc66;">,</span><span style="color: #483d8b;">&quot;Apr&quot;</span><span style="color: #66cc66;">,</span><span style="color: #483d8b;">&quot;May&quot;</span><span style="color: #66cc66;">,</span><span style="color: #483d8b;">&quot;June&quot;</span><span style="color: black;">&#93;</span><span style="color: black;">&#41;</span> 
&nbsp;
app.<span style="color: black;">exit_key_handler</span> <span style="color: #66cc66;">=</span> quit
app_lock <span style="color: #66cc66;">=</span> e32.<span style="color: black;">Ao_lock</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
app_lock.<span style="color: black;">wait</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></pre></td></tr></table></div>

<p><a href='http://www.matrich.net/downloads/LineGraphExample'>Download The Line Graph Example Here</a> and <a href="http://code.google.com/p/pyschart/">Download The Full PySchart API Here</a></p>
<p><em>Hope it will be useful to someone out there and feel free to <a href="http://www.matrich.net/contact-matrich">contact me </a> in case of help or anything.</em></p>

<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Other Related Entries</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-286" data-post-type="none" ><a href="http://www.matrich.net/blog/workshops-events/pys60-presentation-at-the-mobile-applications-programming-workshop.htm" class="wp_rp_title">PyS60 Presentation at the Mobile Applications Programming Workshop</a> (4)<br /><small>Yesterday, I was privileged to give a presentation about Python for Series 60 in the Mobile Appli...</small></li><li data-position="1" data-poid="in-55" data-post-type="none" ><a href="http://www.matrich.net/blog/projects/cylinder-management-system.htm" class="wp_rp_title">Cylinder Management System</a> (4)<br /><small>It has been long since I last coded a desktop application. I had decided to move to web based app...</small></li><li data-position="2" data-poid="in-250" data-post-type="none" ><a href="http://www.matrich.net/blog/programming/how-to-solve-cannot-add-library-problem-arrayindexoutofbounds-in-netbeans-on-vista.htm" class="wp_rp_title">How To: Solve &#8220;Cannot add Library&#8221; Problem (ArrayIndexOutOfBounds) in Netbeans on Vista</a> (0)<br /><small>Netbeans IDE is one of the famous IDEs used by Java and other programmers and it is especially ve...</small></li><li data-position="3" data-poid="in-269" data-post-type="none" ><a href="http://www.matrich.net/blog/technology-tools/software/free-aspnet-mvc-book-chapter.htm" class="wp_rp_title">Free ASP.NET MVC Book Chapter</a> (0)<br /><small>ASP.NET MVC is a new approach for Microsoft developers to use to create dynamic data-driven web s...</small></li><li data-position="4" data-poid="in-850" data-post-type="none" ><a href="http://www.matrich.net/blog/wordpress/how-to-automatically-apply-parent-page-template-to-all-sub-pages-in-wordpress.htm" class="wp_rp_title">How to: Automatically Apply Parent Page Template To All Sub Pages In WordPress</a> (1)<br /><small>WordPress has a great feature of Page Templates which enable certain pages to use a different tem...</small></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
<img src="http://feeds.feedburner.com/~r/Matrich/~4/3dkB0Nz36do" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.matrich.net/blog/programming/plotting-graphs-on-python-for-series-60-pys60.htm/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.matrich.net/blog/programming/plotting-graphs-on-python-for-series-60-pys60.htm</feedburner:origLink></item>
	</channel>
</rss>
