-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule.html
154 lines (121 loc) · 5.72 KB
/
schedule.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="generator" content="pandoc">
<title> Software Development Basics Workshop Agenda </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="css/bootstrap/bootstrap.css" rel="stylesheet" />
<link href="css/bootstrap/bootstrap-responsive.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="css/swc.css" />
<!--link rel="stylesheet" type="text/css" href="{{page.root}}/css/swc-bootstrap.css" /-->
<link rel="alternate" type="application/rss+xml" title="The Software Sustainability Institute Blog" href="http://software.ac.uk/blog"/>
<style>
#schedule td{
border-collapse: collapse;
border-left: none;
border-right: none;
}
</style>
</head>
<body class="workshop">
<div class="container card">
<article>
<div class="row-fluid">
<div class="span10 offset1">
<h2>Introduction to Python, Version Control and Testing: Agenda</h2>
<p>The following agenda outlines what will be taught on the course. Additional notes on the teaching materials will be made available shortly after the course.
</p>
<table class="table table-striped" id="schedule" rules="none">
<tr>
<td border="0 !important" width="15%">09:15 - 09:30</td> <td width="85%"> <strong> Arrival (following Hans' welcome talk) </strong> </td>
</tr>
<tr>
<td border="0 !important" width="15%">09:30 - 09:50</td> <td width="85%"> <strong> Introduction </strong> </td>
</tr>
<tr>
<td border="0 !important" width="15%">09:50 - 11:00</td> <td width="85%" align="justify"> <strong> Building programs with Python </strong> <br/>
In this session, you'll learn good programming practices with an introduction to the fundamentals of Python, how to design and build programs more productively and the tools and techniques that you can adopt to produce better code.
The following topics will be covered: <br/>
<br/>
<ul>
<li>Basics - e.g. starting Python, using variables</li>
<li>Basic program control - loops and conditionals</li>
<li>Working with arrays</li>
<li>Creating and using functions</li>
<li>Using Python from the command line</li>
<li>Using libraries</li>
<li>Reading and plotting data</li>
<!--li-->
<!--a href="novice/ref/03-python.html">Reference... -->
<!--/a-->
<!--/li-->
</ul>
</td>
</tr>
<tr>
<td border="0 !important" width="15%">11:00 - 11:30</td> <td width="85%"> <strong> Coffee break </strong> <br/> </td>
</tr>
<tr>
<td border="0 !important" width="15%">11:30 - 13:00</td> <td width="85%" align="justify"> <strong> Version control with Git</strong> <br/>
This session will teach you how to track and manage changes within your code, how to collaborate with other developers through a shared code repository, and generally improve the reproducibility of your research.
The following topics will be covered: <br/>
<br/>
<ul>
<li>Creating and cloning repositories</li>
<li>Committing changes to files: <code>add</code>, <code>commit</code>, ...</li>
<li>Viewing changes: <code>status</code>, <code>diff</code>, ...</li>
<li>Working with remote repositories, e.g. through GitHub: <code>clone</code>, <code>pull</code>, <code>push</code>, ...</li>
<li>Resolving conflicts</li>
<!--li-->
<!--a-->
<!-- href="novice/ref/02-git.html">Reference...-->
<!-- /a-->
<!-- /li-->
</ul>
</td>
</tr>
<tr>
<td border="0 !important" width="15%">13:00 - 14:00</td> <td width="85%" align="justify"> <strong> Lunch </strong> <br/> </td>
</tr>
<tr>
<td border="0 !important" width="15%">14:00 - 15:30</td> <td width="85%" align="justify"> <strong> Writing robust code and unit testing</strong> <br/>
Does the code developed by you work the way it should do? Can you (or others) verify these assertions for themselves? And perhaps most importantly, to what extent are you confident of the accuracy of results that appear in publications?
This session will teach you techniques of developing robust code and good unit tests to improve the predictability of a change, make development more productive and produce code that works as expected and produces desired results.
The following topics will be covered: <br/>
<br/>
<ul>
<li>Introduction to Nose testing framework</li>
<li>Writing and executing unit tests</li>
<li>Defensive programming</li>
<li>Handling exceptions</li>
<li>Test-Driven development</li>
<!--li-->
<!--a-->
<!-- href="novice/python/05-defensive.html"-->
<!-- Reference... -->
<!--/a-->
<!--/li-->
</ul>
</td>
</tr>
<tr>
<td border="0 !important" width="15%">15:30 - 16:00</td> <td width="85%"> <strong> Coffee break </strong> <br/> </td>
</tr>
<tr>
<td border="0 !important" width="15%">16:00 - 17:00</td> <td width="85%"> <strong> Wrap-up and feedback </strong> <br/> </td>
</tr>
</table>
</div>
</div>
</article>
<div class="footer">
This work is derived from prior works that are Copyright © <a href="http://software-carpentry.org">Software Carpentry</a>
<a class="label swc-blue-bg" href="LICENSE.html">License</a>
<a class="label swc-blue-bg" href="https://github.com/softwaresaved/NGCMGSoton-2015-06-21">Source</a>
</div>
<!-- Javascript placed at the end of the document so the pages load faster. -->
<script src="{{site.swc_site}}/js/jquery-1.9.1.min.js"></script>
<script src="{{site.swc_site}}/js/bootstrap/bootstrap.min.js"></script>
</body>
</html>