-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpublications.html
1553 lines (1438 loc) · 92.6 KB
/
publications.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, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Sarma Research Lab</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/full-width-pics.css" rel="stylesheet">
<!-- <script src="https://kit.fontawesome.com/ac647077b9.js" crossorigin="anonymous"></script> -->
</head>
<body>
<div class="page-content">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="https://epiclab.github.io/">EPICLab</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="https://epiclab.github.io/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="people.html">People</a>
</li>
<li class="nav-item">
<a class="nav-link" href="research.html">Research</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="publications.html">Publications<span class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Content section -->
<!-- Peer Reviewed Publications -->
<section>
<div class="article container" style="padding-top: 0px; padding-left: 0px">
<h3 class="page-headers" style="padding-left: 15px; padding-bottom: 0px">Peer Reviewed Publications</h1>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://2020.esec-fse.org/">ESEC/FSE 2020</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">On the Relationship Between Design Discussions and Design Quality: A Case Study of Apache Projects</a>
<span class="author"><a href="people.html#mannan">Umme Ayda Mannan</a>, <a href="https://www.ics.uci.edu/~iftekha/">Iftekhar Ahmed</a>, <a href="http://web.engr.oregonstate.edu/~jensenca/OSU_ENGR/index.html">Carlos Jensen</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>28th Joint European Software Engineering Conference and Symposium on the Foundations of Software Engineering (ESEC/FSE)</i>, ACM, 2020.</span>
<span>
<span><a href="https://doi.org/10.1145/3368089.3409707">DOI</a></span> ·
<span><a href="publications/esecfse20-mannan.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://cscw.acm.org/2020/">CSCW 2020</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Hidden Figures: Roles and Pathways of Successful OSS Contributors</a>
<a class="publication-link" id="hidden-figures"></a>
<span class="author">Bianca Trinkenreich, <a href="people.html#guizani">Mariam Guizani</a>, <a href="http://igorwiese.com/">Igor Scaliante Wiese</a>, <a href="people.html#sarma">Anita Sarma</a>, and <a href="https://www.igor.pro.br/">Igor Steinmacher</a></span>
<span class="venue"><i>23rd Conference on Computer-Supported Cooperative Work and Social Computing (CSCW)</i>, ACM, Volume 4, Article 180, 2020.</span>
<span>
<span><a href="https://doi.org/10.1145/3415251">DOI</a></span> ·
<span><a href="publications/cscw20-trinkenreich.pdf">PDF</a></span> ·
<span><a href="https://youtu.be/1kz4UClLQSg">Video</a></span> ·
<span><a href="https://figshare.com/s/abebcfc04eb93fc3eca0">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://opensym.org">OpenSym 2020</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Recommending Tasks to Newcomers in OSS Projects: How Do Mentors Handle It?</a>
<a class="publication-link" id="recommending-tasks-to-newcomers-in-oss-projects"></a>
<span class="author">Sogol Balali, Umayal Annamalai, Susmita Padala, Bianca Trinkenreich, <a href="https://www.ime.usp.br/~gerosa/">Marco Aurelio Gerosa</a>, <a href="https://www.igor.pro.br/">Igor Steinmacher</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>16th International Symposium on Open Collaboration (OpenSym)</i>, ACM, 2020.</span>
<span class="award">🏆 <a href="https://twitter.com/opensym/status/1298674411508203523">Best Paper Award</a></span>
<span>
<span>
<span><a href="https://doi.org/10.1145/3412569.3412571">DOI</a></span> ·
<span><a href="publications/opensym20-balali.pdf">PDF</a> ·
<span><a href="https://youtu.be/1AlgXJk-g4E">Video</a></span> ·
<span><a href="https://doi.org/10.5281/zenodo.3970997">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://conf.researchr.org/home/vlhcc2020">VL/HCC 2020</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Supporting Code Comprehension via Annotations: Right Information at the Right Time and Place</a>
<a class="publication-link" id="supporting-code-comprehension-via-annotations"></a>
<span class="author">Marjan Adeli, <a href="people.html#nelson">Nicholas Nelson</a>, <a href="people.html#chattopadhyay">Souti Chattopdhyay</a>, Hayden Coffey, <a href="http://web.eecs.utk.edu/~azh/">Austin Henley</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>Symposium on Visual Languages and Human-Centric Computing (VL/HCC)</i>, IEEE, 2020.</span>
<span>
<span><a href="https://doi.org/10.1109/VL/HCC50065.2020.9127264">DOI</a></span> ·
<span><a href="publications/vlhcc20-adeli.pdf">PDF</a> ·
<span><a href="https://nomatic.dev/presentations/vlhcc20-slides.pdf">Slides</a></span> ·
<span><a href="https://vaadin.com/start/lts/full-stack-spring">Tool</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://conf.researchr.org/home/icse-2020">ICSE 2020</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Planning for Untangling: Predicting the Difficulty of Merge Conflicts</a>
<span class="author"><a href="http://caius.brindescu.com/">Caius Brindescu</a>, <a href="https://www.ics.uci.edu/~iftekha/">Iftekhar Ahmed</a>, <a href="https://rleano.github.io/">Rafael Leano</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>42nd International Conference on Software Engineering (ICSE)</i>, ACM, 2020.</span>
<span>
<span><a href="https://doi.org/10.1145/nnnnnnn.nnnnnnn">DOI</a></span> ·
<span><a href="publications/icse20-brindescu.pdf">PDF</a> ·
<span><a href="https://youtu.be/fHLYu4k_4GA">Video</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://conf.researchr.org/home/icse-2020">ICSE 2020</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Engineering Gender-Inclusivity into Software: Ten Teams' Tales from the Trenches</a>
<a class="publication-link" id="engineering-gender-inclusivity-into-software"></a>
<span class="author">Claudia Hilderbrand, Christopher Perdriau, Lara Letaw, Jillain Emard, Zoe Steine-Hanson, <a href="http://web.engr.oregonstate.edu/~burnett/">Margaret Burnett</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>42nd International Conference on Software Engineering (ICSE)</i>, ACM, 2020.</span>
<span>
<span><a href="https://doi.org/10.1145/3377811.3380371">DOI</a></span> ·
<span><a href="publications/icse20-hilderbrand.pdf">PDF</a> ·
<span><a href="http://web.engr.oregonstate.edu/~sarmaa/wp-content/uploads/2020/08/ICSE-GM-2020-06292020.pptx.pdf">Slides</a> ·
<span><a href="https://youtu.be/r0at5IDdn2E">Video</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://conf.researchr.org/home/icse-2020">ICSE 2020</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">A Tale from the Trenches: Cognitive Biases and Software Development</a>
<a class="publication-link" id="a-tale-from-the-trenches"></a>
<span class="author"><a href="people.html#chattopadhyay">Souti Chattopadhyay</a>, <a href="people.html#nelson">Nicholas Nelson</a>, Audrey Au, Natalia Morales, <a href="http://people.oregonstate.edu/~sancchri/">Christopher Sanchez</a>, <a href="http://rahulpandita.me/">Rahul Pandita</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>42nd International Conference on Software Engineering (ICSE)</i>, ACM, 2020.</span>
<span class="award">🏆 <a href="https://2020.icse-conferences.org/info/awards">ACM SIGSOFT Distinguished Paper Award</a></span>
<span>
<span><a href="https://doi.org/10.1145/3377811.3380330">DOI</a></span> ·
<span><a href="publications/icse20-chattopadhyay.pdf">PDF</a></span> ·
<span><a href="https://epiclab.github.io/ICSE20-CogBias/">Data</a></span> ·
<span><a href="https://youtu.be/KgYF-r_c18g">Video</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://chi2020.acm.org/">CHI 2020</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">What’s Wrong with Computational Notebooks? Pain Points, Needs, and Design Opportunities</a>
<a class="publication-link" id="what's-wrong-with-computational-notebooks"></a>
<span class="author"><a href="people.html#chattopadhyay">Souti Chattopadhyay</a>, Ishita Prasad, <a href="http://web.eecs.utk.edu/~azh/">Austin Z. Henley</a>, <a href="people.html#sarma">Anita Sarma</a>, and <a href="https://www.barik.net/">Titus Barik</a></span>
<span class="venue"><i>Conference on Human Factors in Computing Systems (CHI)</i>, ACM, pp. 1-12, 2020.</span>
<span class="award">🏆 <a href="https://chi2020.acm.org/for-attendees/chi-2020-best-papers-honourable-mentions/#hmlist">Honorable Mention</a></span>
<span>
<span><a href="https://doi.org/10.1145/3313831.3376729">DOI</a></span> ·
<span><a href="publications/chi20-chattopadhyay.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://link.springer.com/journal/10664/volumes-and-issues/25-1">EMSE</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">An Empirical Investigation into Merge Conflicts and their Effect on Software Quality</a>
<span class="author"><a href="http://caius.brindescu.com/">Caius Brindescu</a>, <a href="https://www.ics.uci.edu/~iftekha/">Iftekhar Ahmed</a>, <a href="http://web.engr.oregonstate.edu/~jensenca/OSU_ENGR/index.html">Carlos Jensen</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>Empirical Software Engineering (EMSE)</i>, Springer Publishing, Volume 25, Issue 1, pp. 562-590, 2020.</span>
<span>
<span><a href="https://doi.org/10.1007/s10664-019-09735-4">DOI</a></span> ·
<span><a href="publications/emse20-brindescu.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=32">TSE</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Dominoes: An Interactive Exploratory Data Analysis tool for Software Relationships</a>
<span class="author">Jose Ricardo da Silva Junior, Daniel Pratt Campagna, Esteban Clua, <a href="people.html#sarma">Anita Sarma</a>, and <a href="http://www.ic.uff.br/~leomurta/">Leonardo Gresta Paulino Murta</a></span>
<span class="venue"><i>Transactions on Software Engineering (TSE)</i>, IEEE, 2020.</span>
<span>
<span><a href="https://doi.org/10.1109/TSE.2020.2988241">DOI</a></span> ·
<span><a href="publications/tse20-junior.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=32">TSE</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">How Gender-biased Tools Shape Newcomer Experiences in OSS Projects</a>
<span class="author">Susmita Padala, Christopher Mendez, Luiz Felipe Dias, <a href="https://www.igor.pro.br/">Igor Steinmacher</a>, Zoe Steine Hanson, Claudia Hilderbrand, <a href="https://horvathaa.github.io/">Amber Horvath</a>, Charles Hill, Logan Dale Simpson, <a href="http://web.engr.oregonstate.edu/~burnett/">Margaret Burnett</a>, <a href="https://www.ime.usp.br/~gerosa/">Marco Aurelio Gerosa</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>Transactions on Software Engineering (TSE)</i>, IEEE, 2020.</span>
<span>
<span><a href="https://doi.org/10.1109/TSE.2020.2984173">DOI</a></span> ·
<span><a href="publications/tse20-padala.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://human-se.github.io/vlhcc2019/">VL/HCC 2019</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">From GenderMag to InclusiveMag: An Inclusive Design Meta-Method</a>
<a class="publication-link" id="from-gendermag-to-inclusivemag"></a>
<span class="author">Christopher Mendez, Lara Letaw, <a href="http://web.engr.oregonstate.edu/~burnett/">Margaret Burnett</a>, Simone Stumpf, <a href="people.html#sarma">Anita Sarma</a>, and Claudia Hilderbrand</span>
<span class="venue"><i>Symposium on Visual Languages and Human-Centric Computing (VL/HCC)</i>, IEEE, pp. 97-106, 2019.</span>
<span>
<span><a href="https://doi.org/10.1109/VLHCC.2019.8818889">DOI</a></span> ·
<span><a href="publications/vlhcc19-mendez.pdf">PDF</a></span> ·
<span><a href="https://scs.hosted.panopto.com/Panopto/Pages/Viewer.aspx?id=1fa67161-215d-45e8-b228-ab3e00f844ce">Video</a>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://2019.icse-conferences.org/">ICSE 2019</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Latent Patterns in Activities: A Field Study of How Developers Manage Context</a>
<a class="publication-link" id="latent-patterns-in-activities"></a>
<span class="author"><a href="people.html#chattopadhyay">Souti Chattopadhyay</a>, <a href="people.html#nelson">Nicholas Nelson</a>, Yenifer Ramirez Gonzalez, Annel Amelia Leon, <a href="http://rahulpandita.me/">Rahul Pandita</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>41st International Conference on Software Engineering (ICSE)</i>, ACM, 2019.</span>
<span>
<span><a href="https://doi.org/10.1109/ICSE.2019.00051">DOI</a></span> ·
<span><a href="publications/icse19-chattopadhyay.pdf">PDF</a></span> ·
<span><a href="http://web.engr.oregonstate.edu/~chattops/docs/ICSE_2019_Presentation.pptx">Slides</a></span> ·
<span><a href="publications/Data/ICSE19-LatentPatternsInActivities.html">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://cscw.acm.org/2019/">CSCW 2019</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">The Signals that Potential Contributors Look for When Choosing Open-source Projects</a>
<a class="publication-link" id="the-signals-that-potential-contributors-look-for"></a>
<span class="author">Huilian Sophie Qiu, Yucen Lily Li, Susmita Padala, <a href="people.html#sarma">Anita Sarma</a>, and <a href="https://bvasiles.github.io/">Bogdan Vasilescu</a></span>
<span class="venue"><i>22nd Conference on Computer-Supported Cooperative Work and Social Computing (CSCW)</i>, ACM, Volume 3, Article 122, pp. 1-29, 2019.</span>
<span>
<span><a href="https://doi.org/10.1145/3359224">DOI</a></span> ·
<span><a href="publications/cscw19-qiu.pdf">PDF</a></span> ·
<span><a href="https://zenodo.org/record/3371186#.X0lZZdNKj9F">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://link.springer.com/journal/10664/volumes-and-issues/24-5">EMSE</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">The Life-Cycle of Merge Conflicts: Processes, Barriers, and Strategies</a>
<span class="author"><a href="people.html#nelson">Nicholas Nelson</a>, <a href="http://caius.brindescu.com/">Caius Brindescu</a>, Shane McKee, <a href="people.html#sarma">Anita Sarma</a>, and <a href="http://dig.cs.illinois.edu/">Danny Dig</a></span>
<span class="venue"><i>Empirical Software Engineering (EMSE)</i>, Springer Publishing, Volume 24, Issue 5, pp. 2863-2906, 2019.</span>
<span>
<span><a href="https://doi.org/10.1007/s10664-018-9674-x">DOI</a></span> ·
<span><a href="publications/emse19-nelson.pdf">PDF</a></span> ·
<span><a href="https://nomatic.dev/emse19.html">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=32">TSE</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Recommending Participants for Collaborative Merge Sessions</a>
<span class="author">Catarina de Souza Costa, <a href="http://buscatextual.cnpq.br/buscatextual/visualizacv.do?id=K4485839Z6">Jose Jair Figueiredo</a>, Joao Felipe Pimentel, <a href="people.html#sarma">Anita Sarma</a>, and <a href="http://www.ic.uff.br/~leomurta/">Leonardo Gresta Paulino Murta</a></span>
<span class="venue"><i>Transactions on Software Engineering (TSE)</i>, IEEE, 2019.</span>
<span>
<span><a href="https://doi.org/10.1109/TSE.2019.2917191">DOI</a></span> ·
<span><a href="publications/tse19-costa.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://www.sciencedirect.com/journal/journal-of-computer-languages/vol/53/suppl/C">COLA</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">How End-User Programmers Debug Visual Web-Based Programs: An Information Foraging Theory Perspective</a>
<span class="author"><a href="http://sandeepkuttal.ens.utulsa.edu/index.html">Sandeep Kaur Kuttal</a>, <a href="people.html#sarma">Anita Sarma</a>, <a href="http://web.engr.oregonstate.edu/~burnett/">Margaret Burnett</a>, <a href="http://cse.unl.edu/~grother/">Gregg Rothermel</a>, Ian Koeppe, and Brooke Shepherd</span>
<span class="venue"><i>Journal of Computer Language (COLA)</i>, Elsevier, Volume 53, pp. 22-37, 2019.</span>
<span>
<span><a href="https://doi.org/10.1016/j.cola.2019.04.003">DOI</a></span> ·
<span><a href="publications/cola19-kuttal.pdf">PDF</a></span> ·
<span><a href="https://www.sciencedirect.com/science/article/pii/S1045926X18302003?via%3Dihub#ec-research-data">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://link.springer.com/book/10.1007/978-3-030-00262-6">Handbook of Software Engineering</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Coordination Technologies</a>
<span class="author"><a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>Handbook of Software Engineering</i>, Springer Publishing, Cha, 2019.</span>
<span>
<span><a href="https://doi.org/10.1007/978-3-030-00262-6_10">DOI</a></span> ·
<span><a href="publications/hse19-sarma.pdf">PDF</a></span>
</span>
</div>
</td>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://conf.researchr.org/home/fse-2018">ESEC/FSE 2018</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">How Do Developers Resolve Merge Conflicts? An Investigation Into the Processes, Tools, and Improvements</a>
<span class="author"><a href="http://caius.brindescu.com/">Caius Brindescu</a></span>
<span class="venue"><i>26th Joint Meeting on European Software Engineering Conference and Symposium on the Foundations of Software Engineering (ESEC/FSE)</i>, ACM, pp. 952-955, 2018.</span>
<span>
<span><a href="https://doi.org/10.1145/3236024.3275430">DOI</a></span> ·
<span><a href="publications/esecfse18-brindescu.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://nl4se2018.github.io/">NL4SE 2018</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Towards Understanding Code Readability and Its impact on Design Quality</a>
<span class="author"><a href="people.html#mannan">Umme Ayda Mannan</a>, <a href="https://www.ics.uci.edu/~iftekha/">Iftekhar Ahmed</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>4th International Workshop on NLP for Software Engineering (NL4SE)</i>, ACM, pp. 18-21, 2018.</span>
<span>
<span><a href="https://doi.org/10.1145/3283812.3283820">DOI</a></span> ·
<span><a href="publications/nl4se18-mannan.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://vlhcc18.github.io/">VL/HCC 2018</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Semi-Automating (or not) a Socio-Technical Method for Socio-Technical Systems</a>
<span class="author">Christopher Mendez, Zoe Steine-Hanson, <a href="https://alannaholeson.com/">Alannah Oleson</a>, <a href="https://horvathaa.github.io/">Amber Horvath</a>, Charles Hill, Claudia Hilderbrand, <a href="people.html#sarma">Anita Sarma</a>, and <a href="http://web.engr.oregonstate.edu/~burnett/">Margaret Burnett</a></span>
<span class="venue"><i>Symposium on Visual Languages and Human-Centric Computing (VL/HCC)</i>, IEEE, pp. 23-32, 2018.</span>
<span>
<span><a href="https://doi.org/10.1109/VLHCC.2018.8506514">DOI</a></span> ·
<span><a href="publications/vlhcc18-mendez.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://www.icse2018.org/">ICSE 2018</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Gender in Open Source Software: What the Tools Tell</a>
<span class="author">Christopher Mendez, <a href="people.html#sarma">Anita Sarma</a>, and <a href="http://web.engr.oregonstate.edu/~burnett/">Margaret Burnett</a></span>
<span class="venue"><i>40th International Conference on Software Engineering (ICSE)</i>, ACM, pp. 21-24, 2018.</span>
<span>
<span><a href="https://ieeexplore.ieee.org/document/8452746">DOI</a></span> ·
<span><a href="publications/icse18-mendez.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://www.icse2018.org/">ICSE 2018</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Open Source Barriers to Entry, Revisited: A Sociotechnical Perspective</a>
<span class="author">Christopher Mendez, Hema Susmita Padala, Zoe Steine-Hanson, Claudia Hilderbrand, <a href="https://horvathaa.github.io/">Amber Horvath</a>, Charles Hill, Logan Simpson, Nupoor Patil, <a href="people.html#sarma">Anita Sarma</a>, and <a href="http://web.engr.oregonstate.edu/~burnett/">Margaret Burnett</a></span>
<span class="venue"><i>40th International Conference on Software Engineering (ICSE)</i>, ACM, pp. 1004-1015, 2018.</span>
<span>
<span><a href="https://doi.org/10.1145/3180155.3180241">DOI</a></span> ·
<span><a href="publications/icse18-mendez1.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="http://www.chaseresearch.org/workshops/chase-2018">CHASE 2018</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Context in Programming: An Investigation of How Programmers Create Context</a>
<a class="publication-link" id="context-in-programming"></a>
<span class="author"><a href="people.html#chattopadhyay">Souti Chattopdhyay</a>, <a href="people.html#nelson">Nicholas Nelson</a>, Thien Nam, McKenzie Calvert, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>11th International Workshop on Cooperative and Human Aspects of Software Engineering (CHASE)</i>, ACM, pp. 33-36, 2018.</span>
<span>
<span><a href="https://doi.org/10.1145/3195836.3195861">DOI</a></span> ·
<span><a href="publications/chase18-chattopadhyay.pdf">PDF</a></span> ·
<span><a href="http://web.engr.oregonstate.edu/~chattops/presentations/chaseFinal.pdf">Slides</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://www.sciencedirect.com/journal/information-and-software-technology/vol/103/suppl/C">IST</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">What Happened to My Application? Helping End Users Comprehend Evolution through Variation Management</a>
<span class="author"><a href="http://sandeepkuttal.ens.utulsa.edu/index.html">Sandeep Kaur Kuttal</a>, <a href="people.html#sarma">Anita Sarma</a>, <a href="http://cse.unl.edu/~grother/">Gregg Rothermel</a>, and Zhendong Wang</span>
<span class="venue"><i>Journal on Information and Software Technology (IST)</i>, Elsevier, Volume 103, pp. 55-74, 2018.</span>
<span>
<span><a href="https://doi.org/10.1016/j.infsof.2018.06.008">DOI</a></span> ·
<span><a href="publications/ist18-kuttal.pdf">PDF</a></span> ·
<span><a href="https://www.sciencedirect.com/science/article/abs/pii/S0950584918301198?via%3Dihub#ec-research-data">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://link.springer.com/journal/10606/volumes-and-issues/27-3">CSCW</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Newcomers’ Barriers… Is That All? An Analysis of Mentors’ and Newcomers’ Barriers in OSS Projects</a>
<span class="author">Sogol Balali, <a href="https://www.igor.pro.br/">Igor Steinmacher</a>, Umayal Annamalai, <a href="people.html#sarma">Anita Sarma</a>, and <a href="https://www.ime.usp.br/~gerosa/">Marco Aurelio Gerosa</a></span>
<span class="venue"><i>Journal of Computer Supported Cooperative Work (CSCW)</i>, Springer Publishing, Volume 27, pp. 679-714, 2018.</span>
<span>
<span><a href="https://doi.org/10.1007/s10606-018-9310-8">DOI</a></span> ·
<span><a href="publications/cscw18-balali.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://sravyapolisetty.github.io/ESEM/">ESEM 2017</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">An Empirical Examination of the Relationship between Code Smells and Merge Conflicts</a>
<span class="author"><a href="https://www.ics.uci.edu/~iftekha/">Iftekhar Ahmed</a>, <a href="http://caius.brindescu.com/">Caius Brindescu</a>, <a href="people.html#mannan">Umme Ayda Mannan</a>, <a href="http://web.engr.oregonstate.edu/~jensenca/OSU_ENGR/index.html">Carlos Jensen</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>11th International Symposium on Empirical Software Engineering and Measurement (ESEM)</i>, IEEE/ACM, pp. 58-67, 2017.</span>
<span>
<span><a href="https://doi.org/10.1109/ESEM.2017.12">DOI</a></span> ·
<span><a href="publications/esem17-ahmed.pdf">PDF</a></span> ·
<span><a href="http://caius.brindescu.com/slides/slides-ESEM17.pdf">Slides</a></span>
</span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://sites.google.com/site/vlhcc2017/">VL/HCC 2017</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">What Makes A Task Difficult? An Empirical Study of Perceptions of Task Difficulty</a>
<span class="author"><a href="people.html#leano">Rafael Leano</a>, <a href="people.html#chattopadhyay">Souti Chattopadhyay</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>Symposium on Visual Lanugages and Human-Centric Computing (VL/HCC)</i>, IEEE, pp. 67-71, 2017.</span>
<span>
<span><a href="https://doi.org/10.1109/VLHCC.2017.8103452">DOI</a></span> ·
<span><a href="publications/vlhcc17-leano.pdf">PDF</a></span> ·
<span><a href="http://web.engr.oregonstate.edu/~chattops/presentations/task-difficulty.pdf">Slides</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://sites.google.com/site/vlhcc2017/">VL/HCC 2017</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Understanding user perceptions of privacy, and configuration challenges in home automation</a>
<a class="publication-link" id="understanding-user-perceptions"></a>
<span class="author">Kim J. Kaaz, Alex Hoffer, Mahsa Saeidi, <a href="people.html#sarma">Anita Sarma</a>, and Rakesh B. Bobba</span>
<span class="venue"><i>Symposium on Visual Lanugages and Human-Centric Computing (VL/HCC)</i>, IEEE, pp. 297-301, 2017.</span>
<span>
<span><a href="https://doi.org/10.1109/VLHCC.2017.8103482">DOI</a></span> ·
<span><a href="publications/vlhcc17-kaaz.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://sites.google.com/site/vlhcc2017/">VL/HCC 2017</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Context in Exploratory Programming: Towards a Theoretical Framework</a>
<span class="author"><a href="people.html#chattopadhyay">Souti Chattopadhyay</a></span>
<span class="venue"><i>Symposium on Visual Lanugages and Human-Centric Computing (VL/HCC)</i>, IEEE, pp. 325-326, 2017.</span>
<span>
<span><a href="https://doi.org/10.1109/VLHCC.2017.8103492">DOI</a></span> ·
<span><a href="publications/vlhcc17-chattopadhyay.pdf">PDF</a></span> ·
<span><a href="https://nomatic.dev/docs/prompt.pdf">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="http://esec-fse17.uni-paderborn.de/">ESEC/FSE 2017</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Trade-offs in Continuous Integration: Assurance, Security, and Flexibility</a>
<span class="author"><a href="http://www.cs.cmu.edu/~mhilton/">Michael Hilton</a>, <a href="people.html#nelson">Nicholas Nelson</a>, Timothy Tunnell, <a href="http://mir.cs.illinois.edu/marinov/">Darko Marinov</a>, and <a href="http://dig.cs.illinois.edu/">Danny Dig</a></span>
<span class="venue"><i>11th Joint Meeting on Foundations of Software Engineering (ESEC/FSE)</i>, ACM, pp. 197–207, 2017.</span>
<span class="award">🏆 <a href=http://esec-fse17.uni-paderborn.de/program_research_track.php>ACM SIGSOFT Distinguished Paper Award</a></span>
<span>
<span><a href="https://doi.org/10.1145/3106237.3106270">DOI</a></span> ·
<span><a href="publications/esecfse17-hilton.pdf">PDF</a></span> ·
<span><a href="http://cope.eecs.oregonstate.edu/CI_Tradeoffs/">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://conferences.computer.org/chase2017/">CHASE 2017</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">10th International Workshop on Cooperative and Human Aspects of Software Engineering (CHASE 2017)</a>
<span class="author"><a href="https://ineed.coffee/">Daniel Graziotin</a>, Rafael Prikladnicki, Meira Levy, <a href="people.html#sarma">Anita Sarma</a>, and David Socha</span>
<span class="venue"><i>10th International Workshop on Cooperative and Human Aspects of Software Engineering (CHASE)</i>, ACM, pp. 1, 2017.</span>
<span>
<span><a href="https://doi.org/10.1109/CHASE.2017.22">DOI</a></span> ·
<span><a href="publications/chase17-graziotin.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://ppig.org/workshops/2017-annual-workshop/">PPIG 2017</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Towards an IDE to Support Programming as Problem-Solving</a>
<span class="author"><a href="people.html#nelson">Nicholas Nelson</a>, <a href="people.html#sarma">Anita Sarma</a>, and <a href="https://www.ics.uci.edu/~andre/">André van der Hoek</a></span>
<span class="venue"><i>28th Annual Workshop of the Psychology of Programming Interest Group (PPIG)</i>, pp. 105-108, 2017.</span>
<span>
<span><a href="https://ppig.org/papers/2017-ppig-28th-nelson/">DOI</a></span> ·
<span><a href="publications/ppig17-nelson.pdf">PDF</a></span> ·
<span><a href="https://nomatic.dev/presentations/ppig17-slides.pdf">Slides</a></span> ·
<span><a href="https://github.com/nelsonni/bonsai">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://ppig.org/workshops/2017-annual-workshop/">PPIG 2017</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Problem-Solving Applications in Developer Environments.</a>
<span class="author"><a href="people.html#nelson">Nicholas Nelson</a></span>
<span class="venue"><i>28th Annual Workshop of the Psychology of Programming Interest Group (PPIG)</i>, pp. 179-180, 2017.</span>
<span>
<span><a href="http://www.ppig.org/sites/ppig.org/files/2017-PPIG-28th-nelson_0.pdf">DOI</a></span> ·
<span><a href="publications/ppig17-nelson1.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://icsme2017.github.io/">ICSME 2017</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Software Practitioner Perspectives on Merge Conflicts and Resolutions</a>
<span class="author">Shane McKee, <a href="people.html#nelson">Nicholas Nelson</a>, <a href="people.html#sarma">Anita Sarma</a>, and <a href="http://dig.cs.illinois.edu/">Danny Dig</a></span>
<span class="venue"><i>International Conference on Software Maintenance and Evolution (ICSME)</i>, IEEE, pp. 467-478, 2017.</span>
<span class="award">🏆 <a href="https://nomatic.dev/assets/ICSME17.jpg">IEEE TCSE Distinguished Paper Award</a></span>
<span>
<span><a href="https://doi.org/10.1109/ICSME.2017.53">DOI</a></span> ·
<span><a href="publications/icsme17-mckee.pdf">PDF</a></span> ·
<span><a href="https://nomatic.dev/presentations/icsme17-slides.pdf">Slides</a></span> ·
<span><a href="https://nomatic.dev/icsme17.html">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://chi2017.acm.org/">CHI 2017<a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">PFIS-V: Modeling Foraging Behavior in the Presence of Variants</a>
<span class="author"><a href="https://sruti-s-ragavan.com/">Sruti Srinivasa Ragavan</a>, Bhargav Pandya, <a href="https://piorkowski.net/">David Piorkowski</a>, Charles Hill, <a href="http://sandeepkuttal.ens.utulsa.edu/index.html">Sandeep Kaur Kuttal</a>, <a href="people.html#sarma">Anita Sarma</a>, and <a href="http://web.engr.oregonstate.edu/~burnett/">Margaret Burnett</a></span>
<span class="venue"><i>Conference on Human Factors in Computing Systems (CHI)</i>, ACM, pp. 6232-6244, 2017.</span>
<span>
<span><a href="https://doi.org/10.1145/3025453.3025818">DOI</a></span> ·
<span><a href="publications/chi17-ragavan.pdf">PDF</a></span> ·
<span><a href="https://youtu.be/43VddAmv0Sw">Video</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://chi2017.acm.org/">CHI 2017<a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Gender-Inclusiveness Personas vs. Stereotyping: Can We Have it Both Ways?</a>
<span class="author">Charles G. Hill, Maren Haag, <a href="https://alannaholeson.com/">Alannah Oleson</a>, Chris Mendez, Nicola Marsden, <a href="people.html#sarma">Anita Sarma</a>, and <a href="http://web.engr.oregonstate.edu/~burnett/">Margaret Burnett</a></span>
<span class="venue"><i>Conference on Human Factors in Computing Systems (CHI)</i>, ACM, pp. 6658-6671, 2017.</span>
<span class="award">🏆 Best Paper Honorable Mention</a></span>
<span>
<span><a href="https://doi.org/10.1145/3025453.3025609">DOI</a></span> ·
<span><a href="publications/chi17-hill.pdf">PDF</a></span> ·
<span><a href="https://youtu.be/6f1aJhWGfLM">Video</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="http://www.wsdm-conference.org/2017/">WSDM 2017</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">ANNE: Improving Source Code Search using Entity Retrieval Approach</a>
<span class="author"><a href="https://vvtesh.co.in/">Venkatesh Vinayakarao</a>, <a href="people.html#sarma">Anita Sarma</a>, <a href="https://www.iiitd.edu.in/~purandare/">Rahul Purandare</a>, Shuktika Jain, and Saumya Jain</span>
<span class="venue"><i>10th International Conference on Web Search and Data Mining (WSDM)</i>, ACM, pp. 211-220, 2017.</span>
<span>
<span><a href="https://doi.org/10.1145/3018661.3018691">DOI</a></span> ·
<span><a href="publications/wsdm17-vinayakarao.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://www.conference-publishing.com/list.php?Event=FSEWS16SSE">SSE 2016</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Understanding Git History: A Multi-sense View</a>
<span class="author">Kevin J. North, <a href="people.html#sarma">Anita Sarma</a>, and <a href="http://web.cs.iastate.edu/~mcohen/">Myra B. Cohen</a></span>
<span class="venue"><i>8th International Workshop on Social Software Engineering (SSE)</i>, ACM, pp. 1-7, 2016.</span>
<span>
<span><a href="https://doi.org/10.1145/2993283.2993285">DOI</a></span> ·
<span><a href="publications/sse16-north.pdf">PDF</a></span> ·
<span><a href="https://cse.unl.edu/~myra/artifacts/GitVS/videos/gitvs.mp4">Video</a></span> ·
<span><a href="https://cse.unl.edu/~myra/artifacts/GitVS/vm/">Tool</a></span> ·
<span><a href="https://cse.unl.edu/~myra/artifacts/GitVS/">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://www.cs.ucdavis.edu/fse2016/">FSE 2016</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">TIPMerge: Recommending Experts for Integrating Changes across Branches</a>
<span class="author">Catrina Costa, Jair Figueiredo, <a href="http://www.ic.uff.br/~leomurta/">Leonardo Murta</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>24th SIGSOFT International Symposium on Foundations of Software Engineering (FSE)</i>, ACM, pp. 523-534, 2016.</span>
<span>
<span><a href="https://doi.org/10.1145/2950290.2950339">DOI</a></span> ·
<span><a href="publications/fse16-costa.pdf">PDF</a></span> ·
<span><a href="https://github.com/gems-uff/tipmerge">Tool</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://www.cs.ucdavis.edu/fse2016/">FSE 2016</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Can Testedness Be Effectively Measured?</a>
<span class="author"><a href="https://www.ics.uci.edu/~iftekha/">Iftekhar Ahmed</a>, <a href="https://rahul.gopinath.org/">Rahul Gopinath</a>, <a href="http://caius.brindescu.com/">Caius Brindescu</a>, <a href="https://agroce.github.io/">Alex Groce</a>, and <a href="http://web.engr.oregonstate.edu/~jensenca/OSU_ENGR/index.html">Carlos Jensen</a></span>
<span class="venue"><i>24th SIGSOFT International Symposium on Foundations of Software Engineering (FSE)</i>, ACM, pp. 547-558, 2016.</span>
<span>
<span><a href="https://doi.org/10.1145/2950290.2950324">DOI</a></span> ·
<span><a href="publications/fse16-ahmed.pdf">PDF</a></span> ·
<span><a href="https://speakerdeck.com/ahmedi/can-testedness-be-effectively-measured">Slides</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://www.cs.ucdavis.edu/fse2016/">FSE 2016</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Training the Future Workforce through Task Curation in an OSS Ecosystem</a>
<span class="author"><a href="people.html#sarma">Anita Sarma</a>, <a href="https://www.ime.usp.br/~gerosa/">Marco Aurélio Gerosa</a>, <a href="https://www.igor.pro.br/">Igor Steinmacher</a>, and <a href="https://rleano.github.io/">Rafael Leano</a></span>
<span class="venue"><i>24th SIGSOFT International Symposium on Foundations of Software Engineering (FSE)</i>, ACM, pp. 932-935, 2016.</span>
<span>
<span><a href="https://doi.org/10.1145/2950290.2983984">DOI</a></span> ·
<span><a href="publications/fse16-sarma.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://www.cs.ucdavis.edu/fse2016/">FSE 2016</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">TIPMerge: Recommending developers for merging branches</a>
<span class="author">Catarina Costa, Jair Figueiredo, <a href="people.html#sarma">Anita Sarma</a>, and <a href="http://www.ic.uff.br/~leomurta/">Leonardo Murta</a></span>
<span class="venue"><i>24th SIGSOFT International Symposium on Foundations of Software Engineering (FSE)</i>, ACM, pp. 998-1002, 2016.</span>
<span>
<span><a href="https://doi.org/10.1145/2950290.2983936">DOI</a></span> ·
<span><a href="publications/fse16-costa1.pdf">PDF</a></span> ·
<span><a href="https://github.com/gems-uff/tipmerge">Tool</a></span> ·
<span><a href="https://github.com/gems-uff/tipmerge/wiki">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://sites.google.com/site/vlhcc2016/">VL/HCC 2016</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Labeling relevant skills in tasks: Can the crowd help?</a>
<span class="author"><a href="https://rleano.github.io/">Rafael Leano</a>, Zhengdong Wang, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>Symposium on Visual Languages and Human-Centric Computing (VL/HCC)</i>, IEEE, pp. 185-189, 2016.</span>
<span>
<span><a href="https://doi.org/10.1109/VLHCC.2016.7739683">DOI</a></span> ·
<span><a href="publications/vlhcc16-leano.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://www.ics.uci.edu/~icgse2016/2_0cfp.html">ICGSE 2016</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Hiring in the Global Stage: Profiles of Online Contributions</a>
<span class="author"><a href="people.html#sarma">Anita Sarma</a>, Xiaofan Chen, <a href="http://sandeepkuttal.ens.utulsa.edu/index.html">Sandeep Kaur Kuttal</a>, <a href="http://www.lauradabbish.com/">Laura A. Dabbish</a>, and Zhendong Wang</span>
<span class="venue"><i>11th International Conference on Global Software Engineering (ICGSE)</i>, IEEE, pp. 1-10, 2016.</span>
<span class="award">🏆 Best Paper Award</a></span>
<span>
<span><a href="https://doi.org/10.1109/ICGSE.2016.35">DOI</a></span> ·
<span><a href="publications/icgse16-sarma.pdf">PDF</a></span> ·
<span><a href="http://web.engr.oregonstate.edu/~sarmaa/wp-content/uploads/2016/01/Walkthrough-V3.mp">Video</a></span> ·
<span><a href="https://github.com/asarma/Visual-Resume">Tool</a></span> ·
<span><a href="http://web.engr.oregonstate.edu/~sarmaa/visual-resume/">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://mobilesoftconf.org/2016/">MOBILESoft 2016</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Understanding Code Smells in Android Applications</a>
<span class="author"><a href="people.html#mannan">Umme Ayda Mannan</a>, <a href="https://www.ics.uci.edu/~iftekha/">Iftekhar Ahmed</a>, Rana Almurshed, <a href="http://dig.cs.illinois.edu/">Danny Dig</a>, and <a href="http://web.engr.oregonstate.edu/~jensenca/OSU_ENGR/index.html">Carlos Jensen</a></span>
<span class="venue"><i>International Conference on Mobile SOftware Engineering and Systems (MOBILESoft)</i>, IEEE/ACM, pp. 225-236, 2016.</span>
<span>
<span><a href="https://doi.org/10.1109/MobileSoft.2016.048">DOI</a></span> ·
<span><a href="publications/mobilesoft16-mannan.pdf">PDF</a></span> ·
<span><a href="http://web.engr.oregonstate.edu/~mannanu/AndroidProjects.txt">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://chi2016.acm.org/wp/">CHI 2016</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Foraging among an Overabundance of Similar Variants</a>
<span class="author"><a href="https://sruti-s-ragavan.com/">Sruti Srinivasa Ragavan</a>, <a href="http://sandeepkuttal.ens.utulsa.edu/index.html">Sandeep Kaur Kuttal</a>, Charles Hill, <a href="people.html#sarma">Anita Sarma</a>, <a href="https://piorkowski.net/">David Piorkowski</a>, and <a href="http://web.engr.oregonstate.edu/~burnett/">Margaret Burnett</a></span>
<span class="venue"><i>Conference on Human Factors in Computing Systems (CHI)</i>, ACM, pp. 3509–3521, 2016.</span>
<span class="award">🏆 Best Paper Award</a></span>
<span>
<span><a href="https://doi.org/10.1145/2858036.2858469">DOI</a></span> ·
<span><a href="publications/chi16-ragavan.pdf">PDF</a></span> ·
<span><a href="https://youtu.be/5MnnTqyFnfo">Video</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="http://esem-conferences.org/">ESEM 2015</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">An Empirical Study of Design Degradation: How Software Projects Get Worse over Time</a>
<span class="author"><a href="https://www.ics.uci.edu/~iftekha/">Iftekhar Ahmed</a>, <a href="people.html#mannan">Umme Ayda Mannan</a>, <a href="https://rahul.gopinath.org/">Rahul Gopinath</a>, and <a href="http://web.engr.oregonstate.edu/~jensenca/OSU_ENGR/index.html">Carlos Jensen</a></span>
<span class="venue"><i>International Symposium on Empirical Software Engineering and Measurement (ESEM)</i>, IEEE/ACM, pp. 1-10, 2015.</span>
<span>
<span><a href="https://doi.org/10.1109/ESEM.2015.7321186">DOI</a></span> ·
<span><a href="publications/esem15-ahmed.pdf">PDF</a></span> ·
<span><a href="https://speakerdeck.com/ahmedi/an-empirical-study-of-design-degradation-how-software-projects-get-worse-over-time">Slides</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="http://esec-fse15.dei.polimi.it/">ESEC/FSE 2015</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">GitSonifier: Using Sound to Portray Developer Conflict History</a>
<span class="author">Kevin J. North, Shane Bolan, <a href="people.html#sarma">Anita Sarma</a>, and <a href="http://web.cs.iastate.edu/~mcohen/">Myra B. Cohen</a></span>
<span class="venue"><i>10th Joint Meeting on Foundations of Software Engineering (ESEC/FSE)</i>, ACM, pp. 886–889, 2015.</span>
<span>
<span><a href="https://doi.org/10.1145/2786805.2803199">DOI</a></span> ·
<span><a href="publications/esecfse15-north.pdf">PDF</a></span> ·
<span><a href="https://cse.unl.edu/~myra/artifacts/NIER15/">Data</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="http://2015.icse-conferences.org/">ICSE 2015</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">8th International Workshop On Cooperative and Human Aspects of Software Engineering (CHASE 2015)</a>
<span class="author">Andrew Begel, Rafael Prikladnicki, Yvonne Dittrich, Cleidson R. B. de Souza, <a href="people.html#sarma">Anita Sarma</a>, and Sandeep Athavale</span>
<span class="venue"><i>37th International Conference on Software Engineering (ICSE)</i>, ACM, Volume 2, pp. 969-970, 2015.</span>
<span>
<span><a href="https://doi.org/10.5555/2819009.2819234">DOI</a></span> ·
<span><a href="publications/icse15-begel.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://www.conference-publishing.com/list.php?Event=SANER15FOREWORD">SANER 2015</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Niche vs. Breadth: Calculating Expertise through a Fine-Grained Analysis</a>
<span class="author">Jose Ricardo da Silva Junior, Esteban Clua, <a href="http://www.ic.uff.br/~leomurta/">Leonardo Murta</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>22nd International Conference on Software Analysis, Evolution, and Re-engineering (SANER)</i>, IEEE, pp. 409-418, 2015.</span>
<span>
<span><a href="https://doi.org/10.1109/SANER.2015.7081851">DOI</a></span> ·
<span><a href="publications/saner15-junior.pdf">PDF</a></span> ·
<span><a href="http://www.openblas.net/">Tool</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://www.worldscientific.com/toc/ijseke/25/01">IJSEKE</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Multi-Perspective Exploratory Analysis of Software Development Data</a>
<span class="author">Jose Ricardo da Silva Junior, Esteban Clua, <a href="http://www.ic.uff.br/~leomurta/">Leonardo Murta</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>International Journal of Software Engineering and Knowledge Engineering (IJSEKE)</i>, World Scientific, Volume 25, Issue 1, pp. 51-68, 2015.</span>
<span>
<span><a href="https://doi.org/10.1142/S0218194015400033">DOI</a></span> ·
<span><a href="publications/ijseke15-junior.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://www.springeropen.com/collections/SESNP">JISA</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Thematic series on software engineering from a social network perspective</a>
<span class="author"><a href="https://www.ime.usp.br/~gerosa/">Marco Aurelio Gerosa</a>, <a href="https://redmiles.ics.uci.edu/">David Redmiles</a>, <a href="http://www.circonflexe.dk/pernillebjorn/">Pernille Bjørn</a>, and <a href="people.html#sarma">Anita Sarma</a></span>
<span class="venue"><i>Journal of Internet Services and Applications (JISA)</i>, Springer Publishing, Volume 6, Issue 1, Article 23, pp. 1-5, 2015.</span>
<span>
<span><a href="https://doi.org/10.1186/s13174-015-0038-0">DOI</a></span> ·
<span><a href="publications/jisa15-gerosa.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://opensym.org/os2014/about/">OpenSym 2014</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">Older Adults and Free/Open Source Software: A Diary Study of First-Time Contributors</a>
<span class="author">Jennifer Davidson, <a href="people.html#mannan">Umme Ayda Mannan</a>, Rithika Naik, Ishnit Dua, and <a href="http://web.engr.oregonstate.edu/~jensenca/OSU_ENGR/index.html">Carlos Jensen</a></span>
<span class="venue"><i>10th International Symposium on Open Collaboration (OpenSym)</i>, ACM, pp. 1-10, 2014.</span>
<span>
<span><a href="https://doi.org/10.1145/2641580.2641589">DOI</a></span> ·
<span><a href="publications/opensym14-davidson.pdf">PDF</a></span>
</span>
</div>
</td>
</table>
<table class="article container">
<td width="130" valign="top" style="padding-top: 3px">
<span><a href="https://sites.google.com/site/vlhcc2014/home">VL/HCC 2014</a></span></td>
<td>
<div class="csl-block" style="display: flex; flex-flow: column wrap; flex-wrap: wrap">
<a class="inactive title">On older adults in free/open source software: reflections of contributors and community leaders</a>
<span class="author">Jennifer Davidson, <a href="people.html#mannan">Umme Ayda Mannan</a>, Rithika Naik, Amir Hossain Azarbakht, and <a href="http://web.engr.oregonstate.edu/~jensenca/OSU_ENGR/index.html">Carlos Jensen</a></span>
<span class="venue"><i>Symposium on Visual Languages and Human-Centric Computing (VL/HCC)</i>, IEEE pp. 93-100, 2014.</span>
<span>
<span><a href="https://doi.org/10.1109/VLHCC.2014.6883029">DOI</a></span> ·
<span><a href="publications/vlhcc14-davidson.pdf">PDF</a></span>
</span>
</div>
</td>