-
Notifications
You must be signed in to change notification settings - Fork 0
/
strategies.html
368 lines (328 loc) · 16 KB
/
strategies.html
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Getting Unstuck - Strategies</title>
<meta name="description" content="A project for learning to debug computer programs">
<meta name="author" content="Creative Computing Lab at the Harvard Graduate School of Education">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="https://use.typekit.net/lwk5jup.css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<!-- <link rel="stylesheet" href="https://use.typekit.net/lwk5jup.css" />-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/strategies.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
<!--js -->
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<script
src="js/script.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-121701097-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-121701097-1');
</script>
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<div class="header">
<div class="nav">
<div class="logo-container">
<a href="index.html"><img src="images/logo.png" class="logo"></a>
</div>
<nav class="nav-items nav-right">
<div class="nav-link nav-1">
<a href="signup.html" class="nav-link">SIGN UP</a>
</div>
<div class="nav-link">
<a href="strategies.html">STRATEGIES</a>
</div>
<!-- <div class="nav-link">
<a href="challenges.html">CHALLENGES</a>
</div> -->
<div class="nav-link">
<a href="about.html">ABOUT</a>
</div>
</nav>
</div>
</div>
<div class="page-title">
<h4>Strategies</h4>
<p>If you're feeling stuck on a problem, try out one of these strategies! Hover over each image for more detail. Reload the page to randomize strategies.</p>
</div>
<div class="row row-card">
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 1.png" class="card-image" alt="a stack at a time">
<div class="card-details fadeIn-bottom">
<h3>a stack at a time</h3>
<p>Click on a stack to run only that part of your project. Does it work? Click on another stack.</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 6.png" class="card-image" alt="project talk">
<div class="card-details fadeIn-bottom">
<h3>project talk</h3>
<p>Make your project talk to you! Add extra "say" blocks in-between the blocks you're testing, to see if all of your blocks are being run in your project.</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 7.png" class="card-image" alt="try something else">
<div class="card-details fadeIn-bottom">
<h3>try something else</h3>
<p>There are many ways to do the same thing in Scratch. What's another way you might try?</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 8.png" class="card-image" alt="problem? opportunity!">
<div class="card-details fadeIn-bottom">
<h3>problem? opportunity!</h3>
<p>Can't get past a problem? Can you reframe the problem so that it becomes an advantage or opportunity?</p>
</div>
</div>
</div>
<div class="row row-card">
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 9.png" class="card-image" alt="draw a diagram">
<div class="card-details fadeIn-bottom">
<h3>draw a diagram</h3>
<p>Draw a map or a flowchart of how you envision your project working. What happens when you click the green flag?</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 32.png" class="card-image" alt="be inspired by others">
<div class="card-details fadeIn-bottom">
<h3>be inspired by others</h3>
<p>Find a project you find exciting and click "see inside." What do you notice? What can you learn from it?</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 34.png" class="card-image" alt="answer someone's question">
<div class="card-details fadeIn-bottom">
<h3>answer someone's question</h3>
<p>Go to the "Help with Scripts" forum and try to answer at least one question. You know more than you think.</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 11.png" class="card-image" alt="break it down">
<div class="card-details fadeIn-bottom">
<h3>break it down!</h3>
<p>Sometimes we get stuck because the problem seems overwhelming. Write down three things that make up the problem.</p>
</div>
</div>
</div>
<div class="row row-card">
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 15.png" class="card-image" alt="search online">
<div class="card-details fadeIn-bottom">
<h3>search online</h3>
<p>See if someone else has an answer! Try Googling [block name] + [thing you want it to do].</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 13.png" class="card-image" alt="help a friend">
<div class="card-details fadeIn-bottom">
<h3>help a friend</h3>
<p>Ask friends if they need any help with their projects. Even if you're a beginner, everyone has something to contribute.</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 14.png" class="card-image" alt="remix a project">
<div class="card-details fadeIn-bottom">
<h3>remix a project</h3>
<p>Find a project you find inspiring and click "Remix." Try making some changes to the project!</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 16.png" class="card-image" alt="just keep going">
<div class="card-details fadeIn-bottom">
<h3>just keep going!</h3>
<p>Try lots of things! Try three other strategies! Switch out some blocks! You've got this.</p>
</div>
</div>
</div>
<div class="row row-card">
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 17.png" class="card-image" alt="post a question online">
<div class="card-details fadeIn-bottom">
<h3>post a question online</h3>
<p>Check out the "Help with Scripts" forum on Scratch and ask your question. Don't forget to link to your project.</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 18.png" class="card-image" alt="make a small goal today">
<div class="card-details fadeIn-bottom">
<h3>make a small goal today</h3>
<p>Pick one thing that you want to accomplish/learn today.</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 19.png" class="card-image" alt="figure out your style">
<div class="card-details fadeIn-bottom">
<h3>figure out your style</h3>
<p>Do you like to make your own blocks? Hide blocks on invisible sprites? Look at some of your projects and try to notice the things you tend to do. Make sure to leave comments in projects for others to read.</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 20.png" class="card-image" alt="talk it through">
<div class="card-details fadeIn-bottom">
<h3>talk it through</h3>
<p>Talk to a friend (or just out loud to yourself) about what you need to get done.</p>
</div>
</div>
</div>
<div class="row row-card">
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 21.png" class="card-image" alt="work on an old project">
<div class="card-details fadeIn-bottom">
<h3>work on an old project</h3>
<p>Find a project you haven't worked on in awhile and make some changes. What did you do differently then? How would you do that now?</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 12.png" class="card-image" alt="organize your sprites">
<div class="card-details fadeIn-bottom">
<h3>organize your sprites</h3>
<p>Are all of your blocks on the right sprites? Click through all of them to check; don't forget about the background!</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 23.png" class="card-image" alt="compromise">
<div class="card-details fadeIn-bottom">
<h3>compromise</h3>
<p>What is one thing you imagine your project doing? Can you just get part of that done today?</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 24.png" class="card-image" alt="tell a story">
<div class="card-details fadeIn-bottom">
<h3>tell a story</h3>
<p>Write out what your sprites will do. How will a user feel when they interact with your project?</p>
</div>
</div>
</div>
<div class="row row-card">
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 25.png" class="card-image" alt="check out what's trending">
<div class="card-details fadeIn-bottom">
<h3>check out what's trending</h3>
<p>Take a look at some of the projects trending on the Scratch front page. What do you notice? What are you inspired by?</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 26.png" class="card-image" alt="remix something">
<div class="card-details fadeIn-bottom">
<h3>remix something</h3>
<p>Use the backpack feature to look at other projects and find sprites or code blocks to incorporate into your remix. Don't forget to give credit.</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 27.png" class="card-image" alt="find a tutorial">
<div class="card-details fadeIn-bottom">
<h3>find a tutorial</h3>
<p>Other Scratchers have made lots of different tutorials. Try searching the Scratch site to find a tutorial, such as "platformer game tutorial" or "video sensing tutorial".</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 28.png" class="card-image" alt="take a break">
<div class="card-details fadeIn-bottom">
<h3>take a break</h3>
<p>Go for a walk. Read a book. Eat something. Then try again.</p>
</div>
</div>
</div>
<div class="row row-card">
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 29.png" class="card-image" alt="use the tips window">
<div class="card-details fadeIn-bottom">
<h3>use the tips window</h3>
<p>Try out one of the tutorials in the tips window (that little question mark in the corner). Did you know that the tips window has more information about each block?</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 30.png" class="card-image" alt="ask a friend">
<div class="card-details fadeIn-bottom">
<h3>ask a friend</h3>
<p>Ask a friend to take a look at your project. Everyone needs help sometimes!</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 31.png" class="card-image" alt="recruit a teammate">
<div class="card-details fadeIn-bottom">
<h3>recruit a teammate</h3>
<p>Ask a friend to join you on your project. What strengths do they have to contribute?</p>
</div>
</div>
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 10.png" class="card-image" alt="make a checklist">
<div class="card-details fadeIn-bottom">
<h3>make a checklist</h3>
<p>Make a list of everything you want your project to do.</p>
</div>
</div>
</div>
<!-- <div class="row row-card-last">
<div class="three columns s card-container">
<div class="content-overlay"></div>
<img src="images/strategy/strategyArtboard 34.png" class="card-image" alt="answer someone's question">
<div class="card-details fadeIn-bottom">
<h3>answer someone's question</h3>
<p>Go to the "Help with Scripts" forum and try to answer at least one question. You know more than you think.</p>
</div>
</div>
</div> -->
<!--
<div class="footer">
Getting Unstuck is a project of the <a href="http://creativecomputing.gse.harvard.edu/">Creative Computing Lab</a> at the Harvard Graduate School of Education <a href="https://www.facebook.com/groups/TeachingwithScratch"><i class="fab fa-facebook-f"></i></a> <a href="https://twitter.com/scratchedteam?lang=en"><i class="fab fa-twitter"></i></a>
</div> -->
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>