Skip to main content

How should one write as someone who was in Pompeii during the volcano eruption?

There are two things that will be important for you to do in this assignment.  First, you will need to try to write as if you were really there, being sure to react in ways a real person would have reacted.  Second, you will need to make sure that you have your historical facts correct.


I assume that your history teacher has assigned this task.  Part of what he or she wants you to do is to imagine what things were like for a person in those times.  History teachers today often believe that the experiences of everyday people in the past were important and that part of learning history is trying to understand what those people felt and thought.  Therefore, you should really try to put yourself in the place of a person in Pompeii.  You should record emotions, not just facts.  Are you worried about the volcano?  Would you like to run away but cannot for some reason?  Is it interfering with your everyday life?  Why do you think it is erupting?  A person in Pompeii might have thought of all of these things so you should too.  In other words, really try to feel what a person in Pompeii would have felt.  Do not just write as if you are recording bare facts about the event.


Secondly, you are probably expected to have some historical facts.  Make sure you know these.  Get the right date for the eruption.  Make sure you know what came out of the volcano during the eruption.  Look for whatever other facts you were supposed to know and make sure you include them correctly in your writing.


If you get your historical facts right and you write with feeling, you should do well on this assignment.

Comments

Popular posts from this blog

Is there a word/phrase for "unperformant"?

As a software engineer, I need to sometimes describe a piece of code as something that lacks performance or was not written with performance in mind. Example: This kind of coding style leads to unmaintainable and unperformant code. Based on my Google searches, this isn't a real word. What is the correct way to describe this? EDIT My usage of "performance" here is in regard to speed and efficiency. For example, the better the performance of code the faster the application runs. My question and example target the negative definition, which is in reference to preventing inefficient coding practices. Answer This kind of coding style leads to unmaintainable and unperformant code. In my opinion, reads more easily as: This coding style leads to unmaintainable and poorly performing code. The key to well-written documentation and reports lies in ease of understanding. Adding poorly understood words such as performant decreases that ease. In addressing the use of such a poorly ...

A man has a garden measuring 84 meters by 56 meters. He divides it into the minimum number of square plots. What is the length of the square plots?

We wish to divide this man's garden into the minimum number of square plots possible. A square has all four sides with the same length.Our garden is a rectangle, so the answer is clearly not 1 square plot. If we choose the wrong length for our squares, we may end up with missing holes or we may not be able to fit our squares inside the garden. So we have 84 meters in one direction and 56 meters in the other direction. When we start dividing the garden in square plots, we are "filling" those lengths in their respective directions. At each direction, there must be an integer number of squares (otherwise, we get holes or we leave the garden), so that all the square plots fill up the garden nicely. Thus, our job here is to find the greatest common divisor of 84 and 56. For this, we prime factor both of them: `56 = 2*2*2*7` `84 = 2*2*3*7` We can see that the prime factors and multiplicities in common are `2*2*7 = 28` . This is the desired length of the square plots. If you wi...