RespectfullyJamey Bradbury “We All Go Through It” (Links to an external site.) (2009) Jamaica Kincaid “Girl” (Links to an external site.) (1978) text and video (Links to an external site.) Jack London “To Build a Fire” (Links to an external site.) (1908) Charlotte Perkins Gilman “The Yellow Wallpaper” (Links to an external site.) (1892)Choose 1 Aesop’s Fable (Links to an external site.) to read (~600 BCE)Choose 1 Brothers Grimm fairy tale (Links to an external site.) to read (1812) (Links to an external site.)Chapter 1 of Miguel de Cervante’s Don Quixote (Links to an external site.) (1612) **You only have to read the first chapter! You can read more if you want, but only Ch. 1 is required!Kate Chopin “Desiree’s Baby” (Links to an external site.) (1893) **This links takes you to a book of Chopin’s stories. When you open the book, scroll down the table of contents until you see “Desiree’s Baby.”Edgar Allan Poe “The Tell-Tale Heart” (Links to an external site.) (1843) Arthur Conan Doyle (1892) “The Adventure of the Speckled Band” (Links to an external site.) William Faulkner “A Rose for Emily” (Links to an external site.) (1930)
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 });