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>
95 lines
1.7 KiB
Markdown
95 lines
1.7 KiB
Markdown
---
|
|
id: 657dc9e7b97f2c5b00f67b2f
|
|
title: Task 108
|
|
challengeType: 19
|
|
dashedName: task-108
|
|
---
|
|
|
|
<!-- (audio) Sophie: Occasionally, yeah. It depends on the project's needs. -->
|
|
|
|
# --description--
|
|
|
|
`Project's needs` are the requirements or things that a project must have or achieve. In programming, this could include specific features, functions, or performance targets.
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
What determines the topics for meetings according to the conversation?
|
|
|
|
## --answers--
|
|
|
|
The manager's mood.
|
|
|
|
### --feedback--
|
|
|
|
The mood of a manager isn't a professional way to decide project actions.
|
|
|
|
---
|
|
|
|
The latest technology trends.
|
|
|
|
### --feedback--
|
|
|
|
While trends can influence, they don't specifically dictate project needs.
|
|
|
|
---
|
|
|
|
The goals for the week.
|
|
|
|
### --feedback--
|
|
|
|
Weekly goals may be part of it, but the overarching determinant is the project's needs.
|
|
|
|
---
|
|
|
|
What the project requires.
|
|
|
|
## --video-solution--
|
|
|
|
4
|
|
|
|
# --scene--
|
|
|
|
```json
|
|
{
|
|
"setup": {
|
|
"background": "company2-center.png",
|
|
"characters": [
|
|
{
|
|
"character": "Sophie",
|
|
"position": {"x":50,"y":0,"z":1.4},
|
|
"opacity": 0
|
|
}
|
|
],
|
|
"audio": {
|
|
"filename": "1.3-4.mp3",
|
|
"startTime": 1,
|
|
"startTimestamp": 51.82,
|
|
"finishTimestamp": 54.56
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 1,
|
|
"finishTime": 3.74,
|
|
"dialogue": {
|
|
"text": "Occasionally, yeah. It depends on the project's needs.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 0,
|
|
"startTime": 4.24
|
|
}
|
|
]
|
|
}
|
|
```
|