1. You have to find a blog
2. Essay 3 Written Portion (Letter to Editor, Letter to Someone in Power, Blog) as a .doc, .docx, or .pdf file
3. If you have written a blog, you should have created a real blog website (on blogger.com or wordpress.com for example). So, instead of turning in a normal essay, you should simply send me a link to your blog site. You can copy the link onto a .doc file and upload that. You should NOT type your full blog post out in a word document.
4. Infographic: You should be creating your infographic through easel.ly, and then download a pdf of your infographic then upload the .pdf of your infographic to D2L. See my screenshot below for how to download your infographic in easel.ly.
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 });

