1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/** @jsxImportSource https://esm.sh/react */
import { generateLessonHtml } from "https://esm.town/v/petermillspaugh/lessonTemplate";
import { renderToString } from "npm:react-dom/server";
/*
* Note: this lesson is a work in progress 👷‍♂️
*/
const TITLE = "Varied practice";
const FILL_BLANK = (
<>
Two basketball players want to improve their 3-point shooting with a weekly routine. The first player takes 100
shots from a different location on the court each day Monday to Friday (e.g. 100 shots from the left corner on the
first day, 100 shots from the wing on the second day, 100 shots from the top of the arc on the third day, and so
on). The second player takes 20 shots from 5 locations{" "}
<em>every day</em>. So both players take 100 shots per day, totaling 500 shots each week. Which routine do you think
would be more effective?
</>
);
const CONTENT = (
<>
<h2>Varied practice versus massed practice</h2>
<p>
Is massed practice–focusing study on one topic for a concentrated time period–effective? No. Learning gains are
transitory.
</p>
<p>
Varied practice is more effective than massed practice and is consolidated in a different part of the brain that
encodes higher-order, more flexible learning.
</p>
<h2>Varied practice in sports</h2>
<p>TODO: beanbag toss experiment</p>
<p>TODO: basketball example</p>
<h2>Flexible memory storage in your brain</h2>
<p>TODO</p>
</>
);
const QUIZ = [
{
question: "",
answer: "",
},
];
export const variedPractice = {
title: TITLE,
fillBlank: FILL_BLANK,
quiz: QUIZ,
fetchHtml: (email: string, lesson: number) =>
generateLessonHtml({
email,
lesson,
title: `Lesson ${lesson + 1}: ${TITLE}`,
fillBlank: FILL_BLANK,
content: CONTENT,
quiz: QUIZ,
}),
};
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
January 20, 2024