forked from MiniJavaCompiler/MiniJavaLLVM
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibrary.bib
More file actions
2816 lines (2774 loc) · 153 KB
/
library.bib
File metadata and controls
2816 lines (2774 loc) · 153 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
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
Automatically generated by Mendeley Desktop 1.10.1
Any changes to this file will be lost if it is regenerated by Mendeley.
BibTeX export options can be customized via Preferences -> BibTeX in Mendeley Desktop
@article{Davis1971,
author = {Davis, MS},
file = {:Users/jwshephe/Documents/mendeley/Davis/Davis\_Philosophy of the Social Sciences\_1971\_That's Interesting! Towards a Phenomenology of Sociology and a Sociology of Phenomenology.pdf:pdf},
journal = {Philos. Soc. Sci.},
title = {{That's Interesting! Towards a Phenomenology of Sociology and a Sociology of Phenomenology}},
url = {http://www-personal.umich.edu/~samoore/teach/bit8852005/files/72362.pdf},
volume = {4},
year = {1971}
}
@article{Mealy2007,
author = {Mealy, Erica and Carrington, David and Strooper, Paul and Wyeth, Peta},
doi = {10.1109/ASWEC.2007.24},
file = {:Users/jwshephe/Documents/mendeley/Mealy et al/Mealy et al.\_2007 Australian Software Engineering Conference (ASWEC'07)\_2007\_Improving Usability of Software Refactoring Tools.pdf:pdf},
isbn = {0-7695-2778-7},
issn = {1530-0803},
journal = {2007 Aust. Softw. Eng. Conf.},
month = apr,
pages = {307--318},
publisher = {Ieee},
title = {{Improving Usability of Software Refactoring Tools}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=4159683},
year = {2007}
}
@article{Wang2011,
author = {Wang, H. and Chung, J. E. and Park, N. and McLaughlin, M. L. and Fulk, J.},
doi = {10.1177/0093650211408593},
file = {:Users/jwshephe/Documents/mendeley/Wang et al/Wang et al.\_Communication Research\_2011\_Understanding Online Community Participation A Technology Acceptance Perspective.pdf:pdf},
issn = {0093-6502},
journal = {Communic. Res.},
month = may,
number = {6},
pages = {781--801},
title = {{Understanding Online Community Participation: A Technology Acceptance Perspective}},
url = {http://crx.sagepub.com/cgi/doi/10.1177/0093650211408593},
volume = {39},
year = {2011}
}
@article{Naturwissenschaften2013,
author = {Singer, MSLG},
file = {:Users/jwshephe/Documents/mendeley/Singer/Singer\_leif.me\_2013\_Improving the Adoption of Software Engineering Practices Through Persuasive Interventions.pdf:pdf},
isbn = {9781291273113},
journal = {leif.me},
number = {September 1979},
title = {{Improving the Adoption of Software Engineering Practices Through Persuasive Interventions}},
url = {http://leif.me/papers/Singer2013a.pdf},
year = {2013}
}
@article{Ge2012,
author = {Ge, Xi and DuBose, Quinton L. and Murphy-Hill, Emerson},
doi = {10.1109/ICSE.2012.6227192},
file = {:Users/jwshephe/Documents/mendeley/Ge, DuBose, Murphy-Hill/Ge, DuBose, Murphy-Hill\_2012 34th International Conference on Software Engineering (ICSE)\_2012\_Reconciling manual and automatic refactoring.pdf:pdf},
isbn = {978-1-4673-1067-3},
journal = {2012 34th Int. Conf. Softw. Eng.},
month = jun,
pages = {211--221},
publisher = {Ieee},
title = {{Reconciling manual and automatic refactoring}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=6227192},
year = {2012}
}
@article{Purdy2011,
abstract = {Condoms are an important contraceptive method in Turkey, used by one in three couples using modern methods. However, withdrawal remains the most common form of contraception, resulting in many unwanted pregnancies. To address this issue and increase condom use in Turkey, DKT International, a social marketing enterprise, leveraged the high use of the Internet and social networking to help build Fiesta, a premium condom brand, and promote sales and condom use. By utilising a wide range of digital platforms--a new website, Facebook page, Google Adwords, an e-newsletter, viral marketing, banner ads and involving bloggers--Fiesta achieved strong recognition among the target audience of sexually active young people, though far more men than women. Retail audits, Internet analysis and sales performance suggest that using the Internet was instrumental in establishing Fiesta. Sales reached 4.3 million condoms (of which 8\% were sold online) in the first 18 months. In contrast, Kiss, a far more inexpensive DKT condom, launched at the same time but with no digital campaign, sold 2.6 million. With the growing availability and use of the Internet and social media globally, family planning organizations should consider incorporating these technologies into their educational, outreach and marketing programmes.},
annote = {People didn't use the site for "entertainment or education" – just went straight to "purchase" or "company info" pages
Highest response rate: "Love Doctor", "videos about condoms", "questions of a sexual nature"},
author = {Purdy, Christopher H},
doi = {10.1016/S0968-8080(11)37549-0},
file = {:Users/jwshephe/Documents/mendeley/Purdy/Purdy\_Reproductive health matters\_2011\_Using the Internet and social media to promote condom use in Turkey.pdf:pdf},
issn = {1460-9576},
journal = {Reprod. Health Matters},
keywords = {Condoms,Condoms: utilization,Humans,Internet,Internet: utilization,Safe Sex,Social Marketing,Turkey},
month = may,
number = {37},
pages = {157--65},
pmid = {21555096},
title = {{Using the Internet and social media to promote condom use in Turkey.}},
url = {http://www.ncbi.nlm.nih.gov/pubmed/21555096},
volume = {19},
year = {2011}
}
@article{RangarajanSridhar2009,
author = {{Rangarajan Sridhar}, Vivek Kumar and Bangalore, Srinivas and Narayanan, Shrikanth},
doi = {10.1016/j.csl.2008.12.001},
file = {:Users/jwshephe/Documents/mendeley/Rangarajan Sridhar, Bangalore, Narayanan/Rangarajan Sridhar, Bangalore, Narayanan\_Computer Speech \& Language\_2009\_Combining lexical, syntactic and prosodic cues for improved online dialog act tagging.pdf:pdf},
issn = {08852308},
journal = {Comput. Speech Lang.},
keywords = {acoustic correlates of prosody,dialog act tagging,discourse context,maximum entropy modeling,prosodic cues},
month = oct,
number = {4},
pages = {407--422},
publisher = {Elsevier Ltd},
title = {{Combining lexical, syntactic and prosodic cues for improved online dialog act tagging}},
url = {http://linkinghub.elsevier.com/retrieve/pii/S0885230808000569},
volume = {23},
year = {2009}
}
@article{Laguilles2010,
author = {Laguilles, Jerold S. and Williams, Elizabeth a. and Saunders, Daniel B.},
doi = {10.1007/s11162-010-9203-2},
file = {:Users/jwshephe/Documents/mendeley/Laguilles, Williams, Saunders/Laguilles, Williams, Saunders\_Research in Higher Education\_2010\_Can Lottery Incentives Boost Web Survey Response Rates Findings from Fou.pdf:pdf},
issn = {0361-0365},
journal = {Res. High. Educ.},
keywords = {a high response rate,among the most important,given the possibility that,has long been considered,incentives \'{a} web survey,indicators of,leverage-salience theory,non-response to any particular,quality survey data,response rates \'{a} lottery,survey is not,\'{a} survey research \'{a}},
month = nov,
number = {5},
pages = {537--553},
title = {{Can Lottery Incentives Boost Web Survey Response Rates? Findings from Four Experiments}},
url = {http://www.springerlink.com/index/10.1007/s11162-010-9203-2},
volume = {52},
year = {2010}
}
@article{Yang1999,
author = {Yang, Jun},
file = {:Users/jwshephe/Documents/mendeley/Yang/Yang\_Trends in Functional Programming\_1999\_Explaining type errors by finding the source of a type conflict.pdf:pdf},
journal = {Trends Funct. Program.},
title = {{Explaining type errors by finding the source of a type conflict}},
url = {http://reference.kfupm.edu.sa/content/e/x/explaining\_type\_errors\_by\_finding\_the\_so\_106866.pdf http://scholar.google.com/scholar?hl=en\&btnG=Search\&q=intitle:Explaining+Type+Errors+by+Finding+the+Source+of+a+Type+Conflict\#0},
year = {1999}
}
@book{Austin,
address = {Cambridge, Massachusetts},
author = {Austin, J. L.},
edition = {2},
editor = {Urmson, J.O. and Sbis\`{a}, Marina},
file = {:Users/jwshephe/Documents/mendeley/Austin/Austin\_Unknown\_Unknown\_How to Do Things With Words.pdf:pdf},
publisher = {Harvard University Press},
title = {{How to Do Things With Words}}
}
@article{Sheridan2000,
author = {Sheridan, T.B.},
doi = {10.1006/ijhc.1999.0285},
file = {:Users/jwshephe/Documents/mendeley/Sheridan/Sheridan\_International Journal of Human-Computer Studies\_2000\_Function allocation algorithm, alchemy or apostasy.pdf:pdf},
issn = {10715819},
journal = {Int. J. Hum. Comput. Stud.},
month = feb,
number = {2},
pages = {203--216},
title = {{Function allocation: algorithm, alchemy or apostasy?}},
url = {http://linkinghub.elsevier.com/retrieve/pii/S1071581999902859},
volume = {52},
year = {2000}
}
@article{Green2001,
author = {Green, PE and Krieger, AM and Wind, Y},
file = {:Users/jwshephe/Documents/mendeley/Green, Krieger, Wind/Green, Krieger, Wind\_Interfaces\_2001\_Thirty years of conjoint analysis Reflections and prospects.pdf:pdf},
journal = {Interfaces (Providence).},
number = {June},
pages = {56--73},
title = {{Thirty years of conjoint analysis: Reflections and prospects}},
url = {http://interfaces.journal.informs.org/content/31/3\_supplement/S56.short},
volume = {2001},
year = {2001}
}
@article{Curtis1981,
author = {Curtis, B},
file = {:Users/jwshephe/Documents/mendeley/Curtis/Curtis\_Proceedings of the IEEE\_1981\_Substantiating Programmer Variability.pdf:pdf},
journal = {Proc. IEEE},
number = {7},
pages = {95616},
title = {{Substantiating Programmer Variability}},
url = {http://ieeexplore.ieee.org/xpls/abs\_all.jsp?arnumber=1456356},
volume = {69},
year = {1981}
}
@article{Murphy-Hill2010,
author = {Murphy-Hill, E and Black, AP},
file = {:Users/jwshephe/Documents/mendeley/Murphy-Hill, Black/Murphy-Hill, Black\_\ldots symposium on Software visualization\_2010\_An interactive ambient visualization for code smells.pdf:pdf},
isbn = {9781450300285},
journal = {\ldots Symp. Softw. Vis.},
keywords = {code smells,refactoring,software,usability},
pages = {5--14},
title = {{An interactive ambient visualization for code smells}},
url = {http://dl.acm.org/citation.cfm?id=1879216},
year = {2010}
}
@article{Tillmann2012a,
author = {Tillmann, Nikolai and Moskal, Michal and Halleux, Jonathan De and Fahndrich, Manuel and Xie, Tao},
doi = {10.1109/CSEET.2012.11},
file = {:Users/jwshephe/Documents/mendeley/Tillmann et al/Tillmann et al.\_2012 IEEE 25th Conference on Software Engineering Education and Training\_2012\_Engage Your Students by Teaching Computer Science Using Only Mobile Devices with TouchDevelop.pdf:pdf},
isbn = {978-1-4673-1592-0},
journal = {2012 IEEE 25th Conf. Softw. Eng. Educ. Train.},
month = apr,
pages = {87--89},
publisher = {Ieee},
title = {{Engage Your Students by Teaching Computer Science Using Only Mobile Devices with TouchDevelop}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=6245013},
year = {2012}
}
@article{Spolsky2009,
annote = {Stack Overflow may be successful for a number of reasons:
Other collaborative answer sites suck because:
Paywalls between google search results and answers
Registration "speed bump"
A lot of answers are wrong (see Yahoo! Answers)
Some results are obsolete
What stackoverflow does right/Spolsky's 9 building blocks of a successful collaborative website:
Voting - people get to vote on what they like, people work together to make popular content more visible
Tags - people can create new tags for content, can ignore site-imposed tags, allows them to filter unwanted content and zone in on desired content
Editing - Users can edit both questions and answers
Badges - reward users, give certain users more credibility
Karma - further gamification. People will "do for free that they're not willing to do for small amounts of money" if you offer them status and privelidge
Pre-Search - autosuggest as you type
Google is UI - Google-readable URLS, sitemaps, metags, permalinks
Performance
Critical Mass
From the video:
Allows for editing other questions/answers
encourages mashing up best answers into better best answer and "karma whoring" that way; generates better content, gets ppl involved, reduces ownership of any one answer
Importance of tagging},
author = {Spolsky, J},
journal = {Google Talks},
title = {{Learning from StackOverflow.com}},
url = {https://www.youtube.com/watch?feature=player\_embedded\&v=NWHfY\_lvKIQ},
year = {2009}
}
@article{In2004,
author = {Chess, B and McGraw, G},
file = {:Users/jwshephe/Documents/mendeley/Chess, McGraw/Chess, McGraw\_Security \& Privacy, IEEE\_2004\_Static analysis for security.pdf:pdf},
journal = {Secur. Privacy, IEEE},
title = {{Static analysis for security}},
url = {http://ieeexplore.ieee.org/xpls/abs\_all.jsp?arnumber=1366126},
year = {2004}
}
@article{Stolcke2000,
author = {Stolcke, Andreas and Ries, Klaus and Coccaro, Noah and Shriberg, Elizabeth and Bates, Rebecca and Jurafsky, Daniel and Taylor, Paul and Martin, Rachel and Ess-Dykema, Carol Van and Meteer, Marie},
doi = {10.1162/089120100561737},
file = {:Users/jwshephe/Documents/mendeley/Stolcke et al/Stolcke et al.\_Computational Linguistics\_2000\_Dialogue Act Modeling for Automatic Tagging and Recognition of Conversational Speech.pdf:pdf},
issn = {0891-2017},
journal = {Comput. Linguist.},
month = sep,
number = {3},
pages = {339--373},
title = {{Dialogue Act Modeling for Automatic Tagging and Recognition of Conversational Speech}},
url = {http://www.mitpressjournals.org/doi/abs/10.1162/089120100561737},
volume = {26},
year = {2000}
}
@article{Wirfs-brock2007,
author = {Wirfs-brock, Editor Rebecca J and Wirfs-brock, Rebecca J},
file = {:Users/jwshephe/Documents/mendeley/Wirfs-brock, Wirfs-brock/Wirfs-brock, Wirfs-brock\_Unknown\_2007\_Does Beautiful Code Imply Beautiful Design.pdf:pdf},
pages = {18--20},
title = {{Does Beautiful Code Imply Beautiful Design?}},
year = {2007}
}
@article{Traver2010,
author = {Traver, V. Javier},
doi = {10.1155/2010/602570},
file = {:Users/jwshephe/Documents/mendeley/Traver/Traver\_Advances in Human-Computer Interaction\_2010\_On Compiler Error Messages What They Say and What They Mean.pdf:pdf},
issn = {1687-5893},
journal = {Adv. Human-Computer Interact.},
pages = {1--26},
title = {{On Compiler Error Messages: What They Say and What They Mean}},
url = {http://www.hindawi.com/journals/ahci/2010/602570/},
volume = {2010},
year = {2010}
}
@inproceedings{Guo13,
author = {Guo, PJ},
booktitle = {Proc. ACM Tech. Symp. Comput. Sci. Educ.},
file = {:Users/jwshephe/Documents/mendeley/Guo/Guo\_Proceedings of the ACM Technical Symposium on Computer Science Education (SIGCSE)\_2013\_Online Python Tutor Embeddable web-based prog.pdf:pdf},
isbn = {9781450317757},
pages = {1--6},
title = {{Online Python Tutor: Embeddable web-based program visualization for CS education}},
url = {http://dl.acm.org/citation.cfm?id=2445368},
year = {2013}
}
@article{Laitinen1996,
author = {Laitinen, Kari},
file = {:Users/jwshephe/Documents/mendeley/Laitinen/Laitinen\_ACM SIGSOFT Software Engineering Notes\_1996\_Estimating understandability of software documents.pdf:pdf},
journal = {ACM SIGSOFT Softw. Eng. Notes},
number = {4},
pages = {81--92},
title = {{Estimating understandability of software documents}},
url = {http://dl.acm.org/citation.cfm?id=232092},
volume = {21},
year = {1996}
}
@article{Yang2013,
address = {New York, New York, USA},
author = {Yang, Meng and Warner, Michael and Millen, David R.},
doi = {10.1145/2468356.2468766},
file = {:Users/jwshephe/Documents/mendeley/Yang, Warner, Millen/Yang, Warner, Millen\_CHI '13 Extended Abstracts on Human Factors in Computing Systems on - CHI EA '13\_2013\_Best practices for enterprise.pdf:pdf},
isbn = {9781450319522},
journal = {CHI '13 Ext. Abstr. Hum. Factors Comput. Syst. - CHI EA '13},
pages = {2349},
publisher = {ACM Press},
title = {{Best practices for enterprise social software adoption}},
url = {http://dl.acm.org/citation.cfm?doid=2468356.2468766},
year = {2013}
}
@article{Kaplowitz2011,
annote = {Varied invitation length, URL placement, reported survey length, and subject line
Previous study showed no correlation between invitation length and response rate; In the study faculty and staff \~{}5\% more likely to respond to long invitation
URL at bottom or top of survey: More faculty and students responded to survey with URL at the bottom
Reported survey length "about 10 minutes" or "less than 30 minutes": Faculty and staff not influenced by time estimate; students responded 2.1\% more to short estimate
Name of authority figure in subject line significantly increased response from faculty, staff, and students, in that order
},
author = {Kaplowitz, M. D. and Lupi, F. and Couper, M. P. and Thorp, L.},
doi = {10.1177/0894439311419084},
file = {:Users/jwshephe/Documents/mendeley/Kaplowitz et al/Kaplowitz et al.\_Social Science Computer Review\_2011\_The Effect of Invitation Design on Web Survey Response Rates.pdf:pdf},
issn = {0894-4393},
journal = {Soc. Sci. Comput. Rev.},
month = oct,
number = {3},
pages = {339--349},
title = {{The Effect of Invitation Design on Web Survey Response Rates}},
url = {http://ssc.sagepub.com/cgi/doi/10.1177/0894439311419084},
volume = {30},
year = {2011}
}
@article{Deterding,
author = {Deterding, Sebastian},
file = {:Users/jwshephe/Documents/mendeley/Deterding/Deterding\_Unknown\_Unknown\_Gamification Designing for Motivation.pdf:pdf},
pages = {14--17},
title = {{Gamification: Designing for Motivation}}
}
@article{VandeWijngaert2009,
author = {van de Wijngaert, Lidwien and Bouwman, Harry},
doi = {10.1016/j.tele.2008.01.002},
file = {:Users/jwshephe/Documents/mendeley/van de Wijngaert, Bouwman/van de Wijngaert, Bouwman\_Telematics and Informatics\_2009\_Would you share Predicting the potential use of a new technology.pdf:pdf},
issn = {07365853},
journal = {Telemat. Informatics},
keywords = {1,2004,adoption,adoption and use of,are among the many,communication technologies that may,conjoint measurement,first steps out of,hoc sharing of resources,innovations,mcknight et al,new technologies,real world,such as,take its,the laboratory into the,wireless grids,wireless grids allow ad},
month = feb,
number = {1},
pages = {85--102},
title = {{Would you share? Predicting the potential use of a new technology}},
url = {http://linkinghub.elsevier.com/retrieve/pii/S0736585308000063},
volume = {26},
year = {2009}
}
@article{Sankaranarayanan,
annote = {Existing verification tools require human-coded specifications; existing specifications are usually informal natural language documentation},
author = {Sankaranarayanan, Sriram},
file = {:Users/jwshephe/Documents/mendeley/Sankaranarayanan/Sankaranarayanan\_\ldots Engineering, 2008. ICSE \ldots\_2008\_Mining library specifications using inductive logic programming.pdf:pdf},
isbn = {9781605580791},
journal = {\ldots Eng. 2008. ICSE \ldots},
keywords = {datalog,inductive logic programming,machine learning,software specification,verification},
title = {{Mining library specifications using inductive logic programming}},
url = {http://patentscope.wipo.int/search/en/WO2009032361 http://ieeexplore.ieee.org/xpls/abs\_all.jsp?arnumber=4814124},
year = {2008}
}
@article{Zeller2001,
author = {Zeller, A},
file = {:Users/jwshephe/Documents/mendeley/Zeller/Zeller\_Computer\_2001\_Automated Debugging Are We Close.pdf:pdf},
journal = {Computer (Long. Beach. Calif).},
pages = {26--31},
title = {{Automated Debugging: Are We Close?}},
url = {http://ieeexplore.ieee.org/xpls/abs\_all.jsp?arnumber=963440},
year = {2001}
}
@article{Wilson2006,
author = {Wilson, Thomas Blake},
file = {:Users/jwshephe/Documents/mendeley/Wilson/Wilson\_Unknown\_2006\_Gradual awareness notification for the desktop environment.pdf:pdf},
title = {{Gradual awareness notification for the desktop environment}},
url = {http://dspace.mit.edu/handle/1721.1/36905},
year = {2006}
}
@article{Bangalore2008,
author = {Bangalore, Srinivas},
file = {:Users/jwshephe/Documents/mendeley/Bangalore/Bangalore\_Audio, Speech, and \ldots\_2008\_Learning the Structure of Task-Driven Human-Human Dialogs.pdf:pdf},
journal = {Audio, Speech, \ldots},
number = {7},
pages = {1249--1259},
title = {{Learning the Structure of Task-Driven Human-Human Dialogs}},
url = {http://ieeexplore.ieee.org/xpls/abs\_all.jsp?arnumber=4599395},
volume = {16},
year = {2008}
}
@article{Ray2012,
author = {Ray, B.},
doi = {10.1109/MSR.2012.6224298},
file = {:Users/jwshephe/Documents/mendeley/Ray/Ray\_2012 9th IEEE Working Conference on Mining Software Repositories (MSR)\_2012\_An empirical study of supplementary bug fixes.pdf:pdf},
isbn = {978-1-4673-1761-0},
journal = {2012 9th IEEE Work. Conf. Min. Softw. Repos.},
keywords = {-software evolution,bug,empirical study,patches},
month = jun,
pages = {40--49},
publisher = {Ieee},
title = {{An empirical study of supplementary bug fixes}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=6224298},
year = {2012}
}
@article{Baron1986,
abstract = {In this article, we attempt to distinguish between the properties of moderator and mediator variables at a number of levels. First, we seek to make theorists and researchers aware of the importance of not using the terms moderator and mediator interchangeably by carefully elaborating, both conceptually and strategically, the many ways in which moderators and mediators differ. We then go beyond this largely pedagogical function and delineate the conceptual and strategic implications of making use of such distinctions with regard to a wide range of phenomena, including control and stress, attitudes, and personality traits. We also provide a specific compendium of analytic procedures appropriate for making the most effective use of the moderator and mediator distinction, both separately and in terms of a broader causal system that includes both moderators and mediators.},
author = {Baron, R M and Kenny, D a},
file = {:Users/jwshephe/Documents/mendeley/Baron, Kenny/Baron, Kenny\_Journal of personality and social psychology\_1986\_The moderator-mediator variable distinction in social psychological research conceptual, strategic, and statistical considerations.pdf:pdf},
issn = {0022-3514},
journal = {J. Pers. Soc. Psychol.},
keywords = {Attitude,Behavior,Humans,Models, Psychological,Personality,Psychology, Social,Research,Statistics as Topic},
month = dec,
number = {6},
pages = {1173--82},
pmid = {3806354},
title = {{The moderator-mediator variable distinction in social psychological research: conceptual, strategic, and statistical considerations.}},
url = {http://www.ncbi.nlm.nih.gov/pubmed/3806354},
volume = {51},
year = {1986}
}
@article{Hoddinott1986,
author = {Hoddinott, Susan N and Bass, Martin J},
file = {:Users/jwshephe/Documents/mendeley/Hoddinott, Bass/Hoddinott, Bass\_Unknown\_1986\_The Dillman Total Design Survey Method A Sure-Fire way to Get High Survey Return Rates.pdf:pdf},
keywords = {associate in the department,at the university,diuman total design survey,family medicine,method,of,research,surveys,susan hoddinott is the},
number = {November},
title = {{The Dillman Total Design Survey Method: A Sure-Fire way to Get High Survey Return Rates}},
volume = {32},
year = {1986}
}
@article{Murphy-Hill2011,
author = {Murphy-Hill, E and Black, A},
file = {:Users/jwshephe/Documents/mendeley/Murphy-Hill, Black/Murphy-Hill, Black\_Unknown\_2011\_Programmer-Friendly Refactoring Errors.pdf:pdf},
number = {Section 2},
title = {{Programmer-Friendly Refactoring Errors}},
url = {http://ieeexplore.ieee.org/xpls/abs\_all.jsp?arnumber=6072219},
volume = {X},
year = {2011}
}
@article{Warford2005a,
author = {Warford, MK},
file = {:Users/jwshephe/Documents/mendeley/Warford/Warford\_The Innovation Journal\_2005\_Testing a Diffusion of Innovations in Education Model (DIEM).pdf:pdf},
journal = {Innov. J.},
number = {3},
title = {{Testing a Diffusion of Innovations in Education Model (DIEM)}},
url = {http://works.bepress.com/mark\_warford/2/},
volume = {10},
year = {2005}
}
@article{Chillarege1992,
author = {Chillarege, Ram and Bhandari, IS},
file = {:Users/jwshephe/Documents/mendeley/Chillarege, Bhandari/Chillarege, Bhandari\_Software \ldots\_1992\_Orthogonal defect classification-a concept for in-process measurements.pdf:pdf},
journal = {Softw. \ldots},
number = {11},
title = {{Orthogonal defect classification-a concept for in-process measurements}},
url = {http://ieeexplore.ieee.org/xpls/abs\_all.jsp?arnumber=177364},
volume = {18},
year = {1992}
}
@article{Shropshire2009,
author = {Shropshire, K. O. and Hawdon, J. E. and Witte, J. C.},
doi = {10.1177/0049124108327130},
file = {:Users/jwshephe/Documents/mendeley/Shropshire, Hawdon, Witte/Shropshire, Hawdon, Witte\_Sociological Methods \& Research\_2009\_Web Survey Design Balancing Measurement, Response, and Topical Interest.pdf:pdf},
issn = {0049-1241},
journal = {Sociol. Methods Res.},
month = feb,
number = {3},
pages = {344--370},
title = {{Web Survey Design: Balancing Measurement, Response, and Topical Interest}},
url = {http://smr.sagepub.com/cgi/doi/10.1177/0049124108327130},
volume = {37},
year = {2009}
}
@article{Kummerfeld2003,
author = {Kummerfeld, SK and Kay, Judy},
file = {:Users/jwshephe/Documents/mendeley/Kummerfeld, Kay/Kummerfeld, Kay\_Conferences in Research and Practice in \ldots\_2003\_The neglected battle fields of syntax errors.pdf:pdf},
journal = {Conf. Res. Pract. \ldots},
title = {{The neglected battle fields of syntax errors}},
url = {http://dl.acm.org/ft\_gateway.cfm?id=858416\&type=pdf},
year = {2003}
}
@article{Dorow2009,
author = {Dorow, Malte and Beardmore, Ben and Haider, Wolfgang and Arlinghaus, Robert},
doi = {10.1016/j.biocon.2009.07.029},
file = {:Users/jwshephe/Documents/mendeley/Dorow et al/Dorow et al.\_Biological Conservation\_2009\_Using a novel survey technique to predict fisheries stakeholders’ support for European eel (Anguilla anguilla L.) conservation programs.pdf:pdf},
issn = {00063207},
journal = {Biol. Conserv.},
month = dec,
number = {12},
pages = {2973--2982},
publisher = {Elsevier Ltd},
title = {{Using a novel survey technique to predict fisheries stakeholders’ support for European eel (Anguilla anguilla L.) conservation programs}},
url = {http://linkinghub.elsevier.com/retrieve/pii/S0006320709003413},
volume = {142},
year = {2009}
}
@article{Nguyen2012,
author = {Nguyen, Tuan a. and Rumee, Sarker T.a. and Csallner, Christoph and Tillmann, Nikolai},
doi = {10.1109/USER.2012.6226586},
file = {:Users/jwshephe/Documents/mendeley/Nguyen et al/Nguyen et al.\_2012 First International Workshop on User Evaluation for Software Engineering Researchers (USER)\_2012\_An experiment in developing small mobile phone applications comparing on-phone to off-phone development.pdf:pdf},
isbn = {978-1-4673-1859-4},
journal = {2012 First Int. Work. User Eval. Softw. Eng. Res.},
month = jun,
pages = {9--12},
publisher = {Ieee},
title = {{An experiment in developing small mobile phone applications comparing on-phone to off-phone development}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=6226586},
year = {2012}
}
@incollection{Traum1999,
author = {Traum, David R.},
booktitle = {Found. Ration. Agency},
file = {:Users/jwshephe/Documents/mendeley/Traum/Traum\_Foundations of Rational Agency\_1999\_Speech Acts for Dialogue Agents.pdf:pdf},
pages = {169--201},
title = {{Speech Acts for Dialogue Agents}},
year = {1999}
}
@article{Herbsleb2003,
author = {Herbsleb, JD and Mockus, Audris},
file = {:Users/jwshephe/Documents/mendeley/Herbsleb, Mockus/Herbsleb, Mockus\_Software Engineering, IEEE \ldots\_2003\_An empirical study of speed and communication in globally distributed software deve.pdf:pdf},
journal = {Softw. Eng. IEEE \ldots},
number = {6},
pages = {481--494},
title = {{An empirical study of speed and communication in globally distributed software development}},
url = {http://ieeexplore.ieee.org/xpls/abs\_all.jsp?arnumber=1205177},
volume = {29},
year = {2003}
}
@article{Tourangeau2004,
author = {Tourangeau, R and Couper, MP and Conrad, F},
file = {:Users/jwshephe/Documents/mendeley/Tourangeau, Couper, Conrad/Tourangeau, Couper, Conrad\_Public Opinion Quarterly\_2004\_Spacing, position, and order interpretive heuristics for visual features of survey questions.pdf:pdf},
journal = {Public Opin. Q.},
number = {3},
pages = {368--393},
title = {{Spacing, position, and order interpretive heuristics for visual features of survey questions}},
url = {http://poq.oxfordjournals.org/content/68/3/368.short},
volume = {68},
year = {2004}
}
@article{Castanos2010,
annote = {Wiki benefits:
May help respondents speak more freely about dangerous or sensitive topics: they have anonymity and may reduce problems with shyness
"Interview" data is already transcribed
No need to travel for interviews
Wiki disadvantages:
Wiki software may be browser-specific
Respondents can change one another's comments
},
author = {Castanos, C and Piercy, FP},
file = {:Users/jwshephe/Documents/mendeley/Castanos, Piercy/Castanos, Piercy\_The Qualitative Report\_2010\_The Wiki as a Virtual Space for Qualitative Data Collection.pdf:pdf},
journal = {Qual. Rep.},
number = {4},
pages = {948--955},
title = {{The Wiki as a Virtual Space for Qualitative Data Collection}},
volume = {15},
year = {2010}
}
@article{Parasuraman1997,
abstract = {This paper addresses theoretical, empirical, and analytical studies pertaining to human use, misuse, disuse, and abuse of automation technology. Use refers to the voluntary activation or disengagement of automation by human operators. Trust, mental workload, and risk can influence automation use, but interactions between factors and large individual differences make prediction of automation use difficult. Misuse refers to over reliance on automation, which can result in failures of monitoring or decision biases. Factors affecting the monitoring of automation include workload, automation reliability and consistency, and the saliency of automation state indicators. Disuse, or the neglect or underutilization of automation, is commonly caused by alarms that activate falsely. This often occurs because the base rate of the condition to be detected is not considered in setting the trade-off between false alarms and omissions. Automation abuse, or the automation of functions by designers and implementation by managers without due regard for the consequences for human performance, tends to define the operator's roles as by-products of the automation. Automation abuse can also promote misuse and disuse of automation by human operators. Understanding the factors associated with each of these aspects of human use of automation can lead to improved system design, effective training methods, and judicious policies and procedures involving automation use.},
author = {Parasuraman, Raja and Riley, Victor},
doi = {10.1518/001872097778543886},
issn = {00187208},
journal = {Hum. Factors J. Hum. Factors Ergon. Soc.},
month = jun,
number = {2},
pages = {230--253},
title = {{Humans and Automation: Use, Misuse, Disuse, Abuse}},
url = {http://hfs.sagepub.com/content/39/2/230.full.pdf+html},
volume = {39},
year = {1997}
}
@article{Riemenschneider2002a,
author = {Riemenschneider, CK},
file = {:Users/jwshephe/Documents/mendeley/Riemenschneider/Riemenschneider\_Software Engineering, \ldots\_2002\_Explaining Software Developer Acceptance of Methodologies a Comparion of Five Theoretical.pdf:pdf},
journal = {Softw. Eng. \ldots},
title = {{Explaining Software Developer Acceptance of Methodologies: a Comparion of Five Theoretical Models}},
url = {http://ieeexplore.ieee.org/xpls/abs\_all.jsp?arnumber=1158287},
year = {2002}
}
@article{Ko2003,
author = {Ko, AJ and Myers, BA},
file = {:Users/jwshephe/Documents/mendeley/Ko, Myers/Ko, Myers\_Human Centric Computing Languages and \ldots\_2003\_Development and evaluation of a model of programming errors.pdf:pdf},
isbn = {0780382250},
journal = {Hum. Centric Comput. Lang. \ldots},
number = {0},
title = {{Development and evaluation of a model of programming errors}},
url = {http://ieeexplore.ieee.org/xpls/abs\_all.jsp?arnumber=1260196},
year = {2003}
}
@article{Wettel2008,
address = {New York, New York, USA},
author = {Wettel, Richard and Lanza, Michele},
doi = {10.1145/1409720.1409745},
file = {:Users/jwshephe/Documents/mendeley/Wettel, Lanza/Wettel, Lanza\_Proceedings of the 4th ACM symposium on Software visuallization - SoftVis '08\_2008\_Visually localizing design problems with disharmony maps.pdf:pdf},
isbn = {9781605581125},
journal = {Proc. 4th ACM Symp. Softw. Vis. - SoftVis '08},
keywords = {a shotgun,beck 2000,bracing future changes,but must be,directed towards the artifacts,is most needed,it is however not,software design anomalies,software visualization,target all problematic artifacts,where such an effort,with which one should},
pages = {155},
publisher = {ACM Press},
title = {{Visually localizing design problems with disharmony maps}},
url = {http://portal.acm.org/citation.cfm?doid=1409720.1409745},
year = {2008}
}
@article{Stewart2006a,
author = {Stewart, KJ and Gosain, Sanjay},
file = {:Users/jwshephe/Documents/mendeley/Stewart, Gosain/Stewart, Gosain\_Mis Quarterly\_2006\_The impact of ideology on effectiveness in open source software development teams.pdf:pdf},
journal = {Mis Q.},
number = {2},
pages = {291--314},
title = {{The impact of ideology on effectiveness in open source software development teams}},
url = {http://www.jstor.org/stable/10.2307/25148732},
volume = {30},
year = {2006}
}
@article{Raghunathan1995a,
author = {Raghunathan, TE and Grizzle, JE},
file = {:Users/jwshephe/Documents/mendeley/Raghunathan, Grizzle/Raghunathan, Grizzle\_Journal of the American \ldots\_1995\_A Split Questionnaire Survey Design.pdf:pdf},
journal = {J. Am. \ldots},
keywords = {gibbs,split questionnaire},
mendeley-tags = {split questionnaire},
number = {429},
pages = {54--63},
title = {{A Split Questionnaire Survey Design}},
url = {http://amstat.tandfonline.com/doi/abs/10.1080/01621459.1995.10476488},
volume = {90},
year = {1995}
}
@article{Kim2007,
address = {New York, New York, USA},
author = {Kim, Sunghun and Ernst, Michael D.},
doi = {10.1145/1287624.1287633},
file = {:Users/jwshephe/Documents/mendeley/Kim, Ernst/Kim, Ernst\_Proceedings of the the 6th joint meeting of the European software engineering conference and the ACM SIGSOFT symposium on The foundations of software engineering - ESEC-FSE '07\_2007\_Which warnings should I fix first.pdf:pdf},
isbn = {9781595938114},
journal = {Proc. 6th Jt. Meet. Eur. Softw. Eng. Conf. ACM SIGSOFT Symp. Found. Softw. Eng. - ESEC-FSE '07},
keywords = {bug,bug-finding tool,fault,fix,patterns,prediction},
pages = {45},
publisher = {ACM Press},
title = {{Which warnings should I fix first?}},
url = {http://portal.acm.org/citation.cfm?doid=1287624.1287633},
year = {2007}
}
@article{Ogasawara1998,
author = {Ogasawara, H.},
doi = {10.1109/METRIC.1998.731235},
file = {:Users/jwshephe/Documents/mendeley/Ogasawara/Ogasawara\_\ldots Metrics Symposium, 1998 \ldots\_1998\_Experiences with program static analysis.pdf:pdf},
isbn = {0-8186-9201-4},
journal = {\ldots Metrics Symp. 1998 \ldots},
keywords = {2 problems of static,although the static analysis,analysis technique,can point out fault-prone,programs,the static analysis tools,tools are e ec-},
pages = {109--112},
publisher = {IEEE Comput. Soc},
title = {{Experiences with program static analysis}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=731235 http://ieeexplore.ieee.org/xpls/abs\_all.jsp?arnumber=731235},
year = {1998}
}
@article{LaToza2010,
address = {New York, New York, USA},
author = {LaToza, Thomas D. and Myers, Brad a.},
doi = {10.1145/1937117.1937125},
file = {:Users/jwshephe/Documents/mendeley/LaToza, Myers/LaToza, Myers\_Evaluation and Usability of Programming Languages and Tools on - PLATEAU '10\_2010\_Hard-to-answer questions about code.pdf:pdf},
isbn = {9781450305471},
journal = {Eval. Usability Program. Lang. Tools - PLATEAU '10},
keywords = {developer questions,experimentation,human factors,program comprehension},
pages = {1--6},
publisher = {ACM Press},
title = {{Hard-to-answer questions about code}},
url = {http://portal.acm.org/citation.cfm?doid=1937117.1937125},
year = {2010}
}
@article{Crawford2002,
author = {Crawford, S.},
doi = {10.1177/1525822X0201400304},
file = {:Users/jwshephe/Documents/mendeley/Crawford/Crawford\_Field Methods\_2002\_Evaluation of Web Survey Data Collection Systems.pdf:pdf},
issn = {1525-822X},
journal = {Field methods},
month = aug,
number = {3},
pages = {307--321},
title = {{Evaluation of Web Survey Data Collection Systems}},
url = {http://fmx.sagepub.com/cgi/doi/10.1177/1525822X0201400304},
volume = {14},
year = {2002}
}
@article{Fichman1997,
author = {Fichman, RG and Kemerer, CF},
file = {:Users/jwshephe/Documents/mendeley/Fichman, Kemerer/Fichman, Kemerer\_Management Science\_1997\_The assimilation of software process innovations an organizational learning perspective.pdf:pdf},
journal = {Manage. Sci.},
title = {{The assimilation of software process innovations: an organizational learning perspective}},
url = {http://mansci.journal.informs.org/content/43/10/1345.short},
year = {1997}
}
@article{Jones2008,
author = {Jones, M. Cameron and Churchill, Elizabeth F. and Twidale, Michael B.},
doi = {10.1109/VLHCC.2008.4639075},
file = {:Users/jwshephe/Documents/mendeley/Jones, Churchill, Twidale/Jones, Churchill, Twidale\_2008 IEEE Symposium on Visual Languages and Human-Centric Computing\_2008\_Mashing up visual languages and web mash-ups.pdf:pdf},
isbn = {978-1-4244-2528-0},
issn = {1943-6092},
journal = {2008 IEEE Symp. Vis. Lang. Human-Centric Comput.},
month = sep,
pages = {143--146},
publisher = {Ieee},
title = {{Mashing up visual languages and web mash-ups}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=4639075},
year = {2008}
}
@article{Hintze2008,
abstract = {Biological networks have evolved to be highly functional within uncertain environments while remaining extremely adaptable. One of the main contributors to the robustness and evolvability of biological networks is believed to be their modularity of function, with modules defined as sets of genes that are strongly interconnected but whose function is separable from those of other modules. Here, we investigate the in silico evolution of modularity and robustness in complex artificial metabolic networks that encode an increasing amount of information about their environment while acquiring ubiquitous features of biological, social, and engineering networks, such as scale-free edge distribution, small-world property, and fault-tolerance. These networks evolve in environments that differ in their predictability, and allow us to study modularity from topological, information-theoretic, and gene-epistatic points of view using new tools that do not depend on any preconceived notion of modularity. We find that for our evolved complex networks as well as for the yeast protein-protein interaction network, synthetic lethal gene pairs consist mostly of redundant genes that lie close to each other and therefore within modules, while knockdown suppressor gene pairs are farther apart and often straddle modules, suggesting that knockdown rescue is mediated by alternative pathways or modules. The combination of network modularity tools together with genetic interaction data constitutes a powerful approach to study and dissect the role of modularity in the evolution and function of biological networks.},
author = {Hintze, Arend and Adami, Christoph},
doi = {10.1371/journal.pcbi.0040023},
file = {:Users/jwshephe/Documents/mendeley/Hintze, Adami/Hintze, Adami\_PLoS computational biology\_2008\_Evolution of complex modular biological networks.pdf:pdf},
issn = {1553-7358},
journal = {PLoS Comput. Biol.},
keywords = {Animals,Computer Simulation,Evolution, Molecular,Genetic Variation,Genetic Variation: genetics,Humans,Models, Genetic,Proteome,Proteome: genetics,Signal Transduction,Signal Transduction: genetics},
month = feb,
number = {2},
pages = {e23},
pmid = {18266463},
title = {{Evolution of complex modular biological networks.}},
url = {http://www.pubmedcentral.nih.gov/articlerender.fcgi?artid=2233666\&tool=pmcentrez\&rendertype=abstract},
volume = {4},
year = {2008}
}
@article{Steinmacher2012,
author = {Steinmacher, Igor and Chaves, Ana Paula and Gerosa, Marco Aur\'{e}lio},
doi = {10.1007/s10606-012-9164-4},
file = {:Users/jwshephe/Documents/mendeley/Steinmacher, Chaves, Gerosa/Steinmacher, Chaves, Gerosa\_Computer Supported Cooperative Work (CSCW)\_2012\_Awareness Support in Distributed Software Development A Syst.pdf:pdf},
issn = {0925-9724},
journal = {Comput. Support. Coop. Work},
keywords = {awareness,communication,cooperation,coordination,development,distributed software,systematic mapping,systematic review},
month = may,
number = {2-3},
pages = {113--158},
title = {{Awareness Support in Distributed Software Development: A Systematic Review and Mapping of the Literature}},
url = {http://link.springer.com/10.1007/s10606-012-9164-4},
volume = {22},
year = {2012}
}
@article{Murphy-hill,
author = {Murphy-hill, Emerson},
file = {:Users/jwshephe/Documents/mendeley/Murphy-hill/Murphy-hill\_Unknown\_Unknown\_SHFSmall Expressive and Scalable Notifications from Program Analysis Tools.pdf:pdf},
title = {{SHF:Small: Expressive and Scalable Notifications from Program Analysis Tools}}
}
@article{Xie2011,
author = {Xie, Jing and Lipford, Heather Richter and Chu, Bill},
doi = {10.1109/VLHCC.2011.6070393},
file = {:Users/jwshephe/Documents/mendeley/Xie, Lipford, Chu/Xie, Lipford, Chu\_2011 IEEE Symposium on Visual Languages and Human-Centric Computing (VLHCC)\_2011\_Why do programmers make security errors.pdf:pdf},
isbn = {978-1-4577-1247-0},
journal = {2011 IEEE Symp. Vis. Lang. Human-Centric Comput.},
month = sep,
pages = {161--164},
publisher = {Ieee},
title = {{Why do programmers make security errors?}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=6070393},
year = {2011}
}
@misc{Atwood2012,
author = {Atwood, Jeff},
file = {:Users/jwshephe/Documents/mendeley/Atwood/Atwood\_Unknown\_2012\_Web Discussions Flat By Design.html:html},
title = {{Web Discussions: Flat By Design}},
url = {http://www.codinghorror.com/blog/2012/12/web-discussions-flat-by-design.html},
year = {2012}
}
@article{Bouwman2005,
author = {Bouwman, Harry and vande Wijngaert, Lidwien},
journal = {Telemat. Instituut, Enschede},
title = {{Factorial surveys, policy capturing, conjoint measurement in relation to mobile and wireless applications}},
year = {2005}
}
@article{Witte2004,
author = {Witte, James C. and Pargas, Roy P. and Mobley, Catherine and Hawdon, James},
doi = {10.1177/0894439304264531},
file = {:Users/jwshephe/Documents/mendeley/Witte et al/Witte et al.\_Social Science Computer Review\_2004\_Instrument Effects of Images in Web Surveys A Research Note.pdf:pdf},
issn = {08944393},
journal = {Soc. Sci. Comput. Rev.},
month = aug,
number = {3},
pages = {363--369},
title = {{Instrument Effects of Images in Web Surveys: A Research Note}},
url = {http://www.ingentaselect.com/rpsv/cgi-bin/cgi?ini=xref\&body=linker\&reqdoi=10.1177/0894439304264531},
volume = {22},
year = {2004}
}
@article{Barham,
author = {Barham, Paul and Dragovic, Boris and Fraser, Keir and Hand, Steven and Harris, Tim and Ho, Alex and Neugebauer, Rolf and Pratt, Ian and Warfield, Andrew},
file = {:Users/jwshephe/Documents/mendeley/Barham et al/Barham et al.\_Unknown\_Unknown\_Xen and the Art of Virtualization Categories and Subject Descriptors.pdf:pdf},
isbn = {1581137575},
keywords = {hypervisors,paravirtualization,virtual machine monitors},
title = {{Xen and the Art of Virtualization Categories and Subject Descriptors}}
}
@article{Ulanov2010,
author = {Ulanov, Alexander and Shevlyakov, Georgy and Lyubomishchenko, Nikolay and Mehra, Pankaj and Polutin, Vladimir},
doi = {10.1109/DEXA.2010.85},
file = {:Users/jwshephe/Documents/mendeley/Ulanov et al/Ulanov et al.\_2010 Workshops on Database and Expert Systems Applications\_2010\_Monte Carlo Study of Taxonomy Evaluation.pdf:pdf},
isbn = {978-1-4244-8049-4},
journal = {2010 Work. Database Expert Syst. Appl.},
keywords = {s,taxonomy benchmarks,taxonomy evaluation},
month = aug,
pages = {164--168},
publisher = {Ieee},
title = {{Monte Carlo Study of Taxonomy Evaluation}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=5592054},
year = {2010}
}
@article{Boulay1984,
author = {Boulay, B and Matthew, I},
file = {:Users/jwshephe/Documents/mendeley/Boulay, Matthew/Boulay, Matthew\_Readings on Cognitive Ergonomics—Mind and \ldots\_1984\_Fatal error in pass zero How not to confuse novices.pdf:pdf},
journal = {Readings Cogn. Ergon. \ldots},
number = {September 2012},
pages = {37--41},
title = {{Fatal error in pass zero: How not to confuse novices}},
url = {http://www.springerlink.com/index/FW13772K22667638.pdf},
year = {1984}
}
@article{Fang2009,
author = {Fang, Jiaming and Shao, Peiji and Lan, George},
doi = {10.1016/j.chb.2008.08.002},
file = {:Users/jwshephe/Documents/mendeley/Fang, Shao, Lan/Fang, Shao, Lan\_Computers in Human Behavior\_2009\_Effects of innovativeness and trust on web survey participation.pdf:pdf},
issn = {07475632},
journal = {Comput. Human Behav.},
month = jan,
number = {1},
pages = {144--152},
title = {{Effects of innovativeness and trust on web survey participation}},
url = {http://linkinghub.elsevier.com/retrieve/pii/S0747563208001465},
volume = {25},
year = {2009}
}
@article{Lin2006,
author = {Lin, Jin-cherng and Wu, Kuo-chiang},
doi = {10.1109/CIT.2006.13},
file = {:Users/jwshephe/Documents/mendeley/Lin, Wu/Lin, Wu\_The Sixth IEEE International Conference on Computer and Information Technology (CIT'06)\_2006\_A Model for Measuring Software Understandability.pdf:pdf},
isbn = {0-7695-2687-X},
journal = {Sixth IEEE Int. Conf. Comput. Inf. Technol.},
keywords = {software understandability},
pages = {192--192},
publisher = {Ieee},
title = {{A Model for Measuring Software Understandability}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=4019969},
year = {2006}
}
@article{Badgett2005,
author = {Greenhalgh, T and Robert, G and Macfarlane, F},
doi = {10.1111/j.0887-378X.2005.340\_1.x},
file = {:Users/jwshephe/Documents/mendeley/Greenhalgh, Robert, Macfarlane/Greenhalgh, Robert, Macfarlane\_Milbank \ldots\_2004\_Diffusion of innovations in service organizations systematic review and recommendations.pdf:pdf},
issn = {0887-378X},
journal = {Milbank \ldots},
keywords = {Diffusion of Innovation,Evidence-Based Medicine,Great Britain,Humans,Models,Organizational,Organizational Innovation,State Medicine,State Medicine: organization \& administration},
month = jan,
number = {1},
pages = {177--8; author reply 178--9},
pmid = {15787958},
title = {{Diffusion of innovations in service organizations: systematic review and recommendations}},
url = {http://www.pubmedcentral.nih.gov/articlerender.fcgi?artid=2690385\&tool=pmcentrez\&rendertype=abstract http://onlinelibrary.wiley.com/doi/10.1111/j.0887-378X.2004.00325.x/full},
volume = {83},
year = {2004}
}
@article{Ayewah2010,
address = {New York, New York, USA},
author = {Ayewah, Nathaniel and Pugh, William},
doi = {10.1145/1831708.1831738},
file = {:Users/jwshephe/Documents/mendeley/Ayewah, Pugh/Ayewah, Pugh\_Proceedings of the 19th international symposium on Software testing and analysis - ISSTA '10\_2010\_The Google FindBugs fixit.pdf:pdf},
isbn = {9781605588230},
journal = {Proc. 19th Int. Symp. Softw. Test. Anal. - ISSTA '10},
keywords = {bug pat-,bugs,false positives,findbugs,java,software defects,software quality,static analysis,terns},
pages = {241},
publisher = {ACM Press},
title = {{The Google FindBugs fixit}},
url = {http://portal.acm.org/citation.cfm?doid=1831708.1831738},
year = {2010}
}
@article{Govindavajhala2003,
author = {Govindavajhala, S. and a.W. Appel},
doi = {10.1109/SECPRI.2003.1199334},
file = {:Users/jwshephe/Documents/mendeley/Govindavajhala, Appel/Govindavajhala, Appel\_Proceedings 19th International Conference on Data Engineering (Cat. No.03CH37405)\_2003\_Using memory errors to atta.pdf:pdf},
isbn = {0-7695-1940-7},
journal = {Proc. 19th Int. Conf. Data Eng. (Cat. No.03CH37405)},
pages = {154--165},
publisher = {IEEE Comput. Soc},
title = {{Using memory errors to attack a virtual machine}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=1199334},
year = {2003}
}
@article{Birnholtz2004,
author = {Birnholtz, Jeremy P. and Horn, Daniel B. and Finholt, Thomas a. and Bae, Sung J.},
doi = {10.1177/0894439304263147},
file = {:Users/jwshephe/Documents/mendeley/Birnholtz et al/Birnholtz et al.\_Social Science Computer Review\_2004\_The Effects of Cash, Electronic, and Paper Gift Certificates as Respondent Incentives for a Web-Based Survey of Technologically Sophisticated Respondents.pdf:pdf},
issn = {08944393},
journal = {Soc. Sci. Comput. Rev.},
month = aug,
number = {3},
pages = {355--362},
title = {{The Effects of Cash, Electronic, and Paper Gift Certificates as Respondent Incentives for a Web-Based Survey of Technologically Sophisticated Respondents}},
url = {http://www.ingentaselect.com/rpsv/cgi-bin/cgi?ini=xref\&body=linker\&reqdoi=10.1177/0894439304263147},
volume = {22},
year = {2004}
}
@article{Shackelford1993,
author = {Shackelford, RL and Badre, AN},
file = {:Users/jwshephe/Documents/mendeley/Shackelford, Badre/Shackelford, Badre\_International Journal of Man- \ldots\_1993\_Why can't smart students solve simple programming problems.pdf:pdf},
journal = {Int. J. Man- \ldots},
title = {{Why can't smart students solve simple programming problems?}},
url = {http://www.sci.brooklyn.cuny.edu/~kopec/research/sdarticle3.pdf},
year = {1993}
}
@article{Grava-Gubins2008,
author = {Grava-Gubins, I and Scott, Sarah},
file = {:Users/jwshephe/Documents/mendeley/Grava-Gubins, Scott/Grava-Gubins, Scott\_Canadian Family Physician\_2008\_Effects of various methodologic strategies Survey response rates among Canadian physicians and physicians-in-training.pdf:pdf},
journal = {Can. Fam. Physician},
title = {{Effects of various methodologic strategies: Survey response rates among Canadian physicians and physicians-in-training}},
url = {http://www.cfp.ca/content/54/10/1424.short},
volume = {54},
year = {2008}
}
@article{Bacchelli,
author = {Bacchelli, Alberto and Bird, Christian},
file = {:Users/jwshephe/Documents/mendeley/Bacchelli, Bird/Bacchelli, Bird\_cabird.com\_Unknown\_Expectations, Outcomes, and Challenges Of Modern Code Review.pdf:pdf},
journal = {cabird.com},
title = {{Expectations, Outcomes, and Challenges Of Modern Code Review}},
url = {http://www.cabird.com/papers/bacchelli2013eoc.pdf}
}
@article{Buse2012,
author = {Buse, Raymond P. L. and Weimer, Westley},
doi = {10.1109/ICSE.2012.6227140},
file = {:Users/jwshephe/Documents/mendeley/Buse, Weimer/Buse, Weimer\_2012 34th International Conference on Software Engineering (ICSE)\_2012\_Synthesizing API usage examples.pdf:pdf},
isbn = {978-1-4673-1067-3},
journal = {2012 34th Int. Conf. Softw. Eng.},
month = jun,
pages = {782--792},
publisher = {Ieee},
title = {{Synthesizing API usage examples}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=6227140},
year = {2012}
}
@article{Chmura1990,
author = {Chmura, L.J. and a.F. Norcio and Wicinski, T.J.},
doi = {10.1109/32.56099},
file = {:Users/jwshephe/Documents/mendeley/Chmura, Norcio, Wicinski/Chmura, Norcio, Wicinski\_IEEE Transactions on Software Engineering\_1990\_Evaluating software design processes by analyzing change data ov.pdf:pdf},
issn = {00985589},
journal = {IEEE Trans. Softw. Eng.},
month = jul,
number = {7},
pages = {729--740},
title = {{Evaluating software design processes by analyzing change data over time}},
url = {http://ieeexplore.ieee.org/lpdocs/epic03/wrapper.htm?arnumber=56099},
volume = {16},
year = {1990}
}
@article{Hertel2003a,
author = {Hertel, Guido and Niedner, Sven and Herrmann, Stefanie},
doi = {10.1016/S0048-7333(03)00047-7},
file = {:Users/jwshephe/Documents/mendeley/Hertel, Niedner, Herrmann/Hertel, Niedner, Herrmann\_Research Policy\_2003\_Motivation of software developers in Open Source projects an Internet-based survey of (2).pdf:pdf},
issn = {00487333},
journal = {Res. Policy},
keywords = {linux,motivation,open source software,virtual teams,vist model},
month = jul,
number = {7},
pages = {1159--1177},
title = {{Motivation of software developers in Open Source projects: an Internet-based survey of contributors to the Linux kernel}},
url = {http://linkinghub.elsevier.com/retrieve/pii/S0048733303000477},
volume = {32},
year = {2003}
}
@article{Schaeffer2011,
author = {Schaeffer, NC and Dykema, J.},
doi = {10.1093/poq/nfr048},
file = {:Users/jwshephe/Documents/mendeley/Schaeffer, Dykema/Schaeffer, Dykema\_Public opinion quarterly\_2011\_Questions for Surveys Current Trends and Future Directions.pdf:pdf},
issn = {0033-362X},
journal = {Public Opin. Q.},
month = dec,
number = {5},
pages = {909--961},
title = {{Questions for Surveys Current Trends and Future Directions}},
url = {http://poq.oxfordjournals.org/cgi/doi/10.1093/poq/nfr048 http://poq.oxfordjournals.org/content/75/5/909.short},
volume = {75},
year = {2011}
}
@article{Chen2009,
author = {Chen, Jengchung V. and Yen, David C. and Chen, Kuanchin},
doi = {10.1016/j.im.2009.03.001},
file = {:Users/jwshephe/Documents/mendeley/Chen, Yen, Chen/Chen, Yen, Chen\_Information \& Management\_2009\_The acceptance and diffusion of the innovative smart phone use A case study of a delivery service company in logistics.pdf:pdf},
issn = {03787206},
journal = {Inf. Manag.},
keywords = {smart phone adoption},
month = may,
number = {4},
pages = {241--248},
title = {{The acceptance and diffusion of the innovative smart phone use: A case study of a delivery service company in logistics}},
url = {http://linkinghub.elsevier.com/retrieve/pii/S0378720609000445},
volume = {46},
year = {2009}
}
@article{Ferreira2012,
author = {Ferreira, JJ and de Souza, CS},
file = {:Users/jwshephe/Documents/mendeley/Ferreira, Souza/Ferreira, Souza\_serg.inf.puc-rio.br\_2012\_Combining cognitive, semiotic and discourse analysis to explore the power of notations in visual programming.pdf:pdf},
journal = {serg.inf.puc-rio.br},
keywords = {- computational thinking,cognitive dimentions of notations,end-user programming,engineering methods,grammar and semantic constraints,inherent to all,semiotic,visual programming,vocabulary},
pages = {1--8},
title = {{Combining cognitive, semiotic and discourse analysis to explore the power of notations in visual programming}},
url = {http://www2.serg.inf.puc-rio.br/docs/FerreiraVLHCC2012-accepted.pdf},
year = {2012}
}
@article{Finkbeiner2002a,
author = {Finkbeiner, Bernd and Sankaranarayanan, S and Sipma, H},
file = {:Users/jwshephe/Documents/mendeley/Finkbeiner, Sankaranarayanan, Sipma/Finkbeiner, Sankaranarayanan, Sipma\_Electronic Notes in \ldots\_2002\_Collecting statistics over runtime executions.pdf:pdf},
journal = {Electron. Notes \ldots},
pages = {1--24},
title = {{Collecting statistics over runtime executions}},
url = {http://www.sciencedirect.com/science/article/pii/S1571066104805760},
year = {2002}