-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpublications.html
More file actions
3677 lines (3199 loc) · 230 KB
/
publications.html
File metadata and controls
3677 lines (3199 loc) · 230 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>UCC Software Engineering Research</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicons
<link href="img/favicon.png" rel="icon">
<link href="img/apple-touch-icon.png" rel="apple-touch-icon">
-->
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:400,700,900|Lato:400,900" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/prettyphoto/css/prettyphoto.css" rel="stylesheet">
<link href="lib/hover/hoverex-all.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<!-- =======================================================
Template Name: Solid
Template URL: https://templatemag.com/solid-bootstrap-business-template/
Author: TemplateMag.com
License: https://templatemag.com/license/
======================================================= -->
</head>
<body>
<!-- Fixed navbar -->
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">UCC SOFTWARE ENGINEERING RESEARCH</a>
</div>
<div class="navbar-collapse collapse navbar-right">
<ul class="nav navbar-nav">
<li><a href="index.html">HOME</a></li>
<li><a href="news.html">NEWS</a></li>
<li><a href="about.html">TEAM</a></li>
<li class="active"><a href="publications.html">PUBLICATIONS</a></li>
<li><a href="research.html">RESEARCH</a></li>
<li><a href="outreach.html">OUTREACH</a></li>
<!-- <li><a href="contact.html">CONTACT</a></li> -->
<!-- <li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">RESEARCH <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="blog.html">BLOG</a></li>
<li><a href="single-post.html">SINGLE POST</a></li>
<li><a href="portfolio.html">PORTFOLIO</a></li>
<li><a href="single-project.html">SINGLE PROJECT</a></li>
</ul>
</li>-->
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
<div id="blue">
<div class="container">
<!--<div class="container" style="max-height: 10px;">-->
<div class="row">
<!-- <h3 style="padding: 0px; margin: 0px;">Publications</h3> -->
<h3>Publications</h3>
</div><!-- /row -->
</div> <!-- /container -->
</div><!-- /blue -->
<div class="container mtb-0">
<diclass="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="bibliography" reversed="reversed">
<!-- BEGIN OF LIST -->
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">EMSE 2026</span></td>
<td>
<div class="reference">
<span id="Werner2026maintaining">
<div class="csl-block"><b>Maintaining Shared Understanding of Non-Functional Requirements in Small Companies using Continuous Software Engineering</b> </div>
<div class="csl-block">C Werner, L Okpara, K Stol, D Damian</div>
<div class="csl-block"><i>Empirical Software Engineering</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-werner2026').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://link.springer.com/article/10.1007/s10664-025-10765-4#Ack1">Publisher</a></span>
· <span class="refs-link"><a href="#">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-werner2026" style="display: none;">@article{werner2026maintaining,
title={Maintaining Shared Understanding of Non-Functional Requirements in Small Companies using Continuous Software Engineering},
author={Werner, Colin and Okpara, Laura and Stol, Klaas-Jan and Damian, Daniela},
journal={Empirical Software Engineering},
year={2026},
volume={31},
number={2}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">ICSE 2026</span></td>
<td>
<div class="reference">
<span id="Chen2026core">
<div class="csl-block"><b>How Does Core Contributor Disengagement Impact Open Source Project Activity? A Quasi-Experiment</b> </div>
<div class="csl-block">Y Chen, K Stol, F Santos, DM German, B Trinkenreich</div>
<div class="csl-block"><i>International Conference on Software Engineering</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-chen2026core').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="#">Publisher</a></span>
· <span class="refs-link"><a href="#">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-chen2026core" style="display: none;">@inproceedings{chen2026core,
title={How Does Core Contributor Disengagement Impact Open Source Project Activity? A Quasi-Experiment},
author={Yunqi Chen and Klaas-Jan Stol and Fabio Santos and Daniel M German and Bianca Trinkenreich},
booktitle={International Conference on Software Engineering},
year={2026}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">JSS 2026</span></td>
<td>
<div class="reference">
<span id="Sporsem2026stories">
<div class="csl-block"><b>User stories as boundary objects in agile requirements engineering: A theoretical literature review</b> </div>
<div class="csl-block">T Sporsem, T Dingsøyr, K Stol</div>
<div class="csl-block"><i>Journal of Systems and Software</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-zeng2026').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://www.sciencedirect.com/science/article/pii/S0164121225003620">Publisher</a></span>
· <span class="refs-link"><a href="https://www.sciencedirect.com/science/article/pii/S0164121225003620/pdfft?crasolve=1&r=9bb48660fbdcbe30&ts=1767967897784&rtype=https&vrr=UKN&redir=UKN&redir_fr=UKN&redir_arc=UKN&vhash=UKN&host=d3d3LnNjaWVuY2VkaXJlY3QuY29t&tsoh=d3d3LnNjaWVuY2VkaXJlY3QuY29t&rh=d3d3LnNjaWVuY2VkaXJlY3QuY29t&re=X2JsYW5rXw%3D%3D&ns_h=d3d3LnNjaWVuY2VkaXJlY3QuY29t&ns_e=X2JsYW5rXw%3D%3D&rh_fd=rrr)n%5Ed%60i%5E%60_dm%60%5Eo)%5Ejh&tsoh_fd=rrr)n%5Ed%60i%5E%60_dm%60%5Eo)%5Ejh&hc=~rrr)n%5Ed%60i%5E%60_dm%60%5Eo)%5Ejhwrrr)n%5Ed%60i%5E%60_dm%60%5Eo)%5Ejhwrrr)n%5Ed%60i%5E%60_dm%60%5Eo)%5Ejh&iv=1ea9b1e5b8ef664525905c715f0cf936&token=30666361326438613836386536383832633961656561316434376132356664636630323964666331313632646336333063613432646561313934656134373639323231323066626362663433343033343634336638313837663133636137623438393861376332653337343861336335356331656662656563333532653431393a613764366538656331383831663664383332626632663037&text=5d2e366b86f6825d6c30867e3518b79edbe2ed4f11d37006df09a1c9056ae75daeda4066639b27071651d0a6477ba9091761adcc78e02d5dd3e506c551e8f1826f091f9df1ea1d7425e5033ee919accc09f37724244295c3094b5bfc9a808e511d1472dd55aa9cb1ccf1e8a73d342489b82aa45f53ae7c4d7d3bb75ce2a63d6d94ce1ef70f1c6e0f700f3488612e7cae7e3b71c575161bb3bdc26feb79827296c34ee2676496eedb85efee9fbefbb0b3e4401070edec5513bed5d8192870117c12a993a54603a43aaaf1fcd77fbd01ca95ab327f4a0808da623a0f627a6248e60c66ea0ef8257c60019012f01d57032d4502a8836bf14d7b9fecc652ebdb566e8e556195785afce9261c96e3b23720a56091651acfc00a4786663729990b00aafe899328fc980dbc551f44ebb9bf6e69&original=3f6d64353d6539313239336366386263306533336631643831383664646564343035376632267069643d312d73322e302d53303136343132313232353030333632302d6d61696e2e706466&chkp=1c&rack=9bb48660fbdcbe30">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-zeng2026" style="display: none;">@article{sporsem2026stories,
title={User stories as boundary objects in agile requirements engineering: A theoretical literature review},
author={Sporsem, Tor and Dings\o{}yr and Stol, Klaas-Jan},
journal={Journal of Systems and Software},
year={2026},
volume={233},
number={112693}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">ICSE 2026</span></td>
<td>
<div class="reference">
<span id="Ryan2026weak">
<div class="csl-block"><b>Weak Programmers Need Not Apply, LLMs Welcome! Survey Screening in the AI Era</b> </div>
<div class="csl-block">I Ryan, U Roedig, K Stol</div>
<div class="csl-block"><i>International Conference on Software Engineering 2026</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-ryan2026weak').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="#">Publisher</a></span>
· <span class="refs-link"><a href="#">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-ryan2026weak" style="display: none;">@inproceedings{ryan2026weak,
title={Weak Programmers Need Not Apply, LLMs Welcome! Survey Screening in the AI Era},
author={Ryan, Ita and Roedig, Utz and Stol, Klaas-Jan},
booktitle={Proceedings of the International Conference on Software Engineering},
year={2026}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">ICSE 2026</span></td>
<td>
<div class="reference">
<span id="Zeng2026evaluating">
<div class="csl-block"><b>Evaluating Generated Commit Messages with Large Language Models</b> </div>
<div class="csl-block">Q Zeng, Y Zhang, Z Ma, B Jiang, N Sun, K Stol, X Mou, H Liu</div>
<div class="csl-block"><i>48th IEEE/ACM International Conference on Software Engineering 2025</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-zeng2026').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="#">Publisher</a></span>
· <span class="refs-link"><a href="https://arxiv.org/abs/2507.10906">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-zeng2026" style="display: none;">@inproceedings{zeng2026evaluating,
title={Evaluating Generated Commit Messages with Large Language Models},
author={Qunhong Zeng and Yuxia Zhang and Zexiong Ma and Bo Jiang and Ningyuan Sun and Klaas-Jan Stol and Xingyu Mou and Hui Liu},
booktitle={Proceedings of the 48th IEEE/ACM International Conference on Software Engineering},
year={2026}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">IST 2025</span></td>
<td>
<div class="reference">
<span id="Stray2025GenAI">
<div class="csl-block"><b>What Is Generative AI Good For? Introduction to the Special Issue on Generative AI in
Software Engineering</b> </div>
<div class="csl-block">V Stray, GK Hanssen, A Barbala, D Smite, KJ Stol</div>
<div class="csl-block"><i>Information and Software Technology</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-stray2025editorial').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="#">Publisher</a></span>
· <span class="refs-link"><a href="/pub/ist-editorial-genai.pdf">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-stray2025editorial" style="display: none;">@article{stray2025genai,
title={What Is Generative AI Good For? Introduction to the Special Issue on Generative AI in
Software Engineering},
author={Stray, Viktoria and Hanssen, Geir Kjetil and Barbala, Astri and Smite, Darja and Stol, Klaas-Jan},
journal={Information and Software Technology},
year={2025},
volume={in press}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">FSE 2025</span></td>
<td>
<div class="reference">
<span id="Qin2025fse">
<div class="csl-block"><b>Who Will Stop Contributing to OSS Projects? Predicting Company Turnover Based on Initial Behavior</b> </div>
<div class="csl-block">M Qin, Y Zhang, KJ Stol, H Liu</div>
<div class="csl-block"><i>Foundations of Software Engineering 2025</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-qin2025who').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/10.1145/3729393">Publisher</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/pdf/10.1145/3729393">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-qin2025who" style="display: none;">@inproceedings{qin2025who,
title={Who Will Stop Contributing to OSS Projects? Predicting Company Turnover Based on Initial Behavior},
author={Qin, Mian and Zhang, Yuzia and Stol, Klaas-Jan and Liu, Hui},
booktitle={Proceedings of Foundations on Software Engineering},
year={2025}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">FSE 2025</span></td>
<td>
<div class="reference">
<span id="Fan2025core">
<div class="csl-block"><b>Core Developer Turnover in the Rust Package Ecosystem: Prevalence, Impact, and Awareness</b> </div>
<div class="csl-block">M Fan, Y Zhang, KJ Stol, H Liu</div>
<div class="csl-block"><i>Foundations on Software Engineering 2025</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-fan2025core').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/10.1145/3729392">Publisher</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/pdf/10.1145/3729392">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-fan2025core" style="display: none;">@inproceedings{fan2025core,
title={Core Developer Turnover in the Rust Package Ecosystem: Prevalence, Impact, and Awareness},
author={Fan, Meng and Zhang, Yuxia and Stol, Klaas-Jan and Liu, Hui},
booktitle={Proceedings of Foundations on Software Engineering},
year={2025}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">EJIS 2025</span></td>
<td>
<div class="reference">
<span id="Schaarschmidt2025dilemma">
<div class="csl-block"><b>The Insider’s Dilemma: Employed Open Source Developers’ Identification Imbalance and Intentions to Leave</b> </div>
<div class="csl-block">M Schaarschmidt, K Stol, B Fitzgerald</div>
<div class="csl-block"><i>European Journal on Information Systems</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-schaarschmidt2025dilemma').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://www.tandfonline.com/doi/full/10.1080/0960085X.2025.2463984">Publisher</a></span>
· <span class="refs-link"><a href="https://www.tandfonline.com/doi/epdf/10.1080/0960085X.2025.2463984?needAccess=true">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-schaarschmidt2025dilemma" style="display: none;">@article{schaarschmidt2025dilemma,
title={The Insider’s Dilemma: Employed Open Source Developers’ Identification Imbalance and Intentions to Leave},
author={Schaarschmidt, Mario and Stol, Klaas-Jan and Fitzgerald, Brian},
journal={European Journal on Information Systems},
year={2025}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">ICSE 2025</span></td>
<td>
<div class="reference">
<span id="Ryan2025sentiment">
<div class="csl-block"><b>“ImmediateShortTerm3MthsAfterThatLOL”: Developer Secure-Coding Sentiment, Practice and Culture in Organisations</b> </div>
<div class="csl-block">I Ryan, U Roedig, K Stol</div>
<div class="csl-block"><i>International Conference on Software Engineering (SEIP)</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-ryan2025icse').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="#">Publisher</a></span>
· <span class="refs-link"><a href="https://cora.ucc.ie/server/api/core/bitstreams/f7cbcb4f-e1bd-4383-80af-f6e811604ec1/content">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-ryan2025icse" style="display: none;">@inproceedings{ryan2025developer,
title={``ImmediateShortTerm3MthsAfterThatLOL'': Developer Secure-Coding Sentiment, Practice and Culture in Organisations},
author={Ryan, Ita and Roedig, Utz and Stol, Klaas-Jan},
booktitle={47th International Conference on Software Engineering},
year={2025}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">JSS 2024</span></td>
<td>
<div class="reference">
<span id="Russo2024copenhagen">
<div class="csl-block"><b>Generative AI in Software Engineering Must Be Human-Centered: The Copenhagen Manifesto</b> </div>
<div class="csl-block">D Russo, S Baltes, N van Berkel, P Avgeriou, F Calefato, B Cabrero-Daniel, G Catolino, J Cito, N Ernst, T Fritz, H Hata, R Holmes, M Izadi, F Khomh, M Baun Kjærgaard, G Liebel, A Lluch Lafuente, S Lambiase, W Maalej, G Murphy, NB Moe, G O'Brien, E Paja, M Pezzè, J Stouby Persson, R Prikladnicki, P Ralph, M Robillard, TR Silva, KJ Stol, MA Storey, V Stray, P Tell, CTreude, and B Vasilescu</div>
<div class="csl-block"><i>Journal of Systems and Software</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-russo2024copenhagen').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://www.sciencedirect.com/science/article/abs/pii/S0164121224001602?via%3Dihub">Publisher</a></span>
· <span class="refs-link"><a href="#">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-russo2024copenhagen" style="display: none;">@article{russo2024copenhagen,
title={Generative AI in Software Engineering Must Be Human-Centered: The Copenhagen Manifesto},
author={Daniel Russo and Sebastian Baltes and Niels van Berkel and Paris Avgeriou andFabio Calefato and Beatriz Cabrero-Daniel and Gemma Catolino and Jürgen Cito and Neil Ernst and Thomas Fritz and Hideaki Hata and Reid Holmes and Maliheh Izadi and Foutse Khomh and Mikkel Baun Kjærgaard and Grischa Liebel and Alberto Lluch Lafuente and Stefano Lambiase and Walid Maalej and Gail Murphy and Nils Brede Moe and Gabrielle O'Brien and Elda Paja and Mauro Pezzè and John Stouby Persson and Rafael Prikladnicki and Paul Ralph and Martin Robillard and Thiago Rocha Silva and Klaas-Jan Stol and Margaret-Anne Storey and Viktoria Stray and Paolo Tell and Christoph Treude and Bogdan Vasilescu},
journal={Journal of Systems and Software},
year={2024}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">TOSEM 2024</span></td>
<td>
<div class="reference">
<span id="Trinkenreich2024predicting">
<div class="csl-block"><b>Predicting Attrition among Software Professionals: Antecedents and Consequences of Burnout and Engagement</b> </div>
<div class="csl-block">B Trinkenreich, F Santos, K Stol</div>
<div class="csl-block"><i>ACM Transactions on Software Engineering and Methodology</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-trinkenreich2024tosem').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/10.1145/3691629">Publisher</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/pdf/10.1145/3691629">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-trinkenreich2024tosem" style="display: none;">@article{trinkenreich2024predicting,
title={Predicting Attrition among Software Professionals: Antecedents and Consequences of Burnout and Engagement},
author={Trinkenreich, Bianca and Santos, Fabio and Stol, Klaas-Jan},
journal={ACM Transactions on Software Engineering and Methodology},
year={2024},
volume={in press},
publisher={ACM}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv"><img src="img/teachingbook.webp" width="70" alt="chapter"></img></span></td>
<td>
<div class="reference">
<span id="Stol2024theorizing">
<div class="csl-block"><b>Teaching Theorizing in Software Engineering Research</b> </div>
<div class="csl-block">K Stol</div>
<div class="csl-block"><i>In: Handbook on Teaching Empirical Software Engineering</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-stol2024theorizing').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="#">Publisher</a></span>
· <span class="refs-link"><a href="https://arxiv.org/pdf/2406.17174">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-stol2024theorizing" style="display: none;">@incollection{stol2024theorizing,
title={Teaching Theorizing in Software Engineering Research},
author={Stol, Klaas-Jan},
booktitle={Teaching Empirical Research Methods in Software Engineering},
editor={Daniel Mendez, Paris Avgeriou, Marcos Kalinowski, and Nauman bin Ali},
year={2024},
publisher={Springer}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">TOSEM 2024</span></td>
<td>
<div class="reference">
<span id="Robillard2024tosem">
<div class="csl-block"><b>Communicating Study Design Trade-offs in Software Engineering</b> </div>
<div class="csl-block">M Robillard, D Arya, N Ernst, JLC Guo, M Lamothe, M Nassif, N Novielli, A Serebrenik, I Steinmacher, K Stol</div>
<div class="csl-block"><i>ACM Transactions on Software Engineering and Methodology</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-robillard2024tosem').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/10.1145/3649598">Publisher</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/pdf/10.1145/3649598">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-robillard2024tosem" style="display: none;">@article{robillard2024tosem,
title={Communicating Study Design Trade-offs in Software Engineering},
author={Robillard, Martin and Arya, Deeksha and Ernst, Neil and Guo, Jin L.C. and Lamothe, Maxime and Nassif, Mathieu and Novielli, Nicole and Serebrenik, Alexander and Steinmacher, Igor and Stol, Klaas-Jan},
journal={ACM Transactions on Software Engineering and Methodology},
year={2024},
volume={in press},
publisher={ACM}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">JSIS 2024</span></td>
<td>
<div class="reference">
<span id="Stol2024jsis">
<div class="csl-block"><b>Does adopting inner source increase job satisfaction? A social
capital perspective using a mixed-methods approach</b> </div>
<div class="csl-block">K Stol, M Schaarschmidt, L Morgan</div>
<div class="csl-block"><i>Journal of Strategic Information Systems </i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-stol2024jsis').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://www.sciencedirect.com/science/article/pii/S0963868724000015">Publisher</a></span>
· <span class="refs-link"><a href="https://www.sciencedirect.com/science/article/pii/S0963868724000015/pdfft?md5=fa37c72bcbe9b3ca99399d23e420d178&pid=1-s2.0-S0963868724000015-main.pdf">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-stol2024jsis" style="display: none;">@article{stol2024jsis,
title={Does adopting inner source increase job satisfaction? A social capital perspective using a mixed-methods approach},
author={Stol, Klaas-Jan and Schaarschmidt, Mario and Morgan, Lorraine},
journal={Journal of Strategic Information Systems},
year={2024},
volume={33},
number={1},
publisher={Elsevier}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">TSE 2024</span></td>
<td>
<div class="reference">
<span id="ZhangTSE2024">
<div class="csl-block"><b>Automatic Commit Message Generation: A Critical Review and Directions for Future Work</b> </div>
<div class="csl-block">Y Zhang, Z Qiu, K Stol, W Zhu, J Zhu, Y Tian, H Liu</div>
<div class="csl-block"><i>IEEE Transactions on Software Engineering</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-zhang2024automatic').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://ieeexplore.ieee.org/document/10433002">Publisher</a></span>
· <span class="refs-link"><a href="https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=10433002">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-zhang2024automatic" style="display: none;">@article{zhang2024automatic,
title={Automatic Commit Message Generation: A Critical Review and Directions for Future Work},
author={Zhang, Yuxia and Qiu, Zhiqing and Stol, Klaas-Jan and Zhu, Wenhui and Zhu, Jiaxin and Yingchen, Tian and Liu, Hui},
booktitle={IEEE Transactions on Software Engineering},
year={2024},
volume={in press},
publisher={IEEE}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">EnCyCriS 2024</span></td>
<td>
<div class="reference">
<span id="Ryan2024theory">
<div class="csl-block"><b>Training Developers to Code Securely: Theory and Practice</b> </div>
<div class="csl-block">I Ryan, U Roedig, K Stol</div>
<div class="csl-block"><i>Joint 5th International Workshop on Engineering and Cybersecurity of
Critical Systems and 2nd International Workshop on Software
Vulnerability Management (EnCyCriS/SVM 2024) </i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-ryan2024theory').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/10.1145/3643662.3643956">Publisher</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/pdf/10.1145/3643662.3643956">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-ryan2024theory" style="display: none;">@inproceedings{ryan2024theory,
title={Training Developers to Code Securely: Theory and Practice},
author={Ryan, Ita and Roedig, Utz and Stol, Klaas-Jan},
booktitle={Joint 4th International Workshop on Engineering and Cybersecurity of
Critical Systems and 2nd International Workshop on Software
Vulnerability Management (EnCyCriS/SVM 2024)},
year={2024},
publisher={ACM}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">CSUR 2024</span></td>
<td>
<div class="reference">
<span id="Santos2023CSUR">
<div class="csl-block"><b>Distributed Scrum: A Case Meta-Analysis</b> </div>
<div class="csl-block">R De Souza Santos, P Ralph, A Arshad, and K Stol</div>
<div class="csl-block"><i>ACM Computing Surveys 56(4)</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-desouza2023csur').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/10.1145/3626519">Publisher</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/pdf/10.1145/3626519">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-desouza2023csur" style="display: none;">@article{desouza2024csur,
title={Distributed Scrum: A Case Meta-Analysis},
author={De Souza Santos, Ronnie and Ralph, Paul and Arham, Arshad and Stol, Klaas-Jan},
booktitle={ACM Computing Surveys},
year={2024},
volume = {56},
number = {4},
publisher={ACM}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">ICSE 2024</span></td>
<td>
<div class="reference">
<span id="Zhang2024">
<div class="csl-block"><b>How Are Paid and Volunteer Open Source Developers Different? A Study of the Rust Project</b> </div>
<div class="csl-block">Y Zhang, M Qin, K Stol, M Zhou, H Liu</div>
<div class="csl-block"><i>International Conference on Software Engineering</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-zhang2024').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/10.1145/3597503.3639197">Publisher</a></span>
· <span class="refs-link"><a href="https://arxiv.org/pdf/2401.13940#:~:text=The%20results%20indicate%20that%20paid,long%2Dterm%20contributor%20in%20Rust.">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-zhang2024" style="display: none;">@inproceedings{zhang2024rust,
title={How Are Paid and Volunteer Open Source Developers Different? A Study of the Rust Project},
author={Zhang, Yuxia and Qin, Mian and Stol, Klaas-Jan and Zhou, Minghui and Liu, Hui},
booktitle={International Conference on Software Engineering},
year={2024},
publisher={ACM}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">HICSS 2024</span></td>
<td>
<div class="reference">
<span id="Barbala2024hicss">
<div class="csl-block"><b>A Case Study of Continuous Adoption in the Public Sector in Norway</b> </div>
<div class="csl-block">A Barbala, T Sporsem, K Stol</div>
<div class="csl-block"><i>Hawaii International Conference on System Sciences</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-barbala2024hicss').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://scholarspace.manoa.hawaii.edu/server/api/core/bitstreams/aa31acd9-9ff0-434e-a21c-4732f5c36056/content">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-barbala2024hicss" style="display: none;">@inproceedings{barbala2024hicss,
title={A Case Study of Continuous Adoption in the Public Sector in Norway},
author={Barbala, Astri and Sporsem, Tor and Stol, Klaas-Jan},
booktitle={Hawaii International Conference on System Sciences},
year={2024}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">TOSEM 2024</span></td>
<td>
<div class="reference">
<span id="Rolland2023">
<div class="csl-block"><b>Acrobats and Safety-Nets: Problematizing Large-Scale Agile Software Development</b> </div>
<div class="csl-block">KH Rolland, B Fitzgerald, T Dingsøyr, K Stol</div>
<div class="csl-block"><i>ACM Transactions on Software Engineering and Methodology</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-rolland2024').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/10.1145/3617169">Publisher</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/pdf/10.1145/3617169">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-rolland2024" style="display: none;">@article{rolland2024,
title={Acrobats and Safety-Nets: Problematizing Large-Scale Agile Software Development},
author={Rolland, Knut H and Fitzgerald, Brian and Dings\o{}yr, Torgeir and Stol, Klaas-Jan},
journal={ACM Transactions on Software Engineering and Methodology},
number={2},
volume={33},
year={2023},
volume={in press},
publisher={ACM}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">CCS 2023</span></td>
<td>
<div class="reference">
<span id="Ryan2023CCS">
<div class="csl-block"><b>Unhelpful Assumptions in Software Security Research</b> </div>
<div class="csl-block">I Ryan, U Roedig, K Stol</div>
<div class="csl-block"><i>ACM Conference on Computer and Communications Security (CCS)</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-ryan2023ccs').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/10.1145/3576915.3623122">Publisher</a></span>
· <span class="refs-link"><a href="https://dl.acm.org/doi/pdf/10.1145/3576915.3623122">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-ryan2023ccs" style="display: none;">@inproceedings{ryan2023ccs,
title={Unhelpful Assumptions in Software Security Research},
author={Ryan, Ita and Roedig, Utz and Stol, Klaas-Jan},
booktitle={ACM Conference on Computer and Communications Security},
year={2023},
publisher={ACM}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">EnCyCriS 2023</span></td>
<td>
<div class="reference">
<span id="Ryan2023lone">
<div class="csl-block"><b>The State of Secure Coding Practice: Small Organisations and “Lone, Rogue Coders”</b> </div>
<div class="csl-block">I Ryan, K Stol, U Roedig</div>
<div class="csl-block"><i>IEEE/ACM 4th International Workshop on Engineering and Cybersecurity of Critical Systems</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-ryan2023lone').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://ieeexplore.ieee.org/document/10189121">Publisher</a></span>
· <span class="refs-link"><a href="https://cora.ucc.ie/bitstreams/1aea9ecf-fdc0-40b6-968b-fb6af4613227/download">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-ryan2023lone" style="display: none;">@inproceedings{ryan2023lone,
title={The State of Secure Coding Practice: Small Organisations and “Lone, Rogue Coders”},
author={Ryan, Ita and Stol, Klaas-Jan and Roedig, Utz},
booktitle={Proceedings of the IEEE/ACM 4th International Workshop on Engineering and Cybersecurity of Critical Systems},
year={2023},
publisher={IEEE}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>
<span>
<div class="refs-row">
<table style="width:100%">
<p>
<tr>
<td width="120" valign="top"><span class="abbrv">EnCyCriS 2023</span></td>
<td>
<div class="reference">
<span id="Ryan2023labstudies">
<div class="csl-block"><b>Studying Secure Coding in the Laboratory: Why, What, Where, How, and Who?</b> </div>
<div class="csl-block">I Ryan, K Stol, U Roedig</div>
<div class="csl-block"><i>IEEE/ACM 4th International Workshop on Engineering and Cybersecurity of Critical Systems</i></div>
</span>
</div>
<span class="refs-link"><a href="javascript:void(0)" onclick="$('#bibtex-entry-ryan2023labstudies').slideToggle();">BibTeX</a></span>
· <span class="refs-link"><a href="https://ieeexplore.ieee.org/document/10189159">Publisher</a></span>
· <span class="refs-link"><a href="https://cora.ucc.ie/bitstreams/3d8e64d6-3505-4394-96b4-69cfc9a5d9a2/download">PDF</a></span>
<div class="bibtex noshow" style="width:600px;overflow:auto">
<pre class="bibtex-entry" id="bibtex-entry-ryan2023labstudies" style="display: none;">@inproceedings{ryan2023labstudies,
title={Studying Secure Coding in the Laboratory: Why, What, Where, How, and Who?},
author={Ryan, Ita and Stol, Klaas-Jan and Roedig, Utz},
booktitle={Proceedings of the IEEE/ACM 4th International Workshop on Engineering and Cybersecurity of Critical Systems},
year={2023},
publisher={IEEE}
}
</pre>
</div>
</td>
</tr>
</p>
</table>
</div>
</span>