-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathref_all_acm.bib
2687 lines (2531 loc) · 95.5 KB
/
ref_all_acm.bib
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
@inproceedings{Karlstrom:2002:DSE:568760.568902,
author = {Karlstr\"{o}m, Daniel and Runeson, Per},
title = {Decision support for extreme programming introduction and practice selection},
booktitle = {Proceedings of the 14th international conference on Software engineering and knowledge engineering},
series = {SEKE '02},
year = {2002},
isbn = {1-58113-556-4},
location = {Ischia, Italy},
pages = {835--841},
numpages = {7},
url = {http://doi.acm.org/10.1145/568760.568902},
doi = {10.1145/568760.568902},
acmid = {568902},
publisher = {ACM},
address = {New York, NY, USA},
}
@article{Ritter:2010:ISP:1709424.1709448,
author = {Ritter, Nicola and McGill, Tanya and Thompson, Nik},
title = {Incremental submission of programming code using object-oriented classes},
journal = {SIGCSE Bull.},
issue_date = {December 2009},
volume = {41},
number = {4},
month = jan,
year = {2010},
issn = {0097-8418},
pages = {66--70},
numpages = {5},
url = {http://doi.acm.org/10.1145/1709424.1709448},
doi = {10.1145/1709424.1709448},
acmid = {1709448},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {agile methods, software development, software engineering education},
}
@inproceedings{Souza:2005:AAW:1114223.1114237,
author = {Souza, V\'{\i}tor Est\^{e}v\~{a}o Silva and de Almeida Falbo, Ricardo},
title = {An agile approach for web systems engineering},
booktitle = {Proceedings of the 11th Brazilian Symposium on Multimedia and the web},
series = {WebMedia '05},
year = {2005},
location = {Pocos de Caldas - Minas Gerais, Brazil},
pages = {1--3},
numpages = {3},
url = {http://doi.acm.org/10.1145/1114223.1114237},
doi = {10.1145/1114223.1114237},
acmid = {1114237},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {agile development, frameworks, java, rapid development, web application, web engineering},
}
@article{Caspersen:2009:SFP:1513593.1513597,
author = {Caspersen, Michael E. and Kolling, Michael},
title = {STREAM: A First Programming Process},
journal = {Trans. Comput. Educ.},
issue_date = {March 2009},
volume = {9},
number = {1},
month = mar,
year = {2009},
issn = {1946-6226},
pages = {4:1--4:29},
articleno = {4},
numpages = {29},
url = {http://doi.acm.org/10.1145/1513593.1513597},
doi = {10.1145/1513593.1513597},
acmid = {1513597},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {Stepwise improvement, agile methods, programming education, programming methodology, programming process, refactoring, stepwise refinement, test-driven development},
}
@inproceedings{Hart:2007:EEA:1281700.1281714,
author = {Hart, William E. and Berry, Jonathan W. and Heaphy, Robert and Phillips, Cynthia A.},
title = {EXACT: the experimental algorithmics computational toolkit},
booktitle = {Proceedings of the 2007 workshop on Experimental computer science},
series = {ExpCS '07},
year = {2007},
isbn = {978-1-59593-751-3},
location = {San Diego, California},
articleno = {14},
url = {http://doi.acm.org/10.1145/1281700.1281714},
doi = {10.1145/1281700.1281714},
acmid = {1281714},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {experimental analysis, experimental design, software testing},
}
@proceedings{Damiani:2004:1151433,
title = {QUTE-SWAP '04: Proceedings of the 2004 workshop on Quantitative techniques for software agile process},
year = {2004},
location = {Newport Beach, California},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{Tan:2008:TSA:1355238.1355259,
author = {Tan, Chuan-Hoo and Tan, Wee-Kek and Teo, Hock-Hai},
title = {Training students to be agile information systems developers: a pedagogical approach},
booktitle = {Proceedings of the 2008 ACM SIGMIS CPR conference on Computer personnel doctoral consortium and research},
series = {SIGMIS CPR '08},
year = {2008},
isbn = {978-1-60558-069-2},
location = {Charlottesville, VA, USA},
pages = {88--96},
numpages = {9},
url = {http://doi.acm.org/10.1145/1355238.1355259},
doi = {10.1145/1355238.1355259},
acmid = {1355259},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {IT training, agile software development, course curriculum design},
}
@inproceedings{Elssamadisy:2006:AAP:1415472.1415474,
author = {Elssamadisy, Amr and West, David},
title = {Adopting agile practices: an incipient pattern language},
booktitle = {Proceedings of the 2006 conference on Pattern languages of programs},
series = {PLoP '06},
year = {2006},
isbn = {978-1-60558-372-3},
location = {Portland, Oregon},
pages = {1:1--1:9},
articleno = {1},
numpages = {9},
url = {http://doi.acm.org/10.1145/1415472.1415474},
doi = {10.1145/1415472.1415474},
acmid = {1415474},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{Banerjee:2011:EEF:1953355.1953364,
author = {Banerjee, Udayan and Narasimhan, Eswaran and Kanakalata, N.},
title = {Experience of executing fixed price off-shored agile project},
booktitle = {Proceedings of the 4th India Software Engineering Conference},
series = {ISEC '11},
year = {2011},
isbn = {978-1-4503-0559-4},
location = {Thiruvananthapuram, Kerala, India},
pages = {69--75},
numpages = {7},
url = {http://doi.acm.org/10.1145/1953355.1953364},
doi = {10.1145/1953355.1953364},
acmid = {1953364},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {CMMI, agile, offshore, software development process},
}
@inproceedings{Nikitina:2011:DBP:1987875.1987901,
author = {Nikitina, Natalja and Kajko-Mattsson, Mira},
title = {Developer-driven big-bang process transition from Scrum to Kanban},
booktitle = {Proceedings of the 2011 International Conference on Software and Systems Process},
series = {ICSSP '11},
year = {2011},
isbn = {978-1-4503-0730-7},
location = {Waikiki, Honolulu, HI, USA},
pages = {159--168},
numpages = {10},
url = {http://doi.acm.org/10.1145/1987875.1987901},
doi = {10.1145/1987875.1987901},
acmid = {1987901},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {case study, process transition, software process improvement},
}
@article{John:2005:HSF:1082983.1083000,
author = {John, Michael and Maurer, Frank and Tessem, Bj{\o}rnar},
title = {Human and social factors of software engineering: workshop summary},
journal = {SIGSOFT Softw. Eng. Notes},
issue_date = {July 2005},
volume = {30},
number = {4},
month = jul,
year = {2005},
issn = {0163-5948},
pages = {1--6},
numpages = {6},
url = {http://doi.acm.org/10.1145/1082983.1083000},
doi = {10.1145/1082983.1083000},
acmid = {1083000},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {agile methods, communication architectures, decision support, group dynamics, human-centric collaboration support, interaction theory, knowledge dissemination and reuse, management, qualitative studies, social software, software engineering},
}
@inproceedings{Hardy:2011:DAD:1985793.1985910,
author = {Hardy, John and Bull, Christopher and Kotonya, Gerald and Whittle, Jon},
title = {Digitally annexing desk space for software development (NIER track)},
booktitle = {Proceedings of the 33rd International Conference on Software Engineering},
series = {ICSE '11},
year = {2011},
isbn = {978-1-4503-0445-0},
location = {Waikiki, Honolulu, HI, USA},
pages = {812--815},
numpages = {4},
url = {http://doi.acm.org/10.1145/1985793.1985910},
doi = {10.1145/1985793.1985910},
acmid = {1985910},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {collaboration and collaborative construction, collocation, cscw, ide, software visualisation, tabletop user interfaces},
}
@proceedings{Cook:2010:1869542,
title = {SPLASH '10: Proceedings of the ACM international conference companion on Object oriented programming systems languages and applications companion},
year = {2010},
isbn = {978-1-4503-0240-1},
location = {Reno/Tahoe, Nevada, USA},
note = {548105},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{Daugherty:2009:FSA:1509239.1509241,
author = {Daugherty, Paul R.},
title = {The future of software architectures for large-scalebusiness solutions: modularity, scalability, andseparation of concerns},
booktitle = {Proceedings of the 8th ACM international conference on Aspect-oriented software development},
series = {AOSD '09},
year = {2009},
isbn = {978-1-60558-442-3},
location = {Charlottesville, Virginia, USA},
pages = {1--2},
numpages = {2},
url = {http://doi.acm.org/10.1145/1509239.1509241},
doi = {10.1145/1509239.1509241},
acmid = {1509241},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {aop, soa},
}
@inproceedings{Monteiro:2011:QSD:1984642.1984646,
author = {Monteiro, Cleviton V.F. and da Silva, Fabio Q.B. and dos Santos, Isabella R.M. and Farias, Felipe and Cardozo, Elisa S.F. and do A. Leit\~{a}o, Andr{\'e} R.G. and Neto, Dacio N.M. and Pernambuco Filho, Miguel J.A.},
title = {A qualitative study of the determinants of self-managing team effectiveness in a scrum team},
booktitle = {Proceedings of the 4th International Workshop on Cooperative and Human Aspects of Software Engineering},
series = {CHASE '11},
year = {2011},
isbn = {978-1-4503-0576-1},
location = {Waikiki, Honolulu, HI, USA},
pages = {16--23},
numpages = {8},
url = {http://doi.acm.org/10.1145/1984642.1984646},
doi = {10.1145/1984642.1984646},
acmid = {1984646},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {agile methods, qualitative research, self-management, software teams},
}
@inproceedings{Paasivaara:2011:SSL:2082758.2083382,
author = {Paasivaara, Maria and Lassenius, Casper},
title = {Scaling Scrum in a Large Distributed Project},
booktitle = {Proceedings of the 2011 International Symposium on Empirical Software Engineering and Measurement},
series = {ESEM '11},
year = {2011},
isbn = {978-0-7695-4604-9},
pages = {363--367},
numpages = {5},
url = {http://dx.doi.org/10.1109/ESEM.2011.49},
doi = {10.1109/ESEM.2011.49},
acmid = {2083382},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
keywords = {Scaling Scrum, agile software development, global software development},
}
@inproceedings{Damiani:2007:MMM:1768961.1768976,
author = {Damiani, Ernesto and Colombo, Alberto and Frati, Fulvio and Bellettini, Carlo},
title = {A metamodel for modeling and measuring Scrum development process},
booktitle = {Proceedings of the 8th international conference on Agile processes in software engineering and extreme programming},
series = {XP'07},
year = {2007},
isbn = {978-3-540-73100-9},
location = {Como, Italy},
pages = {74--83},
numpages = {10},
url = {http://dl.acm.org/citation.cfm?id=1768961.1768976},
acmid = {1768976},
publisher = {Springer-Verlag},
address = {Berlin, Heidelberg},
keywords = {MOF, meta-model, scrum, software development process},
}
@inproceedings{Radinger:2003:ASD:949344.949422,
author = {Radinger, Wolfgang and Goeschka, Karl Michael},
title = {Agile software development for component based software engineering},
booktitle = {Companion of the 18th annual ACM SIGPLAN conference on Object-oriented programming, systems, languages, and applications},
series = {OOPSLA '03},
year = {2003},
isbn = {1-58113-751-6},
location = {Anaheim, CA, USA},
pages = {300--301},
numpages = {2},
url = {http://doi.acm.org/10.1145/949344.949422},
doi = {10.1145/949344.949422},
acmid = {949422},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {CBSE, agile software development, software development process},
}
@inproceedings{Esfahani:2011:SBP:1987875.1987902,
author = {Esfahani, Hesam Chiniforooshan and Yu, Eric and Annosi, Maria Carmela},
title = {Strategically balanced process adoption},
booktitle = {Proceedings of the 2011 International Conference on Software and Systems Process},
series = {ICSSP '11},
year = {2011},
isbn = {978-1-4503-0730-7},
location = {Waikiki, Honolulu, HI, USA},
pages = {169--178},
numpages = {10},
url = {http://doi.acm.org/10.1145/1987875.1987902},
doi = {10.1145/1987875.1987902},
acmid = {1987902},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {process adoption, software process, software process improvement, strategic management},
}
@inproceedings{Mackie:2005:AER:1094855.1094872,
author = {Mackie, Dean and Louie, Gifford and Rogers, Jason and Shaw, Niall},
title = {Agile environments...: for the rest of us},
booktitle = {Companion to the 20th annual ACM SIGPLAN conference on Object-oriented programming, systems, languages, and applications},
series = {OOPSLA '05},
year = {2005},
isbn = {1-59593-193-7},
location = {San Diego, CA, USA},
pages = {72--72},
numpages = {1},
url = {http://doi.acm.org/10.1145/1094855.1094872},
doi = {10.1145/1094855.1094872},
acmid = {1094872},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {agile, ergonomics, software development, workplace},
}
@article{Subramanian:2009:BFF:1562764.1562794,
author = {Subramanian, Girish H. and Klein, Gary and Jiang, James J. and Chan, Chien-Lung},
title = {Balancing four factors in system development projects},
journal = {Commun. ACM},
issue_date = {October 2009},
volume = {52},
number = {10},
month = oct,
year = {2009},
issn = {0001-0782},
pages = {118--121},
numpages = {4},
url = {http://doi.acm.org/10.1145/1562764.1562794},
doi = {10.1145/1562764.1562794},
acmid = {1562794},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{Reichlmayr:2012:SS:2157136.2157328,
author = {Reichlmayr, Tom},
title = {Student scrums (abstract only)},
booktitle = {Proceedings of the 43rd ACM technical symposium on Computer Science Education},
series = {SIGCSE '12},
year = {2012},
isbn = {978-1-4503-1098-7},
location = {Raleigh, North Carolina, USA},
pages = {661--661},
numpages = {1},
url = {http://doi.acm.org/10.1145/2157136.2157328},
doi = {10.1145/2157136.2157328},
acmid = {2157328},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {acceptance testing, agile software development, estimation, project planning, scrum, teams, tracking, user stories},
}
@inproceedings{Nielsen:2012:UEF:2399016.2399057,
author = {Nielsen, Lene and Madsen, Sabine},
title = {The usability expert's fear of agility: an empirical study of global trends and emerging practices},
booktitle = {Proceedings of the 7th Nordic Conference on Human-Computer Interaction: Making Sense Through Design},
series = {NordiCHI '12},
year = {2012},
isbn = {978-1-4503-1482-4},
location = {Copenhagen, Denmark},
pages = {261--264},
numpages = {4},
url = {http://doi.acm.org/10.1145/2399016.2399057},
doi = {10.1145/2399016.2399057},
acmid = {2399057},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {agile methods, global trends, practice study, usability, usability practice, usability practitioners, usability professionals, usability testing},
}
@inproceedings{Newkirk:2002:IAP:581339.581450,
author = {Newkirk, James},
title = {Introduction to agile processes and extreme programming},
booktitle = {Proceedings of the 24th International Conference on Software Engineering},
series = {ICSE '02},
year = {2002},
isbn = {1-58113-472-X},
location = {Orlando, Florida},
pages = {695--696},
numpages = {2},
url = {http://doi.acm.org/10.1145/581339.581450},
doi = {10.1145/581339.581450},
acmid = {581450},
publisher = {ACM},
address = {New York, NY, USA},
}
@article{Krishnan:2007:CQT:1281421.1281427,
author = {Krishnan, R and Krishna, S Murali and Bharill, Nishil},
title = {Code quality tools: learning from our experience},
journal = {SIGSOFT Softw. Eng. Notes},
issue_date = {July 2007},
volume = {32},
number = {4},
month = jul,
year = {2007},
issn = {0163-5948},
articleno = {5},
url = {http://doi.acm.org/10.1145/1281421.1281427},
doi = {10.1145/1281421.1281427},
acmid = {1281427},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {buffer overflow and memory corruption, code quality, memory leak},
}
@inproceedings{Hedin:2003:ISE:776816.776896,
author = {Hedin, G\"{o}rel and Bendix, Lars and Magnusson, Boris},
title = {Introducing software engineering by means of Extreme Programming},
booktitle = {Proceedings of the 25th International Conference on Software Engineering},
series = {ICSE '03},
year = {2003},
isbn = {0-7695-1877-X},
location = {Portland, Oregon},
pages = {586--593},
numpages = {8},
url = {http://dl.acm.org/citation.cfm?id=776816.776896},
acmid = {776896},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@inproceedings{Napoli:2011:IAR:2023607.2023620,
author = {Napoli, Juan Pablo and Kaloyanova, Kalinka},
title = {An integrated approach for RUP, EA, SOA and BPM implementation},
booktitle = {Proceedings of the 12th International Conference on Computer Systems and Technologies},
series = {CompSysTech '11},
year = {2011},
isbn = {978-1-4503-0917-2},
location = {Vienna, Austria},
pages = {63--68},
numpages = {6},
url = {http://doi.acm.org/10.1145/2023607.2023620},
doi = {10.1145/2023607.2023620},
acmid = {2023620},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {BPM and IT services, EA, OOAD, RUP, SOA, SOAD, SOMA, TOGAF},
}
@inproceedings{Smith:2006:IAT:1121341.1121451,
author = {Smith, Suzanne and Stoecklin, Sara and Serino, Catharina},
title = {An innovative approach to teaching refactoring},
booktitle = {Proceedings of the 37th SIGCSE technical symposium on Computer science education},
series = {SIGCSE '06},
year = {2006},
isbn = {1-59593-259-3},
location = {Houston, Texas, USA},
pages = {349--353},
numpages = {5},
url = {http://doi.acm.org/10.1145/1121341.1121451},
doi = {10.1145/1121341.1121451},
acmid = {1121451},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {computer science curriculum, extreme programming, object-oriented design, refactoring, software engineering},
}
@inproceedings{Sato:2007:TEO:1768961.1768977,
author = {Sato, Danilo and Goldman, Alfredo and Kon, Fabio},
title = {Tracking the evolution of object-oriented quality metrics on agile projects},
booktitle = {Proceedings of the 8th international conference on Agile processes in software engineering and extreme programming},
series = {XP'07},
year = {2007},
isbn = {978-3-540-73100-9},
location = {Como, Italy},
pages = {84--92},
numpages = {9},
url = {http://dl.acm.org/citation.cfm?id=1768961.1768977},
acmid = {1768977},
publisher = {Springer-Verlag},
address = {Berlin, Heidelberg},
keywords = {agile methods, extreme programming, object-oriented metrics, tracking},
}
@inproceedings{Abello:2011:BCM:2064676.2064680,
author = {Abell\'{o}, Alberto and Ferrarons, Jaume and Romero, Oscar},
title = {Building cubes with MapReduce},
booktitle = {Proceedings of the ACM 14th international workshop on Data Warehousing and OLAP},
series = {DOLAP '11},
year = {2011},
isbn = {978-1-4503-0963-9},
location = {Glasgow, Scotland, UK},
pages = {17--24},
numpages = {8},
url = {http://doi.acm.org/10.1145/2064676.2064680},
doi = {10.1145/2064676.2064680},
acmid = {2064680},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {bigtable, data warehouse, design, mapreduce, olap},
}
@inproceedings{Soundararajan:2012:UTA:2157136.2157228,
author = {Soundararajan, Shvetha and Chigani, Amine and Arthur, James D.},
title = {Understanding the tenets of agile software engineering: lecturing, exploration and critical thinking},
booktitle = {Proceedings of the 43rd ACM technical symposium on Computer Science Education},
series = {SIGCSE '12},
year = {2012},
isbn = {978-1-4503-1098-7},
location = {Raleigh, North Carolina, USA},
pages = {313--318},
numpages = {6},
url = {http://doi.acm.org/10.1145/2157136.2157228},
doi = {10.1145/2157136.2157228},
acmid = {2157228},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {agile applicability, agile instruction and education, agile software development, exploring agile tenets, pedagogy, software engineering education},
}
@inproceedings{Layman:2004:MMA:1151433.1151436,
author = {Layman, Lucas and Williams, Laurie and Cunningham, Lynn},
title = {Motivations and measurements in an agile case study},
booktitle = {Proceedings of the 2004 workshop on Quantitative techniques for software agile process},
series = {QUTE-SWAP '04},
year = {2004},
location = {Newport Beach, California},
pages = {14--24},
numpages = {11},
url = {http://doi.acm.org/10.1145/1151433.1151436},
doi = {10.1145/1151433.1151436},
acmid = {1151436},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {agile software development, case studies, extreme programming},
}
@inproceedings{Marchesi:2007:DSR:1768961.1769015,
author = {Marchesi, Michele and Mannaro, Katiuscia and Uras, Selene and Locci, Mario},
title = {Distributed Scrum in research project management},
booktitle = {Proceedings of the 8th international conference on Agile processes in software engineering and extreme programming},
series = {XP'07},
year = {2007},
isbn = {978-3-540-73100-9},
location = {Como, Italy},
pages = {240--244},
numpages = {5},
url = {http://dl.acm.org/citation.cfm?id=1768961.1769015},
acmid = {1769015},
publisher = {Springer-Verlag},
address = {Berlin, Heidelberg},
keywords = {distributed team, project management, research project, scrum},
}
@inproceedings{Dowson:1987:ICA:41765.41794,
author = {Dowson, M.},
title = {ISTAR and the contractual approach},
booktitle = {Proceedings of the 9th international conference on Software Engineering},
series = {ICSE '87},
year = {1987},
isbn = {0-89791-216-0},
location = {Monterey, California, United States},
pages = {287--288},
numpages = {2},
url = {http://dl.acm.org/citation.cfm?id=41765.41794},
acmid = {41794},
publisher = {IEEE Computer Society Press},
address = {Los Alamitos, CA, USA},
}
@inproceedings{Concha:2007:ACE:1768961.1768988,
author = {Concha, Mauricio and Visconti, Marcello and Astudillo, Hern\'{a}n},
title = {Agile commitments: enhancing business risk management in agile development projects},
booktitle = {Proceedings of the 8th international conference on Agile processes in software engineering and extreme programming},
series = {XP'07},
year = {2007},
isbn = {978-3-540-73100-9},
location = {Como, Italy},
pages = {149--152},
numpages = {4},
url = {http://dl.acm.org/citation.cfm?id=1768961.1768988},
acmid = {1768988},
publisher = {Springer-Verlag},
address = {Berlin, Heidelberg},
keywords = {agile development, commitment management, risk management},
}
@inproceedings{Papakonstantinou:2011:SWU:2141622.2141659,
author = {Papakonstantinou, D. and Malamateniou, F. and Vassilacopoulos, G.},
title = {A semantic wiki for user training in ePrescribing processes},
booktitle = {Proceedings of the 4th International Conference on PErvasive Technologies Related to Assistive Environments},
series = {PETRA '11},
year = {2011},
isbn = {978-1-4503-0772-7},
location = {Heraklion, Crete, Greece},
pages = {30:1--30:6},
articleno = {30},
numpages = {6},
url = {http://doi.acm.org/10.1145/2141622.2141659},
doi = {10.1145/2141622.2141659},
acmid = {2141659},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {cloud computing, ePrescribing, semantic wiki, user training},
}
@inproceedings{Lehto:2009:SDG:1569136.1569156,
author = {Lehto, Ilkka and Rautiainen, Kristian},
title = {Software development governance challenges of a middle-sized company in agile transition},
booktitle = {Proceedings of the 2009 ICSE Workshop on Software Development Governance},
series = {SDG '09},
year = {2009},
isbn = {978-1-4244-3736-8},
pages = {36--39},
numpages = {4},
url = {http://dx.doi.org/10.1109/SDG.2009.5071335},
doi = {10.1109/SDG.2009.5071335},
acmid = {1569156},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@article{Barriocanal:2002:EIA:820127.820183,
author = {Barriocanal, Elena Garc\'{\i}a and Urb\'{a}n, Miguel-\'{A}ngel Sicilia and Cuevas, Ignacio Aedo and P{\'e}rez, Paloma D\'{\i}az},
title = {An experience in integrating automated unit testing practices in an introductory programming course},
journal = {SIGCSE Bull.},
issue_date = {December 2002},
volume = {34},
number = {4},
month = dec,
year = {2002},
issn = {0097-8418},
pages = {125--128},
numpages = {4},
url = {http://doi.acm.org/10.1145/820127.820183},
doi = {10.1145/820127.820183},
acmid = {820183},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{Duarte:2006:GST:1134285.1134410,
author = {Duarte, Alexandre and Cirne, Walfredo and Brasileiro, Francisco and Machado, Patricia},
title = {GridUnit: software testing on the grid},
booktitle = {Proceedings of the 28th international conference on Software engineering},
series = {ICSE '06},
year = {2006},
isbn = {1-59593-375-1},
location = {Shanghai, China},
pages = {779--782},
numpages = {4},
url = {http://doi.acm.org/10.1145/1134285.1134410},
doi = {10.1145/1134285.1134410},
acmid = {1134410},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {JUnit, computational grid, distributed testing, unit testing},
}
@inproceedings{Grossman:2004:OXE:1034914.1034933,
author = {Grossman, F. and Bergin, J. and Leip, D. and Merritt, S. and Gotel, O.},
title = {One XP experience: introducing agile (XP) software development into a culture that is willing but not ready},
booktitle = {Proceedings of the 2004 conference of the Centre for Advanced Studies on Collaborative research},
series = {CASCON '04},
year = {2004},
location = {Markham, Ontario, Canada},
pages = {242--254},
numpages = {13},
url = {http://dl.acm.org/citation.cfm?id=1034914.1034933},
acmid = {1034933},
publisher = {IBM Press},
}
@inproceedings{Talby:2009:GAS:1569136.1569157,
author = {Talby, David and Dubinsky, Yael},
title = {Governance of an agile software project},
booktitle = {Proceedings of the 2009 ICSE Workshop on Software Development Governance},
series = {SDG '09},
year = {2009},
isbn = {978-1-4244-3736-8},
pages = {40--45},
numpages = {6},
url = {http://dx.doi.org/10.1109/SDG.2009.5071336},
doi = {10.1109/SDG.2009.5071336},
acmid = {1569157},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@inproceedings{Hochmuller:2008:APM:1370143.1370145,
author = {Hochm\"{u}ller, Elke and Mittermeir, Roland T.},
title = {Agile Process Myths},
booktitle = {Proceedings of the 2008 international workshop on Scrutinizing agile practices or shoot-out at the agile corral},
series = {APOS '08},
year = {2008},
isbn = {978-1-60558-021-0},
location = {Leipzig, Germany},
pages = {5--8},
numpages = {4},
url = {http://doi.acm.org/10.1145/1370143.1370145},
doi = {10.1145/1370143.1370145},
acmid = {1370145},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {agile practices, challenges, development processes, myths},
}
@article{QuirceGarcia:2011:SPO:2003819.2003849,
author = {Quirce Garc\'{\i}a, Jes\'{u}s},
title = {A study on PDAs for onboard applications and technologies and methodologies},
journal = {Personal Ubiquitous Comput.},
issue_date = {June 2011},
volume = {15},
number = {5},
month = jun,
year = {2011},
issn = {1617-4909},
pages = {457--478},
numpages = {22},
url = {http://dx.doi.org/10.1007/s00779-010-0318-4},
doi = {10.1007/s00779-010-0318-4},
acmid = {2003849},
publisher = {Springer-Verlag},
address = {London, UK, UK},
keywords = {Agile development approaches, COTS, Human spaceflight in-vehicle operations, Java Micro Edition (J2ME), PDAs, Physically constrained MMIs},
}
@article{Aiken:2004:THP:1022494.1022512,
author = {Aiken, Jason},
title = {Technical and human perspectives on pair programming},
journal = {SIGSOFT Softw. Eng. Notes},
issue_date = {September 2004},
volume = {29},
number = {5},
month = sep,
year = {2004},
issn = {0163-5948},
pages = {1--14},
numpages = {14},
url = {http://doi.acm.org/10.1145/1022494.1022512},
doi = {10.1145/1022494.1022512},
acmid = {1022512},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{Rodriguez:2012:SAL:2372251.2372275,
author = {Rodr\'{\i}guez, Pilar and Markkula, Jouni and Oivo, Markku and Turula, Kimmo},
title = {Survey on agile and lean usage in finnish software industry},
booktitle = {Proceedings of the ACM-IEEE international symposium on Empirical software engineering and measurement},
series = {ESEM '12},
year = {2012},
isbn = {978-1-4503-1056-7},
location = {Lund, Sweden},
pages = {139--148},
numpages = {10},
url = {http://doi.acm.org/10.1145/2372251.2372275},
doi = {10.1145/2372251.2372275},
acmid = {2372275},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {agile, lean, survey},
}
@inproceedings{Weber-Jahnke:2007:EMI:1248821.1248998,
author = {Weber-Jahnke, Jens H. and Price, Morgan},
title = {Engineering Medical Information Systems: Architecture, Data and Usability \& Security},
booktitle = {Companion to the proceedings of the 29th International Conference on Software Engineering},
series = {ICSE COMPANION '07},
year = {2007},
isbn = {0-7695-2892-9},
pages = {188--189},
numpages = {2},
url = {http://dx.doi.org/10.1109/ICSECOMPANION.2007.34},
doi = {10.1109/ICSECOMPANION.2007.34},
acmid = {1248998},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@inproceedings{Ktata:2009:ADI:1557626.1557636,
author = {Ktata, Oualid and L{\'e}vesque, Ghislain},
title = {Agile development: issues and avenues requiring a substantial enhancement of the business perspective in large projects},
booktitle = {Proceedings of the 2nd Canadian Conference on Computer Science and Software Engineering},
series = {C3S2E '09},
year = {2009},
isbn = {978-1-60558-401-0},
location = {Montreal, Quebec, Canada},
pages = {59--66},
numpages = {8},
url = {http://doi.acm.org/10.1145/1557626.1557636},
doi = {10.1145/1557626.1557636},
acmid = {1557636},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {agile development, decision making, goal oriented approaches, project management, requirements engineering, scrum and business modeling, software valuation},
}
@inproceedings{Elshamy:2007:AAL:1768961.1768970,
author = {Elshamy, Ahmed and Elssamadisy, Amr},
title = {Applying agile to large projects: new agile software development practices for large projects},
booktitle = {Proceedings of the 8th international conference on Agile processes in software engineering and extreme programming},
series = {XP'07},
year = {2007},
isbn = {978-3-540-73100-9},
location = {Como, Italy},
pages = {46--53},
numpages = {8},
url = {http://dl.acm.org/citation.cfm?id=1768961.1768970},
acmid = {1768970},
publisher = {Springer-Verlag},
address = {Berlin, Heidelberg},
}
@inproceedings{Mann:2007:SEC:1273672.1273686,
author = {Mann, Samuel and Smith, Lesley},
title = {Software engineering class eating its own tail},
booktitle = {Proceedings of the ninth Australasian conference on Computing education - Volume 66},
series = {ACE '07},
year = {2007},
isbn = {1-920-68246-5},
location = {Ballarat, Victoria, Australia},
pages = {115--123},
numpages = {9},
url = {http://dl.acm.org/citation.cfm?id=1273672.1273686},
acmid = {1273686},
publisher = {Australian Computer Society, Inc.},
address = {Darlinghurst, Australia, Australia},
keywords = {computer education, software engineering projects},
}
@inproceedings{daSilva:2005:COI:1071246.1071304,
author = {da Silva, J. Schwarz},
title = {Challenges and opportunities in ICT: a European perspective},
booktitle = {Proceedings of the 6th international conference on Mobile data management},
series = {MDM '05},
year = {2005},
isbn = {1-59593-041-8},
location = {Ayia Napa, Cyprus},
pages = {327--327},
numpages = {1},
url = {http://doi.acm.org/10.1145/1071246.1071304},
doi = {10.1145/1071246.1071304},
acmid = {1071304},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{Hazzan:2006:CCT:1138046.1138056,
author = {Hazzan, Orit and Dubinsky, Yael},
title = {The concept of change in technology transfer},
booktitle = {Proceedings of the 2006 international workshop on Software technology transfer in software engineering},
series = {TT '06},
year = {2006},
isbn = {1-59593-412-X},
location = {Shanghai, China},
pages = {29--34},
numpages = {6},
url = {http://doi.acm.org/10.1145/1138046.1138056},
doi = {10.1145/1138046.1138056},
acmid = {1138056},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {agile software development, change processes, extreme programming, software development methods, technology transfer},
}
@inproceedings{Melnik:2005:CIS:1062455.1062543,
author = {Melnik, Grigori and Maurer, Frank},
title = {A cross-program investigation of students' perceptions of agile methods},
booktitle = {Proceedings of the 27th international conference on Software engineering},
series = {ICSE '05},
year = {2005},
isbn = {1-58113-963-2},
location = {St. Louis, MO, USA},
pages = {481--488},
numpages = {8},
url = {http://doi.acm.org/10.1145/1062455.1062543},
doi = {10.1145/1062455.1062543},
acmid = {1062543},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {agile methods, eXtreme programming, empirical study, perception analysis},
}
@article{Dubinsky:2009:SDG:1598732.1598760,
author = {Dubinsky, Yael and Kruchten, Philippe},
title = {Software development governance (SDG): report on 2nd workshop},
journal = {SIGSOFT Softw. Eng. Notes},
issue_date = {September 2009},
volume = {34},
number = {5},
month = oct,
year = {2009},
issn = {0163-5948},
pages = {46--47},
numpages = {2},
url = {http://doi.acm.org/10.1145/1598732.},
doi = {10.1145/1598732.},
acmid = {1598760},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {decision making, software development governance},
}
@inproceedings{Salhofer:2007:PAI:1248460.1248489,
author = {Salhofer, Peter and Ferbas, David},
title = {A pragmatic approach to the introduction of e-government},
booktitle = {Proceedings of the 8th annual international conference on Digital government research: bridging disciplines \& domains},
series = {dg.o '07},
year = {2007},
isbn = {1-59593-599-1},
location = {Philadelphia, Pennsylvania},
pages = {183--189},
numpages = {7},
url = {http://dl.acm.org/citation.cfm?id=1248460.1248489},
acmid = {1248489},
publisher = {Digital Government Society of North America},
keywords = {agile software engineering, business process automation, e-government, web-applications},
}
@article{Nandigam:2008:HIT:1409763.1409767,
author = {Nandigam, Jagadeesh and Jorgensen, Paul},
title = {Hands-on introduction to test-driven development: pre-conference workshop},
journal = {J. Comput. Sci. Coll.},
issue_date = {October 2008},
volume = {24},
number = {1},
month = oct,
year = {2008},
issn = {1937-4771},
pages = {8--8},
numpages = {1},
url = {http://dl.acm.org/citation.cfm?id=1409763.1409767},
acmid = {1409767},
publisher = {Consortium for Computing Sciences in Colleges},
address = {USA},
}
@inproceedings{Cortes:2009:DDS:1596600.1596607,
author = {Cort{\'e}s, Hugo and Garc\'{\i}a, M\'{o}nica and Hern\'{a}ndez, Jorge and Hern\'{a}ndez, Manuel and P{\'e}rez-Cordoba, Esperanza and Ramos, Erik},
title = {Development of a distributed system applied to teaching and learning},
booktitle = {Proceedings of the 8th ACM SIGPLAN workshop on ERLANG},
series = {ERLANG '09},
year = {2009},
isbn = {978-1-60558-507-9},
location = {Edinburgh, Scotland},
pages = {41--50},
numpages = {10},
url = {http://doi.acm.org/10.1145/1596600.1596607},
doi = {10.1145/1596600.1596607},
acmid = {1596607},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {distributed programming, erlang, extreme programming, functional programming, learning},
}
@inproceedings{Fraser:2007:LMS:1768961.1769025,
author = {Fraser, Steven and Ambler, Scott and Bornstein, Gilad and Dubinsky, Yael and Succi, Giancarlo},
title = {Learning more about "software best practices"},
booktitle = {Proceedings of the 8th international conference on Agile processes in software engineering and extreme programming},
series = {XP'07},
year = {2007},
isbn = {978-3-540-73100-9},
location = {Como, Italy},
pages = {271--274},
numpages = {4},
url = {http://dl.acm.org/citation.cfm?id=1768961.1769025},
acmid = {1769025},
publisher = {Springer-Verlag},
address = {Berlin, Heidelberg},
}
@inproceedings{Wallace:2012:SAC:2157136.2157142,
author = {Wallace, Charles and Mohan, Sriram and Troy, Douglas and Hoffman, Mark E.},
title = {Scrum across the CS/SE curricula: a retrospective},
booktitle = {Proceedings of the 43rd ACM technical symposium on Computer Science Education},
series = {SIGCSE '12},