-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2298 lines (2157 loc) · 157 KB
/
index.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>
<title>Andrew Begel — Home Page</title>
<!--<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">-->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="owwwlab.com">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="A theme for faculty profile page" />
<meta name="keywords" content="faculty profile, theme,css, html, jquery, transition, transform, 3d, css3" />
<!--<link rel="shortcut icon" href="../favicon.ico">-->
<!--CSS styles-->
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/perfect-scrollbar-0.5.1.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/style.css">
<link id="theme-style" rel="stylesheet" href="css/styles/default.css">
<style type="text/css">
span.codedirection {
unicode-bidi: bidi-override;
direction: rtl;
}
</style>
<!--/CSS styles-->
<!--Javascript files-->
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-migrate-3.5.2.min.js" integrity="sha256-ocUeptHNod0gW2X1Z+ol3ONVAGWzIJXUmIs+4nUeDLI=" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/e7e85c71b2.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/TweenMax.min.js"></script>
<script type="text/javascript" src="js/jquery.touchSwipe.min.js"></script>
<script type="text/javascript" src="js/jquery.carouFredSel-6.2.1-packed.js"></script>
<script type="text/javascript" src="js/modernizr.2.8.3.custom.js"></script>
<script type="text/javascript" src="js/jquery.dropdownit.js"></script>
<script type="text/javascript" src="js/ScrollToPlugin.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/jquery.mixitup.min.js"></script>
<script type="text/javascript" src="js/masonry.pkgd.min.js"></script>
<script type="text/javascript" src="js/perfect-scrollbar-0.5.1.min.js"></script>
<script type="text/javascript" src="js/jquery.nicescroll.js"></script>
<script type="text/javascript" src="js/magnific-popup.js"></script>
<script type="text/javascript" src="js/doT.min.js"></script>
<script type="text/javascript" src="js/Parser.js"></script>
<script type="text/javascript" src="js/URI.js"></script>
<script type="text/javascript" src="js/custom.js"></script>
<!--/Javascript files-->
<script id="pubtemplate" type="text/x-dot-template">
<div class="item mix {{=it.topicCode}}" data-yearMonth="{{=it.yearMonth}}">
<div class="pubmain">
<div class="pubassets">
{{? it.abstract}}<a href="#" class="pubcollapse tooltips" title="Abstract">
<i class="fas fa-info"></i>
</a>{{?}}
{{? it.url}}<a href="{{=it.url}}" class="tooltips" title="External link" target="_blank">
<i class="fas fa-external-link-square-alt"></i>
</a>
{{?? true}}
{{? it.doi}}<a href="http://dx.doi.org/{{=it.doi}}"
class="tooltips" title="DOI link" target="_blank">
<i class="fas fa-cloud"></i>
</a>
{{?}}
{{?}}
{{? it.localurl}}<a href="{{=it.localurl}}"
class="tooltips" title="Local Download" target="_blank">
<i class="fas fa-file-download"></i>
</a>
{{?}}
</div>
<h4 class="pubtitle">{{=it.title}}</h4>
<div class="pubauthor">{{? it.author}} {{=it.author}}
{{?? true}} Eds. {{=it.editor}} {{?}}</div>
<div class="pubcite">
{{? it.topics}}
{{~it.topics :topicAndLabel:index}}
<span class="label {{=topicAndLabel.label}}">{{=topicAndLabel.topic}}</span>
{{~}}
{{?}}
{{? it.booktitle}} {{=it.booktitle}}.
{{?? true}}
{{? it.journal}}
{{= it.journal}}, <b>{{= it.volume}}</b>
({{=it.number}}), {{= it.pages}}.
{{?}}
{{?}}
{{? it.location}} {{=it.location}}. {{?}}
{{? it.month}} {{=it.month}} {{?}} {{=it.year}}.</div>
</div>
{{? it.abstract}}
<div class="pubdetails">
<h4>Abstract</h4>
<p>{{~it.abstract :value:index}}{{=value}}{{~}}</p>
</div>
{{?}}
</div>
</script>
</head>
<body>
<div id="wrapper">
<a href="#sidebar" class="mobilemenu"><i class="fas fa-bars"></i></a>
<div id="sidebar">
<div id="sidebar-wrapper">
<div id="sidebar-inner">
<div id="profile" class="clearfix">
<div class="portrate hidden-xs"></div>
<div class="title">
<h2>Andrew Begel</h2>
<h3>Carnegie Mellon University</h3>
</div>
</div>
<ul id="navigation">
<li>
<a href="#biography">
<i class="fas fa-user"></i>
<div class="text">About Me</div>
</a>
</li>
<li>
<a href="#colleagues">
<i class="fas fa-user-friends"></i>
<div class="text">Colleagues</div>
</a>
</li>
<li>
<a href="#research">
<i class="fas fa-vial"></i>
<div class="text">Research</div>
</a>
</li>
<li>
<a href="#publications">
<i class="fas fa-file-alt"></i>
<div class="text">Publications</div>
</a>
</li>
<li>
<a href="#teaching">
<i class="fas fa-pencil-alt"></i>
<div class="text">Teaching</div>
</a>
</li>
<li>
<a href="#contact">
<i class="fas fa-calendar"></i>
<div class="text">Contact & Meet Me</div>
</a>
</li>
<li class="external">
<a href="cv.html">
<i class="fas fa-list-ul"></i>
<div class="text">Curriculum Vitae (CV)</div>
</a>
</li>
</ul>
</div>
<!-- Sidebar footer -->
<!-- Main navigation -->
<div id="sidebar-footer">
<div class="social-icons">
<ul>
<li><a href="http://www.facebook.com/abegel"><i class="icon-facebook"></i></a></li>
<li><a href="https://twitter.com/abegel"><i class="icon-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/andrewbegel/"><i class="icon-linkedin"></i></a>
</li>
</ul>
</div>
<div id="copyright">Copyright 2022</div>
</div>
<!-- Sidebar footer -->
</div>
</div>
<div id="main">
<div id="biography" class="page home" data-pos="home">
<div class="pageheader">
<div class="headercontent">
<div class="section-container">
<div class="row">
<div class="col-sm-2 visible-sm"></div>
<div class="col-sm-8 col-md-5">
<div class="biothumb">
<img alt="image" src="img/personal/headshot-2018-lores.jpg"
class="img-responsive">
<div class="overlay">
<h1 class="">Andrew Begel</h1>
<ul class="list-unstyled">
<li>Carnegie Mellon University</li>
<li>Pittsburgh, PA, USA</li>
</ul>
</div>
</div>
</div>
<div class="clearfix visible-sm visible-xs"></div>
<div class="col-sm-12 col-md-7">
<h3 class="title">Andrew Begel</h3>
<p>I am an <a href="https://s3d.cmu.edu/people/core-faculty/begel-andrew1.html">Associate Professor of Computer Science</a>
in the <a href="https://s3d.cmu.edu">Software and Societal Systems Department</a>
in the <a href="https://www.cs.cmu.edu">School of Computer Science</a> at <a href="www.cmu.edu">Carnegie Mellon University</a>
in Pittsburgh, PA, USA.
I am also <a href="https://hcii.cmu.edu/people/andrew-begel">affiliated</a> with the
<a href="https://hcii.cmu.edu">Human-Computer Interaction Institute</a> at Carnegie Mellon University.
I am an <a href="https://ischool.uw.edu/people/faculty/profile/abegel">Affiliate Professor</a> at the
<a href="https://ischool.uw.edu">Information School</a> at the <a href="http://www.washington.edu">University of Washington
in Seattle, WA, USA.</a>.
</p>
<p>From January 2006 until June 2022, I was a Principal Researcher
at <a href="http://research.microsoft.com">Microsoft Research</a> in Redmond, WA, USA.
</p>
<p>I run the <a href="https://cmu-variability.github.io">VariAbility Lab</a>. Our research mission is to create inclusive workplaces where all people, especially those with disabilities and the neurodivergent,
can be successful, without discrimination. Our current research projects focus on creating accommodative physical work environments,
collaboration tools that facilitate communication between people with differing abilities, and educational programs that teach
communication skills and improve social relationships between team members.</p>
<p><b>I am <i>not</i> recruiting any new students right now.</b>
<!-- However, I am recruiting undergraduate students <i>at CMU</i> to work with me for
2024-2025 school year.</b>
If you are interested in working in my lab, please get in touch!
Include your CV and a brief description of the research
you'd like to pursue.--> </p>
<p>In the past, I applied HCI techniques to study and improve the software development process.
I studied biometrics and affect-based software engineering, social media for
software engineering, collaborative software development, Agile methodologies,
developer-centric knowledge management, flow and coordination, and K-16 and beyond programming
education. </p>
<p>I received my Ph.D. in <a href="http://www.eecs.berkeley.edu/" Computer
Science</a> from the
<a href="http://www.berkeley.edu/">University of California, Berkeley</a> in
December 2005. I studied with
<a href="http://www.cs.berkeley.edu/~graham/">Susan L. Graham</a>. My
dissertation was about
voice-based programming, how to build a development
environment that supports it,
and how well programmers can
use it. It is intended for
programmers with repetitive
strain and other injuries
that make it difficult for
them from using the keyboard
and mouse in their daily
work. For the quick
punch-line, read my
dissertation abstract below.</p>
<p>At MIT, I received a Master of Engineering degree in Computer Science in 1997 and
a Bachelor of Science degree in Electrical Engineering and Computer Science in
1996.
I worked on <a
href="http://web.mit.edu/mitstep/openstarlogo/index.html">StarLogo</a>, a
programmable
modeling environment
designed to help students
learn about science.
StarLogo runs via Java on PCs, Macs
and Unix machines. A newer
version of StarLogo, called
<a href="http://www.slnova.org/">
StarLogo
Nova</a>, incorporates
graphical block-based
programming and a 3D turtle
world to teach programming
by enabling kids to create
their own games and
simulations.
</p>
<p>I grew up in southeastern New York, in Rockland County. I've lived
in NY, Boston, San Francisco, Seattle, and Pittsburgh.
I live with my husband, Ben, 2 kids, and 2 dogs.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="pagecontents">
<div class="section color-1">
<div class="section-container">
<div class="row">
<div class="col-md-5 col-md-offset-1">
<div class="title text-center">
<h3>Employment</h3>
</div>
<ul class="ul-dates">
<li>
<div class="dates">
<span>Present</span>
<span>2022</span>
</div>
<div class="content">
<h4>Associate Professor</h4>
<p><em>Carnegie Mellon University</em>, Pittsburgh, PA USA</p>
</div>
</li>
<li>
<div class="dates">
<span>2022</span>
<span>2019</span>
</div>
<div class="content">
<h4>Principal Researcher</h4>
<p><em>Microsoft Research</em>, Redmond, WA USA</p>
</div>
</li>
<li>
<div class="dates">
<span>Present</span>
<span>2013</span>
</div>
<div class="content">
<h4>Affiliate Professor</h4>
<p><em>University of Washington</em>, Information School, Seattle, WA USA</p>
</div>
</li>
<li>
<div class="dates">
<span>2019</span>
<span>2014</span>
</div>
<div class="content">
<h4>Senior Researcher</h4>
<p><em>Microsoft Research</em>, Redmond, WA USA</p>
</div>
</li>
<li>
<div class="dates">
<span>Winter</span>
<span>2013</span>
</div>
<div class="content">
<h4>Visiting Lecturer</h4>
<p><em>University of Washington</em>, Information School</p>
</div>
</li>
<li>
<div class="dates">
<span>2014</span>
<span>2006</span>
</div>
<div class="content">
<h4>Researcher</h4>
<p><em>Microsoft Research</em>, Redmond, WA USA</p>
</div>
</li>
<li>
<div class="dates">
<span>Summer</span>
<span>1997</span>
</div>
<div class="content">
<h4>Intern</h4>
<p><em>Xerox PARC Computer Science Laboratory</em>, Palo Alto, CA
USA<br />
Supervisor: Michael Spreitzer</p>
</div>
</li>
<li>
<div class="dates">
<span>2001</span>
<span>1993</span>
</div>
<div class="content">
<h4>UROP <p style="font-size:x-small">(Undergraduate Research
Opportunities Program)</p>
</h4>
<p><em>MIT Media Lab</em>, Cambridge, MA USA<br />
Supervisor: Mitchel Resnick</p>
</div>
</li>
<li>
<div class="dates">
<span>Summer</span>
<span>1992</span>
</div>
<div class="content">
<h4>Research Intern</h4>
<p><em>NYU Medical Center: Institute for Environmental Medicine</em>,
Sterling Forest, NY USA<br />
Supervisor: Toby G. Rossman</p>
</div>
</li>
<li>
<div class="dates">
<span>Summer</span>
<span>1990</span>
</div>
<div class="content">
<h4>Intern</h4>
<p><em>NY Medical College: Biochemistry and Molecular Biology</em>,
Valhalla, NY USA<br />
Supervisor: Yuk-Ching Tse-Dinh</p>
</div>
</li>
<li>
<div class="dates">
<span>1992</span>
<span>1988</span>
</div>
<div class="content">
<h4>SIGOp: Apple II Special Interest Group</h4>
<p><em>Mnematics Videotex, Inc.</em>, Sparkill, NY USA</p>
</div>
</li>
</ul>
</div>
<div class="col-md-5">
<div class="title text-center">
<h3>Education</h3>
</div>
<ul class="ul-card">
<li>
<div class="dy">
<span class="degree">Ph.D.</span>
<span class="year">2005</span>
</div>
<div class="description">
<p class="what">Ph.D. in Computer Science</p>
<p class="where">University of California at Berkeley</p>
<p class="where">Advisor: <a
href="http://www.cs.berkeley.edu/~graham">Susan L. Graham</a>
</p>
</div>
</li>
<li>
<div class="dy">
<span class="degree">M.Eng.</span><span class="year">1997</span>
</div>
<div class="description">
<p class="what">Master of Engineering in Electrical Engineering and
Computer Science</p>
<p class="where">Massachusetts Institute of Technology</p>
<p class="where">Advisor: <a
href="http://web.media.mit.edu/~mres">Mitchel Resnick</a></p>
</div>
</li>
<li>
<div class="dy">
<span class="degree">B.S.</span><span class="year">1996</span>
</div>
<div class="description">
<p class="what">Bachelor of Science in Computer Science and Engineering
</p>
<p class="where">Massachusetts Institute of Technology</p>
<p class="where">Advisor: <a
href="http://web.media.mit.edu/~mres">Mitchel Resnick</a></p>
</div>
</li>
<li>
<div class="dy">
<span class="degree">High School Regents Diploma</span><span
class="year">1992</span>
</div>
<div class="description">
<p class="what">Rank: 2 out of 443, Average 102.7</p>
<p class="where"><a href="https://www.ercsd.org/ramapo">Ramapo Senior
High School</a>, Spring Valley, NY</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="section color-2">
<div class="section-container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="title text-center">
<h3>Honors and Awards</h3>
</div>
<ul class="timeline">
<li class="open">
<div class="date">2019</div>
<div class="circle"></div>
<div class="data">
<div class="subject">ACM Distinguished Member</div>
</div>
</li>
<li class="open">
<div class="date">2005</div>
<div class="circle"></div>
<div class="data">
<div class="subject">Demitri Angelakos Memorial Award</div>
<!--<div class="text row">
<div class="col-md-2">
<img alt="image" class="thumbnail img-responsive" src="img/personal/awards100x100.png" >
</div>
<div class="col-md-10">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed egestas dapibus lectus non dignissim. Pellentesque auctor ornare urna, volutpat condimentum quam porttitor at. Vestibulum tincidunt diam in eros aliquam luctus. Donec sagittis a purus a porttitor. Sed non feugiat enim. Donec eget metus erat. Vivamus sed consequat orci. Aenean commodo lectus sed purus auctor ullamcorper.
</div>
</div>-->
</div>
</li>
<li>
<div class="date">1992</div>
<div class="circle"></div>
<div class="data">
<div class="subject">National Merit Scholarship</div>
<div class="subject">Salutatorian of High School Class of 1992</div>
<div class="subject">Leo V. Dustman Award in Mathematics</div>
<div class="subject">Mel Sobel Microscopes Scholarship Award</div>
<div class="subject">New York State Science Supervisors Association
Award</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="colleagues" class="page">
<div class="pagecontainer">
<div class="pageheader">
<div class="headercontent">
<div class="section-container">
<h2 class="title">Research</h2>
</div>
</div>
</div>
<div class="pagecontents">
<div class="section color-2">
<div class="section-container">
<h2 class="title">Research Colleagues</h2>
<div class="row">
<div class="col-md-12">
<p>I have worked with many
very smart researchers, students, and visitors at Berkeley, Microsoft, and CMU.</p>
<p>You can see a list of my current students on my
<a href="https://cmu-variability.github.io">VariAbility Lab homepage</a>.</p>
</div>
</div>
</div>
</div>
</div>
<!--
<div class="pagecontents">
<div class="section color-1">
<div class="section-container">
<div class="title text-left">
<h3>CMU Students</h3>
</div>
<div class="row">
<div class="col-md-6">
<div id="labp-heads-wrap-4">
<div id="lab-carousel-4">
<div id="first"><img alt="image" src="" width="120"
height="120" class="img-circle lab-img" /></div>
<div><img alt="image" src="" width="120" height="120"
class="img-circle lab-img" /></div>
</div>
<div id="prev-next-4">
<a href="#" id="prev-4"><i class="fas fa-chevron-circle-left"></i></a>
<a href="#" id="next-4"><i class="fas fa-chevron-circle-right"></i></a>
</div>
</div>
<div id="lab-details-4">
<div>
<h3>Gabrielle Ohlson</h3>
<h4>PhD Student, CMU Robotics Institute</h4>
<h4></h4>
</div>
<div>
<h3>JiWoong Jang</h3>
<h4>PhD Student, Human-Computer Interaction Institute</h4>
<h4></h4>
</div>
</div>
<div class="col-md-6">
<h3>Looking for PhD Students!</h3>
<p>If you are intersesting in applying to graduate school and would like to help
build the inclusive technology workplace of the future, please send me some email.</p>
<p>Send me your name, school/company, research interests, curriculum vita, and some ideas
of what you'd like to investigate while you're here at CMU.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pagecontents">
<div class="section color-1">
<div class="section-container">
<div class="title text-left">
<h3>Microsoft Researchers</h3>
</div>
<div class="row">
<div class="col-md-6">
<div id="labp-heads-wrap-1">
<div id="lab-carousel-1">
<div id="first"><img alt="image" src="img/lab/saleema.jpg" width="120"
height="120" class="img-circle lab-img" /></div>
<div><img alt="image" src="img/lab/adam.jpg" width="120" height="120"
class="img-circle lab-img" /></div>
<div><img alt="image" src="img/lab/ed.jpg" width="120" height="120"
class="img-circle lab-img" /></div>
<div><img alt="image" src="img/lab/john.jpg" width="120" height="120"
class="img-circle lab-img" /></div>
<div><img alt="image" src="img/lab/merrie.jpg" width="120" height="120"
class="img-circle lab-img" /></div>
<div><img alt="image" src="img/lab/marycz.jpg" width="120" height="120"
class="img-circle lab-img" /></div>
<div><img alt="image" src="img/lab/rdeline.jpg" width="120" height="120"
class="img-circle lab-img" /></div>
<div><img alt="image" src="img/lab/tomz.jpg" width="120" height="120"
class="img-circle lab-img" /></div>
<div><img alt="image" src="img/lab/cbird.jpg" width="120" height="120"
class="img-circle lab-img" /></div>
<div><img alt="image" src="img/lab/ginav.jpg" width="120" height="120"
class="img-circle lab-img" /></div>
<div><img alt="image" src="img/lab/kaelr.jpg" width="120" height="120"
class="img-circle lab-img" /></div>
<div><img alt="image" src="img/lab/nachin.jpg" width="120" height="120"
class="img-circle lab-img" /></div>
</div>
<div id="prev-next-1">
<a href="#" id="prev-1"><i class="fas fa-chevron-circle-left"></i></a>
<a href="#" id="next-1"><i class="fas fa-chevron-circle-right"></i></a>
</div>
</div>
<div id="lab-details-1">
<div>
<h3><a href="https://www.microsoft.com/en-us/research/people/samershi/">Saleema
Amershi</a></h3>
<h4>Sr. Principal Research Manager, HAX</h4>
<h4>Microsoft Research, Redmond</h4>
</div>
<div>
<h3><a href="https://www.microsoft.com/en-us/research/people/adamfo/">Adam
Fourney</a></h3>
<h4>Principal Researcher, HAX</h4>
<h4>Microsoft Research, Redmond</h4>
</div>
<div>
<h3><a href="https://www.microsoft.com/en-us/research/people/cutrell/">Ed
Cutrell</a></h3>
<h4>Sr. Principal Research Manager, Ability</h4>
<h4>Microsoft Research, Redmond</h4>
</div>
<div>
<h3><a href="https://www.microsoft.com/en-us/research/people/johntang/">John
Tang</a></h3>
<h4>Principal Researcher, Ability</h4>
<h4>Microsoft Research, Redmond</h4>
</div>
<div>
<h3><a href="https://cs.stanford.edu/~merrie/">Merrie Morris</a></h3>
<h4>Director and Principal Scientist, People + AI Research</h4>
<h4>Google, Seattle</h4>
</div>
<div>
<h3><a href="https://www.microsoft.com/en-us/research/people/marycz/">Mary
Czerwinski</a></h3>
<h4>Sr. Principal Research Manager, HUE</h4>
<h4>Microsoft Research, Redmond</h4>
</div>
<div>
<h3><a href="https://www.microsoft.com/en-us/research/people/rdeline/">Rob
DeLine</a></h3>
<h4>Sr. Principal Researcher, VIDA</h4>
<h4>Microsoft Research, Redmond</h4>
</div>
<div>
<h3><a href="https://www.microsoft.com/en-us/research/people/tzimmer/">Tom
Zimmermann</a></h3>
<h4>Senior Principal Researcher, ESE</h4>
<h4>Microsoft Research, Redmond</h4>
</div>
<div>
<h3><a href="http://research.microsoft.com/en-us/people/cbird/">Chris
Bird</a></h3>
<h4>Principal Researcher, ESE</h4>
<h4>Microsoft Research, Redmond</h4>
</div>
<div>
<h3><a
href="https://scholar.google.com/citations?user=QDuge8UAAAAJ&hl=en">Gina
Venolia</a></h3>
<h4>Retired</h4>
<h4>Microsoft Research, Redmond</h4>
</div>
<div>
<h3><a href="http://research.microsoft.com/~kaelr/">Kael Rowan</a></h3>
<h4>Principal Research Software Design Engineer, HUE</h4>
<h4>Microsoft Research, Redmond</h4>
</div>
<div>
<h3><a href="https://nachinagappan.github.io/">Nachi Nagappan</a></h3>
<h4>Software Engineer</h4>
<h4>Facebook, Seattle</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section color-1">
<div class="section-container">
<div class="title text-left">
<h3>Microsoft Interns</h3>
</div>
<div class="row">
<div class="col-md-6">
<div id="labp-heads-wrap-2">
<div id="lab-carousel-2">
<div id="first">
<img alt="Maulishree Pandey" src="img/lab/mauli-pandey.jpg"
width="120" height="120" class="img-circle
lab-img" />
</div>
<div>
<img alt="Shakiba Davari" src="img/lab/shakiba-davari.png"
width="120" height="120" class="img-circle
lab-img" />
</div>
<div>
<img alt="Venkatesh Potluri" src="img/lab/venkatesh-potluri.jpg"
width="120" height="120" class="img-circle
lab-img" />
</div>
<div>
<img alt="Jazette Johnson" src="img/lab/jazette-johnson.jpg"
width="120" height="120" class="img-circle
lab-img" />
</div>
<div>
<img alt="Naba Rizvi" src="img/lab/naba-rizvi.jpg" width="120"
height="120" class="img-circle
lab-img" />
</div>
<div>
<img alt="David Widder" src="img/lab/david-widder.png" width="120"
height="120" class="img-circle
lab-img" />
</div>
<div>
<img alt="Annuska Zolyomi" src="img/lab/annuska-zolyomi.jpg"
width="120" height="120" class="img-circle
lab-img" />
</div>
<div>
<img alt="Grant Williams" src="img/lab/grant-williams.jpg"
width="120" height="120" class="img-circle
lab-img" />
</div>
<div>
<img alt="Michael Hilton" src="img/lab/michael-hilton.jpg"
width="120" height="120" class="img-circle
lab-img" />
</div>
<div>
<img alt="Sarah D'Angelo" src="img/lab/sarah-dangelo.JPG"
width="120" height="120" class="img-circle
lab-img" />
</div>
<div><img alt="Hana Vrzakova" src="img/lab/hana-vrzakova.jpg"
width="120" height="120" class="img-circle
lab-img" /></div>
<div><img alt="Nicolas
Bettenburg" src="img/lab/nicolas-bettenburg.jpg" width="120"
height="120" class="img-circle
lab-img" /></div>
<div><img alt="Anja Guzzi" src="img/lab/anja-guzzi.jpg" width="100"
height="128" class="img-circle lab-img" /></div>
<div><img alt="Alicia Grubb" src="img/lab/alicia-grubb.jpg" width="120"
height="120" class="img-circle lab-img" /></div>
<div><img alt="Yit
Phang Khoo" src="img/lab/khoo-yit-phang.jpg" width="120"
height="120" class="img-circle lab-img" /></div>
<div><img alt="Libby Hemphill" src="img/lab/libby-hemphill.jpg"
width="120" height="120" class="img-circle lab-img" /></div>
<div><img alt="Reid Holmes" src="img/lab/reid-holmes.jpg" width="120"
height="120" class="img-circle lab-img" /></div>
<div><img alt="Christopher Poile" src="img/lab/christopher-poile.jpg"
width="120" height="120" class="img-circle lab-img" /></div>
<div><img alt="Lucas Layman" src="img/lab/lucas-layman.jpg" width="120"
height="120" class="img-circle lab-img" /></div>
</div>
<div id="prev-next-2">
<a href="#" id="prev-2"><i
class="fas fa-chevron-circle-left"></i></a>
<a href="#" id="next-2"><i
class="fas fa-chevron-circle-right"></i></a>
</div>
</div>
<div id="lab-details-2">
<div>
<h3><a href="https://pandeymauli.github.io/research/">Maulishree
Pandey</a></h3>
<h4>University of Michigan, School of Information, PhD Student</h4>
<h4>Summer 2021</h4>
</div>
<div>
<h3><a href="https://sites.google.com/vt.edu/sdavari/home">Shakiba
Davari</a></h3>
<h4>Virginia Tech, PhD Student</h4>
<h4>Summer 2021</h4>
</div>
<div>
<h3><a href="https://venkateshpotluri.me/">Venkatesh Potluri</a></h3>
<h4>University of Washington, Seattle, PhD Student</h4>
<h4>Summer 2020</h4>
</div>
<div>
<h3><a href="https://jazettejohnson.com/">Jazette Johnson</a></h3>
<h4>University of California, Irvine, PhD Student</h4>
<h4>Summer 2020</h4>
</div>
<div>
<h3><a href="https://nrizvi.github.io/">Naba Rizvi</a></h3>
<h4>University of California, San Diego, PhD Student</h4>
<h4>Summer 2020</h4>
</div>
<div>
<h3><a href="http://davidwidder.me/">David Widder</a></h3>
<h4>Carnegie Mellon University, PhD Student</h4>
<h4>Spring 2020</h4>
</div>
<div>
<h3><a href="https://annuskaz.com/">Annuska Zolyomi</a></h3>
<h4>University of Washington, Bothell, Asst. Teaching Professor</h4>
<h4>Winter 2019</h4>
</div>
<div>
<h3><a href="http://grantwilliams.info">Grant Williams</a></h3>
<h4>Microsoft, Applied Data Scientist and Software Engineer</h4>
<h4>Summer 2018</h4>
</div>
<div>
<h3><a href="http://www.cs.cmu.edu/~mhilton/">Michael
Hilton</a></h3>
<h4>Carnegie Mellon
University, Asst. Teaching Professor</h4>
<h4>Summer 2017</h4>
</div>
<div>
<h3><a href="http://sdangelo.com">Sarah D'Angelo</a></h3>
<h4>Google, Software Engineer</h4>
<h4>Summer 2016</h4>
</div>
<div>
<h3><a href="http://cs.uef.fi/~hanav/">Hana
Vrzáková</a></h3>
<h4>Microsurgery Cente, KYS, Head of Medical ICT Development</h4>
<h4>Summer 2015</h4>
</div>
<div>
<h3><a href="https://www.linkedin.com/in/nicbet/">Nicolas Bettenburg</a>
</h3>
<h4>KUY.io Inc., Founder</h4>
<h4>Summer 2012</h4>
</div>
<div>
<h3><a
href="https://scholar.google.com/citations?user=0QL1tFwAAAAJ&hl=en">Anja
Guzzi</a></h3>
<h4>Delft University
of Technology, PhD Graduate</h4>
<h4>Summer 2011</h4>
</div>
<div>
<h3><a href="https://amgrubb.github.io">Alicia Grubb</a></h3>
<h4>Smith College,
Asst. Professor</h4>
<h4>Summer 2010</h4>
</div>
<div>
<h3><a href="https://www.linkedin.com/in/khooyp/">Khoo Yit Phang</a>
</h3>
<h4>The Mathworks,
Senior Team Lead</h4>
<h4>Summer 2009</h4>
</div>
<div>
<h3><a href="http://libbyh.com">Libby Hemphill</a></h3>
<h4>Resource Center for Minority Data, ICPSR, Director and University of
Michigan, Assc. Professor</h4>
<h4>Summer 2008</h4>
</div>
<div>
<h3><a href="http://www.cs.ubc.ca/~rtholmes/">Reid Holmes</a></h3>
<h4>University of
British Columbia, Assc. Professor</h4>
<h4>Fall 2007</h4>
</div>
<div>
<h3><a href="https://www.linkedin.com/in/cpoile/">Christopher Poile</a>
</h3>
<h4>Mattermost, Software Developer</h4>
<h4>Summer 2006</h4>
</div>
<div>
<h3><a href="http://people.uncw.edu/laymanl/">Lucas Layman</a></h3>
<h4>University of
North Carolina, Wilmington,
Asst. Professor</h4>
<h4>Summer 2006</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section color-1">
<div class="section-container">
<div class="title text-left">
<h3>Visiting Researchers @ MSR</h3>
</div>
<div class="row">
<div class="col-md-6">
<div id="labp-heads-wrap-3">
<div id="lab-carousel-3">
<div id="first"><img alt="image" src="img/lab/yvonne-dittrich.jpg"
width="120" height="120" class="img-circle lab-img" /></div>
<div><img alt="image" src="img/lab/thomas-fritz.jpg" width="120"
height="120" class="img-circle lab-img" /></div>
<div><img alt="image" src="img/lab/jonathan-sillito.jpg" width="120"
height="120" class="img-circle lab-img" /></div>
<div><img alt="image" src="img/lab/beth-simon.jpg" width="120"
height="120" class="img-circle lab-img" /></div>
</div>
<div id="prev-next-3">
<a href="#" id="prev-3"><i class="fas fa-chevron-circle-left"></i></a>
<a href="#" id="next-3"><i class="fas fa-chevron-circle-right"></i></a>
</div>
</div>
<div id="lab-details-3">