-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
140 lines (116 loc) · 4.71 KB
/
index.html
File metadata and controls
140 lines (116 loc) · 4.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="Paul Logston">
<title>plog | Talks</title>
<!-- Bootstrap core CSS -->
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Custom styles for this template -->
<link href="css/carousel.css" rel="stylesheet">
</head>
<!-- NAVBAR ================================================== -->
<body>
<!-- Marketing messaging and featurettes
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<div class="container">
<h1>
A collection of talks by Paul Logston
</h1>
<!-- Three columns of text below the carousel -->
<div class="row">
<div class="col-lg-4">
<h2>So What's Next</h2>
<p>
What comes after Learn Python the Hard Way?
</p>
<p><a class="btn btn-default" href="http://logston.github.io/talks/2014-09-18_So_Whats_Next/build" role="button">View Talk »</a></p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-4">
<h2>Biology + Python: DNA Music</h2>
<p>
Materials for a Lightning talk on creating music from DNA sequences using Pygame.
</p>
<p><a class="btn btn-default" href="https://github.com/logston/talks/tree/gh-pages/2014-05-29_Biology%2BPython" role="button">View Materials »</a></p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-4">
<h2>Python for Intermediates</h2>
<p>
Materials for my intermediate Python talk.
</p>
<p><a class="btn btn-default" href="https://github.com/logston/talks/tree/gh-pages/2014-05-22_Python_for_Intermediates" role="button">View Materials »</a></p>
</div><!-- /.col-lg-4 -->
</div><!-- /.row -->
<div class="row">
<div class="col-lg-4">
<h2>Python for Beginners: Part 1</h2>
<p>
An introduction to Python based of an iteration of Barbara Shaurette's slides on the same topic.
</p>
<p>
<a class="btn btn-default" href="http://logston.github.io/PythonForBeginners" role="button">
View Talk »
</a>
</p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-4">
<h2>2014-09-27: Intermediate Python Tutorial</h2>
<p>
Materials for a tutorial on OOP and unit tests.
</p>
<p>
<a class="btn btn-default" href="https://github.com/logston/talks/tree/gh-pages/2014-09-27_intermediate_tutorial_on_python" role="button">
View Talk »
</a>
</p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-4">
<h2>Catzzz</h2>
<p>
A presentation on catzzz.
</p>
<p>
<a class="btn btn-default"
href="https://docs.google.com/presentation/d/1hC9c5yJnn_zuOKKmJjh9cChZRHFmLwjPD6nCxvBF15Q/edit?usp=sharing"
role="button">
View Talk »
</a>
</p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-4">
<h2>The Graph To My Heardunio</h2>
<p>
A presentation on the olimex-ekg-emg package
</p>
<p>
<a class="btn btn-default"
href="http://logston.github.io/talks/2015-08-15-Hearduino/build"
role="button">
View Talk »
</a>
</p>
</div><!-- /.col-lg-4 -->
</div><!-- /.row -->
<hr class="featurette-divider">
<!-- FOOTER -->
<footer>
<p class="pull-right"><a href="#">Back to top</a></p>
<p>© 2014 Paul Logston</p>
</footer>
</div><!-- /.container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</body>
</html>