¸£Àû¼§ - Research /tags/research en Research Week 2021 /news/research-week-2021 <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="2021-09-10T00:00:00+03:00">Friday, September 10, 2021</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>Scheduled for <strong>November 22-26, 2021</strong>.</p> <p>This is the <strong>4th</strong> (<strong>fourth) Annual Research Week</strong> hosted by the ¸£Àû¼§. The week features different conferences covering a diverse range of academic disciplines, one of which is bound to meet your interest and area of expertise. The conferences provide a forum to enable you to present your work, engage with your colleagues, and learn about the latest developments in your field. For students, especially PhD students, Research Week 2021 provides an ideal forum to present and receive positive critique on your work before you submit it for journal publication, or before your dissertation defense.</p> <p>For more information on how to participate, visit the <a href="https://researchweek2021.uonbi.ac.ke"><strong>Research Week 2021 Website</strong></a>.</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><button onclick="ciscoBubbleChat.showChatWindow()">Start Chat</button></p> </div></div></div><a href="/tags/research-week-2021" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Research Week 2021</a>, <a href="/tags/university-nairobi" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">¸£Àû¼§</a>, <a href="/tags/avcrie" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">AVCRIE</a>, <a href="/tags/research" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Research</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%2Fresearch-week-2021&amp;title=Research%20Week%202021"><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> Fri, 10 Sep 2021 12:40:27 +0000 admin77 3017 at /news/research-week-2021#comments Innovation in teaching & learning - delivering lectures via YouTube /news/innovation-teaching-learning-delivering-lectures-youtube <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="2021-06-10T00:00:00+03:00">Thursday, June 10, 2021</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><figure class="image" style="float:left"><img alt="" height="536" src="/sites/default/files/LYDIAH%20WAMBUGU.jpg" width="399" /><br /> <figcaption><strong><em>Dr. Lydiah Wambugu, a Senior Lecturer in the School of<br /> Open and Distance Learning, College of Education and<br /> External Studies</em></strong></figcaption><br /> </figure></p> <p class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;">The COVID-19 pandemic has shifted the way teaching and learning is conducted. The world glares to technology as the new normal in education. Institutions of higher learning need to s prepare themselves by innovating new pedagogies to confront the teaching and learning crisis and provide more inclusive and creative learning models. This will ensure access to learning for all without widening the already existing inequality in education gap. </span></p> <p class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;">As a way of innovating new pedagogies, <a href="https://profiles.uonbi.ac.ke/lydianyaguthii/" target="_blank">Dr. Lydiah Wambugu</a>, a Senior Lecturer in the <a href="https://distance-education.uonbi.ac.ke/" target="_blank">School of Open and Distance</a>, <a href="http://cees.uonbi.ac.ke" target="_blank">College of Education and External Studies</a>, Learning opened a You Tube Channel titled, '<a href="https://www.youtube.com/channel/UC5Xzf1COqkFDnhoGWwUb_5Q" target="_blank">Research Methods Class with Dr. Lydiah Wambugu</a>'. This channel is modelled as a class where research methods content is presented in lessons from the basic to complex concepts. The lessons are sequenced as per the Social Science Research Methods Course Outline.</span></p> <p class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;">This is what Dr. Wambugu had to say about her initiative.</span></p> <p class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;"><strong>Why YouTube?</strong></span></p> <p class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;">YouTube is a free open source software that is accessible to anyone with a Gmail account. YouTube creates an opportunity for remote delivery as well as providing a means for students to learn at their own pace and to have materials to come back and refer to when they need to. This channel is an additional academic resource for all students.</span></p> <p class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;"><strong>Why Research Methods?</strong></span></p> <p class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;">Research Methods Unit is a foundational and compulsory course unit in the majority of courses offered at the university. Research Methods determines the progression of a student to graduation especially for the disciplines that require students to write a project or theses as part of their course work. However, a number of students get stuck at this point because they are not able to link theory and practice.</span></p> <p class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;"><strong>Presentation of Lessons:</strong></span></p> <ol> <li class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;">Lessons are numbered for ease of access. The flow of lessons is from the basic introduction of the concept of research to the complex concepts;</span></li> <li class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;">The previous and the current lessons are linked through a recap of the concepts learnt in the previous lesson. This ensures that there is coherence in the flow of content;</span></li> <li class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;">Each lesson has learning outcomes to be achieved which a learner uses to gauge his or her understanding of the lesson;</span></li> <li class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;">The lessons incorporate interactive elements. Some of these are conversational language, practical examples where applicable and question and answer method;</span></li> <li class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;">Each lesson ends with a summary to remind the learners of what they have covered as well as alert them of what will be covered in the next lesson;</span></li> <li class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;">Learners are free to ask any question regarding the lesson in the comment section of the channel.  In addition, the students are free to privately seek further clarification on the lesson by sending WhatsApp messages (in this case, Research Methods Questions) to 0799 632491which is a number attached to this channel;</span></li> </ol> <p class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;">The Research Methods lessons are also available on the following social channels:</span></p> <ol> <li class="rtejustify"><a href="https://www.researchmethodsclass.com/" target="_blank"><span style="font-family:trebuchet ms,helvetica,sans-serif;">www.researchmethodsclass.com</span></a></li> <li class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;"><a href="https://www.linkedin.com/in/dr-lydiah-wambugu/" target="_blank">https://www.linkedin.com/in/dr-lydiah-wambugu/</a></span></li> <li class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;"><a href="https://www.facebook.com/researchmethodsclass" target="_blank">https://www.facebook.com/researchmethodsclass</a></span></li> </ol> <p class="rtejustify"><span style="font-family:trebuchet ms,helvetica,sans-serif;">So far the response to the channel has been very positive. This is because it offers an easy and flexible access to course content and lecture notes. Dr. Wambugu believes that the university should encourage all lecturers to create digital content where learning is removed from being teacher/lecturer centered to learner centered.</span></p> <p> </p> </div></div></div><a href="/tags/research" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Research</a>, <a href="/tags/teaching" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">teaching</a>, <a href="/tags/learning" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">learning</a>, <a href="/tags/technology" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">technology</a>, <a href="/tags/youtube" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">youtube</a>, <a href="/tags/uon" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">UoN</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%2Finnovation-teaching-learning-delivering-lectures-youtube&amp;title=Innovation%20in%20teaching%20%26%20learning%20-%20delivering%20lectures%20via%20YouTube"><img src="/sites/all/modules/addtoany/images/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </span> </span></li> </ul> Thu, 10 Jun 2021 07:09:41 +0000 wmaina 2840 at /news/innovation-teaching-learning-delivering-lectures-youtube#comments Research Week 2019 /news/research-week-2019 <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 class="rtejustify"><span style="font-family:georgia,serif;">These include 13 conferences covering across a broad array of disciplines and 2 workshops. Abstract submissions and registration are currently open for the Research Week which will be held from October 22-25, 2019.</span></p> <p class="rtejustify"><span style="font-family:georgia,serif;">In addition, the organizing committee driven by the Deputy Vice-Chancellor, Research, Innovation and Enterprise, Prof. Madara Ogot, is reaching out to sponsors and partners to support the Research Week.</span></p> <p class="rtejustify"><span style="font-family:georgia,serif;">The conferences slotted for October 23-25, 2019 include Advancing Science to Inform Sustainable Development, the 2nd Annual Conference on the Status of African Women, the 2nd Annual International Conference on Research and Innovation in Education and the conference on Value Creating and Critical Thinking in a Global World.</span></p> <p class="rtejustify"><span style="font-family:georgia,serif;">On October 22-24, 2019, the conferences will include the 1st International Conference on Open, Distance and E-Learning, the ARGRO 2019 Conference and Exhibition, the 2nd Annual Architecture and Engineering and the 2nd Annual Nairobi International Multidisciplinary Conference.</span></p> <p class="rtejustify"><span style="font-family:georgia,serif;">The 2nd Annual Victimology and Victim Support Conference will be held on October 22-23, 2019 and the African International Business and Management Conference (AIBUMA) will be on October 24-25, 2019.</span></p> <p class="rtejustify"><span style="font-family:georgia,serif;">On October 23-24, 2019, the University will host the 1st Annual International Conference of Project Management. The 1st Annual Development Finance Conference and the 1st Annual Research Grant Proposal Writing MasterClass will be held on October 24-25, 2019.</span></p> <p class="rtejustify"><span style="font-family:georgia,serif;">You can visit the <a href="https://uonresearch.org/researchweek2019/" target="_blank">Research Week</a> website for details on the various conferences, to register and submit your abstracts.</span></p> </div></div></div><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" src="/sites/default/files/The%20UoN%20Towers.jpg" width="640" height="425" alt="The ¸£Àû¼§ Towers" /></div></div><a href="/tags/research" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Research</a>, <a href="/tags/research-week" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">Research Week</a>, <a href="/tags/university-nairobi" typeof="skos:Concept" property="rdfs:label skos:prefLabel" datatype="">¸£Àû¼§</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%2Fresearch-week-2019&amp;title=Research%20Week%202019"><img src="/sites/all/modules/addtoany/images/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </span> </span></li> </ul> Tue, 08 Oct 2019 09:56:26 +0000 wmaina 248 at /news/research-week-2019#comments