Not Communicating. During this week, select one hour of the day when you are with other people and try not to communicate. During this hour, try your best not to communicate verbally and to keep nonverbal communication to a minimum. Take note of the opportunities for communication you passed up, how it felt when you couldn’t communicate, and how others reacted toward you. Once you get an initial reaction, if your behavior seems to be upsetting those around you, give a brief explanation that you are conducting an exercise for a communications class, and then go back to being non-communicative. Share your experience and discuss what you noticed about your behavior and the behavior of others while you conducted this exercise.
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 });