-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
209 lines (146 loc) · 5.77 KB
/
index.html
File metadata and controls
209 lines (146 loc) · 5.77 KB
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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Bugs:</title>
<!-- Styles -->
<link rel="stylesheet" media="print" href="ribbon/css/print.css">
<link rel="stylesheet" media="screen, projection" href="ribbon/css/screen.css">
<!-- /Styles -->
</head>
<body class="list">
<!-- slide source: title.md -->
<section class="slide">
<div>
<header><h1>Bugs:</h1></header>
<section class="slide-content"><h2>Can't code without them, so code against them!</h2>
<p><a href="http://durden.github.com/defensive_coding">http://durden.github.com/defensive_coding</a></p>
</section>
<div class="presenter_notes">
<section>
</section>
</div>
</div>
</section>
<!-- slide source: about.md -->
<section class="slide">
<div>
<header><h1>Luke Lee</h1></header>
<section class="slide-content"><ul>
<li>Software Engineer at <a href="http://www.blueback-reservoir.com/">Blueback Reservoir</a></li>
<li>Scientific computing/data mining apps</li>
</ul>
</section>
<div class="presenter_notes">
<section>
<ul>
<li>Writing oil/gas software with Geophysists, mathematicians, geologists</li>
<li>Embedded C Developer with SSDs</li>
<li>Explain what tools I've learned to start becoming a productive Python
developer in the energy business.</li>
</ul>
</section>
</div>
</div>
</section>
<!-- slide source: truth.md -->
<section class="slide">
<div>
<header><h1>A story</h1></header>
<section class="slide-content"><p><img src="images/happy_corgi.gif"/></p></section>
<div class="presenter_notes">
<section>
</section>
</div>
</div>
</section>
<!-- slide source: defensive_style.md -->
<section class="slide">
<div>
<header><h1>Defensive coding</h1></header>
<div class="presenter_notes">
<section>
</section>
</div>
</div>
</section>
<!-- slide source: guidelines.md -->
<section class="slide">
<div>
<header><h1>Guidelines</h1></header>
<div class="presenter_notes">
<section>
</section>
</div>
</div>
</section>
<!-- slide source: python_tools.md -->
<section class="slide">
<div>
<header><h1>Python Tools</h1></header>
<div class="presenter_notes">
<section>
</section>
</div>
</div>
</section>
<!-- slide source: example.md -->
<section class="slide">
<div>
<header><h1>Example bugs</h1></header>
<div class="presenter_notes">
<section>
</section>
</div>
</div>
</section>
<!-- slide source: asserts.md -->
<section class="slide">
<div>
<header><h1>Asserts</h1></header>
<div class="presenter_notes">
<section>
</section>
</div>
</div>
</section>
<!-- slide source: logging.md -->
<section class="slide">
<div>
<header><h1>Logging</h1></header>
<div class="presenter_notes">
<section>
</section>
</div>
</div>
</section>
<!-- slide source: unit_tests.md -->
<section class="slide">
<div>
<header><h1>Unit Tests</h1></header>
<div class="presenter_notes">
<section>
</section>
</div>
</div>
</section>
<!-- slide source: links.md -->
<section class="slide">
<div>
<header><h1>Links</h1></header>
<div class="presenter_notes">
<section>
</section>
</div>
</div>
</section>
<!--
To hide progress bar from entire presentation
just remove “progress” element.
-->
<div class="progress"><div></div></div>
<script src="ribbon/js/script.js"></script>
<!-- Copyright © 2010–2012 Vadim Makeev — pepelsbey.net -->
</body>
</html>