mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
905e7d5a5c
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: DanielRosa74 <58576743+DanielRosa74@users.noreply.github.com>
93 lines
1.6 KiB
Markdown
93 lines
1.6 KiB
Markdown
---
|
|
id: 657ced2d5ea0ae5baac42551
|
|
title: Task 72
|
|
challengeType: 19
|
|
dashedName: task-72
|
|
---
|
|
|
|
# --description--
|
|
|
|
To `handle` something in English means to manage or deal with a situation. When it comes to `pressure,` handling pressure means dealing with stress or difficult situations in a calm and effective way.
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
What does it mean to `handle pressure` in a project?
|
|
|
|
## --answers--
|
|
|
|
To ignore the problems.
|
|
|
|
### --feedback--
|
|
|
|
Ignoring problems usually makes the situation worse, not better.
|
|
|
|
---
|
|
|
|
To manage stress and challenges well.
|
|
|
|
---
|
|
|
|
To let others solve the issues.
|
|
|
|
### --feedback--
|
|
|
|
Handing over issues to others does not mean you are handling them yourself.
|
|
|
|
---
|
|
|
|
To increase the difficulty.
|
|
|
|
### --feedback--
|
|
|
|
Handling pressure is about managing, not increasing difficulty.
|
|
|
|
## --video-solution--
|
|
|
|
2
|
|
|
|
# --scene--
|
|
|
|
```json
|
|
{
|
|
"setup": {
|
|
"background": "company2-center.png",
|
|
"characters": [
|
|
{
|
|
"character": "Tom",
|
|
"position": {"x":50,"y":15,"z":1.2},
|
|
"opacity": 0
|
|
}
|
|
],
|
|
"audio": {
|
|
"filename": "1.3-3.mp3",
|
|
"startTime": 1,
|
|
"startTimestamp": 38.76,
|
|
"finishTimestamp": 41.08
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"startTime": 1,
|
|
"finishTime": 3.32,
|
|
"dialogue": {
|
|
"text": "How does she handle challenges in our projects?",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 0,
|
|
"startTime": 3.82
|
|
}
|
|
]
|
|
}
|
|
```
|