For this part of the assignment you will create a thesis that responds to one of the two questions below, and you will create a 250 word argument—approximately two paragraphs—in support of your thesis.
At the top of your post, note to which question number you are responding (e.g., I am responding to question 2). Your two paragraphs are due by 11:59 PM Wednesday.
Create a thesis and corresponding argument for one of the following questions:
1) Do people read less now than they did ten or fifteen years ago? Why or why not?
2) Should professors allow technology such as computers, smartphones, and tablets in college classrooms? Why or why not?
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 });

