-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
215 lines (189 loc) · 7.97 KB
/
index.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
---
layout: bootcamp
root: .
venue: Rockefeller University
address: 1230 York Ave, New York, NY 10065
country: United-States
humandate: June 24-25, 2014
humantime: 9:00 am - 4:45 pm
startdate: 2014-06-24
enddate: 2014-06-25
latlng: 40.76332, -73.955464
registration: restricted
instructor: ["Camille Avestruz","Tim Cerino","Dan Chen","Ivan Gonzalez"]
contact: [email protected]
ipythonnotebook: http://nbviewer.ipython.org/urls
raw: raw.github.com/swcarpentry/bc/gh-pages
---
<!--
Edit the values in the parameter block above to be appropriate for your bootcamp.
Please use three-letter month names for the 'humandate' field.
-->
<!--
This block includes the Eventbrite registration widget if 'eventbrite' has been set in the header.
-->
{% if page.eventbrite %}
<iframe src="http://www.eventbrite.com/tickets-external?eid={{page.eventbrite}}&ref=etckt" frameborder="0" width="100%" scrolling="auto"></iframe>
{% endif %}
<h2>General Information</h2>
<p>
<a href="http://software-carpentry.org">Software Carpentry</a>'s mission
is to help scientists and engineers become more productive
by teaching them basic lab skills for computing
like program design, version control, data management, and task automation.
This two-day hands-on bootcamp will cover basic concepts and tools;
participants will be encouraged to help one another
and to apply what they have learned to their own research problems.
</p>
<!-- This block displays the instructors' names if they are available. -->
{% if page.instructor %}
<p>
<strong>Instructors:</strong>
{{page.instructor | join: ', ' %}}
</p>
{% endif %}
<!--
Modify this block to reflect the target audience for your bootcamp.
In particular, if it is only open to people from a particular institution,
or if specialized prerequisite knowledge is required, please mention that.
-->
<p>
<strong>Who:</strong>
The course is aimed at high school students. Please feel free to
post questions in the <a href="https://etherpad.mozilla.org/GZlT3Lz8Ts">etherpad</a>
</p>
<!--
This block displays the address and links to a map showing directions.
-->
{% if page.latlng %}
<p>
<strong>Where:</strong>
{{ page.address }}.
Get directions with
<a href="http://www.openstreetmap.org/?mlat={{ page.latlng | replace:',','&mlon=' }}&zoom=16">OpenStreetMap</a>
or
<a href="http://maps.google.com/maps?q={{ page.latlng }}">Google Maps</a>.
</p>
{% endif %}
<!--
Modify the block below if there are any special requirements.
-->
<p>
<strong>Requirements:</strong>
Participants must bring a laptop with a few specific software packages installed
(listed below).
</p>
<!--
This block automatically inserts a contact email address if one has been specified for the page.
If one hasn't, this block inserts the generic contact address for Software Carpentry.
-->
<p>
<strong>Contact</strong>:
Please mail
{% if page.contact %}
<a href='mailto:{{page.contact}}'>{{page.contact}}</a>
{% else %}
<a href='mailto:{{site.contact}}'>{{site.contact}}</a>
{% endif %}
for more information.
</p>
<hr/>
<!--
Edit this block to show the syllabus and schedule for your bootcamp.
-->
<h2>Schedule</h2>
<table class="table table-striped">
<tr> <td>Tuesday</td> <td>08:30 - 9:30</td> <td>Help with set-up issues if you would like</td> </tr>
<tr><td></td> <td>09:30 - 10:45</td> <td>Introductions / The Unix shell (Camille)</td> </tr>
<tr> <td></td> <td>10:45 - 11:00</td> <td>Break</td> </tr>
<tr> <td></td> <td>11:00 - 12:15</td> <td>Python: Variables and Basic Control Flow (Camille)</td> </tr>
<tr> <td></td> <td>12:15 - 13:15</td> <td>Lunch</td> </tr>
<tr> <td></td> <td>13:15 - 14:30</td> <td>Python: Data Types (Dan)</td> </tr>
<tr> <td></td> <td>14:30 - 14:45</td> <td>Break</td> </tr>
<tr> <td></td> <td>14:45 - 16:00</td> <td>Python: Functions (Dan)</td> </tr>
<tr> <td>Wednesday</td> <td>09:30 - 10:45</td> <td>Python: File IO (Tim)</td> </tr>
<tr> <td></td> <td>10:45 - 11:00</td> <td>Break</td> </tr>
<tr> <td></td> <td>11:00 - 12:15</td> <td>Python: Scripts (Tim)</td> </tr>
<tr> <td></td> <td>12:15 - 13:15</td> <td>Lunch</td> </tr>
<tr> <td></td> <td>13:15 - 14:30</td> <td>Working with Git and Github tools (Ivan)</td> </tr>
<tr> <td></td> <td>14:30 - 14:45</td> <td>Break</td> </tr>
<tr> <td></td> <td>14:45 - 16:00</td> <td>More scripts and advanced python (Ivan)</td> </tr>
</table>
<hr/>
<!--
Edit the setup instructions in _includes/setup.html to reflect your bootcamp.
(In particular, most bootcamps teach either Python or R, not both.)
-->
<h2>Setup</h2>
<p>
To participate in a Software Carpentry bootcamp,
you will need working copies of the software described below.
Please make sure to install everything
(or at least to download the installers)
<em>before</em> the start of your bootcamp.
</p>
{% include setup.html %}
<h2>Topics</h2>
<div class="row-fluid">
<div class="span6">
<h3><a href="lessons/swc-shell/tutorial.html">The Unix
Shell</a></h3>
<ul>
<li>{% include guide-shell/intro/title.md %}</li>
<li>{% include guide-shell/filedir/title.md %}</li>
<li>{% include guide-shell/create/title.md %}</li>
<li>{% include guide-shell/pipefilter/title.md %}</li>
<li>{% include guide-shell/loop/title.md %}</li>
<li>{% include guide-shell/scripts/title.md %}</li>
<li>{% include guide-shell/find/title.md %}</li>
</ul>
</div>
<div class="span6">
<h3><a href="lessons/swc-git/tutorial.html">Version Control With
Git </a> <a href="https://github.com/swcarpentry/bc/blob/master/lessons/swc-git/tutorial.md">
(SWC master version)</a></h3>
<ul>
<li>A Better Backup</li>
<li>Branching</li>
<li>Merging</li>
<li>Collaborating</li>
</ul>
</div>
<div class="span6">
<h3>Python</h3>
<ul>
<li><a href="{{page.ipythonnotebook}}/{{page.raw}}/lessons/thw-python/vars-types/variables.ipynb">Variables
and Types</a></li>
<li><a href="{{page.ipythonnotebook}}/{{page.raw}}/lessons/thw-python/data-structures/data_structures.ipynb">Data
Structures</\
a></li>
<li><a href="{{page.ipythonnotebook}}/{{page.raw}}/lessons/thw-python/flow-control/python_flow_control.ipynb">Flow
Control</a>
<li><a href="./classfiles/Python intro.html"> Intro: ipython notebook - html </a>
<li><a href="./classfiles/Python intro.ipynb"> Intro: ipython notebook - notebook (editable) </a>
</li>
<li><a href="./classfiles/A_Loops_and_Functions/loops_and_functions.html"> Recap, Loops, and Functions - ipython notebook - html </a></li>
<li><a href="./classfiles/A_Loops_and_Functions/loops_and_functions.ipynb"> Recap, Loops, and Functions - ipython notebook - notebook (editable) </a>
</li>
<li><a href="./classfiles/B_File_Io/File_IO.html">Reading and Writing Files ipython notebook - html </a></li>
<li><a href="./classfiles/B_File_Io/File_IO.ipynb">Reading and Writing Files ipython notebook - notebook (editable) </a>
</li>
<li><a href="{{page.ipythonnotebook}}/{{page.raw}}/lessons/thw-python/strings-io/tutorial.ipynb">Strings
and File I/O</a></li>
<li><a href="{{page.ipythonnotebook}}/{{page.raw}}/lessons/thw-python/functions-and-modules/python_functions_and_modules.ipynb\
">Functions and Modules</a></li>
<li><a href="lessons/swc-setdict/tutorial.html">Sets and
Dictionaries</a></li>
</ul>
</div>
<h2>Reference Guides</h2>
<ul>
<li><a href="https://etherpad.mozilla.org/aSXDMHiJX2">The bootcamp
Etherpad</a>
<li><a href="{{page.root}}/lessons/ref/shell.html">The Unix
Shell</a></li>
<li><a href="{{page.root}}/lessons/ref/python.html">Python</a></li>
<li><a href="{{page.root}}/lessons/ref/sql.html">SQL</a></li>
<li><a href="http://knightlab.northwestern.edu/2014/03/13/googling-for-code-solutions-can-be-tricky-heres-how-to-get-started/">How
to Effectively Google for Help When Your Code Isn't Working</a></li>
</ul>