Assignment Instructions
Fiction Story
Write an original fictional piece of your choosing in any genre.
1. At the top of the first page include your name.
2. Each story is to be between 5-10 pages in length. Please do not exceed the page maximum limit.
3. Each story is to be double spaced (not single and not 1.5)
4. Use one inch margins.
5. Use 12 point font Verdana or Times New Roman
6. Please be sure to review rules for proper punctuation and paragraphing for the entire work and specifically for dialogue.
This can be in any genre that floats your boat. What I am looking for is a story that that has a definite beginning, middle, and end. Look at the example, Scrabble, by Charlie Fish. Visit eastoftheweb.com for examples of other short stories and watch how they develop.
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 });