91 - Health /tags/health en 91 Centre for Healthcare and Innovation Commissioned /news/uon-centre-healthcare-and-innovation-commissioned <div class="field field-name-field-news-date field-type-datetime field-label-hidden"><div class="field-items"><div class="field-item even"><span class="date-display-single" property="dc:date" datatype="xsd:dateTime" content="2022-07-29T00:00:00+03:00">Friday, July 29, 2022</span></div></div></div><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p>It was a momentous occasion for the 91 as the Vice Chancellor Prof. Stephen Kiama commissioned the state of the Art Centre for Healthcare and Innovation located in Westlands, Nairobi County.</p> <p>The centre houses projects that have had a great impact on the health sector in the country, namely Fahari ya Jamii, a USAID funded-project aims at increasing equitable access and use of quality county-led health services in Nairobi and Kajiado Counties. It also houses Central Province Response: Integration, Strengthening and Sustainability Project Plus (CRISSP+) project. CRISSP+ aims at building the capacity of the public health response in Kirinyaga and Kiambu counties to achieve and maintain universal access to high quality HIV prevention, care and treatment services, with particular focus on county government and community ownership, integration within broader health and developmental context, through an evidence based, cost-effective and sustainable model of care.</p> <p>Speaking during the ceremony, Prof. Kiama lauded the University's efforts for being a one-stop hub for research and innovation in Kenya and Africa.</p> <p>“The 91 is one of the universities selected by donors to accelerate research on health and innovation” Said Prof. Kiama</p> <p>Prof. Kiama also congratulated the team led by Dr. Jared Mecha and Prof. C.F. Otieno for launching the 'Centre for Healthcare and Innovation' saying it will foster the much-needed health innovations.</p> <p>''I am pleased to note that the 91, in collaboration with various donors, has continued to show that it is possible to improve the current health systems and treat our patients with dignity.</p> <p>I wish to sincerely thank our donors for the financial support towards research and strengthening health systems across the facilities we support,'' Prof. Kiama said.</p> <p>CRISSP+ Project Principal Investigator, Dr.  Mecha said the launch of the center was a great milestone not only for 91 but for the entire healthcare center in the country.</p> <p><strong>Written by</strong>: Faith Musau &amp; Dennis Omido</p> <p> </p> <!-- Add this script tag without any modification to the target webpage --><script type="application/javascript"> <!--//--><![CDATA[// ><!-- var ciscoBubbleChat = (function () { var smHost = 'socialminer.uonbi.ac.ke'; var widgetId = '1'; var msgMustAcceptCert = 'Certificate must be accepted to start the conversation.'; var msgAcceptCertButtonLabel = 'Accept Certificate'; var msgCloseButtonLabel = 'Close'; var msgWaitingCertAcceptance = 'Waiting for certificate acceptance.'; var msgConnectivityIssues = 'We are experiencing connectivity issues. Try later.'; var appId = 'cisco_bubble_chat'; var appMargin = 15; var appUrl = 'https://' + smHost + '/ccp/ui/BubbleChat.html?host=' + smHost + '&wid=' + widgetId; var connectivityCheckUrl = 'https://' + smHost + '/ccp/ui/ConnectivityCheck.html'; var messageEventListener; var addNoCacheQueryParam; return { showChatWindow: function (injectedData) { var logPrefix = 'CISCO_BUBBLE_CHAT: '; if (document.getElementById(appId)) { console.log(logPrefix + 'Not loading BubbleChat as it is already loaded'); return; } var validateInjectedData = function(formData) { // browser compatible way to check whether it is an object with 10 fields and all the values are strings var result = true; if (formData && typeof formData === 'object' && formData.constructor === Object){ var counter = 0; for (var key in formData) { if (!(typeof formData[key] === 'string' || formData[key] instanceof String)) { result = false; break; } counter++; if (counter > 10) { result = false; break; } } } else { result = false; } return result; }; if (injectedData) { if (validateInjectedData(injectedData.formData)) { appUrl += '&injectedFormData=' + encodeURIComponent(JSON.stringify(injectedData.formData)); } else { if (typeof injectedData.validationErrorCallback === 'function') { injectedData.validationErrorCallback(); } else { console.log(logPrefix + 'Could not invoke validationErrorCallback as it is not a function'); } } } var iframe = document.createElement('iframe'); iframe.setAttribute('sandbox', 'allow-scripts allow-same-origin allow-forms allow-popups'); iframe.setAttribute('id', appId); iframe.setAttribute('style', 'position: fixed; width: 312px; height: 410px; border: none; bottom: 0px; right: 0; z-index:999;'); document.body.appendChild(iframe); var frameWindow = iframe.contentWindow ? iframe.contentWindow : iframe; var frameDoc = frameWindow.document; // Trigger a page load for iframe inline content loading to work in Firefox frameDoc.open(); frameDoc.close(); frameDoc.body.innerHTML = '<div id="secure-connectivity-check-container" style="position: fixed; width: 300px; height: 395px; ' + 'bottom: 10px; right: 10px; font-family: Helvetica; font-size: 14px; color: #4F5051;' + 'box-shadow: 0 0 3px #000; background: #fff; display: flex; flex-direction: column; display: none;">' + '<div style="height: 25%;"></div>' + '<div style="height: 25%; display: flex; align-items: flex-start; justify-content: center; text-align: center;">' + '<div style="padding: 0 15% 0 15%;">' + '<div id="secure-connectivity-check-msg"></div>' + '<a id="accept-cert-button" style="display:none; padding-top: 10px" href="#" onclick="acceptCertificate(); return void(0);">' + msgAcceptCertButtonLabel + '</a>' + '</div>' + '</div>' + '<div style="height: 25%; display: flex; align-items: flex-end; justify-content: center; text-align: center;">' + '<div style="padding: 0 15% 0 15%;">' + '<a href="#" onclick="window.parent.postMessage({messageType: \'unmount\'}, \'*\'); return void(0);">' + msgCloseButtonLabel + '</a>' + '</div>' + '</div>' + '<div style="height: 25%;"></div>' + '</div>'; frameWindow.acceptCertificate = function () { frameDoc.getElementById('secure-connectivity-check-msg').innerHTML = msgWaitingCertAcceptance; frameDoc.getElementById('accept-cert-button').style.display = 'none'; window.open(addNoCacheQueryParam(connectivityCheckUrl), 'SM_CERT_PAGE'); }; if (!addNoCacheQueryParam){ addNoCacheQueryParam = function (url) { return url + (url.indexOf("?") === -1 ? '?' : '&') + 'nocache=' + new Date().getTime(); } } if (!messageEventListener) { messageEventListener = function (event) { console.log(logPrefix + 'Received event from origin: ' + event.origin); console.log(logPrefix + 'Received event data: ' + JSON.stringify(event.data)); switch (event.data.messageType) { case 'resize': document.getElementById(appId).style.height = event.data.height + appMargin + 'px'; console.log(logPrefix + 'Successfully resized'); break; case 'unmount': document.body.removeChild(document.getElementById(appId)); window.removeEventListener('message', messageEventListener); console.log(logPrefix + 'Successfully unmounted BubbleChat and removed event listener for message'); break; case 'bubblechat-cert-accepted': document.getElementById(appId).setAttribute('src', addNoCacheQueryParam(appUrl)); console.log(logPrefix + 'Successfully validated certificate acceptance and loaded BubbleChat'); break; default: console.log(logPrefix + 'Unknown message type'); } }; } window.addEventListener('message', messageEventListener); console.log(logPrefix + 'Event listener for message added'); // Check HTTPS connectivity and show appropriate screen var showConnectivityIssue = function (message, showAcceptCertLink) { window.postMessage({ messageType: 'resize', height: 395 }, '*'); frameDoc.getElementById('secure-connectivity-check-container').style.display = 'block'; frameDoc.getElementById('secure-connectivity-check-msg').innerHTML = message; frameDoc.getElementById('accept-cert-button').style.display = showAcceptCertLink ? 'block' : 'none'; }; var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function () { if (this.readyState === 4) { console.log(logPrefix + 'Connectivity check status: ' + this.status); switch (this.status) { case 200: iframe.setAttribute('src', addNoCacheQueryParam(appUrl)); break; case 0: showConnectivityIssue(msgMustAcceptCert, true); break; default: showConnectivityIssue(msgConnectivityIssues, false); } } }; console.log(logPrefix + 'Checking connectivity to: ' + connectivityCheckUrl); xhr.open('GET', addNoCacheQueryParam(connectivityCheckUrl), true); xhr.send(); } }; })(); //--><!]]> </script><!-- Use the function 'ciscoBubbleChat.showChatWindow() as the event handler for initiating chat. eg: <button onclick="ciscoBubbleChat.showChatWindow()"><p>Start Chat</button></p> <p> Optionally, invisible form data can be submitted, which will be submitted along with the fields customer fills in.<br /> Upto 10 fields can be passed. If more than 10 fields are passed, the invisible form data will not be used and<br /> the provided error callback will be invoked. For injecting form data, an object should be passed to<br /> ciscoBubbleChat.showChatWindow() as an argument. The object should be of the form:<br /> {<br /> formData: {<br /> InjectedField1: 'InjectedValue1',<br /> InjectedField2: 'InjectedValue2'<br /> ...<br /> },<br /> validationErrorCallback: function(){console.log('business specific logic goes here');}<br /> }<br /> The form data can have any string as field name and value. The submitted invisible form data values will be<br /> shown in the agent desktop, as well as will be updated in ContextService if the specified fieldset(s) in the widget<br /> contains these field names just like the regular visible chat form fields data.<br /> eg:<br /> <button onclick="ciscoBubbleChat.showChatWindow({<br /> formData: {<br /> AnyFieldName1: 'AnyFieldValue1',<br /> AnyFieldName2: 'AnyFieldValue2',<br /> AnyFieldName3: 'AnyFieldValue3',<br /> AnyFieldName4: 'AnyFieldValue4',<br /> AnyFieldName5: 'AnyFieldValue5',<br /> AnyFieldName6: 'AnyFieldValue6',<br /> AnyFieldName7: 'AnyFieldValue7',<br /> AnyFieldName8: 'AnyFieldValue8',<br /> AnyFieldName9: 'AnyFieldValue9',<br /> AnyFieldName10: 'AnyFieldValue10'<br /> },<br /> validationErrorCallback: function(){console.log('error in validating injected data');}<br /> })">Click to chat</button><br /> --> <p><iframe __idm_frm__="32212254743" aria-hidden="true" id="intercom-frame" style="position: absolute !important; opacity: 0 !important; width: 1px !important; height: 1px !important; top: 0 !important; left: 0 !important; border: none !important; display: block !important; z-index: -1 !important; pointer-events: none;" tabindex="-1" title="Intercom"></iframe></p> <div aria-live="polite" class="intercom-lightweight-app"> <style id="intercom-lightweight-app-style" type="text/css"> <!--/*--><![CDATA[/* ><!--*/ @keyframes intercom-lightweight-app-launcher { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } } @keyframes intercom-lightweight-app-gradient { from { opacity: 0; } to { opacity: 1; } } @keyframes intercom-lightweight-app-messenger { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .intercom-lightweight-app { position: fixed; z-index: 2147483001; width: 0; height: 0; font-family: intercom-font, "Helvetica Neue", "Apple Color Emoji", Helvetica, Arial, sans-serif; } .intercom-lightweight-app-gradient { position: fixed; z-index: 2147483002; width: 500px; height: 500px; bottom: 0; right: 0; pointer-events: none; background: radial-gradient( ellipse at bottom right, rgba(29, 39, 54, 0.16) 0%, rgba(29, 39, 54, 0) 72%); animation: intercom-lightweight-app-gradient 200ms ease-out; } .intercom-lightweight-app-launcher { position: fixed; z-index: 2147483003; bottom: 20px; right: 20px; width: 60px; height: 60px; border-radius: 50%; background: #ff492c; cursor: pointer; box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.06), 0 2px 32px 0 rgba(0, 0, 0, 0.16); animation: intercom-lightweight-app-launcher 250ms ease; } .intercom-lightweight-app-launcher:focus { outline: none; } .intercom-lightweight-app-launcher-icon { display: flex; align-items: center; justify-content: center; position: absolute; top: 0; left: 0; width: 60px; height: 60px; transition: transform 100ms linear, opacity 80ms linear; } .intercom-lightweight-app-launcher-icon-open { opacity: 1; transform: rotate(0deg) scale(1); } .intercom-lightweight-app-launcher-icon-open svg { width: 28px; height: 32px; } .intercom-lightweight-app-launcher-icon-open svg path { fill: rgb(255, 255, 255); } .intercom-lightweight-app-launcher-icon-self-serve { opacity: 1; transform: rotate(0deg) scale(1); } .intercom-lightweight-app-launcher-icon-self-serve svg { height: 56px; } .intercom-lightweight-app-launcher-icon-self-serve svg path { fill: rgb(255, 255, 255); } .intercom-lightweight-app-launcher-custom-icon-open { max-height: 36px; max-width: 36px; opacity: 1; transform: rotate(0deg) scale(1); } .intercom-lightweight-app-launcher-icon-minimize { opacity: 0; transform: rotate(-60deg) scale(0); } .intercom-lightweight-app-launcher-icon-minimize svg { width: 16px; } .intercom-lightweight-app-launcher-icon-minimize svg path { fill: rgb(255, 255, 255); } .intercom-lightweight-app-messenger { position: fixed; z-index: 2147483003; overflow: hidden; background-color: blue; animation: intercom-lightweight-app-messenger 250ms ease-out; width: 376px; height: calc(100% - 120px); max-height: 704px; min-height: 250px; right: 20px; bottom: 100px; box-shadow: 0 5px 40px rgba(0,0,0,0.16); border-radius: 8px; } .intercom-lightweight-app-messenger-header { height: 75px; background: linear-gradient( 135deg, rgb(6, 40, 70) 0%, rgb(0, 0, 255) 100% ); } @media print { .intercom-lightweight-app { display: none; } } /*--><!]]>*/ </style><div aria-label="Open Intercom Messenger" class="intercom-lightweight-app-launcher intercom-launcher" onclick="ciscoBubbleChat.showChatWindow()" role="button" tabindex="0"> <div class="intercom-lightweight-app-launcher-icon intercom-lightweight-app-launcher-icon-open"><img alt="" class="intercom-lightweight-app-launcher-custom-icon-open" src="https://downloads.intercomcdn.com/i/o/277784/b1b6cd283d740ba82cb79585/fa02606ccf6c10a55df71c06a0488077.png" /></div> <div class="intercom-lightweight-app-launcher-icon intercom-lightweight-app-launcher-icon-minimize"><svg viewbox="0 0 16 14" xmlns="http://www.w3.org/2000/svg"><br /> <path clip-rule="evenodd" d="M.116 4.884l1.768-1.768L8 9.232l6.116-6.116 1.768 1.768L8 12.768.116 4.884z" fill-rule="evenodd"></path></svg> <div class="js-bottom-sticky"> </div> </div> </div> </div> <p><iframe __idm_frm__="32212254744" owner="archetype" style="display: none; visibility: hidden;" title="archetype"></iframe></p> </div></div></div><a href="/tags/health" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Health</a><ul class="links inline"><li class="addtoany first last"><span><span class="a2a_kit a2a_kit_size_32 a2a_target addtoany_list" id="da2a_1"> <a class="a2a_dd addtoany_share_save" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.uonbi.ac.ke%2Fnews%2Fuon-centre-healthcare-and-innovation-commissioned&amp;title=91%20Centre%20for%20Healthcare%20and%20Innovation%20Commissioned%20"><img src="/sites/all/modules/addtoany/images/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </span> <script type="text/javascript"> <!--//--><![CDATA[//><!-- if(window.da2a)da2a.script_load(); //--><!]]> </script></span></li> </ul> Mon, 01 Aug 2022 06:27:26 +0000 d.omido 3533 at /news/uon-centre-healthcare-and-innovation-commissioned#comments 9 Students Scale Mount Kenya for Health and well-being /news/9-students-scale-mount-kenya-health-and-well-being <div class="field field-name-field-news-date field-type-datetime field-label-hidden"><div class="field-items"><div class="field-item even"><span class="date-display-single" property="dc:date" datatype="xsd:dateTime" content="2022-07-13T00:00:00+03:00">Wednesday, July 13, 2022</span></div></div></div><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p>7 91 and 2 Mount Kenya University students are set to hike Mt. Kenya on 14-17 July 2022 to raise awareness of the <a href="https://www.facebook.com/hashtag/o3plus?__eep__=6&amp;__cft__%5b0%5d=AZX6EvZH6m2nWwgI_tn1mx2ogZ4M_9GmaXWlffg5w_h8PFD8sCEMFylZ544sg4_OWikvVUCFwBNdvzrzsuFJDMlikgg3VBTEVDuEGugDLnBw6Yzbom1K7yHbVE0EVRCBmbsSn6k6fiaVxqvyZjIz91BWFWlnQ7wURREGXvFEg3jFwKUJNNrJDhi6zwXFj-PbXmY&amp;__tn__=*NK-R">#O3plus</a> project. The project aims at sensitizing the youth on their <a href="https://www.facebook.com/hashtag/health?__eep__=6&amp;__cft__%5b0%5d=AZX6EvZH6m2nWwgI_tn1mx2ogZ4M_9GmaXWlffg5w_h8PFD8sCEMFylZ544sg4_OWikvVUCFwBNdvzrzsuFJDMlikgg3VBTEVDuEGugDLnBw6Yzbom1K7yHbVE0EVRCBmbsSn6k6fiaVxqvyZjIz91BWFWlnQ7wURREGXvFEg3jFwKUJNNrJDhi6zwXFj-PbXmY&amp;__tn__=*NK-R">#health</a> and <a href="https://www.facebook.com/hashtag/wellbeing?__eep__=6&amp;__cft__%5b0%5d=AZX6EvZH6m2nWwgI_tn1mx2ogZ4M_9GmaXWlffg5w_h8PFD8sCEMFylZ544sg4_OWikvVUCFwBNdvzrzsuFJDMlikgg3VBTEVDuEGugDLnBw6Yzbom1K7yHbVE0EVRCBmbsSn6k6fiaVxqvyZjIz91BWFWlnQ7wURREGXvFEg3jFwKUJNNrJDhi6zwXFj-PbXmY&amp;__tn__=*NK-R">#wellbeing</a>. The <a href="https://www.facebook.com/hashtag/o3plus?__eep__=6&amp;__cft__%5b0%5d=AZX6EvZH6m2nWwgI_tn1mx2ogZ4M_9GmaXWlffg5w_h8PFD8sCEMFylZ544sg4_OWikvVUCFwBNdvzrzsuFJDMlikgg3VBTEVDuEGugDLnBw6Yzbom1K7yHbVE0EVRCBmbsSn6k6fiaVxqvyZjIz91BWFWlnQ7wURREGXvFEg3jFwKUJNNrJDhi6zwXFj-PbXmY&amp;__tn__=*NK-R">#O3plus</a>, Our Rights, Our Lives, Our Future are the three pillars that the project is pegged on. With support from the Swedish Government, UNESCO and the two institutions have employed different activities to sensitize the young people in institutions of Higher Learning on the <a href="https://www.facebook.com/hashtag/o3plus?__eep__=6&amp;__cft__%5b0%5d=AZX6EvZH6m2nWwgI_tn1mx2ogZ4M_9GmaXWlffg5w_h8PFD8sCEMFylZ544sg4_OWikvVUCFwBNdvzrzsuFJDMlikgg3VBTEVDuEGugDLnBw6Yzbom1K7yHbVE0EVRCBmbsSn6k6fiaVxqvyZjIz91BWFWlnQ7wURREGXvFEg3jFwKUJNNrJDhi6zwXFj-PbXmY&amp;__tn__=*NK-R">#O3plus</a> project.</p> <p>While giving his opening remarks, the 91 leader of the #O3plus project , Prof. Walter Jaoko noted that, the students have been through 6 preparatory hikes and they have been given rigorous training by Outdoorer KE, ‘We have popularize the #O3plus here but we now need to shout it out from the Mountain top. Mt. Kenya is symbolic because it’s the highest mountain in Kenya and the flag of Kenya, the constitution  have been deposited at the Lenana peak and that’s how much we value our young people’s rights, lives and their future.’</p> <p>Speaking during the flag-off ceremony, the Vice-Chancellor, Prof. Stephen Kiama recounted his experience of hiking Mt. Kenya. How cold and tough the days and nights were and how the terrain was. He shared his thoughts of giving up along the way. He shared his experience while congratulating the students who have set aside their time to go through the training and to mount the #O3plus flag at the highest peak of the Mt. Kenya.</p> <p>On his part, the Mount Kenya University Vice-Chancellor, Prof. Deogratius Jaganyi, took the time to encourage the students and citing that after the hike experience they will be different individuals who will be tackling life’s challenges differently. He profiled the efforts the University has made towards sensitization and creating awareness of the #O3plus project among the students and the youth in Thika through the University.</p> <p>Dr. Medhin Tsehaiu, UNAIDS Country Director, noted that the <a href="https://twitter.com/hashtag/O3Plus?src=hashtag_click">#O3Plus</a> Objectives are promoting the Global AIDS Strategy and contributing to the UNAIDS Triple 95 and Triple 10 initiatives.</p> <p>UNESCO Regional Director, Prof. Hubert Gijzen, through his speech congratulated the 9 students who are going to hike Mount Kenya and enjoy the alpine trail. He also highlighted the achievements of #O3plus since its inception in 2021. He mentioned that it’s about time we focus on the young people’s health and wellbeing, increase their activity even as we take care of the environment.</p> <p>Ministry of Sports representative Mr. Festus Njera, pledged the ministry’s support to this students and congratulated them on this feat.</p> <p><a href="https://www.youtube.com/watch?v=I3se-2lDqTk">Watch the flag-off ceremony</a></p> <p><a href="https://www.facebook.com/hashtag/heights4health?__eep__=6&amp;__cft__%5b0%5d=AZX6EvZH6m2nWwgI_tn1mx2ogZ4M_9GmaXWlffg5w_h8PFD8sCEMFylZ544sg4_OWikvVUCFwBNdvzrzsuFJDMlikgg3VBTEVDuEGugDLnBw6Yzbom1K7yHbVE0EVRCBmbsSn6k6fiaVxqvyZjIz91BWFWlnQ7wURREGXvFEg3jFwKUJNNrJDhi6zwXFj-PbXmY&amp;__tn__=*NK-R">#heights4health</a></p> <p> </p> </div></div></div><a href="/tags/o3plus" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">O3plus</a>, <a href="/tags/uon" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">91</a>, <a href="/tags/university-nairobi" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">91</a>, <a href="/tags/health" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Health</a>, <a href="/tags/wellbeing" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">wellbeing</a><ul class="links inline"><li class="addtoany first last"><span><span class="a2a_kit a2a_kit_size_32 a2a_target addtoany_list" id="da2a_2"> <a class="a2a_dd addtoany_share_save" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.uonbi.ac.ke%2Fnews%2F9-students-scale-mount-kenya-health-and-well-being&amp;title=9%20Students%20Scale%20Mount%20Kenya%20for%20Health%20and%20well-being"><img src="/sites/all/modules/addtoany/images/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </span> </span></li> </ul> Wed, 13 Jul 2022 14:12:26 +0000 enekesa 3522 at /news/9-students-scale-mount-kenya-health-and-well-being#comments 91 and Damu-Sasa to research on Improvement of Blood Management Services /news/uon-and-damu-sasa-research-improvement-blood-management-services <div class="field field-name-field-news-date field-type-datetime field-label-hidden"><div class="field-items"><div class="field-item even"><span class="date-display-single" property="dc:date" datatype="xsd:dateTime" content="2022-06-06T00:00:00+03:00">Monday, June 6, 2022</span></div></div></div><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p>The 91 was confirmed as the Public Research Organization for the Research and Development (R&amp;D) Impact Project - a project conducted by the Damu-Sasa blood services management system - a cloud-based system that supports blood sourcing, inventory management, transfusion management, haemovigilance, referrals and deferrals. </p> <p>The R&amp;D Impact Project conducted by Damu-Sasa in partnership with the 91 is expected to help in understanding the behavioural factors that influence blood donor decisions and also promote the uptake of this technology in local hospitals, in the management of blood transfusion. This project is funded by the International Devepment Research Center (IDRC), Canada through Vilgro- Africa, an incubator and impact investor supporting emerging healthcare businesses in Africa.</p> <p>The Damu Sasa Project will be the beneficiary of a study to be conducted by the team from The 91 led by Prof. Vincent Machuki from the Faculty of Business and Management Sciences (FBMS). The other Researchers include Prof. Evans Aosa and Dr. Kennedy Ogollah (FBMS), Dr. Khamati Shilabukha and Dr. Kibet Shikuku of Faculty of Arts and Social Sciences (FASS) respectively. </p> <p>The Executive Chairman Dr Matunda Nyanchama and the cofounders of Damu-Sasa System Limited, Mr Aaron Ogunde and Mr Kilemi Thambura deliberated about the project with the Deputy Vice-Chancellor of the 91 (91) Professor Julius Ogengo during a courtesy call visit. </p> <p>“The 91 will undertake the research whose output will help Damu-Sasa advance its technological leadership in this field, which will be of great benefit to the general public and the Ministry of Health to resolve the issues of blood shortages in the country”, remarked Dr Matunda.</p> <p>The project will inculcate Industry-Academia linkages between the 91 and Damu-Sasa and is expected to have an impact on all stakeholders, viz: the 91 who will continue to raise the bar on research excellence through multi-disciplinary collaboration, Damu Sasa will use the findings to be able to enhance the technology and the Ministry of Health will benefit in terms of informing policy on addressing key issues in the blood services in the blood value chain in Kenya and the general public who will benefit in regards to the availability of blood reserves.</p> <p>“From the health perspective, blood may be looked at as an important issue, but from a social perspective, it has a lot of cultural undertones that we may not be aware of until we dig into perspectives and superstitions” noted Dr Khamati. “This is why this project is very important to carry out and understand from a cultural perspective.” he asserted. </p> <p>“This project is in line with the University's objectives and the University is committed to responding to those initiatives that have an impact on society” noted Prof Ogengo. He emphasized that the project should be able to inculcate student mentorships because it will help students have industry experience. He gave the go-ahead for the commencement of this project.</p> <p>The technology developed by Damu-Sasa seeks to disrupt the blood services in the blood value chain. The blood reserves target set by World Health Organization - in regards to the size of Kenya is 1 million units, but Kenya doesn't get to that target. In 2020, the country collected 94,000 units, but due to the efforts made by Damu Sasa and other stakeholders, in 2021, the country collected 250,000 units - the largest amount ever collected in Kenya. </p> <p>Damu Sasa came out of the first cohort of a programme run by the ministry of ICT called the Presidential Digital Talent Programme, President Uhuru Kenyatta launched the programme at Taifa Hall in 2015. <br />  </p> <p dir="ltr"><b id="docs-internal-guid-8d0c80d7-7fff-d060-5b62-5243578671ef"> </b></p> <p dir="ltr"><b id="docs-internal-guid-8d0c80d7-7fff-d060-5b62-5243578671ef"> </b></p> </div></div></div><a href="/tags/uon" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">91</a>, <a href="/tags/damu-sasa" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Damu-Sasa</a>, <a href="/tags/partnership" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Partnership</a>, <a href="/tags/health" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Health</a>, <a href="/tags/technology" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">technology</a><ul class="links inline"><li class="addtoany first last"><span><span class="a2a_kit a2a_kit_size_32 a2a_target addtoany_list" id="da2a_3"> <a class="a2a_dd addtoany_share_save" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.uonbi.ac.ke%2Fnews%2Fuon-and-damu-sasa-research-improvement-blood-management-services&amp;title=%2091%20and%20Damu-Sasa%20to%20research%20on%20Improvement%20of%20%20Blood%20Management%20Services%20"><img src="/sites/all/modules/addtoany/images/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </span> </span></li> </ul> Mon, 06 Jun 2022 12:15:45 +0000 enekesa 3479 at /news/uon-and-damu-sasa-research-improvement-blood-management-services#comments