You will write a memo using proper memo writing format (see instructions in the How To section of this class)
Each week engage in a digital experience of your choice (do something online, ideally that you have not done before, but you may also want to choose some activities that are familiar to you).
These activities can include any digital or social media experience where you are a user of the site, app, game, etc. So, play a game, create a profile and use a social network, download an app, try a digital tool, etc.
Analyze the USER EXPERIENCE of this activity. What was it like to engage in this activity. For example, if you worked for this company and the CEO or COO asked you for your expert advice on how users are experiencing this product (and maybe how you should change it), what memo would you write to provide this kind of analysis, opinion, and advice.
Write a memo with PROPER FORMATTING (and a truly info rich main heading/subject line)
Choose at least THREE (3) things to discuss in your memo. Each of these should be discussed with its own HEADING and information under that heading.
Last Completed Projects
topic title | academic level | Writer | delivered |
---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });