-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.html
More file actions
119 lines (110 loc) · 4.22 KB
/
Copy pathpractice.html
File metadata and controls
119 lines (110 loc) · 4.22 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>Script Schule</title>
<meta name="description" content="Learn JavaScript from scratch or practice advanced JavaScript through repetition">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Script Schule">
<meta property="og:type" content="website">
<meta property="og:url" content="https://script.schule">
<meta property="og:image" content="">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/mvp.css">
<link rel="stylesheet" href="css/styles.css">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<header>
<nav>
<a href="index.html">
Script<img alt="school backpack" src="img/schule-backpack.png" height="25">
</a>
<ul>
<li><a href="learn.html">Learn</a></li>
<li>
<a href="practice.html">Practice</a>
<ul>
<li>Building Memory</li>
<li>Solving Problems</li>
<li>Writing JavaScript</li>
</ul>
</li>
<li><a href="resources.html">Resources</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</header>
<main>
<h1>Practice</h1>
<p>
Learning to program is not about reading tutorials, watching videos, or listening to lectures. You really learn to
program by coding.
</p>
<hr>
<section>
<header>
<h2>Learn through Doing</h2>
<p>We offer three different ways to sharpen your JavaScript sword.</p>
</header>
<aside>
<img alt="programmer with flash cards whirling around their head" src="img/undraw_Memory_storage_reh0.svg"
height="150">
<h3>Memorize Functions</h3>
<p>There's great power in raw knowledge. Commit critical code to memory by playing our spaced repetition game.
</p>
<p>
<a href="practice-building-memory.html"><em>Build Memory</em></a>
</p>
</aside>
<aside>
<img alt="programmer thinking about a problem" src="img/undraw_code_thinking_1jeh.svg" height="150">
<h3>Learn Solutioning</h3>
<p>Critical thinking skills arise from solving real problems. Grow through solving coding challenges.</p>
<p>
<a href="#"><em>Solve Problems<sup>coming soon</sup></em></a>
</p>
</aside>
<aside>
<img alt="programming typing out code" src="img/undraw_coding_6mjf.svg" height="150">
<h3>Write Real Code</h3>
<p>Get in the flow by typing out code to common JavaScript functions, creating muscle memory.</p>
<p>
<a disabled href="#"><em>Write Code<sup>coming soon</sup></em></a>
</p>
</aside>
</section>
<hr>
<article>
<h2>Want more games?</h2>
<p>Try out these fan favorites:</p>
<h3>Beginner</h3>
<ul>
<li><a href="https://www.jschallenger.com/">JSchallenger</a>, complete challenges to learn</li>
<li><a href="https://lab.reaal.me/jsrobot/">JSRobot</a>, move a robot to learn JavaScript</li>
</ul>
<h3>Specific Study</h3>
<ul>
<li><a href="https://play.elevatorsaga.com/">Elevator Saga</a>, will teach you API interaction</li>
<li><a href="https://bevacqua.github.io/promisees/">Promisees</a>, will teach you Promises</li>
<li><a href="https://serviceworkies.com/">Service Workies</a>, will teach you Service Workers</li>
</ul>
<h3>Advanced</h3>
<ul>
<li><a href="https://designpatternsgame.com/">Design Patterns</a>, learn the famous "Gang of Four"</li>
<li><a href="https://screeps.com/">Screeps</a>, program units in an MMO sandbox</li>
<li><a href="https://alexnisnevich.github.io/untrusted/">Untrusted</a>, can you escape this maze of code?</li>
</ul>
</article>
</main>
<footer>
</footer>
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>