-
Notifications
You must be signed in to change notification settings - Fork 5
/
speakers.html
130 lines (110 loc) · 5.83 KB
/
speakers.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="Meetups: A place to put info about your local meetup. Anything node-flavored JS welcome!" />
<link rel="stylesheet" href="http://code.ionicframework.com/ionicons/1.4.1/css/ionicons.min.css" />
<link rel="stylesheet" href="/style/assets/css/ostrich-sans/stylesheet.css" />
<link rel="stylesheet" href="/style/assets/css/main.css" />
<title>KNODE</title>
</head>
<body id="speaker_page" class="">
<div id="hero" style="">
<nav>
<a class="nav-home" href="/">KNODE.IO</a>
<a class="nav-speakers" href="/speakers">Speakers</a>
<a class="nav-meetups" href="/meetups">Meetups</a>
<a class="nav-cfp" href="#">CFP</a>
<a href="http://nodemeatspace.com/">Events</a>
<a href="https://github.com/knode/questions/issues">Q & A</a>
</nav>
</div>
<div id="main_content_wrap" class="centered">
<div id="main_content" class="row">
<section>
<article>
<!-- This is where the listings go. They will be sorted in alphabetical order by city.-->
<!-- within each city directory, list the meetups in alphabetical order by group name-->
<section class="city">
<h3>Portland, OR</h3>
<div class="speaker">
<h4>
Justin Abrahms
<span class="social">
<a class="ion-social-twitter" href="https://twitter.com/@justinabrahms"></a>
<a class="ion-social-github" href="https://github.com/justinabrahms"></a>
</span>
<img class="avatar" src="https://pbs.twimg.com/profile_images/2838109127/2c54fb23975e845704a4b5232504798f.jpeg?s=200" />
</h4>
<p>Preferred audience size: any</p>
<p>Travel availability: if comp'd</p>
<div class="speaker-about">
<div><p>I'm Justin. I've been programming for many years. I'm
self-taught. I dig talking because it provides me an excuse to dig
deeper into a topic, as well as a method of share my findings with
others.</p>
<p>As for formats, I'm happy with a tour of code, if there's a
particular repo of mine that catches your eye, standard speaker +
slides or round table discussion things.</p>
<p>For topics, I'm into a bunch of stuff, including:</p>
<ul>
<li>static analysis</li>
<li>writing testable code</li>
<li>playing with irc bots</li>
<li>application structure and architecture</li>
<li>technical paper discussion</li>
<li>computer science (and education thereof)</li>
<li>tooling as a general concept</li>
</ul>
</div>
</div>
<a class="call-to-action inverse" href="#">more info <span class="ion-arrow-right-c"></span></a>
</div>
</section>
<!-- within each city directory, list the meetups in alphabetical order by group name-->
<section class="city">
<h3>San Francisco, CA</h3>
<div class="speaker">
<h4>
Forrest Norvell
<span class="social">
<a class="ion-social-twitter" href="https://twitter.com/@othiym23"></a>
<a class="ion-social-github" href="https://github.com/othiym23"></a>
</span>
<img class="avatar" src="https://0.gravatar.com/avatar/44c00253ab6c0e681820c82e9a2264d1?r=x&s=200" />
</h4>
<p>Preferred audience size: whatever</p>
<p>Travel availability: if comp'd</p>
<div class="speaker-about">
<div><p>I'm a Node engineer for New Relic who has contributed significantly to their
instrumentation for Node.js. I've been using Node professionally since 2011,
co-ran one of the session tracks at NodeConf 2013, and have contributed some
small pieces to Node core. My most significant public project aside from
<a href="https://github.com/newrelic/node-newrelic">node-newrelic</a> is probably
<a href="https://github.com/othiym23/node-continuation-local-storage">continuation-local storage</a>,
of which I am the primary maintainer. No server-side JavaScript is too gross
for me to be interested in.</p>
<p>Node is a great platform but it can be scary to get started with, and it can
continue to be scary to plumb its depths. I'm comfortable with Node's (and
JavaScript's) many idiosyncracies and awkward design tradeoffs and really enjoy
helping other people get more comfortable as well. Having done all of free-form
talks with questions, formal presentations, and hands-on workshops, I enjoy all
three, although I do better when there are frequent opportunities for
questions.</p>
</div>
</div>
<a class="call-to-action inverse" href="#">more info <span class="ion-arrow-right-c"></span></a>
</div>
</section>
</article>
</section>
</div>
</div>
<div id="footer_wrap" class="outer">
<footer class="inner">
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
</body>
</html>