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: 657dc16b741b3a22902989b8
|
|
title: Task 89
|
|
challengeType: 19
|
|
dashedName: task-89
|
|
---
|
|
|
|
# --description--
|
|
|
|
The phrase `too long` is used when something takes more time than is necessary or desired. For example, `The meeting lasted four hours. Four hours is too long for a meeting!`
|
|
|
|
It's different from `so long`, which is often used to express that something takes a significant amount of time, but it doesn't necessarily mean it's more than what is wanted.
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
Which phrase means that the meetings take more time than desired?
|
|
|
|
## --answers--
|
|
|
|
`so long`
|
|
|
|
### --feedback--
|
|
|
|
`So long` is not necessarily negative; it just indicates a period is lengthy.
|
|
|
|
---
|
|
|
|
`long enough`
|
|
|
|
### --feedback--
|
|
|
|
`Long enough` suggests the time is sufficient but not excessive.
|
|
|
|
---
|
|
|
|
`just long`
|
|
|
|
### --feedback--
|
|
|
|
`Just long` is not a common phrase to describe duration and does not imply excess.
|
|
|
|
---
|
|
|
|
`too long`
|
|
|
|
## --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": 19.86,
|
|
"finishTimestamp": 22.72
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 1,
|
|
"finishTime": 3.86,
|
|
"dialogue": {
|
|
"text": "Not too long. They usually take about 30 to 45 minutes.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 0,
|
|
"startTime": 4.36
|
|
}
|
|
]
|
|
}
|
|
```
|