The task is to write a critical attitude towards some sources (can be founded in the uploaded files below )Things to include:- Is the aim of the text to inform, explain or persuade?- Which are the intended target groups? Who in the text written for?- Is the source reliable? In which kind of magazine, paper, book or on which Internet site is the text published? Be especially critical of things you read on the Internet where anyone can publish almost anything.- Is the author’s authority in the field? For example, a doctor is reliable in writing about diseases he treats every day. Has the document been reviewed by an expert in the field? If there are experts who have confirmed the thesis in the text, the facts (and the text) are more convincing.- Can I use the material in my own work? How up-to-date is the information?- Is the text I write topical? In other words, does the text deal with important and interesting things for people at this moment in time?- What are my opinions? Make sure they are clearly stated as your own in the text and not mixed up with those of experts or others.- Reproduce all sources correctly. If you use quotes, everything written within the quote has to be exactly the same as in the original text. Start and end your quote with quotation marks (‘….’).- At the end of your work write a list of references. Write as follows:Books: Author, title, year of publication, where it waspublished.Articles: Author, title, journal, number, year.Internet: Author, title, date published, URL-address,date when you found the information.
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 });