Skip to content

Commit fe133f0

Browse files
author
www-data
committed
Automated push from server made by Jared Broad
1 parent e0e476f commit fe133f0

File tree

1 file changed

+85
-5
lines changed

1 file changed

+85
-5
lines changed
Lines changed: 85 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,87 @@
11
<p>
2-
Task structure,
3-
bulleting out the concepts and tasks,
4-
translating to HTML and full tasks.
5-
6-
2+
Writing a bootcamp lesson starts by carefully writing out the complete code for the strategy, after this you can break it into tasks, and write small text summaries for each task with the documentation required to teach the reader how to complete the task.
73
</p>
4+
5+
<style>
6+
.arrow-steps {
7+
margin: 20px 0px;
8+
}
9+
.arrow-steps .step {
10+
font-size: 14px;
11+
text-align: center;
12+
color: #666;
13+
cursor: default;
14+
margin: 0 3px;
15+
padding: 6px 10px 6px 20px;
16+
min-width: 145px;
17+
float: left;
18+
position: relative;
19+
background-color: #d9e3f7;
20+
-webkit-user-select: none;
21+
-moz-user-select: none;
22+
-ms-user-select: none;
23+
user-select: none;
24+
}
25+
26+
.arrow-steps .step:after,
27+
.arrow-steps .step:before {
28+
content: " ";
29+
position: absolute;
30+
top: 0;
31+
right: -17px;
32+
width: 0;
33+
height: 0;
34+
border-top: 17px solid transparent;
35+
border-bottom: 17px solid transparent;
36+
border-left: 17px solid #d9e3f7;
37+
z-index: 2;
38+
}
39+
40+
.arrow-steps .step:before {
41+
right: auto;
42+
left: 0;
43+
border-left: 17px solid #fff;
44+
z-index: 0;
45+
}
46+
47+
.arrow-steps .step:first-child:before {
48+
border: none;
49+
}
50+
51+
.arrow-steps .step:first-child {
52+
border-top-left-radius: 4px;
53+
border-bottom-left-radius: 4px;
54+
}
55+
</style>
56+
<div class="arrow-steps clearfix">
57+
<div class="step"><span>Lesson Algorithm</span></div>
58+
<div class="step"><span>Task Guides</span></div>
59+
<div class="step"><span>Validators</span></div>
60+
<div class="step"><span>Hints, Solutions</span></div>
61+
<div class="step"><span>Submit</span></div>
62+
</div>
63+
64+
<h4>1. Write Lesson Algorithm</h4>
65+
<p>
66+
Writing a bootcamp lesson starts by carefully writing out the complete code for the strategy. This should be drafted as simply as possible to ensure each task the student needs to complete will only be 2-5 lines of code.
67+
<p>
68+
Readability is critical and the code should be well commented with descriptive variable names. Depending on the complexity of the algorithm sometimes its more readable to use string tickers instead of class variables.
69+
</p>
70+
<p>
71+
Carefully write code in a way which neatly separates the algorithm concepts as much as possible. Keep in mind the algorithm will be implemented in tasks by the student.
72+
</p>
73+
74+
<table style="table">
75+
<thead>
76+
<tr><th>x</th><th> dx</th></tr>
77+
</thead>
78+
<tbody>
79+
<tr><td>x</td></tr><tr><td>x</td></tr><tr><td>x</td></tr>
80+
</tbody>
81+
</table>
82+
83+
<ul style="border: 1px solid green">
84+
<li>Be Concise.</li>
85+
<li>Ensure Highly Readable.</li>
86+
<li>Keep Task Divisions in Mind.</li>
87+
</ul>

0 commit comments

Comments
 (0)