Resources: Creative Thinking and Natural/Mental Orders Worksheet, found on your student website; Activity 7.1, located in Ch. 7 of Thinking, for examples on how to create metaphors; and Ch. 8 of Thinking
Construct as many metaphors as you can about five different things that describe any aspect of your life, such as someone you know, something you do, someplace you have been, or anything else. Include a minimum of four metaphors for each person, subject, or object.
Organize one set of information using natural ordering and a different set of information using mental orders in the second portion of the worksheet.
Format this assignment using the worksheet template.
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 });