Personal Research Project #1:
Article Report
Student will find an article about any computer technology of their choice. A 3-5 page report will be prepared that will cover the following:
- Article Topic
- Student opinion – is this technology currently successful, if new, will this technology be
successful, will it fail, etc.
- Student Research – defense of opinion – must provide
valid defense
backed up with further research. Defense cannot consist of only “in my opinion”.
Article must be current, within the past 6 months. It can be obtained from newspaper, magazine or internet.
Use MLA Writing Style
Report will be prepared according to the following:
- Introduction
- Body
- Conclusion
- Works Cited (References) Works Cited page does not count toward report page count
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 });

