Assignment Question
Write a 1 page (250 word reflection paper) reflecting on the content shared by our guest speaker (Maggie Duffy from Discover Halifax). Suggest taking detailed notes during her presentation as it will help you create a meaningful reflection paper.
Your reflection paper should:
1. Summarize in the introduction the main purpose of the speaker’s presentation and their names (including title) and role within the company.
2. Highlight details mentioned by the guest speaker that either interested or surprised you, AND explain why it did.
3. Conclude your paper with an overall statement that evaluates the significance of the topic discussed. (how/why is this topic important). Note that you are reviewing the subject matter, and not the person presenting the information to our class. Guest Speaker Recording Link https://ca-lti.bbcollab.com/recording/efa443f9157b4e4bbf4835ea5848e39e
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 });