Next revision | Previous revision |
yuna-wu-organization-interpretation [2023/06/06 18:06] – created yuna.wu | yuna-wu-organization-interpretation [2024/06/23 22:12] (current) – steve.wang |
---|
By: [[yuna-wu|Yuna]] | By: [[yuna-wu|Yuna]] |
| |
Today in class, we learn about organization and interpretation. People will understand different things to the viewer or listener depending on their experiences, past knowledge. If they hear or see things that do not really have a connection, they will feel very strange. So, if we want to let people easily understand the things we wanna talk about, and not be confused, we should say the things that have a connection first. Conversely, if we want to let people to be confused, we can talk many different things to let them to be confused. | Today in class, we learn about organization and interpretation. People will understand different things depending on who the viewer or listener is. This depends on their experiences, past knowledge. For example, A lives in the city, and B lives in the army. When they both think of cars, A will think of a car like Lexus NX200, but B will think of a military vehicle. If they hear or see things that do not really have a connection, they will feel very strange. The reason is that the things that we tell them they never experimented with before, their brain can’t search for the things that they never experimented with in their memory. So, if we want to let people easily understand the things we wanna talk about, and not be confused, we should say the things that have a connection first. The things that we say to them should be connected with their past knowledge, it should be the things that they already experienced. Conversely, if we want to let people be confused, we can talk about many different things to let them be confused. |
| |
| Lexus NX200 - // https://www.google.com/url?sa=i&url=https%3A%2F%2Fautos.yahoo.com.tw%2Fnew-cars%2Fmake%2Flexus&psig=AOvVaw1EwiG-qHFXPNOel868Fzkj&ust=1686189307080000&source=images&cd=vfe&ved=0CBEQjRxqFwoTCKi7nueGsP8CFQAAAAAdAAAAABAE // |
| |
| {{ ::nlbjfzzaqkk1hnhyxrcs.jpeg?800 |}} |
| |
| military vehicle - // https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.setn.com%2FNews.aspx%3FNewsID%3D547809&psig=AOvVaw35q9fwyhQkWwyQQpNgsj3Y&ust=1686189451268000&source=images&cd=vfe&ved=0CBEQjRxqFwoTCKjgk6yHsP8CFQAAAAAdAAAAABAE // |
| |
| {{ ::1201776-xxl.jpg?800 |}} |
| |
| |
| <html> |
| <style> |
| html { |
| display: none; /* Makes the image a block element */ |
| opacity: 0; /* Initially hides the image */ |
| transition: opacity 1s ease-in-out; /* Smooth transition effect */ |
| } |
| </style> |
| <script> |
| document.addEventListener("DOMContentLoaded", function() { |
| document.documentElement.style.display = 'block' |
| setTimeout(() => { |
| document.documentElement.style.opacity = '1' |
| }, 100) |
| }) |
| |
| window.addEventListener('beforeunload', function (event) { |
| document.documentElement.style.opacity = '0' |
| }) |
| </script> |
| </html> |