Skip to content

Commit 9b00137

Browse files
committed
Build .pdf
1 parent dcdfe38 commit 9b00137

File tree

105 files changed

+3861
-49
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+3861
-49
lines changed

docs/README.md.html

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<meta charset="utf-8"><link rel="stylesheet" media="screen" href="https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/styles/curriculum.css">
2+
**TEALS Program**
3+
<a href="https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/">Home</a> |
4+
<a href="https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/curriculum_map.md.html">Curriculum Map</a> |
5+
<a href="https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html">Additional Readings</a> |
6+
<a href="https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/changelog.md.html">Change Log</a>
7+
8+
9+
# A 2nd semester follow-up to the [TEALS Intro CS course](https://tealsk12.gitbook.io/intro-cs/)
10+
11+
* GitHub: https://github.com/TEALSK12/2nd-semester-introduction-to-computer-science
12+
* GitBook: https://tealsk12.gitbooks.io/2nd-semester-introduction-to-computer-science/content/
13+
14+
## About this curriculum
15+
16+
Welcome to the TEALS Intro to Computer Science Second Semester Curriculum. This curriculum is intended for use by TEALS classrooms teaching Introduction to Computer Science in a yearlong format. We expect that students have completed the content from the [1st semester course](https://tealsk12.gitbook.io/intro-cs/) prior to this curriculum.
17+
18+
## Associated Readings
19+
20+
We have included with this curriculum Associated Readings to dive deeper into topics specific to the instruction of this course. These readings have been adapted from "Think Python: How to Think Like a Computer Scientist" by. Allen B. Downey. ([HTML Version](http://greenteapress.com/thinkpython/html/index.html))([PDF Version](http://www.greenteapress.com/thinkpython/thinkpython.pdf)).They are specifically referenced in the lesson plans and the [full document](readings.md.html) is included.
21+
22+
## Curriculum Orientation
23+
24+
Check out this 1-hour [Orientation to the Curriculum video](https://www.youtube.com/watch?v=UHgA_7x6-Qo)
25+
26+
## Python Versions (2 vs 3)
27+
28+
Python is an evolving language. Python 3 is a major upgrade to the language, released in 2010. There is a lot of existing software written under Python 2 and there is resistance to upgrading to Python 3 due to code breakage and cost. Just as a car part from a 10 year old model car will probably not fit a new model of the same car, Python 2 code probably would not run in a Python 3 environment. In Python 3 there are new features, significant upgrades "underneath" which makes the code run better and/or faster as well as no longer supporting (deprecating) some Python 2 capabilities. When looking at Python code, be careful to note whether it is Python 2 or Python 3.
29+
30+
### This class will use Python 3
31+
32+
For those knowledgeable with Python 2, the following is a list of differences from Python 3 relevant to the 2nd semester intro course.
33+
34+
| | Python 2 | Python 3 |
35+
| ------ | ---------- | --- |
36+
| Printing to console | print 3.14 | print (3.14) |
37+
| User input | raw_input()/input() | input () |
38+
| Integer arithmetic | 3/2 evaluates to 1 | 3/2 evaluates to 1.5 |
39+
| Not equal to | <> | != |
40+
41+
### IDE Selection
42+
43+
As with all software services, it is the school's sole decision to use the tool according to the use terms and privacy policies provided by its licensor and it is the school's responsibility to ensure the tool meets it's IT policies.
44+
45+
## Curriculum Issues
46+
47+
Please open an issue in GitHub if you encounter factual, spelling, or grammatical errors, sequencing problems (topics needed before they are taught), or incomplete/missing materials.
48+
49+
## Giving feedback on the curriculum
50+
51+
TEALS intends for this curriculum to be a starting point for teachers. We'll continue to evolve, adapt the curriculum and associated materials. To participate in this process, we invite TEALS volunteers and classroom teachers using this curriculum to submit edits and suggestions via the [TEALS discussion forum](http://forums.tealsk12.org/) or in this [GitHub repository](https://github.com/TEALSK12/2nd-semester-introduction-to-computer-science). If you'd like to suggest changes or additions to the curriculum, please submit a GitHub Pull Request containing your changes. As a best practice, each pull request should contain a singular atomic change.
52+
53+
## Printing GitBook
54+
55+
The 2nd Semester Introduction to Computer Science GitBook can be printed by navigating to https://aka.ms/TEALS2ndSemesterPDF.
56+
57+
## Creative Commons Attribution Non-Commercial Share-alike License
58+
59+
[This curriculum is licensed under the Creative Commons Attribution Non-Commercial Share-alike License](http://creativecommons.org/licenses/by-nc-sa/4.0/), which means you may share and adapt this material for non-commercial uses as long as you attribute its original source, and retain these same licensing terms.
60+
61+
<!-- Markdeep: --><style class="fallback">body{visibility:hidden;white-space:pre;font-family:monospace}</style><script src="https://casual-effects.com/markdeep/latest/markdeep.min.js"></script><script>window.alreadyProcessedMarkdeep||(document.body.style.visibility="visible")</script>
+7-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
<!-- Markdeep: tocstype set to "none" --><style class="fallback">body{visibility:hidden;white-space:pre;font-family:monospace}</style><script src="..\markdeep-tocstyle-none.min.js"></script><script src="..\..\markdeep-tocstyle-none.min.js"></script><script>window.alreadyProcessedMarkdeep||(document.body.style.visibility="visible")</script>
1+
<!-- Markdeep: tocstype set to "none" -->
2+
<style class="fallback">body{visibility:hidden;white-space:pre;font-family:monospace}</style>
3+
<script src=".\markdeep-tocstyle-none.min.js"></script>
4+
<script src=".\..\markdeep-tocstyle-none.min.js"></script>
5+
<script src=".\..\..\markdeep-tocstyle-none.min.js"></script>
6+
<script src=".\..\..\..\markdeep-tocstyle-none.min.js"></script>
7+
<script>window.alreadyProcessedMarkdeep||(document.body.style.visibility="visible")</script>

docs/markdeep-tocstyle-none.min.js

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/md-to-markdeep.cmd

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
@REM -- This file is no longer in use to convert curiculum to Markdeep. Changes need to be made directly in /docs/ folder.
2+
13
@echo off & setlocal
24
echo %time%
35

4-
robocopy /mir .\ .\docs
6+
robocopy /E .\ .\docs /XD %CD%\docs
57
cd .\docs
68

79
@REM -- Remove unnecessary files that are copied
@@ -52,7 +54,7 @@ for /r . %%f in (*.md) do (
5254

5355
)
5456

55-
rename README.md.html index.html
57+
COPY /Y README.md.html index.html
5658
@REM pandoc --pdf-engine=xelatex -V geometry:margin=2cm -V colorlinks -V urlcolor=NavyBlue "summary.md" -o "summary.pdf"
5759

5860
echo %time%

docs/md-to-pdf.cmd

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
@REM echo off & setlocal
2+
@REM md-to-pdf.cmd 1> out.txt 2>&1
3+
echo %time%
4+
5+
@REM software needed to build GitHub pages and .pdf
6+
@REM sed http://gnuwin32.sourceforge.net/packages/sed.htm
7+
@REM headless chrome https://www.google.com/chrome/
8+
@REM pdftk https://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/
9+
10+
@REM usage to capture output and errors: md-tomarkdeep > out.txt 2>&1
11+
12+
@REM -- Set up the GitHub pages directory structure by copying curriculum content.
13+
robocopy /E .\ .\docs /XD %CD%\docs
14+
15+
@REM -- Move to docs directory
16+
cd .\docs
17+
set sed="C:\Program Files (x86)\GnuWin32\bin\sed"
18+
set edge="C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Microsoft Edge.lnk"
19+
20+
@REM -- Convert files in each unit
21+
22+
for /r . %%f in (*.md) do (
23+
@echo %%f
24+
25+
@REM -- Create .pdf version of markdown files with no toc
26+
type >"%%f-pdf.html" .\markdeep-header.txt
27+
%sed% >>"%%f-pdf.html" "s/\.md/.md.-pdf.html/g" "%%f"
28+
type >>"%%f-pdf.html" .\markdeep-footer-tocstyle-none.txt
29+
30+
@REM --no-margins does not work, had to edit the javascript
31+
@REM %chrome% --headless --print-to-pdf="%%~pf%%~nf.pdf" --no-margins "%%f-pdf.html"
32+
%edge% --headless --print-to-pdf="%%~pf%%~nf.pdf" --no-margins "%%f-pdf.html"
33+
del "%%f-pdf.html"
34+
35+
@REM -- remove original .md file
36+
del "%%f"
37+
38+
)
39+
40+
pdftk README.pdf curriculum_map.pdf units/1_unit/unit_1.pdf units/1_unit/01_lesson/lesson.pdf units/1_unit/02_lesson/lesson.pdf units/1_unit/02_lesson/lab.pdf units/1_unit/03_lesson/lesson.pdf units/1_unit/03_lesson/do_now.pdf ^
41+
units/1_unit/03_lesson/lab.pdf units/1_unit/04_lesson/lesson.pdf units/1_unit/04_lesson/do_now.pdf units/1_unit/04_lesson/lab.pdf units/1_unit/05_lesson/lesson.pdf units/1_unit/06_lesson/lesson.pdf ^
42+
units/1_unit/06_lesson/project.pdf units/1_unit/06_lesson/alternate_project.pdf units/2_unit/unit2_md.pdf units/2_unit/01_lesson/lesson.pdf units/2_unit/01_lesson/do_now.pdf units/2_unit/01_lesson/lab.pdf ^
43+
units/2_unit/02_lesson/lesson.pdf units/2_unit/02_lesson/do_now.pdf units/2_unit/02_lesson/lab.pdf units/2_unit/03_lesson/lesson.pdf units/2_unit/03_lesson/do_now.pdf units/2_unit/03_lesson/lab.pdf ^
44+
units/2_unit/04_lesson/lesson.pdf units/2_unit/04_lesson/do_now.pdf units/2_unit/04_lesson/lab.pdf units/2_unit/05_lesson/lesson.pdf units/2_unit/05_lesson/do_now.pdf units/2_unit/05_lesson/lab.pdf ^
45+
units/2_unit/06_lesson/lesson.pdf units/2_unit/06_lesson/do_now.pdf units/2_unit/06_lesson/lab.pdf units/2_unit/07_lesson/lesson.pdf units/2_unit/07_lesson/project.pdf units/2_unit/07_lesson/alternate_project.pdf ^
46+
units/3_unit/unit_3.pdf units/3_unit/01_lesson/lesson.pdf units/3_unit/01_lesson/do_now.pdf units/3_unit/01_lesson/lab.pdf units/3_unit/02_lesson/lesson.pdf units/3_unit/02_lesson/do_now.pdf ^
47+
units/3_unit/02_lesson/lab.pdf units/3_unit/03_lesson/lesson.pdf units/3_unit/03_lesson/do_now.pdf units/3_unit/03_lesson/lab.pdf units/3_unit/04_lesson/lesson.pdf units/3_unit/04_lesson/do_now.pdf ^
48+
units/3_unit/04_lesson/lab.pdf units/3_unit/05_lesson/lesson.pdf units/3_unit/05_lesson/project.pdf units/3_unit/05_lesson/alternate_project.pdf units/4_unit/unit4.pdf units/4_unit/01_lesson/lesson.pdf ^
49+
units/4_unit/01_lesson/do_now.pdf units/4_unit/01_lesson/lab.pdf units/4_unit/02_lesson/lesson.pdf units/4_unit/02_lesson/do_now.pdf units/4_unit/02_lesson/lab.pdf units/4_unit/03_lesson/lesson.pdf ^
50+
units/4_unit/03_lesson/do_now.pdf units/4_unit/03_lesson/lab.pdf units/4_unit/04_lesson/lesson.pdf units/4_unit/04_lesson/do_now.pdf units/4_unit/04_lesson/lab.pdf units/4_unit/05_lesson/lesson.pdf ^
51+
units/4_unit/05_lesson/lab.pdf units/4_unit/06_lesson/lesson.pdf units/4_unit/06_lesson/project.pdf units/4_unit/06_lesson/alternate_project.pdf units/5_unit/unit5.pdf units/5_unit/01_lesson/lesson.pdf ^
52+
units/5_unit/01_lesson/do_now.pdf units/5_unit/01_lesson/lab.pdf units/5_unit/02_lesson/lesson.pdf units/5_unit/02_lesson/do_now.pdf units/5_unit/02_lesson/lab.pdf units/5_unit/03_lesson/lesson.pdf ^
53+
units/5_unit/03_lesson/do_now.pdf units/5_unit/03_lesson/lab.pdf units/5_unit/04_lesson/lesson.pdf units/5_unit/04_lesson/do_now.pdf units/5_unit/04_lesson/lab.pdf units/5_unit/05_lesson/lesson.pdf ^
54+
units/5_unit/05_lesson/do_now.pdf units/5_unit/05_lesson/project.pdf units/6_unit/unit6.pdf units/6_unit/01_lesson/lesson.pdf units/6_unit/01_lesson/do_now.pdf units/6_unit/01_lesson/lab.pdf units/6_unit/02_lesson/lesson.pdf ^
55+
units/6_unit/02_lesson/do_now.pdf units/6_unit/02_lesson/lab.pdf units/6_unit/03_lesson/lesson.pdf units/6_unit/03_lesson/do_now.pdf units/6_unit/03_lesson/lab.pdf units/6_unit/04_lesson/lesson.pdf ^
56+
units/6_unit/04_lesson/do_now.pdf units/6_unit/04_lesson/lab.pdf units/6_unit/05_lesson/lesson.pdf units/6_unit/05_lesson/do_now.pdf units/6_unit/05_lesson/projectb.pdf units/6_unit/05_lesson/project.pdf ^
57+
units/7_unit/unit7.pdf units/7_unit/01_lesson/lesson.pdf units/7_unit/01_lesson/do_now.pdf units/7_unit/01_lesson/example.pdf units/7_unit/01_lesson/lab.pdf units/7_unit/02_lesson/lesson.pdf ^
58+
units/7_unit/02_lesson/do_now.pdf units/7_unit/02_lesson/lab.pdf units/7_unit/03_lesson/lesson.pdf units/7_unit/03_lesson/do_now.pdf units/7_unit/03_lesson/lab.pdf units/7_unit/04_lesson/lesson.pdf ^
59+
units/7_unit/04_lesson/do_now.pdf units/7_unit/04_lesson/lab.pdf units/7_unit/05_lesson/lesson.pdf units/7_unit/05_lesson/project.pdf units/7_unit/05_lesson/alternate_project.pdf units/8_unit/unit8.pdf ^
60+
units/8_unit/project.pdf units/8_unit/01_lesson/lesson.pdf units/8_unit/01_lesson/do_now.pdf units/8_unit/02_lesson/lesson.pdf units/8_unit/02_lesson/do_now.pdf units/8_unit/03_lesson/lesson.pdf ^
61+
units/8_unit/03_lesson/do_now.pdf units/8_unit/04_lesson/lesson.pdf units/8_unit/04_lesson/do_now.pdf units/supplemental/01_lesson/lesson.pdf units/supplemental/01_lesson/do_now.pdf ^
62+
readings.pdf cat output 2ndSemPython.pdf
63+
64+
@REM delete all temporary .pdf files
65+
move /Y 2ndSemPython.pdf 2ndSemPython.save
66+
del /s *.pdf
67+
move /Y 2ndSemPython.save 2ndSemPython.pdf
68+
69+
cd ..
70+
71+
echo %time%
72+
73+
Exit /B
74+

docs/out6.txt

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
2+
C:\Users\kencha\Documents\GitHub\2nd-semester-introduction-to-computer-science>echo 10:32:23.20
3+
10:32:23.20
4+
5+
C:\Users\kencha\Documents\GitHub\2nd-semester-introduction-to-computer-science>robocopy /E .\ .\docs /XD C:\Users\kencha\Documents\GitHub\2nd-semester-introduction-to-computer-science\docs
6+
7+
-------------------------------------------------------------------------------
8+
ROBOCOPY :: Robust File Copy for Windows
9+
-------------------------------------------------------------------------------
10+
11+
Started : Tuesday, July 28, 2020 10:32:23 AM
12+
Source : C:\Users\kencha\Documents\GitHub\2nd-semester-introduction-to-computer-science\
13+
Dest : C:\Users\kencha\Documents\GitHub\2nd-semester-introduction-to-computer-science\docs\
14+
15+
Files : *.*
16+
17+
Exc Dirs : C:\Users\kencha\Documents\GitHub\2nd-semester-introduction-to-computer-science\docs
18+
19+
Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30
20+
21+
------------------------------------------------------------------------------
22+
23+
16 C:\Users\kencha\Documents\GitHub\2nd-semester-introduction-to-computer-science\
24+
*EXTRA File 10.3 m 2ndSemPython.pdf
25+
*EXTRA File 4858 cert.md-pdf.html
26+
*EXTRA File 4588 cert.md.html
27+
*EXTRA File 270748 cert.pdf
28+
*EXTRA File 3987 changelog.md-pdf.html
29+
*EXTRA File 3697 changelog.md.html
30+
*EXTRA File 83240 changelog.pdf
31+
*EXTRA File 22289 curriculum_map.md-pdf.html
32+
*EXTRA File 21641 curriculum_map.md.html
33+
*EXTRA File 159316 curriculum_map.pdf
34+
*EXTRA File 5056 index.html
35+
*EXTRA File 87638 readings.md-pdf.html
36+
*EXTRA File 84814 readings.md.html
37+
*EXTRA File 333644 readings.pdf
38+
*EXTRA File 5297 README.md-pdf.html
39+
*EXTRA File 5054 README.md.html
40+
*EXTRA File 98217 README.pdf
41+
*EXTRA File 4905 Sample_weighted_rubric.md-pdf.html
42+
*EXTRA File 4661 Sample_weighted_rubric.md.html
43+
*EXTRA File 90866 Sample_weighted_rubric.pdf
44+
*EXTRA File 10955 SUMMARY.md-pdf.html
45+
*EXTRA File 9926 SUMMARY.md.html
46+
*EXTRA File 122038 SUMMARY.pdf
47+
New File 3723 cert.md 0% 100%
48+
New File 2842 changelog.md 0% 100%
49+
New File 20624 curriculum_map.md 0% 100%
50+
Newer 6041 md-to-pdf.cmd 0% 100%
51+
New File 0 out6.txt

docs/units/1_unit/02_lesson/lab.pdf

-82.6 KB
Binary file not shown.

docs/units/1_unit/02_lesson/lesson.md.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
## Materials/Preparation
2020

2121
* [Lab - Using the Interpreter][] ([printable lab document][]) ([editable lab document][])
22-
* [Associated Reading - section 1.1](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html#associatedreadings/1.1)
22+
* [Associated Reading - section 1.1](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html.html#associatedreadings/1.1)
2323
* Ensure all students are able to log into the system
2424
* Go through the lab so that you are familiar with the requirements/results and can assist students
2525

docs/units/1_unit/03_lesson/lab.pdf

-254 KB
Binary file not shown.

docs/units/1_unit/03_lesson/lesson.md.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
* [Do Now][]
2424
* [Lab - Printing & Variables][] ([printable lab document][]) ([editable lab document][])
25-
* [Associated Reading - section 1.2](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html#associatedreadings/1.2)
25+
* [Associated Reading - section 1.2](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html.html#associatedreadings/1.2)
2626
* Read through the Do Now, Lab, and Lesson so that you are familiar with the requirements and can assist students.
2727

2828
## Pacing Guide

docs/units/1_unit/04_lesson/lab.pdf

-150 KB
Binary file not shown.

docs/units/1_unit/04_lesson/lesson.md.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
* [Do Now][]
2222
* [Lab - Magic Genie][] ([printable lab document][]) ([editable lab document][])
23-
* [Associated Readings 1.3](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html#associatedreadings/1.3)
23+
* [Associated Readings 1.3](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html.html#associatedreadings/1.3)
2424
* Read through the Do Now, Lab, and lesson so that you are familiar with the requirements and can assist students
2525

2626

@@ -61,7 +61,7 @@
6161

6262
* Display on the screen:
6363

64-
<img src="snap_input.png" alt-text="Snap Input" width="500px" />
64+
![Snap Input](snap_input.png)
6565

6666
1. Ask students what things from Python they will need to create this program.
6767
2. Ask students to take 3 minutes to convert this to Python.
Binary file not shown.

docs/units/1_unit/05_lesson/lesson.md.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
## Materials/Preparation
2020

2121
* Download quiz and Answer key(access protected resources by clicking on "Additional Curriculum Materials" on the [TEALS Dashboard][])
22-
* [Associated Readings 1.3](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html#associatedreadings/1.3)
22+
* [Associated Readings 1.3](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html.html#associatedreadings/1.3)
2323
* Take the quiz
2424
* After taking the quiz yourself, take a look at the answer key provided in the additional curriculum materials.
2525
* Create a scoring rubric
Binary file not shown.
-201 KB
Binary file not shown.
-81.4 KB
Binary file not shown.

docs/units/1_unit/Cloud9_Student.pdf

-2.05 MB
Binary file not shown.

docs/units/1_unit/Trinket_Student.pdf

-787 KB
Binary file not shown.

docs/units/1_unit/Trinket_Teacher.pdf

-538 KB
Binary file not shown.

docs/units/1_unit/replit_student.pdf

-242 KB
Binary file not shown.

docs/units/1_unit/replit_teacher.pdf

-509 KB
Binary file not shown.

docs/units/2_unit/01_lesson/lab.pdf

-78.2 KB
Binary file not shown.

docs/units/2_unit/01_lesson/lesson.md.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
* [Do Now][]
2222
* [Lab - Casting][] ([printable lab document][]) ([editable lab document][])
23-
* [Associated Readings 2.1](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html#associatedreadings/2.1)
23+
* [Associated Readings 2.1](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html.html#associatedreadings/2.1)
2424
* Read through the do now, lesson, and lab so that you are familiar with the requirements and can assist students
2525

2626
## Pacing Guide

docs/units/2_unit/02_lesson/lab.pdf

-89.5 KB
Binary file not shown.

docs/units/2_unit/02_lesson/lesson.md.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
* [Do Now][]
2222
* [Lab - Can I or Can't I?][] ([printable lab document][]) ([editable lab document][])
23-
* [Associated Readings 2.2](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html#associatedreadings/2.2)
23+
* [Associated Readings 2.2](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html.html#associatedreadings/2.2)
2424
* Read through the do now, lesson, and lab so that you are familiar with the requirements and can assist students.
2525

2626
## Pacing Guide

docs/units/2_unit/03_lesson/lab.pdf

-419 KB
Binary file not shown.

docs/units/2_unit/03_lesson/lesson.md.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* [Do Now][]
2222
* [Lab - Game Show][] ([printable lab document][]) ([editable lab document][])
2323
* Solution (access protected resources by clicking on "Additional Curriculum Materials" on the [TEALS Dashboard][])
24-
* [Associated Readings 2.3](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html#associatedreadings/2.3)
24+
* [Associated Readings 2.3](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html.html#associatedreadings/2.3)
2525
* Read through the do now, lesson, and lab so that you are familiar with the requirements and can assist students
2626

2727
## Pacing Guide

docs/units/2_unit/04_lesson/lab.pdf

-65.4 KB
Binary file not shown.

docs/units/2_unit/04_lesson/lesson.md.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* [Do Now][]
2323
* [Lab - College Chooser][] ([printable lab document][]) ([editable lab document][])
2424
* Solution (access protected resources by clicking on "Additional Curriculum Materials" on the [TEALS Dashboard][])
25-
* [Associated Readings 2.4](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html#associatedreadings/2.4)
25+
* [Associated Readings 2.4](https://tealsk12.github.io/2nd-semester-introduction-to-computer-science/readings.md.html.html#associatedreadings/2.4)
2626
* Read through the do now, lesson, and lab so that you are familiar with the requirements and can assist students
2727

2828
## Pacing Guide

docs/units/2_unit/05_lesson/lab.pdf

-89.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)