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>
122 lines
2.3 KiB
Markdown
122 lines
2.3 KiB
Markdown
---
|
|
id: 657dc71c76da6e475ad4eb4f
|
|
title: Task 103
|
|
challengeType: 19
|
|
dashedName: task-103
|
|
---
|
|
|
|
<!-- (audio) Tom: That's important. Does Maria assign tasks during these meetings?
|
|
Sophie: Sometimes, but we normally discuss tasks we plan on tackling for the week. -->
|
|
|
|
# --description--
|
|
|
|
`To tackle tasks` refers to trying to finish tasks as best as possible.
|
|
|
|
For example, programmers usually have to tackle coding tasks.
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
What does the team do in the meetings?
|
|
|
|
## --answers--
|
|
|
|
They do all the special tasks given by Maria.
|
|
|
|
### --feedback--
|
|
|
|
The conversation suggests that tasks are shared among team members, not just given to Maria.
|
|
|
|
---
|
|
|
|
They discuss the tasks the team intends to finish.
|
|
|
|
---
|
|
|
|
They have fun activities like playing games.
|
|
|
|
### --feedback--
|
|
|
|
While programming can be enjoyable, in the meeting, they discuss work-related tasks, not leisure activities.
|
|
|
|
---
|
|
|
|
They comment on the people who are not on time for the meetings.
|
|
|
|
### --feedback--
|
|
|
|
There's no mention of punctuality in the conversation.
|
|
|
|
## --video-solution--
|
|
|
|
2
|
|
|
|
# --scene--
|
|
|
|
```json
|
|
{
|
|
"setup": {
|
|
"background": "company2-center.png",
|
|
"characters": [
|
|
{
|
|
"character": "Tom",
|
|
"position": {"x":50,"y":15,"z":1.2},
|
|
"opacity": 0
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"position": {"x":50,"y":0,"z":1.4},
|
|
"opacity": 0
|
|
}
|
|
],
|
|
"audio": {
|
|
"filename": "1.3-4.mp3",
|
|
"startTime": 1,
|
|
"startTimestamp": 41.48,
|
|
"finishTimestamp": 48.72
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"startTime": 1,
|
|
"finishTime": 3.72,
|
|
"dialogue": {
|
|
"text": "Does Maria assign tasks during these meetings?",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 0,
|
|
"startTime": 4
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 4
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 4.52,
|
|
"finishTime": 8.24,
|
|
"dialogue": {
|
|
"text": "Sometimes, but we normally discuss tasks we plan on tackling for the week.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 0,
|
|
"startTime": 8.74
|
|
}
|
|
]
|
|
}
|
|
```
|