-
Notifications
You must be signed in to change notification settings - Fork 0
/
team_archive.html
5264 lines (1120 loc) · 206 KB
/
team_archive.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
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>The GovLab | Team</title>
<meta content="The GovLab | Team" property="og:title"/>
<meta content="Deepening our understanding of how to govern
more effectively and legitimately through technology." property="og:description">
<meta property="og:type" content="website" />
<meta property="og:image" content="http://www.thegovlab.org/static/img/thegovlab-og.png" />
<meta content="The GovLab" property="og:site_name">
<script src="https://use.typekit.net/zez3buj.js"></script>
<script>try{Typekit.load();}catch(e){}</script>
<link href="static/img/favicon-transparent.png" rel="shortcut icon">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="static/vendor/normalize.css">
<link rel="stylesheet" href="static/vendor/slick.css">
<link rel="stylesheet" href="static/styles/styles.css">
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-40012093-4', 'auto');
ga('send', 'pageview');
</script>
<script type="text/javascript">
//this code loads the lighthouse widget. Additional config parameters to edit available on https://support.helpdocs.io/article/ykv7l5jthy-lighthouse-widget-api
window.hdlh = {
widget_key: "8bi8g1ygumkphadqnumx",
primary_color: '#C1D37F',
logo: 'https://newjersey.github.io/cv/img/fas_logo.png',
brand: '',
color_mode: 'dark',
disable_authorship: true,
launcher_button_image: 'https://newjersey.github.io/cv/img/question_12.svg',
i18n: { // change the value of the strings we use inside Lighthouse, for internationalization
contact_button: 'Ask a scientist your question',
contact_name_placeholder: 'Name (Optional)',
contact_email_placeholder: 'Email (Required)',
search_placeholder: 'Ask your questions here...',
contact_message_placeholder: 'Type your question or message for us here...',
}
};
(function(h,d){var s=d.createElement("script");s.type='text/javascript';s.async=true;s.src=h+"?t="+new Date().getTime();d.head.appendChild(s);})("https://lighthouse.helpdocs.io/load",document);
document.addEventListener('readystatechange', function() {
if (document.readyState === "complete") {
ready_alert();
}
});
//The following code is to show the text box descring the widget.
function ready_alert(){
//delay text box to compensate for widget loading time
setTimeout(function() {
document.getElementById("covid-19").style.display="block";
}, 1000);
//hide text box on mouseover
var test = document.getElementById("covid-19");
test.addEventListener("mouseover", myFunction);
function myFunction(){document.getElementById("covid-19").style.display="none";};
//hide textbox after 12seconds
setTimeout(function() {
document.getElementById("covid-19").style.display="none";
}, 12000);
};
</script>
</head>
<body id="team">
<!-- Class for google material icons ".material-icons" -->
<header class="b-top-nav ">
<div class="e-nav-group">
<div class="e-nav-item js-nav-trigger e-nav-trigger">
<i class="material-icons">menu</i>
</div>
<form class="e-search m-active" action="">
<div class="e-nav-item js-search-trigger e-search-trigger">
<i class="material-icons">search</i>
</div>
<input class="js-search-value" type="text">
<input class="js-search-submit" type="submit" value="Search">
</form>
</div>
<div class="e-logo">
<a href="./"><img src="static/img/the-govlab-logo-white.png" alt=""></a>
</div>
<div class="e-social-media e-nav-group">
<a class="e-site-button" style="color: rgba(255,255,255,0.7); background-color: rgba(255,255,255,0.2); padding: 5px; font-size: 12pt; font-weight: 600" href="./our-sites.html">OUR SITES</a>
<a href="https://twitter.com/TheGovLab" class="e-nav-item" target="_blank"><i class="e-social-media-item fa fa-twitter"></i></a>
<!-- <a href="#" class="e-nav-item" target="_blank"><i class="e-social-media-item fa fa-facebook"></i></a> -->
<a href="https://www.youtube.com/user/TheGovLab" class="e-nav-item" target="_blank"><i class="e-social-media-item fa fa-youtube-play"></i></a>
</div>
</header>
<!-- Main Menu (Off Canvas) -->
<nav class="b-main-menu">
<a href="./">Home</a>
<a href="./about.html">About</a>
<a href="./projects.html">Projects</a>
<a href="./events.html" >Events</a>
<!-- <a href="./events.html">Events</a> -->
<a href="./publications.html">Publications</a>
<a href="./team.html">Team</a>
<a href="./global-advisory-council.html">Global Advisory Council</a>
<a href="./our-transparency.html">Our Transparency</a>
<a href="./job-board.html">Job Board</a>
<a href="./contact.html">Contact</a>
</nav>
<div class="b-team">
<div class="e-team-list">
<h1>Team</h1>
<div class="e-team-member" id="beth-simone-noveck">
<div class="e-wrap">
<div class="e-team-picture" style="background-image: url('./static/img/team/beth-simone-noveck.jpg')"></div>
<div class="e-info">
</div>
<div class="e-bio">
<h3>Beth Simone Noveck</h3>
<h4>Professor and Director</h4>
<p>Beth Simone Noveck directs the Governance Lab (GovLab) and its MacArthur Research Network on Opening Governance. She is a Professor in Technology, Culture, and Society at New York University’s Tandon School of Engineering. Her current research focuses on “people-led innovation,” namely the ability of communities and institutions to work together to solve problems more effectively and legitimately.</p>
<a href="beth-noveck.html" class="b-button m-naked" target="_blank">More <i class="material-icons">keyboard_arrow_down</i></a>
<div class="b-button m-show m-naked js-project-toggle">Beth's Projects <i class="material-icons"><i class="material-icons">keyboard_arrow_down</i></i></div>
<div class="b-button m-hide m-naked js-project-toggle">Beth's Projects <i class="material-icons"><i class="material-icons">keyboard_arrow_up</i></i></div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-city-challenges.html">City Challenges</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-smarter-crowdsourcing-zika.html">Smarter Crowdsourcing Zika</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-smarter-crowdsourcing-anti-corruption.html">Smarter Crowdsourcing Anti Corruption</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-data-driven-criminal-justice.html">Data-Driven Criminal Justice</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-the-govlab-public-projects-canvas.html">The GovLab Public Projects Canvas</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-the-govlab-academy.html">The GovLab Academy</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-network-of-innovators.html">Network of Innovators</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-open-nyu.html">OPEN NYU</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-orgpedia-crowdsourcing-and-impact-modeling.html">OrgPedia - Crowdsourcing and Impact Modeling</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-crowdsorcerer.html">Crowdsorcerer</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-information-for-impact-liberating-nonprofit-sector-data.html">Information for Impact: Liberating Nonprofit Sector Data</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-peer-to-patent.html">Peer to Patent</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-fda-profiles.html">FDA Profiles</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-nhs-public-data-science-network.html">NHS Public Data Science Network</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-crowdlaw.html">CrowdLaw</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-open-grantmaking.html">Open Grantmaking</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-smarter-state-case-studies.html">Smarter State Case Studies</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-smarter-crowdsourcing-cotopaxi.html">Smarter Crowdsourcing Cotopaxi</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-city-challenges-san-pedro-garza-garcia.html">City Challenges - San Pedro Garza García</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-the-macarthur-research-network-on-opening-governance.html">The MacArthur Research Network on Opening Governance</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-solving-public-problems-with-data.html">Solving Public Problems with Data</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-data-labs.html">Data Labs</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-open-justice.html">Open Justice</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-crowdlaw-playbook.html">CrowdLaw Playbook</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-innovation-skills-accelerator.html">Innovation Skills Accelerator</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-icma-innovation-skills-survey.html">ICMA Innovation Skills Survey</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-open-policymaking.html">Open Policymaking</a>
</div>
</div>
</div>
</div>
<div class="e-team-member" id="stefaan-verhulst">
<div class="e-wrap">
<div class="e-team-picture" style="background-image: url('./static/img/team/stefaan-verhulst.jpg')"></div>
<div class="e-info">
</div>
<div class="e-bio">
<h3>Stefaan Verhulst</h3>
<h4>Co-founder and Chief Research and Development Officer</h4>
<p>Stefaan G. Verhulst is Co-Founder and Chief Research and Development Officer of the Governance Laboratory @NYU (GovLab) where he is responsible for building a research foundation on how to transform governance using advances in science and technology.
Verhulst’s latest scholarship centers on how technology can improve people’s lives and the creation of more effective and collaborative forms of governance. Specifically, he is interested in the perils and promise of collaborative technologies and how to harness the unprecedented volume of information to advance the public good.</p>
<a href="stefaan-verhulst.html" class="b-button m-naked" target="_blank">More <i class="material-icons">keyboard_arrow_down</i></a>
<div class="b-button m-show m-naked js-project-toggle">Stefaan's Projects <i class="material-icons"><i class="material-icons">keyboard_arrow_down</i></i></div>
<div class="b-button m-hide m-naked js-project-toggle">Stefaan's Projects <i class="material-icons"><i class="material-icons">keyboard_arrow_up</i></i></div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-open-data-in-developing-economies.html">Open Data in Developing Economies</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-open-governance-research-exchange-ogrx.html">Open Governance Research Exchange (OGRX)</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-datacollaboratives-org.html">DataCollaboratives .org</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-data-collaboratives-to-improve-childrens-lives.html">Data Collaboratives to Improve Children’s Lives</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-netmundial-solutions-map.html">NETmundial Solutions Map</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-open-data-500-global-network.html">Open Data 500 Global Network</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-nhs-open-data.html">NHS - Open Data</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-open-datas-impact.html">Open Data's Impact</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-the-potential-of-social-media-intelligence-to-improve-peoples-lives.html">The Potential of Social Media Intelligence to Improve People’s Lives</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-gender-and-urban-mobility-in-chile.html">Gender and Urban Mobility in Chile</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-the-macarthur-research-network-on-opening-governance.html">The MacArthur Research Network on Opening Governance</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-blockchange-blockchain-technology-for-social-change.html">Blockchange: Blockchain Technology for Social Change</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-solving-public-problems-with-data.html">Solving Public Problems with Data</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-blockchain-and-extractives-governance.html">Blockchain and Extractives Governance</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-data-stewards-network.html">Data Stewards Network</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-data-responsibility.html">Data Responsibility</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-open-data-demand.html">Open Data Demand</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-100-questions-initiative.html">100 Questions Initiative</a>
</div>
</div>
</div>
</div>
<!--
<div class="e-team-member" id="stefaan-verhulst">
<div class="e-wrap">
<div class="e-team-picture" style="background-image: url('./static/img/team/dinorah-cantu-pedraza.jpg')"></div>
<div class="e-info">
</div>
<div class="e-bio">
<h3>Dinorah Cantú-Pedraza</h3>
<h4>Non-Resident Fellow</h4>
<p>Dinorah Cantú-Pedraza coordinates the GovLab Academy, an online institute aimed at helping government and social innovators take innovative projects from idea to implementation. Under her direction, the Academy has worked with over five hundred innovators from more than 30 countries online and off over the last two years. Thousands more have watched its skill-building videos. She has put together over 12 Coaching Programs, the Academy’s signature mentoring and peer to peer learning initiative, where over 95% of whose participants complete the program. The Academy is a project of the Governance Lab, based at New York University. GovLab focuses on the use of technology to improve how we govern.</p>
<a href="dinorah-cantu-pedraza.html" class="b-button m-naked" target="_blank">More <i class="material-icons">keyboard_arrow_down</i></a>
<div class="b-button m-show m-naked js-project-toggle">Dinorah's Projects <i class="material-icons"><i class="material-icons">keyboard_arrow_down</i></i></div>
<div class="b-button m-hide m-naked js-project-toggle">Dinorah's Projects <i class="material-icons"><i class="material-icons">keyboard_arrow_up</i></i></div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-city-challenges.html">City Challenges</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-data-driven-criminal-justice.html">Data-Driven Criminal Justice</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-the-govlab-public-projects-canvas.html">The GovLab Public Projects Canvas</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-the-govlab-academy.html">The GovLab Academy</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-crowdsorcerer.html">Crowdsorcerer</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-smarter-crowdsourcing-cotopaxi.html">Smarter Crowdsourcing Cotopaxi</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-city-challenges-san-pedro-garza-garcia.html">City Challenges - San Pedro Garza García</a>
</div>
</div>
</div>
</div>
-->
<a name="akash-kapur"></a>
<div class="e-team-member" id="akash-kapur">
<div class="e-wrap">
<div class="e-team-picture" style="background-image: url('./static/img/team/akash-kapur.jpg')"></div>
<div class="e-info">
</div>
<div class="e-bio">
<h3>Akash Kapur</h3>
<h4>Senior Fellow</h4>
<p>Akash Kapur is a Senior Fellow at the GovLab. Akash has consulted for a variety of organizations (including UNDP and The Markle Foundation) on issues including Internet governance, the digital divide, open data, and health IT. He is a former columnist for the International New York Times, and has written for, among other publications, The Atlantic, Bloomberg Businessweek, The Economist, The New York Times, The New Yorker, and Time magazine.</p> <p>Akash is the author of a book, India Becoming: A Portrait of Life in Modern India (Riverhead, 2012), named by The New Yorker and The New Republic a book of the year; by Newsweek one of its three must-reads on modern India; and selected as an Editors' Choice by the New York Times Book Review.</p> <p>Akash has a BA in Anthropology from Harvard College, and a DPhil in media law and policy from Oxford University (Nuffield College), which he attended as a Rhodes Scholar. His research at Oxford focused on issues related to access and the digital divide.</p>
<div class="b-button m-more m-naked js-bio-toggle">More <i class="material-icons"><i class="material-icons">keyboard_arrow_down</i></i></div>
<div class="b-button m-less m-naked js-bio-toggle">Less <i class="material-icons"><i class="material-icons">keyboard_arrow_up</i></i></div>
</div>
</div>
</div>
<a name="alexandra-shaw"></a>
<div class="e-team-member" id="alexandra-shaw">
<div class="e-wrap">
<div class="e-team-picture" style="background-image: url('./static/img/team/alexandra-shaw.jpg')"></div>
<div class="e-info">
</div>
<div class="e-bio">
<h3>Alexandra Shaw</h3>
<h4>Research Fellow</h4>
<p>Alexandra Shaw holds a Masters Degree in Technology Policy from New York University. Prior to her time at GovLab, Alexandra worked at the World Economic Forum, where she managed various projects for Technology, Media and Digital Communications industries. She is currently leading the Data Responsibility Risks Assessments/Responsible Corporate Data Sharing project at the GovLab.</p>
<div class="b-button m-more m-naked js-bio-toggle">More <i class="material-icons"><i class="material-icons">keyboard_arrow_down</i></i></div>
<div class="b-button m-less m-naked js-bio-toggle">Less <i class="material-icons"><i class="material-icons">keyboard_arrow_up</i></i></div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-data-stewards-network.html">Data Stewards Network</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-data-responsibility.html">Data Responsibility</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-100-questions-initiative.html">100 Questions Initiative</a>
</div>
</div>
</div>
</div>
<a name="andrew-young"></a>
<div class="e-team-member" id="andrew-young">
<div class="e-wrap">
<div class="e-team-picture" style="background-image: url('./static/img/team/andrew-young.jpg')"></div>
<div class="e-info">
</div>
<div class="e-bio">
<h3>Andrew Young</h3>
<h4>Knowledge Director</h4>
<p>Andrew Young is the Knowledge Director at The GovLab, where he leads research efforts focusing on the impact of technology on public institutions. Among the grant-funded projects he has directed are a global assessment of the impact of open government data; comparative benchmarking of government innovation efforts against those of other countries; a methodology for leveraging corporate data to benefit the public good; and crafting the experimental design for testing the adoption of technology innovations in federal agencies.</p>
<p>Andrew has authored or co-authored a number of extended works on new approaches for improving governance with technology, including the books <i>The Global Impact of Open Data</i> and <i>Open Data in Developing Economies</i>. He also contributed a chapter to <i>Smarter New York City - How City Agencies Innovate</i> from Columbia University Press.</p>
<p>He is also the Network Coordinator of the GovLab-chaired MacArthur Foundation Research Network on Opening Governance. In this role, he plans and organizes collaborative research projects and events with the Network’s members, post-docs, and advisory group who span a dozen disciplines and institutions. Andrew works closely with GovLab civic technology team and has led the design of the <a href="http://www.thegovlab.org/project-network-of-innovators.html">Network of Innovators</a> skill sharing network for civil servants and the <a href="http://ogrx.org/">Open Governance Research Exchange (OGRX)</a>, a collaborative project of the GovLab, World Bank, and mySociety to develop a platform for accessing and sharing original research on governance innovation.</p>
<p>In his role as Knowledge Director, Andrew seeks to make GovLab’s research more accessible and actionable, and provides research and writing support to all members of GovLab’s team and to its extended network of participants in GovLab’s training programs.</p>
<p>Andrew earned his Master’s degree in the Media, Culture and Communication department of NYU’s Steinhardt School of Culture, Education and Human Development, with a focus on Technology and Society. His Master’s thesis explored the use of data-tracking technologies on congressional campaign websites to inform microtargeting efforts.</p>
<p>Before arriving at the GovLab, Andrew worked with Chief of Research Stefaan Verhulst at the Markle Foundation, where his research centered on the use of technology to bolster economic security.</p>
<p>Prior to his graduate work at NYU, Andrew attended Pennsylvania State University and Goldsmiths College, University of London, where he studied English and Communications. His writings can be found in Harvard Business Review, Stanford Social Innovation Review, GrantCraft, and Governing, among others. He tweets at <a href="https://twitter.com/_AndrewYoung">@_AndrewYoung</a>.</p>
<div class="b-button m-more m-naked js-bio-toggle">More <i class="material-icons"><i class="material-icons">keyboard_arrow_down</i></i></div>
<div class="b-button m-less m-naked js-bio-toggle">Less <i class="material-icons"><i class="material-icons">keyboard_arrow_up</i></i></div>
<div class="b-button m-show m-naked js-project-toggle">Andrew's Projects <i class="material-icons"><i class="material-icons">keyboard_arrow_down</i></i></div>
<div class="b-button m-hide m-naked js-project-toggle">Andrew's Projects <i class="material-icons"><i class="material-icons">keyboard_arrow_up</i></i></div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-open-data-in-developing-economies.html">Open Data in Developing Economies</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-open-governance-research-exchange-ogrx.html">Open Governance Research Exchange (OGRX)</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-datacollaboratives-org.html">DataCollaboratives .org</a>
</div>
<div class="e-project">
<a href="http://www.thegovlab.org/project-data-collaboratives-to-improve-childrens-lives.html">Data Collaboratives to Improve Children’s Lives</a>
</div>