You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: GLOSSARY.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -220,7 +220,7 @@ Snap! is an extended reimplementation of [Scratch](http://scratch.mit.edu) that
220
220
221
221
### Scripts
222
222
223
-
Different types of blocks linked together
223
+
Different types of blocks linked together.
224
224
225
225
### Sequential Search Algorithm
226
226
@@ -266,7 +266,7 @@ A tool for evaluating the possible inputs and outputs of a Boolean expression.
266
266
267
267
### Variable
268
268
269
-
A placeholder for some value. Types of variables:Global variables - apply to all sprites Sprite variable - applies to one sprite Script variable - parameter that applies to one script
269
+
A placeholder for some value. Types of variables:Global variables - apply to all sprites Sprite variable - applies to one sprite script variable - parameter that applies to one script
Copy file name to clipboardexpand all lines: curriculum_map.md
+13-13
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ Materials and preparation resources can be found in each of the lesson pages.
20
20
| ------ | ---------- | --- | -- |
21
21
|[0.1: The first day of school][]| Identify the class they are taking. List the high-level goals of the course. Describe classroom procedures, rules, and norms. | Syllabus | 1 |
|[0.3: Programming languages][]| Complete small coding tasks (Hour of a script). Explain why computer programs are written in specialized languages. | Hour of Code | 1 |
23
+
|[0.3: Programming languages][]| Complete small scripting tasks (Hour of Code). Explain why computer programs are written in specialized languages. | Hour of Code | 1 |
24
24
|[0.4: Self-portrait][]| Create a simple script in to describe themselves | Getting to Know You | 1 |
25
25
|[0.5: Coordinate system][]| Recall the Cartesian coordinate system. Implement the coordinate system to position a sprite using Coordinates. | Getting to Know Coordinates | 1 |
26
26
@@ -29,22 +29,22 @@ Materials and preparation resources can be found in each of the lesson pages.
29
29
| Lesson | Objectives | Lab | Days |
30
30
| ------ | ---------- | --- | --- |
31
31
|[1.1: Welcome to Snap!][]| Define and identify **blocks**, **scripts**, **sprites**, and **the stage**. Write simple scripts. Describe what simple scripts do without executing the script.| Welcome to Snap! | 2 |
32
-
|[1.2: Building blocks][]| Identify the pallettes of blocks in . Describe the function of several common blocks. Be able to use common blocks to build simple scripts. | Scavenger Hunt | 1 |
32
+
|[1.2: Building blocks][]| Identify the pallettes of blocks in . Describe the function of several common blocks. Be able to use common blocks to build simple scripts. | Scavenger Hunt | 1 |
33
33
|[1.3: Drawing shapes][]| Construct simple algorithms to draw shapes. Convert algorithms into scripts. | Squares, triangles and Stars | 1 |
34
-
|[1.4: Animation][]| Animate sprites using costume changes and movement.Trigger action in other sprites using broadcasts.Implement scripts for multiple sprites. | Sprites in Action | 1 |
35
-
|[1.5: Storytelling project][]| Apply scripting skills to create an animated movie, play, nursery rhyme, or other scene. Practice good debugging skills to correct issues as they arise while scripting. | Project 1: Animated Storytelling | 2 |
34
+
|[1.4: Animation][]| Animate sprites using costume changes and movement.Trigger action in other sprites using broadcasts.Implement scripts for multiple sprites. | Sprites in Action | 1 |
35
+
|[1.5: Storytelling project][]| Apply programming skills to create an animated movie, play, nursery rhyme, or other scene. Practice good debugging skills to correct issues as they arise while scripting. | Project 1: Animated Storytelling | 2 |
36
36
|[Culture day lesson A: Video/reading][]| Connect CS Unit topics with current events || 1 or more |
37
37
38
38
## Unit 2: Loop-de-loop
39
39
40
40
| Lesson | Objectives | Lab | Days |
41
41
| ------ | ---------- | --- | --- |
42
-
|[2.1: Loops][]| Define **loop** in a scripting context. Explain why loops are useful. Implement simple repeat and forever loops. Apply loops to reduce redundancy in a script. | Squares and Triangles Redux | 1 |
43
-
|[2.2: Nested loops][]| Apply nested loops to solve scripting problems. | Another Brick in the Wall | 1 |
42
+
|[2.1: Loops][]| Define **loop** in a programming context. Explain why loops are useful. Implement simple repeat and forever loops. Apply loops to reduce redundancy in a program. | Squares and Triangles Redux | 1 |
43
+
|[2.2: Nested loops][]| Apply nested loops to solve programming problems. | Another Brick in the Wall | 1 |
44
44
|[2.3: Inputs and conditionals][]| Apply **Ask** and **Receive**. Apply simple conditional, **if** and **if-else** blocks, to alter control flow in a script. | What Shape Is That? | 1 |
45
-
|[2.4: Variables][]| Apply variables to track values throughout a script. | Guessing Game | 1 |
45
+
|[2.4: Variables][]| Apply variables to track values throughout a program or script. | Guessing Game | 1 |
46
46
|[2.5: Boole in the house][]| Define and identify Boolean expressions and operators. Evaluate Boolean expressions. Utilize Boolean operators, `and`, `or`, `not`, to create compound conditions. | Triangle of All Kinds | 1 |
47
-
|[2.6: Pong project][]| Implement a well-written version of Pong. Practice good style and conventions to create readable and maintainable a script. | Project 2: Pong | 4 |
47
+
|[2.6: Pong project][]| Implement a well-written version of Pong. Practice good style and conventions to create readable and maintainable program. | Project 2: Pong | 4 |
48
48
|[Culture Day Lesson B: Student research project/presentation][]| Connect CS Unit topics with current events || 1 or more |
49
49
50
50
## Unit 3: Abstraction and Customization
@@ -62,28 +62,28 @@ Materials and preparation resources can be found in each of the lesson pages.
62
62
63
63
| Lesson | Objectives | Lab | Days |
64
64
| ------ | ---------- | --- | --- |
65
-
|[4.1: Intro to lists][]| Explain the concept of a `list` in a scripting context.Identify scenarios in which lists are useful. || 1 |
65
+
|[4.1: Intro to lists][]| Explain the concept of a `list` in a programming context.Identify scenarios in which lists are useful. || 1 |
66
66
|[4.2: Static lists][]| Create static lists. Access elements of a list. Add and remove elements from a list. | You Talkin' to Me? | 1 |
67
67
|[4.3: List practice I][]| Traverse a list, accessing each element one at a time.Perform operations combining all elements in a list. Select defined subsets of elements in a list. | Guess Who | 1 |
68
68
|[4.4: List practice II][]| Traverse a list, accessing each element one at a time. Perform operations combining all elements in a list. Select defined subsets of elements in a list. | Number Cruncher | 1 |
69
69
|[4.5: Sequential search][]| Explain the sequential search algorithm. Implement several variations of sequential search.. | It's Around Here Somewhere | 1 |
70
-
|[4.6: Guess my word project][]| Apply lists to implement a complete version of _Guess My Word_. Exercise good scripting practices to produce a script that is not only functional but also elegant and well-written. | Project 4: Guess My Word | 5 |
70
+
|[4.6: Guess my word project][]| Apply lists to implement a complete version of _Guess My Word_. Exercise good programing practices to produce a program that is not only functional but also elegant and well-written. | Project 4: Guess My Word | 5 |
71
71
|[Culture day lesson D: Interview with people in T\technology][]| Connect CS Unit topics with current events || 1 or more |
72
72
73
73
## Unit 5: Cloning
74
74
75
75
| Lesson | Objectives | Lab | Days |
76
76
| ------ | ---------- | --- | --- |
77
77
|[5.1: Intro to cloning][]| Explain why prototyping and clones can be useful. Describe how complex goals can be accomplished using cloning. | Connect the Dots | 1 |
78
-
|[5.2: Cloning sprites][]| Demonstrate the difference between sprite and global variables. Explain how cloning and prototyping simplify similar sprites in the same script. Create prototype sprites and clones of the prototype sprite. Explain the difference between a "master" sprite and a "clone" sprite. | Lots of Balls | 1 |
78
+
|[5.2: Cloning sprites][]| Demonstrate the difference between sprite and global variables. Explain how cloning and prototyping simplify similar sprites in the same program. Create prototype sprites and clones of the prototype sprite. Explain the difference between a "master" sprite and a "clone" sprite. | Lots of Balls | 1 |
79
79
|[5.3: Communicating With clones][]| Pass information from the master to individual clones. Delete clones when they are no longer needed. | Fewer Balls | 1 |
80
-
|[5.4: Space Invaders project][]| Use cloning to implement a complete version of "Space Invaders". Exercise good scripting practices to produce a script that is not only functional but also elegant and well-written. | Project 5: Space Invaders | 10 |
80
+
|[5.4: Space Invaders project][]| Use cloning to implement a complete version of "Space Invaders". Exercise good programing practices to produce a program that is not only functional but also elegant and well-written. | Project 5: Space Invaders | 10 |
81
81
82
82
## Unit 6: Final project
83
83
84
84
| Lesson | Objectives | Lab | Days |
85
85
| ------ | ---------- | --- | --- |
86
-
|[6.1: Design basics][]| Identify the key considerations when designing a piece of software. Describe methods for prioritizing features, use cases, and/or scenarios.Explain why design and planning are necessary steps in the software engineering process. | Final Project | 1 |
86
+
|[6.1: Design basics][]| Identify the key considerations when designing a piece of software. Describe methods for prioritizing features, use cases, and/or scenarios.Explain why design and planning are necessary steps in the software engineering process. | Final Project | 1 |
87
87
|[6.2: Research and ideate][]| Identify potential users, intended impact, and possible unintended negative consequences. Generate ideas to create range of possibilities using a brainstorm technique. Conduct user-centered research to understand design opportunities and barriers. Critically analyze factors when choosing between project ideas. Prioritize proposed project ideas using the identified factors. | 1 |
88
88
|[6.3: Defining requirements][]| Define key **user-scenarios** for a project and the features required to implement each scenario. Explain the importance of wire framing when designing an application. Capture key scenarios using **sketches** - (hand drawn, or with drawing tool). Refine design based on user-centered research. | Final Project | 1 |
89
89
|[6.4: Building a plan][]| Break down, and identify the main technical components needed for the functional project specifications (scenarios). Explain the purpose of each technical component. Develop the project idea into a full, detailed specification. Create a plan that includes specific steps or a list of bite-sized tasks. Estimate time required for tasks. | Final Project | 1 |
Copy file name to clipboardexpand all lines: do_now_14.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -6,15 +6,15 @@
6
6
7
7
2. Log into your account and save the starter project.
8
8
9
-
3. Save your project as _Donow15_.
9
+
3. Save your project as _DoNow1.5_.
10
10
11
11
4. Press the space bar on your keyboard several times in a row. Notice what happens to the two bats on the screen.
12
12
13
-
>Hint: If a sprite moves completely off the Stage, you can bring the sprite back on the Stage by right-clicking its icon in the Sprite Corral and choosing `show`.
13
+
>Hint: If a sprite moves completely off the Stage, you can bring the sprite back on the Stage by right-clicking its icon in the sprite corral and choosing `show`.
14
14
15
15
5. Use your mouse to point the cursor at one of the bats. Then, click the mouse button several times. Notice what happens to the two bats on the screen.
16
16
17
-
6. Take a look at all of the parts of the window. Read the comments in the script. Be sure to explore the tabs at the top of the scripting area and the icons in the Sprite Corral.
17
+
6. Take a look at all of the parts of the window. Read the comments in the script. Be sure to explore the tabs at the top of the scripting area and the icons in the sprite corral.
18
18
19
19
> Hint: It may be helpful to activate "visual steps" with the footprint icon near the middle of the top tool bar.
Copy file name to clipboardexpand all lines: do_now_153.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
# Movement interaction
2
2
3
-
1. Open this [starter script](http://snap.berkeley.edu/snapsource/snap.html#present:Username=whuangpha&ProjectName=160201%20Do%20Now%20Bat%20and%20Dragon).
3
+
1. Open this [starter project](http://snap.berkeley.edu/snapsource/snap.html#present:Username=whuangpha&ProjectName=160201%20Do%20Now%20Bat%20and%20Dragon).
4
4
5
-
2. Save your project as _Donow153_.
5
+
2. Save your project as _DoNow1.5.3_.
6
6
7
-
3. Look at the bat's script and how events are triggered by two different keys. Trace through the scripts to understand how the it works.
7
+
3. Look at the bat's program and how events are triggered by two different keys. Trace through the scripts to understand how the it works.
8
8
9
9
4. Modify the script so that the bat flies to the Dragon when the space key is pressed once.
10
10
5. Add to the script to have the bat to say "BOO!" when it stops.
Open this [starter script](http://snap.berkeley.edu/snapsource/snap.html#present:Username=whuangpha&ProjectName=160205%20Do%20Now%20User%20Input), run the scrpt and test it, then answer these in your notebook.
3
+
Open this [starter project](http://snap.berkeley.edu/snapsource/snap.html#present:Username=whuangpha&ProjectName=160205%20Do%20Now%20User%20Input), run the scrpt and test it, then answer these in your notebook.
4
4
5
-
1. What is the **forever** block, and why is it important for this script?
6
-
2. What happens if you take it out temporarily, reattach the rest of the script to the **When Green Flag clicked** block, and run the script?
5
+
1. What is the **forever** block, and why is it important for this program?
6
+
2. What happens if you take it out temporarily, reattach the rest of the script to the **When Green Flag clicked** block, and run the program?
7
7
3. What does the **point direction 90** do to the sprite?
8
8
4. What would happen if you decrease or increase the number of steps?
9
9
5. Add scripting so that if the user presses the left arrow key, the sprite faces the left direction and moves a few steps in that direction. Test to make sure that this works and also that right arrow key still works.
Copy file name to clipboardexpand all lines: do_now_23.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,4 +7,4 @@
7
7
2. How would you use an additional **repeat** block to draw 12 squares in a line one next to each other. Each square will be to the right of the last square drawn.
8
8
9
9
3. How would you modify the script so the squares form a set of stairs going up?
Copy file name to clipboardexpand all lines: do_now_26.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
1. Open a new project and change the sprite's costume to a ball.
4
4
5
-
2. Save your project as _Donow26_
5
+
2. Save your project as _DoNow2.6_
6
6
7
7
3. Using the following blocks, write a script that continuously moves the ball across the screen and bounces the ball when it hits the edge of the screen.
Copy file name to clipboardexpand all lines: do_now_33.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# Jumping
2
2
3
-
1. Open this [starter script](http://snap.berkeley.edu/snapsource/snap.html#present:Username=whuangpha&ProjectName=160223%20Do%20Now%20dog%20walking%20and%20jumping) that can move left and right in response to arrow keys. Make the following modifications to the script:
3
+
1. Open this [starter project](http://snap.berkeley.edu/snapsource/snap.html#present:Username=whuangpha&ProjectName=160223%20Do%20Now%20dog%20walking%20and%20jumping) that can move left and right in response to arrow keys. Make the following modifications to the program:
4
4
5
-
2. Save your project as _Donow33_.
5
+
2. Save your project as _DoNow3.3_.
6
6
7
7
3. A walking animation for the dog. Hint: it has 2 costumes.
0 commit comments