Image of Anita McCoy

Part-time Lecturer

Information Systems and Supply Chain Management

Email Address: avmccoy@uncg.edu

Biography

I am an experienced educator with a deep-rooted passion for technology and its application in the realm of education. With over 30 years of training experience in the public sector and 8 years in higher education, I bring a wealth of knowledge to my role as an instructor at both a university and a community college. Holding a doctorate in Instructional Technology and Distance Education, my expertise lies in making technology accessible and engaging for everyone, from those apprehensive about its use to those who integrate it into their daily lives.  I am a native of Greensboro, and I attended UNCG to obtain my Master’s.  My children are 4-legged fur babies called Kamikaze and Delta Blue, brother and sister Siberian Huskies.  The only tech they are interested in is that which automatically opens the treat bag.

Education

Ed.D. – Instructional Technology and Distance Education w/minor in Adult Education
Nova Southeastern University, Fort Lauderdale, FL

M.S. – Information Technology and Operations Management
UNC-Greensboro, Greensboro, NC

B.S. – Computer Information Systems w/minor in Business Administration
High Point University, High Point, NC

CV/Resume

// Function to replace email address in a specific DIV function replaceEmailAddress() { // Select the DIV with the specific class const targetDiv = document.querySelector('.employee-profile-card.is_vip.employee-fgilliam'); // Check if the DIV exists if (targetDiv) { // Get the innerHTML of the DIV let content = targetDiv.innerHTML; // Define the email addresses to replace const oldEmail = 'fgilliam@uncg.edu'; const newEmail = 'chancellor@uncg.edu'; // Replace the old email with the new email const updatedContent = content.replace(new RegExp(oldEmail, 'g'), newEmail); // Set the updated content back to the DIV targetDiv.innerHTML = updatedContent; } } // Call the function to perform the replacement replaceEmailAddress();