Assignment Question
First, state the title of the article, podcast, film, website, etc. that you chose, or the activity you did.
Write 400 words in which you (1) summarize the content of the piece or describe the activity, (2) explain what it added to your understanding of Socratic, social justice and/or contemplative pedagogy, and (3) raise some criticisms, doubts or challenges about it. Save it on your own computer as a Word document (.doc or .docx) and then upload it here. You will get one point for successfully meeting each of these criteria: You wrote the required 400 words. You summarized the content of the piece or described your project. You explained what it added to your understanding of Socratic, social justice, and/or contemplative pedagogy. You raise some criticisms, doubts or challenges about the piece or your project. Your writing was of college-level quality.
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 });