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>
131 lines
2.5 KiB
Markdown
131 lines
2.5 KiB
Markdown
---
|
|
id: 657dc9004d076d55baf36323
|
|
title: Task 106
|
|
challengeType: 19
|
|
dashedName: task-106
|
|
---
|
|
|
|
<!-- (audio) Tom: Does this include brainstorming sessions?
|
|
Sophie: Occasionally, yeah. It depends on the project's needs. -->
|
|
|
|
|
|
# --description--
|
|
|
|
Remember, `occasionally` means something happens sometimes, but not regularly or often. It's less frequent than `sometimes` and more frequent than `rarely`.
|
|
|
|
Here is the adverb frequency chart from the last challenge, for your convenience.
|
|
|
|
| Adverb | Frequency | Adverb | Frequency |
|
|
| ------------ | --------- | --------- | --------- |
|
|
| Never | 0% | Often | 70% |
|
|
| Rarely | 5% | Generally | 80% |
|
|
| Seldom | 15% | Usually | 90% |
|
|
| Occasionally | 30% | Always | 100% |
|
|
| Sometimes | 50% | | |
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
How often do brainstorming sessions happen according to Sophie?
|
|
|
|
## --answers--
|
|
|
|
At every meeting.
|
|
|
|
### --feedback--
|
|
|
|
If it happened every meeting, Sophie would use `always,` not `occasionally`.
|
|
|
|
---
|
|
|
|
Now and then.
|
|
|
|
---
|
|
|
|
Almost never.
|
|
|
|
### --feedback--
|
|
|
|
`Occasionally` is more frequent than `almost never`.
|
|
|
|
---
|
|
|
|
After every project.
|
|
|
|
### --feedback--
|
|
|
|
`After every project` would be too frequent to match `occasionally`.
|
|
|
|
## --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": 49.2,
|
|
"finishTimestamp": 54.56
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"startTime": 1,
|
|
"finishTime": 3.04,
|
|
"dialogue": {
|
|
"text": "Does this include brainstorming sessions?",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 0,
|
|
"startTime": 3.1
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 3.1
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 3.1,
|
|
"finishTime": 6.36,
|
|
"dialogue": {
|
|
"text": "Occasionally, yeah. It depends on the project's needs.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 0,
|
|
"startTime": 6.86
|
|
}
|
|
]
|
|
}
|
|
```
|