<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Nzeyi Web Logs</title>
	<atom:link href="http://nzeyi.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nzeyi.wordpress.com</link>
	<description>__________________________________ Nzeyimana Antoine _____________________ It's time to care !</description>
	<lastBuildDate>Mon, 01 Jun 2009 20:15:14 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
		<url>http://www.gravatar.com/blavatar/de9c4150de3a4203612ad5ad05843e26?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Nzeyi Web Logs</title>
		<link>http://nzeyi.wordpress.com</link>
	</image>
			<item>
		<title>Last week OpenMRS  GSoC activities</title>
		<link>http://nzeyi.wordpress.com/2009/06/01/last-week-openmrs-gsoc-activities/</link>
		<comments>http://nzeyi.wordpress.com/2009/06/01/last-week-openmrs-gsoc-activities/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 20:15:14 +0000</pubDate>
		<dc:creator>nzeyi</dc:creator>
				<category><![CDATA[GSoC OpenMRS]]></category>
		<category><![CDATA[Africa Education]]></category>
		<category><![CDATA[africa ict]]></category>
		<category><![CDATA[code for cotton]]></category>
		<category><![CDATA[Community Health]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Kigali Institute of Science and Technology]]></category>
		<category><![CDATA[OpenMRS]]></category>
		<category><![CDATA[rwanda technology]]></category>
		<category><![CDATA[Summer of Code]]></category>
		<category><![CDATA[Summer of Love]]></category>

		<guid isPermaLink="false">http://nzeyi.wordpress.com/?p=214</guid>
		<description><![CDATA[Last week was really busy forme, I was packaging everything for traveling back to Kigali . At least now, I get time to write a couple of blog posts . I am seating in WA Dulles airport,  waiting for the plane that take me to Brussels; I am waiting  almost for the whole day and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=214&subd=nzeyi&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Last week was really busy forme, I was packaging everything for traveling back to Kigali . At least now, I get time to write a couple of blog posts . I am seating in WA Dulles airport,  waiting for the plane that take me to Brussels; I am waiting  almost for the whole day and I can now summarize what I&#8217;ve done on OpenMRS during last week .</p>
<p>My GSoC project is again about Sync: &#8220;<strong>Data synchronization is a new OpenMRS feature allowing synchronization of data amongst a set of loosely networked servers. Such ability to exchange data is essential for operation of EMR system in rural areas where connectivity amongst sites maybe unreliable yet the need for timely centralized collection and analysis of data from remote sites exists.&#8221;</strong></p>
<p>The synchronization feature was designed in a parent-child hierarchical model, to allow data to flow from from remote sites to more central parent and vice versa . A parent OpenMRS server can have many child servers and child can have only one parent . At synchronization, a child server send new change-sets to its model (SYNC REQUEST) and receives all new change-sets from the server (SYNC RESPONSE) . This can be done either via the web or with a disk drive (file) that can be carried over the parent while the child is off-line and  the parent will also issue an off-line sync response to carry back to the child . The sync via file doesn&#8217;t mean that you have to move physically to the place where the the parent server is installed ; OpenMRS is a web app and any where you can access the parent app you can sync your off-line child !</p>
<p>There are two additional changes on the OpenMRS data model that synchronization does :</p>
<p>1) <strong>synchronization_* tables </strong>are added to the data model for storing sync settings &amp; configuration and they also store the temporary sync import/export records .</p>
<p>2) <strong>GUID indexes</strong> : to ensure data exchange between different OpenMRS systems, the ID fields are not enough to identify a record because there are from different MySql installations, so the GUID index columns are added to all data that can be sync-ed .</p>
<p><strong>My actual project&#8217;s main aim</strong> is to provide an automated way of creating a new sync node(i.e.child) and provide the appropriate user interface . This was done in manual process and required much administrative knowledge. When creating a new sync node(i.e.child) you had to:</p>
<ul>
<li> register newly created child with parent</li>
<li> back up parent server DB and move the backup  to the new child server</li>
<li> restore parent&#8217;s DB</li>
<li> assign new server sync ID</li>
<li> change any server identifying information from parent to child (i.e. form entry server URL)</li>
<li> test sync connection between parent and child and finally establish periodic sync schedule</li>
</ul>
<p>In order to achieve these project I have to start from the actual sync code . As last year I was commiting to the synchronization-admin-ui branch, I think I am going to commit to it even for this project . So I started by resolving few issues in the actual code and I merged the synchronization_bidirectional branch to the sync-admin-ui branch so that all sync changes after last GSoC be available to the sync-admin-ui . This was not a simple task because the sync_bidirectional branch also merges from trunk .</p>
<p>I just used Subclipse merge feature and I let both the old and new versions of code be there then I removed the old revisions where it was necessary and, sometimes I had to use a piece of regex in order to be fast .</p>
<p>For example, Subclipse should form somewhere two blocks of code with different versions and limit them with <strong></strong></p>
<p><code>&lt;&lt;&lt;&lt;&lt;&lt;&lt; .working<br />
//Code<br />
=======<br />
// Code<br />
&gt;&gt;&gt;&gt;&gt;&gt;&gt; .merge-right.r7385<br />
</code><br />
Then in that case I used the following regex and replaced it with an empty space in order to keep the merger-right version of the code<br />
<code><br />
<strong>(&lt;&lt;&lt;&lt;&lt;&lt;&lt; \.working([\x00-\xFE]*?)=======)|(&gt;&gt;&gt;&gt;&gt;&gt;&gt; \.merge-right\.r7385)</strong></code></p>
<p><strong>This is how I merged and it&#8217;s working perfectly .</strong></p>
<p><strong>My next step now is to find out a way of cloning the MySql database from the parent DB and apply it to the new child instllation automatically . If you have more ideas about how to achieve this, please leave your comments .</strong></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nzeyi.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nzeyi.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nzeyi.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nzeyi.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nzeyi.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nzeyi.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nzeyi.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nzeyi.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nzeyi.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nzeyi.wordpress.com/214/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=214&subd=nzeyi&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nzeyi.wordpress.com/2009/06/01/last-week-openmrs-gsoc-activities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf2005614e69b7700ba7bed39c98b7a7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nzeyi</media:title>
		</media:content>
	</item>
		<item>
		<title>Seattle Theaters</title>
		<link>http://nzeyi.wordpress.com/2009/06/01/seattle-theaters/</link>
		<comments>http://nzeyi.wordpress.com/2009/06/01/seattle-theaters/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 17:50:36 +0000</pubDate>
		<dc:creator>nzeyi</dc:creator>
				<category><![CDATA[GSoC OpenMRS]]></category>
		<category><![CDATA[Seattle]]></category>
		<category><![CDATA[Kigali Institute of Science and Technology]]></category>
		<category><![CDATA[Kist]]></category>
		<category><![CDATA[RealNetworks]]></category>
		<category><![CDATA[rwanda]]></category>
		<category><![CDATA[Rwanda Education]]></category>
		<category><![CDATA[rwanda technology]]></category>
		<category><![CDATA[Summer of Code]]></category>
		<category><![CDATA[Summer of Love]]></category>

		<guid isPermaLink="false">http://nzeyi.wordpress.com/?p=207</guid>
		<description><![CDATA[This was really amazing, I spent the last two months doing an internship with RealNetworks, Inc.
I was assigned to a challenging software engineering project and everything went well . My supervisor was always complaining because the internship was so short, and 6 months should be the best . Anyway my project was so successful and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=207&subd=nzeyi&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This was really amazing, I spent the last two months doing an internship with RealNetworks, Inc.</p>
<p>I was assigned to a challenging software engineering project and everything went well . My supervisor was always complaining because the internship was so short, and 6 months should be the best . Anyway my project was so successful and it attracted a lot of people in  my team .</p>
<p>Apart of the work, I get to know a lot of people and Seattle especially . This was my first trip to the US , <a href="http://www.rosecantine.com/2008/11/05/obama-victory-hysteria-is-everything-really-possible-in-america/" target="_blank">the country where everything is possible</a> !</p>
<p>Sometimes I got to hang out with friends and got to watch movies in the theaters around . Well, this was a very adductive fun and it&#8217;s the reason why the title of this post is called so . For my colleagues who like coding, I have a fun of code that always came out after watching one of the SciFi series . Guess which :<br />
<code><br />
try{<br />
energize();<br />
}catch(UnknownUniverseException ex){<br />
ex.printStarTrek();<br />
}</code><br />
Isn&#8217;t that fun ? The really came out once I wanted to write <strong>ex.printStackTrace</strong> and I wrote <strong>ex.printStarTrek</strong> instead .</p>
<p>Here is alist of the movies I enjoyed while in Seattle :</p>
<p>1- <a href="http://www.fox.com/fringe/" target="_blank"><strong>Fringe</strong></a> : a kind of new X-Files ; you know what ,  I already saw someone in Olivia&#8217;s face here in Seattle and I am applying for a Computational Bio-Chemical Engineering internship position with <a href="http://www.massivedynamic.com/" target="_blank"><strong>Massive Dinamic </strong></a> , WHAT CAN&#8217;T WE DO ?  (  &#8212; This is a joke )</p>
<p>2-<a href="http://www.startrek.com" target="_blank"><strong>Star Trek</strong></a> : This was awesome and I enjoyed it even before I knew it was so famous (at the time when they released the new season).</p>
<p>3-<strong><a href="http://en.wikipedia.org/wiki/Angels_%26_Demons_(film)" target="_blank">Angels &amp; Demons</a></strong> : Oh my goodness , what a Camerlengo ? I was happy to see the movie starting in the <a href="http://en.wikipedia.org/wiki/Large_Hadron_Collider" target="_blank">LHC</a> near Switzerland but I didn&#8217;t imagine it&#8217;s gonna be a Da Vinci Code of some sort . Anyway I am not a part of Illuminati ! And at the end of the movie the guy(Camarlengo) got into trouble , and I remembered my old high school latin text about <a href="http://www.thelatinlibrary.com/cicero/cat1.shtml" target="_blank">Catilina</a>: <strong>Quo usque tandem abutere, Catilina, patientia nostra?</strong></p>
<p>and</p>
<p>4- <strong><a href="http://en.wikipedia.org/wiki/Drag_Me_to_Hell" target="_blank">Drag me to Hell </a> </strong>was the Killer ! Don&#8217;t even dream of the story because it can be so harmful .<br />
That was my fun time, tell me what you think about these movies .<strong><br />
</strong></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nzeyi.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nzeyi.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nzeyi.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nzeyi.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nzeyi.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nzeyi.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nzeyi.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nzeyi.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nzeyi.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nzeyi.wordpress.com/207/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=207&subd=nzeyi&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nzeyi.wordpress.com/2009/06/01/seattle-theaters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf2005614e69b7700ba7bed39c98b7a7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nzeyi</media:title>
		</media:content>
	</item>
		<item>
		<title>DWR/AJAX/JavaScript Hacks: The secrets of JavaScript in the adress bar</title>
		<link>http://nzeyi.wordpress.com/2009/06/01/dwrajaxjavascript-hacks-the-secrets-of-javascript-in-the-adress-bar/</link>
		<comments>http://nzeyi.wordpress.com/2009/06/01/dwrajaxjavascript-hacks-the-secrets-of-javascript-in-the-adress-bar/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 16:07:48 +0000</pubDate>
		<dc:creator>nzeyi</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[GSoC OpenMRS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Chinese Dragon]]></category>
		<category><![CDATA[Dragon Dance]]></category>
		<category><![CDATA[DWR]]></category>
		<category><![CDATA[rwanda technology]]></category>
		<category><![CDATA[Summer of Code]]></category>

		<guid isPermaLink="false">http://nzeyi.wordpress.com/?p=197</guid>
		<description><![CDATA[A couple of weeks ago a friend of mine send me a JavaScript code that I called &#8220;Balancez-Balancez&#8221; ;  it&#8217;s really fun to play with it . Just with your browser go to any website (e.g. www.baidu.com ), then  after the page is loaded copy the following code and paste it into the address bar [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=197&subd=nzeyi&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A couple of weeks ago a friend of mine send me a JavaScript code that I called &#8220;Balancez-Balancez&#8221; ;  it&#8217;s really fun to play with it . Just with your browser go to any website (e.g. <a href="http://baidu.com">www.baidu.com</a> ), then  after the page is loaded copy the following code and paste it into the address bar of your browser :<br />
<code>javascript:R=0;x1=0.1;y1=0.05;x2=0.25;y2=0.24;x3=1.6;y3=0.24;x4=300;y4=200;x5=300;y5=200;DI=document.links;DIL=DI.length;A=function(){for(i=0;i-DIL;i++){DI[i].style.position='absolute';DI[i].style.left=Math.sin(R*x1+i*x2+x3)*x4+x5;DI[i].style.top=Math.cos(R*y1+i*y2+y3)*y4+y5}R++;};setInterval('A()',5);void(0);</code></p>
<p>What happens: all the links in the website become a beautiful <a href="http://en.wikipedia.org/wiki/Dragon_dance">CHINESE DRAGON DANCING</a> !</p>
<p>The principle of this code is collecting some HTML elements(i.e. links) and animate them continuously (changing their style positions) along an elliptical line .</p>
<p>It was really pretty looking and it conducted me to dig deeply and find out how to go beyond  this practice of JavaScript in the address bar for just manipulating the HTML page : I thought about AJAX .</p>
<p>In fact if the page has an AJAX port, meaning the back end can handle some XMLHttpRequest, you can  build an out-of-page JavaScript code that runs into the address bar of the page and calls some functions in the back-end of your application .</p>
<p><span style="text-decoration:underline;"><strong>Example: Use DWR</strong></span></p>
<p>Consider you have exported a DWR function that gets the app logs from the server . You can just omit to put the JavaScript imports in your page header and load them dynamically with a JavaScript in the address bar ; you can also override the Ajax Callback function, you can override the callback handler and so on . Here is the example :</p>
<p><code><br />
javascript:<br />
script=document.createElement('script');<br />
script.type='text/javascript';<br />
script.src='/js/page.js';<br />
document.getElementsByTagName('head')[0].appendChild(script);<br />
css=document.createElement('link');css.type='text/css';<br />
css.rel='stylesheet';<br />
css.href='/css/page.css';<br />
document.getElementsByTagName('head')[0].appendChild(css);<br />
scriptA=document.createElement('script');<br />
scriptA.type='text/javascript';<br />
scriptA.src='/dwr/util.js';<br />
document.getElementsByTagName('head')[0].appendChild(scriptA);<br />
scriptB=document.createElement('script');<br />
scriptB.type='text/javascript';<br />
scriptB.src='/dwr/engine.js';<br />
document.getElementsByTagName('head')[0].appendChild(scriptB);<br />
dwr={};<br />
dwr.engine={};<br />
DWREngine=dwr.engine;<br />
DWRLogsService={};<br />
DWRLogsService._path='/dwr';<br />
DWRLogsService.giveMeTheLogs=function(callback){<br />
dwr.engine._execute(DWRLogsService._path,'DWRLogsService','giveMeTheLogs',callback);<br />
};<br />
if(DWRLogsService==null)alert('DWRLogsService=null');<br />
void(0);<br />
logsHandler=function(logsList){<br />
newTable='&lt;table cellpadding="4" cellspacing="0" width="100%" border="0"&gt;';<br />
for(i=0;i&lt;logsList.length;i++){<br />
newTable+='&lt;tr&gt;&lt;td&gt;'+logsList[i]+'&lt;/td&gt;&lt;/tr&gt;';<br />
}<br />
newTable+='&lt;/table&gt;';<br />
document.getElementById('logsDiv').InnerHtml=newTable;<br />
};<br />
displayLogs=function(){<br />
DWRLogsService.giveMeTheLogs(logsHandler);<br />
};<br />
setInterval('displayLogs();',1000);<br />
void(0);</code></p>
<p>Since this technique is not very fair, there are three main points you have to consider when making building the Javascript code for the address bar:</p>
<p>1)Avoid new line (&#8217;\n&#8217; or &#8216;\r&#8217;) or space into your code : we are in the browser address bar !</p>
<p>2)Don&#8217;t use the name  &#8216;var&#8217; for declaring your local or global variables ; this should cause a new space into your code.</p>
<p>4)Call void(0) at the end of your code .</p>
<p>I hope this can help anyone who want to try and please leave your feedback and lets share the experience .</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nzeyi.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nzeyi.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nzeyi.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nzeyi.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nzeyi.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nzeyi.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nzeyi.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nzeyi.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nzeyi.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nzeyi.wordpress.com/197/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=197&subd=nzeyi&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nzeyi.wordpress.com/2009/06/01/dwrajaxjavascript-hacks-the-secrets-of-javascript-in-the-adress-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf2005614e69b7700ba7bed39c98b7a7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nzeyi</media:title>
		</media:content>
	</item>
		<item>
		<title>Weekend @ Microsoft Campus</title>
		<link>http://nzeyi.wordpress.com/2009/05/08/weekend-microsoft-campus/</link>
		<comments>http://nzeyi.wordpress.com/2009/05/08/weekend-microsoft-campus/#comments</comments>
		<pubDate>Fri, 08 May 2009 06:19:30 +0000</pubDate>
		<dc:creator>nzeyi</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Rwanda Education]]></category>
		<category><![CDATA[Science and Technology]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[rwanda]]></category>
		<category><![CDATA[Africa Education]]></category>
		<category><![CDATA[africa ict]]></category>
		<category><![CDATA[Claude Dusaidi]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Kigali Institute of Science and Technology]]></category>
		<category><![CDATA[rwanda technology]]></category>
		<category><![CDATA[Summer of Code]]></category>

		<guid isPermaLink="false">http://nzeyi.wordpress.com/?p=186</guid>
		<description><![CDATA[I may not seem to be the biggest fan of Microsoft at KIST , but I do believe that Microsoft is a very innovative company in the software industry. Last weekend I was at the main Microsoft campus in Redmond , Seattle . They really have a kind of fresh environment you should dream to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=186&subd=nzeyi&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I may not seem to be the biggest fan of Microsoft at KIST , but I do believe that Microsoft is a very innovative company in the software industry. Last weekend I was at the main Microsoft campus in<em> Redmond , </em>Seattle<em> . </em>They really have a kind of fresh environment you should dream to working in;  gardens,  flowers , trees it&#8217;s all welcoming. Although it&#8217;s a hard time for many companies including Microsoft , due to economic crisis ,  I am feeling late to embrace the .NET and C# world . I will enjoy to start reading my C# book left in Dusaidi Hostel . I hope there are much similarities between Java an C# .</p>
<p>This is my picture inside the Redmond campus, I was near the building No. 7  and  if you don&#8217;t know where the building No. 7 is in that campus, you never been there !</p>
<p><img class="alignnone size-full wp-image-192" title="Nzeyi_microsoft" src="http://nzeyi.files.wordpress.com/2009/05/nzeyi_microsoft.jpg?w=510&#038;h=360" alt="Nzeyi_microsoft" width="510" height="360" /></p>
<p>Antoine @ Microsoft near the building # 7</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nzeyi.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nzeyi.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nzeyi.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nzeyi.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nzeyi.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nzeyi.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nzeyi.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nzeyi.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nzeyi.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nzeyi.wordpress.com/186/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=186&subd=nzeyi&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nzeyi.wordpress.com/2009/05/08/weekend-microsoft-campus/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf2005614e69b7700ba7bed39c98b7a7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nzeyi</media:title>
		</media:content>

		<media:content url="http://nzeyi.files.wordpress.com/2009/05/nzeyi_microsoft.jpg" medium="image">
			<media:title type="html">Nzeyi_microsoft</media:title>
		</media:content>
	</item>
		<item>
		<title>Can Africa survive without western aid ?</title>
		<link>http://nzeyi.wordpress.com/2009/05/08/can-africa-survive-without-western-aid/</link>
		<comments>http://nzeyi.wordpress.com/2009/05/08/can-africa-survive-without-western-aid/#comments</comments>
		<pubDate>Fri, 08 May 2009 05:57:25 +0000</pubDate>
		<dc:creator>nzeyi</dc:creator>
				<category><![CDATA[Africa Education]]></category>
		<category><![CDATA[北京化工大学]]></category>
		<category><![CDATA[rwanda]]></category>

		<guid isPermaLink="false">http://nzeyi.wordpress.com/?p=184</guid>
		<description><![CDATA[Wow, that&#8217;s a kind of interesting subject ! This evening I got a chance to attend a public lecture at the University of Washington (UW) . Dr. Dambisa Moyo was talking about her recent book entitled &#8221; Dead Aid: Why Aid Is Not Working and How There Is a Better Way for Africa &#8221; . [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=184&subd=nzeyi&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img class="alignleft size-medium wp-image-200" title="Dr_Moyo_lecture" src="http://nzeyi.files.wordpress.com/2009/05/dr_moyo_lecture.jpg?w=300&#038;h=225" alt="Dr_Moyo_lecture" width="300" height="225" />Wow, that&#8217;s a kind of interesting subject ! This evening I got a chance to attend a public lecture at the University of Washington (UW) . <a href="http://en.wikipedia.org/wiki/Dambisa_Moyo">Dr. Dambisa Moyo</a> was talking about her recent book entitled<span> &#8221; <a href="http://www.amazon.com/Dead-Aid-Working-Better-Africa/dp/0374139563"><strong>Dead Aid: Why Aid Is Not Working and How There Is a Better Way for Africa</strong></a> &#8221; . Before the lecture I was thinking, wow she&#8217;s gonna be one of those &#8220;Experts on Africa&#8221; !  I saw she really got an extremendous academic background and a lot of people were there to listen to her and ask questions . The only problem I have is that I didn&#8217;t read that book yet and I should comment only according to what I heard from the lady at the lecture . </span></p>
<p><span>I don&#8217;t think she is the first to talk about the subject and I know some African figures who talk a lot about being self-relevant and efficient . What I agree with Dr. Moyo is that obiously corruption was, is or will be the worst barrier to the use of aid , but I have to say that corruption is a general barrier to development regardless the fact that there is aid or not . Few people should disagree if I say that there are some places where The Aid really saved lives and contributed to the establishment of infrastructure and public institutions in Africa . I think the aid contributed somehow to my education. I was surprised that in her talk she emphasized more on the wrong side of things with Africans not efficiently using The Aid during the last 60 years , but I was also shocked by the fact that she didn&#8217;t mention the way those western &#8221; Aid Providers &#8221; should use or have been using The Aid to manipulate Africans  and that&#8217;s a worse case for me . She also said that Chinese have a better approach to Africa . I was in Beijing in October 2006 when they hada  The China-Africa Summit, and I used to se</span><span>in the Beijing subway</span><span> some writings  like &#8221; </span>爱上了非洲 &#8221; . That was fun and we still have to see wht comes next !</p>
<p>Here is a copy of the summary from the lecture .</p>
<p><img class="alignnone size-full wp-image-187" title="world_affairs_council" src="http://nzeyi.files.wordpress.com/2009/05/world_affairs_council1.png?w=563&#038;h=634" alt="world_affairs_council" width="563" height="634" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nzeyi.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nzeyi.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nzeyi.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nzeyi.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nzeyi.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nzeyi.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nzeyi.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nzeyi.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nzeyi.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nzeyi.wordpress.com/184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=184&subd=nzeyi&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nzeyi.wordpress.com/2009/05/08/can-africa-survive-without-western-aid/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf2005614e69b7700ba7bed39c98b7a7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nzeyi</media:title>
		</media:content>

		<media:content url="http://nzeyi.files.wordpress.com/2009/05/dr_moyo_lecture.jpg?w=300" medium="image">
			<media:title type="html">Dr_Moyo_lecture</media:title>
		</media:content>

		<media:content url="http://nzeyi.files.wordpress.com/2009/05/world_affairs_council1.png" medium="image">
			<media:title type="html">world_affairs_council</media:title>
		</media:content>
	</item>
		<item>
		<title>Why don&#8217;t many people in Africa understand and benefit of Open-Source</title>
		<link>http://nzeyi.wordpress.com/2009/05/04/why-dont-many-people-in-africa-understand-and-benefit-of-open-source/</link>
		<comments>http://nzeyi.wordpress.com/2009/05/04/why-dont-many-people-in-africa-understand-and-benefit-of-open-source/#comments</comments>
		<pubDate>Mon, 04 May 2009 07:09:14 +0000</pubDate>
		<dc:creator>nzeyi</dc:creator>
				<category><![CDATA[Africa Education]]></category>
		<category><![CDATA[GSoC OpenMRS]]></category>
		<category><![CDATA[africa ict]]></category>
		<category><![CDATA[Kigali Institute of Science and Technology]]></category>
		<category><![CDATA[Kist]]></category>
		<category><![CDATA[OpenMRS]]></category>
		<category><![CDATA[rwanda technology]]></category>
		<category><![CDATA[Summer of Code]]></category>

		<guid isPermaLink="false">http://nzeyi.wordpress.com/?p=160</guid>
		<description><![CDATA[It seems to be true that &#8220;dev people&#8221;, spending most of their time on coding, debugging, &#8230;, do not have a lot of time for &#8220;blogging&#8221; but when you work on open-source projects, it should be almost a requirement to write blogs and let the world know what you are working on .
So here I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=160&subd=nzeyi&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It seems to be true that &#8220;dev people&#8221;, spending most of their time on coding, debugging, &#8230;, do not have a lot of time for &#8220;blogging&#8221; but when you work on open-source projects, it should be almost a requirement to write blogs and let the world know what you are working on .</p>
<p>So here I get time to talk about few points and the main issue I am asking myself is about Open-Source and Africa . Few days ago I was accepted to work with <a href="http://openmrs.org" target="_blank">OpenMRS</a> , an open source project which is deployed in Africa to fight against HIV/AIDS mainly . This my second time to work on the project through the <a href="http://code.google.com/soc/" target="_blank">Google Summer of Code &#8482;</a> program . So, I started counting how many African students were involved in the Google Summer of Code(tm) since its birth Date in 2005 and I don&#8217;t find 20 yet in &#8220;Africa&#8221; (I mean the sub-saharan/black one).</p>
<p>I don&#8217;t know what people in &#8220;The West&#8221; think of &#8220;Africa&#8221;, but I am sure some think it&#8217;s place for wars, diseases and still counting bad things; and they don&#8217;t expect much stuff like technology in Africa . It&#8217;s also sad to see people in Africa not benefiting from the open-technology which is all around . Internet itself is not perfectly open but it&#8217; an open world of all kind of information .</p>
<p>Last year I got an opportunity to attend the <a href="http://allafrica.com/stories/200810110045.html">Intego Awards</a> which is the Rwandan Annual Award for the best companies in the ICT (Information and Communication Technology) business there . There is a man who said that Africa was sleep when The West was revolutionizing the machinery and mechanization industry and that Africa should not be sleep again with this new revolution in ICT . This is really a great thinking but there still much a lot to change for achieving this kind of dream .It&#8217;s true that people can benefit from much information available on the internet now for free and especially when they use well that information .The only problem is when people try to exaggerate using that information, I am afraid that Internet couldn&#8217;t replace the typical classic learning methodologies; a very sad example I knew is about a college teacher who was trying to &#8220;google&#8221; the title of the subject he was assigned to and the first PDF to come in the google results would be his textbook . It sounds really funny for these students to learn by this kind of FIFO methodology .But behind this information accessible on the Internet, there are really much more things that people can benefit from : That is FLOSS . I am not sure you can be heard when you tell that kind of teacher : &#8220;Hello teacher, I am writing open-source code, can we spread it and benefit from it ?&#8221; &#8211; &#8221; That&#8217;s not my business ? &#8221; should be the most probable answer.This really sucks .</p>
<p>I always believe that open-source can save Africa in the sectors like education or health care but a lot of new understanding should be adopted . When I asked someone why people don&#8217;t care about open-source , he said &#8220;it&#8217;s because we don&#8217;t even feel the proprietary guy&#8217;s pressure, here you can download anything you are able to access, no body will come from The West to say that the video , PDF book or cracked software I downloaded from rapidshare is illegal &#8220;;  &#8220;An other thing is that we download this digital stuff because we can&#8217;t download food or beer&#8221;, he added .This not the definitive answer but I should keep you updated when I get new reasons .</p>
<p>Anyway I should keep to interest my classmates about open-source , I want them to migrate from IE to FireFox, from Windows Media Player to VLC, from XP to Ubuntu, from the proprietary chains to THE WORLD OF OPENNESS AND FREEDOM !</p>
<p><strong>If you feel like there is a concern in this post, please leave me a comment .</strong></p>
<p><strong>Antoine</strong></p>
<p>Today&#8217;s interesting thing I found : <a href="http://bridge2rwanda.org/" target="_blank">Bridge2Rwanda</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nzeyi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nzeyi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nzeyi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nzeyi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nzeyi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nzeyi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nzeyi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nzeyi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nzeyi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nzeyi.wordpress.com/160/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=160&subd=nzeyi&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nzeyi.wordpress.com/2009/05/04/why-dont-many-people-in-africa-understand-and-benefit-of-open-source/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf2005614e69b7700ba7bed39c98b7a7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nzeyi</media:title>
		</media:content>
	</item>
		<item>
		<title>Rwanda to adopt mobile applications to support public health</title>
		<link>http://nzeyi.wordpress.com/2009/05/02/rwanda-to-adopt-mobile-applications-to-support-public-health/</link>
		<comments>http://nzeyi.wordpress.com/2009/05/02/rwanda-to-adopt-mobile-applications-to-support-public-health/#comments</comments>
		<pubDate>Sat, 02 May 2009 09:51:34 +0000</pubDate>
		<dc:creator>nzeyi</dc:creator>
				<category><![CDATA[GSoC OpenMRS]]></category>
		<category><![CDATA[Africa Education]]></category>
		<category><![CDATA[Community Health]]></category>
		<category><![CDATA[embedded programming]]></category>
		<category><![CDATA[J2ME]]></category>
		<category><![CDATA[mobile programming]]></category>
		<category><![CDATA[MOH]]></category>
		<category><![CDATA[rwanda technology]]></category>
		<category><![CDATA[Summer of Code]]></category>
		<category><![CDATA[Voxiva]]></category>
		<category><![CDATA[www.pivotaccess.com]]></category>

		<guid isPermaLink="false">http://nzeyi.wordpress.com/?p=162</guid>
		<description><![CDATA[This is actually an article I got from today&#8217;s The New Times .
My thinking is that I believe open-source is the most profitable technology solution for Africa especially in the areas of Education and Health Care . So I am hanging up my eyes to se what open-source should play in that or how Rwandan [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=162&subd=nzeyi&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is actually an article I got from today&#8217;s <a href="http://newtimes.co.rw/index.php?issue=13883&amp;article=15368" target="_blank">The New Times</a> .</p>
<p>My thinking is that I believe open-source is the most profitable technology solution for Africa especially in the areas of Education and Health Care . So I am hanging up my eyes to se what open-source should play in that or how Rwandan technologists will have a chance to be involv ed in it .</p>
<p>This is the article :</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td class="update" width="81%">Saturday, 2nd May 2009</td>
<td class="update" width="19%">
<table style="height:28px;" border="0" cellspacing="0" cellpadding="0" width="140">
<tbody>
<tr>
<td width="19"><a href="http://newtimes.co.rw/index.php?issue=13883&amp;email&amp;article=15368"><br />
</a></td>
<td></td>
<td width="22"><a href="http://newtimes.co.rw/print.php?issue=13883&amp;print&amp;article=15368"><br />
</a></td>
<td></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="lead_title" colspan="2">Gov’t adopts phones for health initiative</td>
</tr>
<tr>
<td class="lead_title" colspan="2"><img style="border:1px solid black;" src="http://anthonzeyi.googlepages.com/13883-Sezy.jpg" border="1" alt="" width="180" height="120" /></p>
<div class="pic_caption" style="padding-right:8px;">Health Minister Richard Sezibera (R) consults with MTN COO Andrew Rugege during the meeting at Prime Holdings on Thursday. (Photo J Mbanda).</div>
</td>
</tr>
<tr>
<td class="lead_title" colspan="2">BY SAM NKURUNZIZA</td>
</tr>
<tr>
<td class="lead_body" colspan="2"><strong>KIGALI -</strong> The Ministry of Health has unveiled a new technology of using mobile phones to support public health, starting with support for Community Health Workers in mother and child health interventions.</p>
<p>The Phones for Health initiative is a unique public-private partnership which uses computers and mobile phones to establish a national electronic reporting system that eases delivery of public health care at the village level.</p>
<p>All health workers subscribed to this technology will be able to send monthly reports and emergency calls at no cost as a national method of harmonising health services.</p>
<p>Speaking at a one day workshop to discuss and provide input on the architectural plan and integration of mobile enabled applications in Rwanda’s National Health Information system, Health Minister Dr Richard Sezibera commended the development.</p>
<p>“This will help meet the broader information needs of the country’s health sector by improving coordination and communication. It’s an effective force multiplier against communicable and non communicable diseases,” he said Thursday, at his offices at Prime Holdings.</p>
<p>Sezibera admitted that combining biology and engineering will turn the health business into a communication institution which renders medication and healthcare delivery timely, precise, portable and personal.</p>
<p>He revealed that in most cases all that Community Health Workers demand during consultative meetings is transport and communication and that the initiative could never have come at a better time.</p>
<p>“We will do everything in our reach to avail computers and any other services where we operate,” Sezibera pledged.</p>
<p>Phones for Health partners include leading mobile phone operators like the MTN group, Accenture, Motorola and Voxiva.</p>
<p>Andrew Rugege, the Chief Operations Officer of MTN Rwanda challenged the public to quickly adapt to this new way of improving the working conditions of health workers across the country.</p>
<p>“As MTN we shall also go as far as it is necessary to build human capacity in Rwanda to make these strategies possible and successful because our best customer is a healthy one,” Rugege said.</p>
<p><strong>Ends</strong></td>
</tr>
</tbody>
</table>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nzeyi.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nzeyi.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nzeyi.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nzeyi.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nzeyi.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nzeyi.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nzeyi.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nzeyi.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nzeyi.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nzeyi.wordpress.com/162/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=162&subd=nzeyi&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nzeyi.wordpress.com/2009/05/02/rwanda-to-adopt-mobile-applications-to-support-public-health/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf2005614e69b7700ba7bed39c98b7a7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nzeyi</media:title>
		</media:content>

		<media:content url="http://anthonzeyi.googlepages.com/13883-Sezy.jpg" medium="image" />
	</item>
		<item>
		<title>This is How We Live</title>
		<link>http://nzeyi.wordpress.com/2009/04/26/this-how-we-live/</link>
		<comments>http://nzeyi.wordpress.com/2009/04/26/this-how-we-live/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 22:20:33 +0000</pubDate>
		<dc:creator>nzeyi</dc:creator>
				<category><![CDATA[Africa Education]]></category>
		<category><![CDATA[KHI]]></category>
		<category><![CDATA[Kigali]]></category>
		<category><![CDATA[Kigali Health Institute]]></category>
		<category><![CDATA[Kigali Institute Of Science and Technology KIST]]></category>
		<category><![CDATA[Rwanda Education]]></category>
		<category><![CDATA[Science and Technology]]></category>
		<category><![CDATA[rwanda]]></category>
		<category><![CDATA[北京化工大学]]></category>
		<category><![CDATA[africa ict]]></category>
		<category><![CDATA[Campus Life]]></category>
		<category><![CDATA[Claude Dusaidi]]></category>
		<category><![CDATA[Kigali Institute of Science and Technology]]></category>
		<category><![CDATA[Kist]]></category>
		<category><![CDATA[rwanda technology]]></category>

		<guid isPermaLink="false">http://nzeyi.wordpress.com/?p=152</guid>
		<description><![CDATA[2 years ago my scholarship in China was cancelled and I got a chance to continue studies at KIST, just on a loan from The Student Financing Agency for Rwanda ( SFAR &#8211; www.sfar.gov.rw ) . The Rwandan Education system has improved much a lot in last 15 years after the terrible events of 1994, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=152&subd=nzeyi&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>2</strong> years ago my scholarship in China was cancelled and I got a chance to continue studies at KIST, just on a loan from The Student Financing Agency for Rwanda ( <a href="http://www.sfar.gov.rw">SFAR &#8211; www.sfar.gov.rw</a> ) . The Rwandan Education system has improved much a lot in last 15 years after the terrible events of 1994, but sometimes you can still find some problems in schools .</p>
<p>Beyond the quality of  &#8221; technical stuff &#8221; we learn at KIST ( as Engineering students ) , students still facing some living issues and more . The following is an article I get from <a href="http://newtimes.co.rw/index.php?issue=13876&amp;article=15201"><strong>The New Times</strong></a> following an issue in late disbursment of students loan .  I am feeling sorry for those in dilemma .</p>
<table style="height:526px;" border="0" cellspacing="0" cellpadding="0" width="1123">
<tbody>
<tr>
<td class="lead_title" colspan="2">&#8221; KIST students still in dilemma</td>
</tr>
<tr>
<td class="lead_title" colspan="2"></td>
</tr>
<tr>
<td class="lead_title" colspan="2">BY CHARLES KWIZERA</td>
</tr>
<tr>
<td class="lead_body" colspan="2"><strong><em>Students risk failing exams for lack of allowances</em></strong></p>
<p>Students at the Kigali Institute of Science Technology (KIST) are facing welfare hurdles to the extent that some have been expelled from their residences due to arrears accumulated in rent.</p>
<p>Early last month this paper disclosed the financial constraints that KIST students were facing caused mainly by the delay in the disbursement of their allowances which are given to all government-sponsored students. But according to reports, the problem looks to be far from over.</p>
<p>KIST, which has a population of over 2,600 students, can accommodate only 200 on campus leaving the rest to seek accommodation elsewhere: These are the ones facing challenges with unpaid rent.</p>
<p>The Rwf 25,000 per month given to every student through the Students Financing Agency (SFAR) in all public universities in the country covers accommodation, feeding and facilitation expenses.</p>
<p>Speaking to <strong><em>The New Times</em></strong>, some students who have been evicted by their land lords confirmed that they are spending their nights in the campus hall watching movies.</p>
<p>“I am spending my nights in front of the television at the campus hall because I have been kicked out of the house by my land lord,” said Fabrice Mugisha one of the students.</p>
<p>This comes at a time when students are preparing to sit for their end of semester exams which, according to the students’ representatives, may lead to poor performance.</p>
<p>“We are about to begin our exams and students are facing financial constraints which may lead to their failure in the coming exams,” said Guild president Martin Ruvugabigwi.</p>
<p>The vice Rector in charge for Finance and Administration (VRAF), Thomas Gatabazi, had last time attributed the delays to changes in the system in which the money was being disbursed.</p>
<p>Gatabazi had also promised that the problem was going to be solved at once since SFAR had released money for January and February, but students got money for January only.</p>
<p>In a phone interview, the head of SFAR, Emmanuel Muvunyi, said that the agency had already sent  money to cover the period up to March, but said that Gatabazi had told him that there were some issues they were still trying to solve.</p>
<p>When contacted last evening, Gatabazi said that he had been trying to solve some errors that had occurred in the processing system at National Bank of Rwanda (BNR) and Bank of Kigali (BK) where the students have accounts.</p>
<p>“I have been trying to solve some errors that occurred in the students’ lists with BNR and also looking for a way with BK in which we can smoothly give out the money,” he stressed.</p>
<p>“The problem has been solved and the people at BK told me that they were going to start giving out the money to the students today at 4.00pm.”</p>
<p>However, by press time the students had not received the money.</p>
<p><strong>Ends &#8211; THE NEW TIMES . &#8220;</strong></td>
</tr>
</tbody>
</table>
<p><strong>If you feel like there is a concern in this post, please leave me a comment .</strong></p>
<p><strong>Antoine</strong></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nzeyi.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nzeyi.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nzeyi.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nzeyi.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nzeyi.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nzeyi.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nzeyi.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nzeyi.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nzeyi.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nzeyi.wordpress.com/152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=152&subd=nzeyi&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nzeyi.wordpress.com/2009/04/26/this-how-we-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf2005614e69b7700ba7bed39c98b7a7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nzeyi</media:title>
		</media:content>
	</item>
		<item>
		<title>Pushing it forward, The Summer of Love !</title>
		<link>http://nzeyi.wordpress.com/2009/04/23/pushing-it-forward-the-summer-of-love/</link>
		<comments>http://nzeyi.wordpress.com/2009/04/23/pushing-it-forward-the-summer-of-love/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 04:21:22 +0000</pubDate>
		<dc:creator>nzeyi</dc:creator>
				<category><![CDATA[GSoC OpenMRS]]></category>
		<category><![CDATA[code for cotton]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[OpenMRS]]></category>
		<category><![CDATA[Summer of Code]]></category>
		<category><![CDATA[Summer of Love]]></category>

		<guid isPermaLink="false">http://nzeyi.wordpress.com/?p=131</guid>
		<description><![CDATA[A couple of weeks ago, I definitely started using Ubuntu &#8220;officially&#8221;  on my new laptop, and I realized that it&#8217;s really SUPER-COOL . This is one of the most successful Desktop Linux distros .The reasons are so many : I was obviously tired of windows and most of my colleague coders are using Unix-based O.S. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=131&subd=nzeyi&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A couple of weeks ago, I definitely started using Ubuntu &#8220;officially&#8221;  on my new laptop, and I realized that it&#8217;s really SUPER-COOL . This is one of the most successful Desktop Linux distros .The reasons are so many : I was obviously tired of windows and most of my colleague coders are using Unix-based O.S. This was also one of my great goals of 2009 and it may be a reason to say &#8220;GanBei&#8221; in Chinese for those who knows . I will no more rely on Cygwin or MinGwin for coding C/C++ or Qt with Eclipse .</p>
<p>The are really big efforts deployed in open-source world to produce for free those SUPER-COOL tools like Linux or other tools we use in our everyday life or others used by institutions and organizations . Open-source is a kind of &#8220;green business&#8221; whose model is not understood by many people, vulnerable to failure but very remarkable for their success . There isn&#8217;t a single development on this world which is not aware of this kind of revolution . It should be the change we wish to see !</p>
<p><a href="http://code.google.com/soc/"><img class="alignleft size-full wp-image-134" title="GSoC 2009" src="http://nzeyi.files.wordpress.com/2009/03/2009socwithlogo.gif?w=266&#038;h=186" alt="2009socwithlogo" width="266" height="186" /></a>One of the greatest programs in contribution to open-sourrce is the  <a title="Google Summer of Code(TM)" href="http://code.google.com/soc/" target="_blank">Google Summer of Code(TM)</a> ,<em><strong>&#8220;Since its inception in 2005, the program has brought together nearly 2500 successful student participants and 2500 mentors from 98 countries worldwide , all for the love of open source coding &#8211; Google </strong><strong>&#8220;</strong> </em>. I am happy to be accepted again for the 2009 version of GSoC . I will be working with OpenMRS an open source medical record platform for developing countries . I will be working on the Data Synchronization feature of OpenMRS and my primary mentor Maros is also a kind of super-cool ; I met him last year in Kigali .</p>
<p><a href="http://openmrs.org"><img class="alignnone" title="OpenMRS" src="http://openmrs.org/images/e/ea/Openmrs-logo-500x125.png" alt="" width="412" height="121" /></a><a title="Open Medial Record System for developing countries" href="http://openmrs.org" target="_blank">OpenMRS</a> has been deployed in different african countries especially as EMR system for fighting against AIDS, Malaria and Tuberculosis , <em><strong>&#8221; Our world continues to be ravaged by a pandemic of epic proportions, as over 40 million people are infected with or dying from HIV/AIDS — most (up to 95%) in developing countries. Prevention and treatment of HIV/AIDS on this scale requires efficient information management, which is critical as HIV/AIDS care must increasingly be entrusted to less skilled providers. Whether for lack of time, developers, or money, most HIV/AIDS programs in developing countries manage their information with simple spreadsheets or small, poorly designed databases&#8230;if anything at all. To help them, we need to find a way not only to improve management tools, but also to reduce unnecessary, duplicative efforts. As a response to these challenges, Open Medical Record System (OpenMRS<sup>®</sup>) formed in 2004 as a open source medical record system framework for developing countries — a tide which rises all ships. OpenMRS is a multi-institution, nonprofit collaborative led by Regenstrief Institute, Inc. (<a class="external free" title="http://regenstrief.org" href="http://regenstrief.org/">http://regenstrief.org</a>), a world-renowned leader in medical informatics research, and Partners In Health (<a class="external free" title="http://pih.org" href="http://pih.org/">http://pih.org</a>), a Boston-based philanthropic organization with a focus on improving the lives of underprivileged people worldwide through health care service and advocacy.     &#8211; OpenMRS &#8220;</strong></em></p>
<p>There are many special things in this Summer of Code : I have a neighbour summer of code student, Mugisha in Kampala (Makerere University student), who is working with the same OpernMRS project, so we should even have our meet-up in East Africa . This is the fifth anniversary of Google Summer of Code, I hope we will make it the best summer of code, yet the Summer of Love, love for coding . I love coding on my Ubuntu Laptop !</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nzeyi.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nzeyi.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nzeyi.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nzeyi.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nzeyi.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nzeyi.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nzeyi.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nzeyi.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nzeyi.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nzeyi.wordpress.com/131/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=131&subd=nzeyi&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nzeyi.wordpress.com/2009/04/23/pushing-it-forward-the-summer-of-love/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf2005614e69b7700ba7bed39c98b7a7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nzeyi</media:title>
		</media:content>

		<media:content url="http://nzeyi.files.wordpress.com/2009/03/2009socwithlogo.gif" medium="image">
			<media:title type="html">GSoC 2009</media:title>
		</media:content>

		<media:content url="http://openmrs.org/images/e/ea/Openmrs-logo-500x125.png" medium="image">
			<media:title type="html">OpenMRS</media:title>
		</media:content>
	</item>
		<item>
		<title>Mozilla Firefox Properties editing</title>
		<link>http://nzeyi.wordpress.com/2009/02/20/mozilla-firefox-properties-editing/</link>
		<comments>http://nzeyi.wordpress.com/2009/02/20/mozilla-firefox-properties-editing/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 12:43:01 +0000</pubDate>
		<dc:creator>nzeyi</dc:creator>
				<category><![CDATA[GSoC OpenMRS]]></category>
		<category><![CDATA[Pivot Access]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[www.pivotaccess.com]]></category>
		<category><![CDATA[africa ict]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[rwanda technology]]></category>

		<guid isPermaLink="false">http://nzeyi.wordpress.com/?p=121</guid>
		<description><![CDATA[I was seeking a way to change some Mozilla Firefox configurations , and it&#8217;s not easy to find all configurations and options under the Menu Tools-&#62;Options. I just wanted to enable print without the Print Dialog Box and print within a pop-up . Someone helped me to get this tips which I think are very [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=121&subd=nzeyi&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was seeking a way to change some Mozilla Firefox configurations , and it&#8217;s not easy to find all configurations and options under the Menu Tools-&gt;Options. I just wanted to enable print without the Print Dialog Box and print within a pop-up . Someone helped me to get this tips which I think are very important for someone who want to print within a web-application (i.e. reports, receipts, &#8230;) .</p>
<p>Configuring Mozilla Firefox</p>
<p>1- Type <em><strong>about:config</strong></em> in the address bar of the browser and hit ENTER</p>
<p>2-Confirm the warning message</p>
<p>3-To Disable the Print Dialog Box :</p>
<p>a- right-click on page &gt; select New &gt; Boolean</p>
<p>b- Preference name : <strong>print.always_print_silent</strong></p>
<p>Boolean value : <strong>true</strong></p>
<p>c- search for <strong>print.show_print_progress</strong></p>
<p>double-click to change its value, set it to <strong>false</strong></p>
<p>4- To Disable Pop-up blocker:</p>
<p>search for <strong>browser.popups.showpopupblocker </strong>, set value to <strong>false</strong></p>
<p><strong><br />
</strong></p>
<p>I think this can help to any one who seeks it like me .</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nzeyi.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nzeyi.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nzeyi.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nzeyi.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nzeyi.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nzeyi.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nzeyi.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nzeyi.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nzeyi.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nzeyi.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nzeyi.wordpress.com&blog=3606621&post=121&subd=nzeyi&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nzeyi.wordpress.com/2009/02/20/mozilla-firefox-properties-editing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf2005614e69b7700ba7bed39c98b7a7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nzeyi</media:title>
		</media:content>
	</item>
	</channel>
</rss>