forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
453 lines (385 loc) · 16.9 KB
/
index.html
File metadata and controls
453 lines (385 loc) · 16.9 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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
---
layout: default
---
<div class="jumbotron jumbotron-fluid">
<div class="container">
<div class="row">
<div class="col-sm-12 col-xl-8 offset-xl-0 text-sm-left m-t-6 m-b-1">
<h2 class="col_whiteText text_normalCase">A group of tech-forward nonprofits that collaborate to learn and improve. Let's do more good,
not reinvent wheels.</h2>
</div>
</div>
</div>
</div>
<a name="about"></a>
<div class="container">
<div class="row m-t-4 m-b-4">
<div class="col-sm-10 offset-sm-1">
<h2 class="col_brand2Text">About Us</h2>
<p>
Founded in 2011, CTOs for Good is an invitation-only group of technical leaders at nonprofits that deliver social impact primarily through
technology and digital strategy. We support each other in doing big things on lean budgets. We share best practices and lessons learned
around technology choices, managing technical teams, scaling social impact, and much more. We also have two sister groups: CMOs for Good
and COOs for Good.
</p>
</div>
</div>
</div>
<a name="members"></a>
<div class="container-fluid col_grayLighter">
<div class="container">
<div class="row">
<div class="col-xs-12 text-xs-center m-t-4 m-b-3">
<h2 class="col_brand1Text">Who We Are</h2>
</div>
</div>
<div class="row">
{% assign members = site.data.members | sort_natural: 'name' %}
{% for member in members %}
<div class="col-xs-6 col-md-4 text-xs-center p-3 m-t-1 m-b-1">
<div class="col_white">
{% if member.linkedin != null %}<a href="{{ member.linkedin }}" class="col_bodyText">{% endif %}
<p><img src="{{ member.photo }}" class="img-cover" /></p>
<p class="member-name">{{ member.name }}</p>
{% if member.linkedin != null %}
</a>{% endif %}
<div class="member-logo p-b-1">
<a href="{{ member.url }}"><img src="{{ member.logo }}" class="img-cover" alt="{{ member.organization }}" /></a>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="row m-t-3 m-b-3">
<div class="col-xs-12 text-xs-center m-t-2 m-b-3">
<a href="javascript:void(0);" onclick="toggleAlumni();" id="alumniButton" class="small">Show Alumni</a>
</div>
</div>
<div id="alumni" class="row alumni-grid" style="display: none;">
{% assign alumni = site.data.alumni | sort: 'name' %}
{% for alumn in alumni %}
<div class="col-xs-6 col-md-3 m-t-1 m-b-1 alumni-item">
<p>
{% if alumn.linkedin == null %}
<span class="member-name">
{% else %}
<a href="{{ alumn.linkedin }}" class="member-name">
{% endif %}
{{ alumn.name }}
{% if alumn.linkedin == null %}
</span>
{% else %}
</a>
{% endif %}
<br />
<a href="{{ alumn.url }}" class="col_brand2Text">{{ alumn.organization }}</a>
</p>
</div>
{% endfor %}
</div>
</div>
</div>
<script>
function toggleAlumni() {
if (document.getElementById("alumni") != null) {
if (document.getElementById("alumni").style.display == 'none') {
document.getElementById("alumni").style.display = 'grid';
document.getElementById("alumniButton").innerHTML = "Hide Alumni";
} else {
document.getElementById("alumni").style.display = 'none';
document.getElementById("alumniButton").innerHTML = "Show Alumni";
}
}
}
</script>
<!-- UNCONFERENCE -->
<a name="events"></a>
<div class="container">
<div class="row m-t-4 m-b-3">
<div class="col-sm-10 offset-sm-1">
<h2 class="col_brand2Text">Annual Unconference</h2>
<p>
CTOs for Good gathers once a year for a private, two-day unconference. This annual event allows us to come together in person to share
best practices, discuss common challenges, and learn from each other. We’re also joined by guest speakers from industry-leading companies
who share their wisdom with us. Many thanks to our generous sponsors and hosts who make these events possible.
</p>
</div>
</div>
<div class="row m-b-3">
<div class="col-sm-5 offset-sm-1">
<hr />
<h5>January 21-22, 2026</h5>
<p class="text_allCaps col_brand3Text text_500">San Francisco</p>
<h6>Hosted by</h6>
<a href="https://earthjustice.org/">Earthjustice</a>
<h6>Guest speakers</h6>
<a href="https://www.linkedin.com/in/selenadeckelmann/">Selena Deckelmann</a>, Wikimedia Foundation<br />
<a href="https://www.linkedin.com/in/bradhenrickson/">Brad Henrickson</a>, Change.org
<h6>Food and drinks sponsor</h6>
NY CTO Club, SF CTO Club, Earthjustice
</div>
<div class="col-sm-5">
<hr />
<h5>January 14-15, 2025</h5>
<p class="text_allCaps col_brand3Text text_500">New York City</p>
<h6>Hosted by</h6>
<a href="https://candid.org/">Candid</a>
<h6>Guest speakers</h6>
<a href="https://www.linkedin.com/in/catherine-miller-0177142/">Cat Miller</a>, Talkiatry<br />
<a href="https://www.linkedin.com/in/kwamethomison/">Kwame Thomison</a>, Alma
<h6>Food and drinks sponsor</h6>
NY CTO Club, SF CTO Club
</div>
</div>
<div class="row m-b-3">
<div class="col-sm-5 offset-sm-1">
<hr />
<h5>November 9-10, 2023</h5>
<p class="text_allCaps col_brand3Text text_500">San Francisco</p>
<h6>Hosted by</h6>
<a href="https://www.codeforamerica.org/">Code for America</a>
<h6>Guest speakers</h6>
<a href="https://www.linkedin.com/in/bhawnasingh/">Bhawna Singh</a>, Okta<br />
<a href="https://www.linkedin.com/in/sharon-mandell-juniper/">Sharon Mandell</a>, Juniper Networks
<h6>Food and drinks sponsor</h6>
NY CTO Club, SF CTO Club
</div>
<div class="col-sm-5">
<hr />
<h5>January 12-13, 2023</h5>
<p class="text_allCaps col_brand3Text text_500">New York City</p>
<h6>Hosted by</h6>
<a href="https://www.donorschoose.org/">DonorsChoose.org</a> and <a href="https://candid.org/">Candid</a>
<h6>Guest speakers</h6>
<a href="https://www.linkedin.com/in/ypasqua/">Yvette Pasqua</a>, EXOS<br />
<a href="https://www.linkedin.com/in/buritica/">Juan Pablo Buriticá</a>, Ritchie Bros<br />
<h6>Food and drinks sponsor</h6>
NY CTO Club, SF CTO Club
</div>
</div>
<div class="row m-b-3">
<div class="col-sm-5 offset-sm-1">
<hr />
<h5>October 1, 8, 15, 2021</h5>
<p class="text_allCaps col_brand3Text text_500">Virtual</p>
<h6>Guest speakers</h6>
<a href="https://www.linkedin.com/in/lisadusseault/">Lisa Dussealt</a>, Compaas<br />
<a href="https://www.linkedin.com/in/kwamethomison/">Kwame Thomison</a>, Teachers Pay Teachers<br />
<a href="https://www.linkedin.com/in/lisagelobter/">Lisa Gelobter</a>, tEQuitable
<h6>Food and drinks sponsor</h6>
<a href="https://www.pagerduty.com/industries/non-profit/"></a>PagerDuty</a>
</div>
<div class="col-sm-5">
<hr />
<h5>October 9, 16, 23, 2020</h5>
<p class="text_allCaps col_brand3Text text_500">Virtual</p>
<h6>Guest speakers</h6>
<a href="https://www.linkedin.com/in/lesliehm/">Leslie Miley</a>, Google<br />
<a href="https://www.linkedin.com/in/dr-kanika-bell-44251443/">Dr. Kanika Bell</a>, Clark Atlanta University
<h6>Food and drinks sponsor</h6>
<a href="https://www.pagerduty.com/industries/non-profit/"></a>PagerDuty</a>
</div>
</div>
<div class="row m-b-3">
<div class="col-sm-5 offset-sm-1">
<hr />
<h5>September 12-13, 2019</h5>
<p class="text_allCaps col_brand3Text text_500">New York City</p>
<h6>Hosted by</h6>
<a href="https://www.donorschoose.org/">DonorsChoose.org</a> and <a href="https://candid.org/">Candid</a>
<h6>Guest speakers</h6>
<a href="https://www.linkedin.com/in/mariabelousova/">Maria Belousova</a>, Grubhub<br />
<a href="https://www.linkedin.com/in/jonwill/">Jon Wiliams</a>, NY CTO Club
<h6>Food and drinks sponsor</h6>
NY CTO Club, SF CTO Club
</div>
<div class="col-sm-5">
<hr />
<h5>September 20-21, 2018</h5>
<p class="text_allCaps col_brand3Text text_500">San Francisco</p>
<h6>Hosted by</h6>
<a href="https://www.codeforamerica.org/">Code for America</a> and <a href="https://communityspace.withgoogle.com/">Google's Community Space</a>
<h6>Guest speakers</h6>
<a href="https://www.linkedin.com/in/nickcaldwell/">Nick Caldwell</a>, Looker<br />
<a href="https://www.linkedin.com/in/juliagrace/">Julia Grace</a>, Slack
<h6>Food and drinks sponsor</h6>
NY CTO Club, SF CTO Club, Google.org
</div>
</div>
<div class="row m-b-3">
<div class="col-sm-5 offset-sm-1">
<hr />
<h5>September 18-19, 2017</h5>
<p class="text_allCaps col_brand3Text text_500">New York City</p>
<h6>Hosted by</h6>
<a href="https://www.donorschoose.org/">DonorsChoose.org</a> and <a href="http://foundationcenter.org/">Foundation Center</a>
<h6>Guest speakers</h6>
<a href="https://www.linkedin.com/in/ypasqua/">Yvette Pasqua</a>, Meetup<br />
<a href="https://www.linkedin.com/in/igorshindel/">Igor Shindel</a>, AppNexus
<h6>Food and drinks sponsor</h6>
NY CTO Club
</div>
<div class="col-sm-5">
<hr />
<h5>September 29-30, 2016</h5>
<p class="text_allCaps col_brand3Text text_500">San Francisco</p>
<h6>Hosted by</h6>
<a href="https://www.plos.org/">PLOS</a> and <a href="https://www.kiva.org">Kiva</a></p>
<h6>Guest speakers</h6>
<a href="https://www.linkedin.com/in/hypatia">Leigh Honeywell</a>, Slack<br />
<a href="https://www.linkedin.com/in/randyshoup">Randy Shoup</a>, StitchFix
<h6>Food and drinks sponsor</h6>
NY CTO Club
</div>
</div>
<div class="row m-b-3">
<div class="col-sm-5 offset-sm-1">
<hr />
<h5>October 5-6, 2015</h5>
<p class="text_allCaps col_brand3Text text_500">New York City</p>
<h6>Hosted by</h6>
<a href="https://www.donorschoose.org/">DonorsChoose.org</a> and <a href="http://www.idealist.org/">Idealist</a>
<h6>Guest speakers</h6>
<a href="https://www.linkedin.com/in/minervatantoco">Minerva Tantoco</a>, City of New York<br />
<a href="https://www.linkedin.com/in/dblock">Daniel "dB" Doubrovkine</a>, Artsy
<h6>Food and drinks sponsor</h6>
NY CTO Club
</div>
<div class="col-sm-5">
<hr />
<h5>September 18-19, 2014</h5>
<p class="text_allCaps col_brand3Text text_500">San Francisco</p>
<h6>Hosted by</h6>
<a href="https://www.wikimedia.org/">Wikimedia</a> and <a href="https://www.kiva.org">Kiva</a>
<h6>Guest speaker</h6>
<a href="https://pantheon.io/team/matt-cheney">Matt Cheney</a>, Pantheon
<h6>Food and drinks sponsor</h6>
NY CTO Club
</div>
</div>
<div class="row m-b-3">
<div class="col-sm-5 offset-sm-1">
<hr />
<h5>September 23-24, 2013</h5>
<p class="text_allCaps col_brand3Text text_500">New York City</p>
<h6>Hosted by</h6>
<a href="https://www.donorschoose.org/">DonorsChoose.org</a> and <a href="http://www.dosomething.org/">DoSomething.org</a>
<h6>Guest speakers</h6>
<a href="https://www.linkedin.com/in/kellanem">Kellan Elliott-McCrea</a>, Etsy<br />
<a href="https://www.linkedin.com/in/stevejacobs1">Steve Jacobs</a>, Gilt
<h6>Food and drinks sponsor</h6>
NY CTO Club
</div>
<div class="col-sm-5">
<hr />
<h5>August 23-24, 2012</h5>
<p class="text_allCaps col_brand3Text text_500">New York City</p>
<h6>Hosted by</h6>
<a href="https://www.donorschoose.org/">DonorsChoose.org</a> and <a href="https://www.dosomething.org/">DoSomething.org</a>
<h6>Guest speakers</h6>
<a href="https://www.linkedin.com/in/lonbinder">Lon Binder</a>, Warby Parker<br />
<a href="https://www.linkedin.com/in/jslevineny">Joshua Levine</a>, E*TRADE
</div>
</div>
<div class="row m-b-3">
<div class="col-sm-5 offset-sm-1">
<hr />
<h5>February 22-23, 2011</h5>
<p class="text_allCaps col_brand3Text text_500">Miami</p>
<h6>Hosted and Sponsored by</h6>
Knight Foundation
</div>
</div>
<!-- Hangouts -->
<a name="hangouts"></a>
<div class="container-fluid col_grayLighter">
<div class="container m-b-4">
<div class="row">
<div class="col-xs-12 col-sm-10 offset-sm-1 m-t-4 m-b-2">
<h2 class="col_brand1Text">Hangouts</h2>
<p>
We host several video hangouts each year with guest speakers who are technical experts on topics of shared interest. Past hangouts
include:
</p>
</div>
</div>
<div class="row">
{% for hangout in site.data.hangouts %}
<div class="col-sm-8 offset-sm-2 m-b-1">
<h4 class="text_normalCase">{{ hangout.title }}</h4>
<p><a href="{{ hangout.linkedin }}" class="col_brand2Text text_500 text_allCaps">{{ hangout.name }}</a><span
class="col_brand1Text p-l-1"><em>{{ hangout.company }}</em></span>
</div>
{% endfor %}
</div>
</div>
</div>
<!-- EMAIL LIST -->
<a name="email"></a>
<div class="container-fluid col_brand1Darkest">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-10 offset-sm-1 m-t-5 m-b-5">
<h2 class="col_brand3Text">Email List</h2>
<p class="col_whiteText">
Our very active group email list enables our members to quickly and easily access the collective wisdom of the group. When members hit
a particularly troublesome technical issue or are grappling with a tricky management decision, they can reach out to the group for
advice and help. Often times another member has solved a similar problem and can offer insight or can connect them to someone in their
network who can help. This reduces the number of times we "reinvent the wheel" and helps us all scale our organizations more quickly.
</p>
</div>
</div>
</div>
</div>
<!-- CORE VALUES -->
<a name="values"></a>
<div class="container-fluid col_grayLighter">
<div class="container">
<div class="row">
<div class="col-sm-10 offset-sm-1 m-t-4 m-b-4">
<h2 class="col_brand1Text">Core Values for Diversity & Inclusion</h2>
<p>
We are committed to continuous improvement.<br />
We strive to treat others the way they'd like to be treated.<br />
We will fight the default of exclusion.<br />
We succeed together when we trust each other.<br />
We hold each other accountable.
</p>
<p class="m-t-3">
<a href="/core-values/" class="btn btn-secondary active text_allCaps" role="button">Learn more</a>
</p>
</div>
</div>
</div>
</div>
<!-- MEMBERSHIP -->
<a name="membership"></a>
<div class="container-fluid">
<div class="container">
<div class="row">
<div class="col-sm-10 offset-sm-1 m-t-4 m-b-4">
<h2 class="col_brand1Text">Membership</h2>
<p>
Membership to CTOs for Good is by invitation-only. We have voted to limit membership and to grow slowly to ensure that we keep it
intimate , build deep trust, and stay well within our <a href="https://en.wikipedia.org/wiki/Dunbar%27s_number"></a>Dunbar limit</a>.
</p>
</div>
</div>
</div>
</div>
<!-- SPONSORS -->
<a name="sponsors"></a>
<div class="container-fluid col_grayLighter">
<div class="container">
<div class="row">
<div class="col-xs-12 m-t-4 m-b-4 text-xs-center">
<p>
A big thanks to the NY CTO Club for sponsoring our annual unconferences since 2014!
</p>
<p class="m-t-3">
<a href="mailto:hello@ctosforgood.org" class="btn btn-secondary active text_allCaps" role="button">Apply to be a Sponsor</a>
</p>
</div>
</div>
</div>
</div>