-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.xml
More file actions
1467 lines (1151 loc) · 62 KB
/
index.xml
File metadata and controls
1467 lines (1151 loc) · 62 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
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>SSERL</title>
<link>https://sserl.github.io/</link>
<description>Recent content on SSERL</description>
<generator>Source Themes Academic (https://sourcethemes.com/academic/)</generator>
<language>en-us</language>
<copyright>&copy; 2019</copyright>
<lastBuildDate>Thu, 28 Feb 2019 15:46:48 -0700</lastBuildDate>
<atom:link href="https://sserl.github.io/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Alex Groce</title>
<link>https://sserl.github.io/members/faculty/alex_groce/</link>
<pubDate>Fri, 26 Oct 2018 12:30:00 -0700</pubDate>
<guid>https://sserl.github.io/members/faculty/alex_groce/</guid>
<description></description>
</item>
<item>
<title>Frédéric Loulergue</title>
<link>https://sserl.github.io/members/faculty/frederic_loulergue/</link>
<pubDate>Fri, 26 Oct 2018 12:30:00 +0000</pubDate>
<guid>https://sserl.github.io/members/faculty/frederic_loulergue/</guid>
<description></description>
</item>
<item>
<title>Igor Steinmacher</title>
<link>https://sserl.github.io/members/faculty/igor_steinmacher/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/members/faculty/igor_steinmacher/</guid>
<description></description>
</item>
<item>
<title>John Georgas</title>
<link>https://sserl.github.io/members/faculty/john_georgas/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/members/faculty/john_georgas/</guid>
<description></description>
</item>
<item>
<title>Marco Gerosa</title>
<link>https://sserl.github.io/members/faculty/marco_gerosa/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/members/faculty/marco_gerosa/</guid>
<description></description>
</item>
<item>
<title>Ana Paula Chaves Steinmacher</title>
<link>https://sserl.github.io/members/graduate/acs549/</link>
<pubDate>Fri, 26 Oct 2018 00:00:00 -0700</pubDate>
<guid>https://sserl.github.io/members/graduate/acs549/</guid>
<description><p>Ana Paula Chaves is a graduate teaching assistant at the <a href="https://nau.edu/siccs" target="_blank">School of
Informatics, Computing and Cyber Systems</a>,
<a href="https://nau.edu" target="_blank">Northern Arizona University</a>, advised by <a href="https://www.ime.usp.br/~gerosa" target="_blank">Marco
Gerosa</a>.</p>
<p><a href="http://www.anachaves.pro.br" target="_blank">Personal webpage</a></p>
</description>
</item>
<item>
<title>Austin Sander</title>
<link>https://sserl.github.io/members/graduate/as2544/</link>
<pubDate>Fri, 26 Oct 2018 00:00:00 -0700</pubDate>
<guid>https://sserl.github.io/members/graduate/as2544/</guid>
<description><p>Austin Sanders is a graduate teaching assistant at the <a href="https://nau.edu/siccs" target="_blank">School of
Informatics, Computing and Cyber Systems</a>,
<a href="https://nau.edu" target="_blank">Northern Arizona University</a>, advised by <a href="https://www.cefns.nau.edu/~jg455/" target="_blank">John
Georgas</a>.</p>
</description>
</item>
<item>
<title>Jefferson Silva</title>
<link>https://sserl.github.io/members/graduate/jefferson_silva/</link>
<pubDate>Fri, 26 Oct 2018 00:00:00 -0700</pubDate>
<guid>https://sserl.github.io/members/graduate/jefferson_silva/</guid>
<description><p>Jefferson Silva is a PhD candidate at the <a href="http://ime.usp.br" target="_blank">Institute of
Mathematics and Statistics</a>, <a href="http://www.usp.br" target="_blank">University
of São Paul</a> in Brazil, advised by <a href="https://www.ime.usp.br/~gerosa" target="_blank">Marco
Gerosa</a> and <a href="http://www.igor.pro.br" target="_blank">Igor
Steinmacher</a>.</p>
</description>
</item>
<item>
<title>Jolan Philippe</title>
<link>https://sserl.github.io/members/graduate/jp2589/</link>
<pubDate>Fri, 26 Oct 2018 00:00:00 -0700</pubDate>
<guid>https://sserl.github.io/members/graduate/jp2589/</guid>
<description><p>Jolan Philippe obtained his Master&rsquo;s degree at NAU in May 2019. His
SSERL advisor was <a href="https://frederic.loulergue.eu" target="_blank">Frédéric Loulergue</a>.
He is now a PhD student at IMT Atlantique, Nantes, France.</p>
</description>
</item>
<item>
<title>Salwa Souaf</title>
<link>https://sserl.github.io/members/graduate/ss3465/</link>
<pubDate>Fri, 26 Oct 2018 00:00:00 -0700</pubDate>
<guid>https://sserl.github.io/members/graduate/ss3465/</guid>
<description><p>Salwa Souaf is a Phd student both at Nothern Arizona University and
INSA Centre Val de Loire. Her SSERL advisor is <a href="https://frederic.loulergue.eu" target="_blank">Frédéric
Loulergue</a>, and she is co-advised by
Pascal Berthomé at INSA. She works on formal methods applied to cloud
security.</p>
</description>
</item>
<item>
<title>Arvid Jakobsson</title>
<link>https://sserl.github.io/members/graduate/arvid_jakobsson/</link>
<pubDate>Fri, 26 Oct 2018 00:00:00 -0700</pubDate>
<guid>https://sserl.github.io/members/graduate/arvid_jakobsson/</guid>
<description><p>Arvid Jakobsson was a Phd student at the Université d&rsquo;Orléans, France,
and he is also working for Huawei Technologies France. His SSERL
advisor was <a href="https://frederic.loulergue.eu" target="_blank">Frédéric Loulergue</a>, and he
was co-advised by Wadoud Bousdira and Frédéric Dabrowski at the
Université d&rsquo;Orléans, and Gaétan Hains and Wijnand Suijlen at Huawei
Technologies France. His research is focused on the static analysis of
scalable parallel programs.</p>
</description>
</item>
<item>
<title>Dara Ly</title>
<link>https://sserl.github.io/members/graduate/dara_ly/</link>
<pubDate>Fri, 26 Oct 2018 00:00:00 -0700</pubDate>
<guid>https://sserl.github.io/members/graduate/dara_ly/</guid>
<description><p>Dara Ly is a Phd student at the Université d&rsquo;Orléans, France, and he
is also working for <a href="http://www-list.cea.fr/en/" target="_blank">CEA LIST</a>. His SSERL
advisor is <a href="https://frederic.loulergue.eu" target="_blank">Frédéric Loulergue</a>, and he
is co-advised by Julien Signoles and Nikolai Kosmatov at CEA LIST. He
works on the formal verification of a tool for runtime assertion
checking.</p>
</description>
</item>
<item>
<title>Thibaut Tachon</title>
<link>https://sserl.github.io/members/graduate/thibaut_tachon/</link>
<pubDate>Fri, 26 Oct 2018 00:00:00 -0700</pubDate>
<guid>https://sserl.github.io/members/graduate/thibaut_tachon/</guid>
<description><p>Thibaut Tachon was a Phd student at the Université d&rsquo;Orléans, France,
and he was also working for Huawei Technologies France. His SSERL
advisor was <a href="https://frederic.loulergue.eu" target="_blank">Frédéric Loulergue</a>, and
he was co-advised by Gaétan Hains at Huawei Technologies France. His
research is focused on the bulk synchronous parallel automata
formalism and a DSL for neural networks. He is now a research
engineering at Huawei Technologies France.</p>
</description>
</item>
<item>
<title>Kevin Gonzalez Castro</title>
<link>https://sserl.github.io/members/undergraduate/kag483/</link>
<pubDate>Fri, 26 Oct 2018 00:00:00 -0700</pubDate>
<guid>https://sserl.github.io/members/undergraduate/kag483/</guid>
<description><p>Kevin Gonzalez Castro was an undergraduate research assistant at
<a href="https://nau.edu" target="_blank">Northern Arizona University</a>. He worked with
<a href="https://frederic.loulergue.eu" target="_blank">Frédéric Loulergue</a> on a domain
specific language (DSL) for large-scale graph processing.</p>
</description>
</item>
<item>
<title>Comparing NamedCapture With Other R Packages for Regular Expressions</title>
<link>https://sserl.github.io/talk/comparing-namedcapture-with-other-r-packages-for-regular-expressions/</link>
<pubDate>Thu, 28 Feb 2019 15:46:48 -0700</pubDate>
<guid>https://sserl.github.io/talk/comparing-namedcapture-with-other-r-packages-for-regular-expressions/</guid>
<description></description>
</item>
<item>
<title>The Language of Chatbots</title>
<link>https://sserl.github.io/talk/the-language-of-chatbots/</link>
<pubDate>Tue, 05 Feb 2019 15:17:14 -0700</pubDate>
<guid>https://sserl.github.io/talk/the-language-of-chatbots/</guid>
<description></description>
</item>
<item>
<title>Parallel Programming with the Orleans Skeleton Library</title>
<link>https://sserl.github.io/talk/parallel-programming-with-the-orleans-skeleton-library/</link>
<pubDate>Tue, 05 Feb 2019 15:16:56 -0700</pubDate>
<guid>https://sserl.github.io/talk/parallel-programming-with-the-orleans-skeleton-library/</guid>
<description></description>
</item>
<item>
<title>How should my chatbot interact? A survey on human-chatbot interaction design</title>
<link>https://sserl.github.io/publication/dblp-journalscorrabs-1904-02743/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalscorrabs-1904-02743/</guid>
<description></description>
</item>
<item>
<title>Let Me In: Guidelines for the Successful Onboarding of Newcomers to Open Source Projects</title>
<link>https://sserl.github.io/publication/dblp-journalssoftware-steinmacher-tg-19/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalssoftware-steinmacher-tg-19/</guid>
<description></description>
</item>
<item>
<title>Logic against ghosts: comparison of two proof approaches for a list module</title>
<link>https://sserl.github.io/publication/dblp-confsac-blanchard-kl-19/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confsac-blanchard-kl-19/</guid>
<description></description>
</item>
<item>
<title>Overcoming Social Barriers When Contributing to Open Source Software Projects</title>
<link>https://sserl.github.io/publication/dblp-journalscscw-steinmacher-gcr-19/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalscscw-steinmacher-gcr-19/</guid>
<description></description>
</item>
<item>
<title>Parallel programming with Coq: map and reduce skeletons on trees</title>
<link>https://sserl.github.io/publication/dblp-confsac-philippe-l-19/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confsac-philippe-l-19/</guid>
<description></description>
</item>
<item>
<title>Passages</title>
<link>https://sserl.github.io/publication/dblp-journalssigsoft-groce-19/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalssigsoft-groce-19/</guid>
<description></description>
</item>
<item>
<title>Pedagogical Content for Professors of Introductory Programming Courses</title>
<link>https://sserl.github.io/publication/dblp-confiticse-bosse-rg-19/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confiticse-bosse-rg-19/</guid>
<description></description>
</item>
<item>
<title>Should I stale or should I close?: an analysis of a bot that closes abandoned issues and pull requests</title>
<link>https://sserl.github.io/publication/dblp-conficse-wessel-swg-19/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-conficse-wessel-swg-19/</guid>
<description></description>
</item>
<item>
<title>Towards Full Proof Automation in Frama-C Using Auto-active Verification</title>
<link>https://sserl.github.io/publication/dblp-confnfm-blanchard-lk-19/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confnfm-blanchard-lk-19/</guid>
<description></description>
</item>
<item>
<title>Training software engineers using open-source software: the students' perspective</title>
<link>https://sserl.github.io/publication/dblp-conficse-0001-fssm-19/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-conficse-0001-fssm-19/</guid>
<description></description>
</item>
<item>
<title>What Attracts Newcomers to Onboard on OSS Projects? TL;DR: Popularity</title>
<link>https://sserl.github.io/publication/dblp-confoss-fronchetti-w-0-s-19/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confoss-fronchetti-w-0-s-19/</guid>
<description></description>
</item>
<item>
<title>Why do developers take breaks from contributing to OSS projects? A preliminary analysis</title>
<link>https://sserl.github.io/publication/dblp-journalscorrabs-1903-09528/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalscorrabs-1903-09528/</guid>
<description></description>
</item>
<item>
<title>Open Source in Education: What We Can Do About It?</title>
<link>https://sserl.github.io/talk/open-source-in-education-what-we-can-do-about-it/</link>
<pubDate>Tue, 04 Dec 2018 09:19:47 -0700</pubDate>
<guid>https://sserl.github.io/talk/open-source-in-education-what-we-can-do-about-it/</guid>
<description></description>
</item>
<item>
<title>Tutorial Towards Reliable Things: Formal Verification of IoT Software With Frama C</title>
<link>https://sserl.github.io/talk/tutorial-towards-reliable-things-formal-verification-of-iot-software-with-frama-c/</link>
<pubDate>Tue, 20 Nov 2018 16:44:27 -0700</pubDate>
<guid>https://sserl.github.io/talk/tutorial-towards-reliable-things-formal-verification-of-iot-software-with-frama-c/</guid>
<description></description>
</item>
<item>
<title>Applying Formal Methods to the Contiki Operating System</title>
<link>https://sserl.github.io/talk/applying-formal-methods-to-the-contiki-operating-system/</link>
<pubDate>Tue, 20 Nov 2018 16:41:30 -0700</pubDate>
<guid>https://sserl.github.io/talk/applying-formal-methods-to-the-contiki-operating-system/</guid>
<description></description>
</item>
<item>
<title>Toward Software Engineering Mechanisms Applied to High Performance Computing and Distributed Systems</title>
<link>https://sserl.github.io/talk/toward-software-engineering-mechanisms-applied-to-high-performance-computing-and-distributed-systems/</link>
<pubDate>Tue, 20 Nov 2018 16:39:09 -0700</pubDate>
<guid>https://sserl.github.io/talk/toward-software-engineering-mechanisms-applied-to-high-performance-computing-and-distributed-systems/</guid>
<description></description>
</item>
<item>
<title>DeepState: Symbolic Unit Testing for C and C++</title>
<link>https://sserl.github.io/talk/deepstate-symbolic-unit-testing-for-c-and-c++/</link>
<pubDate>Tue, 20 Nov 2018 16:37:10 -0700</pubDate>
<guid>https://sserl.github.io/talk/deepstate-symbolic-unit-testing-for-c-and-c++/</guid>
<description></description>
</item>
<item>
<title>Advanced Test Coverage Criteria: Specify and Measure, Cover and Unmask</title>
<link>https://sserl.github.io/talk/advanced-test-coverage-criteria-specify-and-measure-cover-and-unmask/</link>
<pubDate>Tue, 20 Nov 2018 16:34:37 -0700</pubDate>
<guid>https://sserl.github.io/talk/advanced-test-coverage-criteria-specify-and-measure-cover-and-unmask/</guid>
<description></description>
</item>
<item>
<title>Causal Distance Metric Based Assistance for Debugging After Compiler Fuzzing</title>
<link>https://sserl.github.io/talk/causal-distance-metric-based-assistance-for-debugging-after-compiler-fuzzing/</link>
<pubDate>Tue, 20 Nov 2018 16:31:49 -0700</pubDate>
<guid>https://sserl.github.io/talk/causal-distance-metric-based-assistance-for-debugging-after-compiler-fuzzing/</guid>
<description></description>
</item>
<item>
<title>A Cloud Brokerage Solution: Formal Methods Meet Security in Cloud Federations</title>
<link>https://sserl.github.io/publication/dblp-confieeehpcs-souaf-bl-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confieeehpcs-souaf-bl-18/</guid>
<description></description>
</item>
<item>
<title>A Gamification Proposal to Support the Onboarding of Newcomers in the FLOSScoach Portal</title>
<link>https://sserl.github.io/publication/dblp-confihc-toscani-gsm-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confihc-toscani-gsm-18/</guid>
<description></description>
</item>
<item>
<title>A Lesson on Verification of IoT Software with Frama-C</title>
<link>https://sserl.github.io/publication/dblp-confieeehpcs-blanchard-kl-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confieeehpcs-blanchard-kl-18/</guid>
<description></description>
</item>
<item>
<title>Almost there: a study on quasi-contributors in open source software projects</title>
<link>https://sserl.github.io/publication/dblp-conficse-steinmacher-0-wg-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-conficse-steinmacher-0-wg-18/</guid>
<description></description>
</item>
<item>
<title>An empirical study on task documentation in software crowdsourcing: the case of the topcoder platform</title>
<link>https://sserl.github.io/publication/dblp-confsbes-vaz-ms-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confsbes-vaz-ms-18/</guid>
<description></description>
</item>
<item>
<title>An extensible, regular-expression-based tool for multi-language mutant generation</title>
<link>https://sserl.github.io/publication/dblp-conficse-groce-hmsz-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-conficse-groce-hmsz-18/</guid>
<description></description>
</item>
<item>
<title>Causal Distance-Metric-Based Assistance for Debugging after Compiler Fuzzing</title>
<link>https://sserl.github.io/publication/dblp-confissre-holmes-g-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confissre-holmes-g-18/</guid>
<description></description>
</item>
<item>
<title>Characterizing the hyperspecialists in the context of crowdsourcing software development</title>
<link>https://sserl.github.io/publication/dblp-journalsjbcs-neira-sw-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalsjbcs-neira-sw-18/</guid>
<description></description>
</item>
<item>
<title>Code smells for Model-View-Controller architectures</title>
<link>https://sserl.github.io/publication/dblp-journalsese-aniche-btgd-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalsese-aniche-btgd-18/</guid>
<description></description>
</item>
<item>
<title>Competence, Collaboration, and Time Management: Barriers and Recommendations for Crowdworkers</title>
<link>https://sserl.github.io/publication/dblp-conficse-zanatta-ms-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-conficse-zanatta-ms-18/</guid>
<description></description>
</item>
<item>
<title>Ghosts for Lists: A Critical Module of Contiki Verified in Frama-C</title>
<link>https://sserl.github.io/publication/dblp-confnfm-blanchard-kl-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confnfm-blanchard-kl-18/</guid>
<description></description>
</item>
<item>
<title>Ghosts for Lists: From Axiomatic to Executable Specifications</title>
<link>https://sserl.github.io/publication/dblp-conftap-loulergue-bk-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-conftap-loulergue-bk-18/</guid>
<description></description>
</item>
<item>
<title>How modern news aggregators help development communities shape and share knowledge</title>
<link>https://sserl.github.io/publication/dblp-conficse-aniche-tsw-0-sg-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-conficse-aniche-tsw-0-sg-18/</guid>
<description></description>
</item>
<item>
<title>How verified (or tested) is my code? Falsification-driven verification and testing</title>
<link>https://sserl.github.io/publication/dblp-journalsase-groce-ajmh-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalsase-groce-ajmh-18/</guid>
<description></description>
</item>
<item>
<title>Impacts of coding practices on readability</title>
<link>https://sserl.github.io/publication/dblp-confiwpc-santos-g-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confiwpc-santos-g-18/</guid>
<description></description>
</item>
<item>
<title>Interactive Bulk Synchronous Parallel Functional Programming in a Browser</title>
<link>https://sserl.github.io/publication/dblp-confuic-tesson-l-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confuic-tesson-l-18/</guid>
<description></description>
</item>
<item>
<title>Leaving Behind the Software History When Transitioning to Open Source: Reasons and Implications</title>
<link>https://sserl.github.io/publication/dblp-confoss-0001-sg-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confoss-0001-sg-18/</guid>
<description></description>
</item>
<item>
<title>MMFilter : A CHR-Based Solver for Generation of Executions under Weak Memory Models</title>
<link>https://sserl.github.io/publication/dblp-journalscl-blanchard-kl-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalscl-blanchard-kl-18/</guid>
<description></description>
</item>
<item>
<title>Newcomers' Barriers. . . Is That All? An Analysis of Mentors' and Newcomers' Barriers in OSS Projects</title>
<link>https://sserl.github.io/publication/dblp-journalscscw-balali-sasg-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalscscw-balali-sasg-18/</guid>
<description></description>
</item>
<item>
<title>On the challenges of open-sourcing proprietary software projects</title>
<link>https://sserl.github.io/publication/dblp-journalsese-pinto-sdg-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalsese-pinto-sdg-18/</guid>
<description></description>
</item>
<item>
<title>Parallel Programming with OCaml: A Tutorial</title>
<link>https://sserl.github.io/publication/dblp-confieeehpcs-allombert-bl-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confieeehpcs-allombert-bl-18/</guid>
<description></description>
</item>
<item>
<title>Passages</title>
<link>https://sserl.github.io/publication/dblp-journalssigsoft-groce-18-a/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalssigsoft-groce-18-a/</guid>
<description></description>
</item>
<item>
<title>Passages</title>
<link>https://sserl.github.io/publication/dblp-journalssigsoft-groce-18-b/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalssigsoft-groce-18-b/</guid>
<description></description>
</item>
<item>
<title>Passages</title>
<link>https://sserl.github.io/publication/dblp-journalssigsoft-groce-18-c/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalssigsoft-groce-18-c/</guid>
<description></description>
</item>
<item>
<title>Passages</title>
<link>https://sserl.github.io/publication/dblp-journalssigsoft-groce-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalssigsoft-groce-18/</guid>
<description></description>
</item>
<item>
<title>Reduce Before You Localize: Delta-Debugging and Spectrum-Based Fault Localization</title>
<link>https://sserl.github.io/publication/dblp-confissre-christi-oag-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confissre-christi-oag-18/</guid>
<description></description>
</item>
<item>
<title>Relations Between Actions Performed by Users and Their Engagement</title>
<link>https://sserl.github.io/publication/dblp-confcriwg-bertholdo-mrg-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confcriwg-bertholdo-mrg-18/</guid>
<description></description>
</item>
<item>
<title>Single or Multiple Conversational Agents?: An Interactional Coherence Comparison</title>
<link>https://sserl.github.io/publication/dblp-confchi-chaves-g-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confchi-chaves-g-18/</guid>
<description></description>
</item>
<item>
<title>Software Platforms for Smart Cities: Concepts, Requirements, Challenges, and a Unified Reference Architecture</title>
<link>https://sserl.github.io/publication/dblp-journalscsur-santana-cgkm-17/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalscsur-santana-cgkm-17/</guid>
<description></description>
</item>
<item>
<title>Strong Security Guarantees: From Alloy to Coq (Research Poster)</title>
<link>https://sserl.github.io/publication/dblp-confieeehpcs-souaf-l-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confieeehpcs-souaf-l-18/</guid>
<description></description>
</item>
<item>
<title>TSTL: the template scripting testing language</title>
<link>https://sserl.github.io/publication/dblp-journalssttt-holmes-gpmako-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalssttt-holmes-gpmako-18/</guid>
<description></description>
</item>
<item>
<title>Target Selection for Test-Based Resource Adaptation</title>
<link>https://sserl.github.io/publication/dblp-confqrs-christi-g-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confqrs-christi-g-18/</guid>
<description></description>
</item>
<item>
<title>The Power of Bots: Characterizing and Understanding Bots in OSS Projects</title>
<link>https://sserl.github.io/publication/dblp-journalspacmhci-wessel-sswpcg-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalspacmhci-wessel-sswpcg-18/</guid>
<description></description>
</item>
<item>
<title>Towards the Generation of Correct Java Programs (Research Poster)</title>
<link>https://sserl.github.io/publication/dblp-confieeehpcs-philippe-l-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confieeehpcs-philippe-l-18/</guid>
<description></description>
</item>
<item>
<title>Tutorial: DeepState: Bringing Vulnerability Detection Tools into the Development Cycle</title>
<link>https://sserl.github.io/publication/dblp-confsecdev-goodman-gg-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confsecdev-goodman-gg-18/</guid>
<description></description>
</item>
<item>
<title>Tutorial: Secure Your Things: Secure Development of IoT Software with Frama-C</title>
<link>https://sserl.github.io/publication/dblp-confsecdev-blanchard-kl-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confsecdev-blanchard-kl-18/</guid>
<description></description>
</item>
<item>
<title>User engagement in an open collaboration community after the insertion of a game design element: An online field experiment</title>
<link>https://sserl.github.io/publication/dblp-confamcis-bertholdo-mrgo-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confamcis-bertholdo-mrgo-18/</guid>
<description></description>
</item>
<item>
<title>Using Awareness Information to Enhance Online Discussion Forums: A Systematic Mapping Study</title>
<link>https://sserl.github.io/publication/dblp-conffie-lima-gn-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-conffie-lima-gn-18/</guid>
<description></description>
</item>
<item>
<title>Verified Programs for Frequent Itemset Mining</title>
<link>https://sserl.github.io/publication/dblp-confuic-loulergue-w-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confuic-loulergue-w-18/</guid>
<description></description>
</item>
<item>
<title>What are the differences between group and individual modeling when learning UML?</title>
<link>https://sserl.github.io/publication/dblp-confsbes-silva-gsc-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confsbes-silva-gsc-18/</guid>
<description></description>
</item>
<item>
<title>When students become contributors: leveraging OSS contributions in software engineering courses</title>
<link>https://sserl.github.io/publication/dblp-confsbes-ferreira-s-0-sm-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confsbes-ferreira-s-0-sm-18/</guid>
<description></description>
</item>
<item>
<title>Who drives company-owned OSS projects: internal or external members?</title>
<link>https://sserl.github.io/publication/dblp-journalsjbcs-dias-sp-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalsjbcs-dias-sp-18/</guid>
<description></description>
</item>
<item>
<title>Who gets a patch accepted first?: comparing the contributions of employees and volunteers</title>
<link>https://sserl.github.io/publication/dblp-conficse-0001-ds-18/</link>
<pubDate>Mon, 01 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-conficse-0001-ds-18/</guid>
<description></description>
</item>
<item>
<title>A BSPlib-style API for Bulk Synchronous Parallel ML</title>
<link>https://sserl.github.io/publication/dblp-journalsscpe-loulergue-17-a/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalsscpe-loulergue-17-a/</guid>
<description></description>
</item>
<item>
<title>A Java Framework for High Level Parallel Programming Using Powerlists</title>
<link>https://sserl.github.io/publication/dblp-confpdcat-niculescu-lbs-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confpdcat-niculescu-lbs-17/</guid>
<description></description>
</item>
<item>
<title>A Verified Accumulate Algorithmic Skeleton</title>
<link>https://sserl.github.io/publication/dblp-confic-nc-loulergue-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confic-nc-loulergue-17/</guid>
<description></description>
</item>
<item>
<title>A suite of tools for making effective use of automatically generated tests</title>
<link>https://sserl.github.io/publication/dblp-confissta-holmes-g-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confissta-holmes-g-17/</guid>
<description></description>
</item>
<item>
<title>Applying Mutation Analysis on Kernel Test Suites: An Experience Report</title>
<link>https://sserl.github.io/publication/dblp-conficst-ahmed-jgm-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-conficst-ahmed-jgm-17/</guid>
<description></description>
</item>
<item>
<title>Automated Generation of BSP Automata</title>
<link>https://sserl.github.io/publication/dblp-journalsppl-tachon-lhl-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalsppl-tachon-lhl-17/</guid>
<description></description>
</item>
<item>
<title>Barriers Faced by Newcomers to Software-Crowdsourcing Projects</title>
<link>https://sserl.github.io/publication/dblp-journalssoftware-zanatta-smsp-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalssoftware-zanatta-smsp-17/</guid>
<description></description>
</item>
<item>
<title>Calculating Parallel Programs in Coq Using List Homomorphisms</title>
<link>https://sserl.github.io/publication/dblp-journalsijpp-loulergue-bt-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalsijpp-loulergue-bt-17/</guid>
<description></description>
</item>
<item>
<title>Does choice of mutation tool matter?</title>
<link>https://sserl.github.io/publication/dblp-journalssqj-gopinath-aajg-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalssqj-gopinath-aajg-17/</guid>
<description></description>
</item>
<item>
<title>Formalization of a Big Graph API in Coq</title>
<link>https://sserl.github.io/publication/dblp-confieeehpcs-philippe-bl-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confieeehpcs-philippe-bl-17/</guid>
<description></description>
</item>
<item>
<title>Free and open source software development: the end of the teenage years</title>
<link>https://sserl.github.io/publication/dblp-journalsjisa-steinmacher-rfw-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalsjisa-steinmacher-rfw-17/</guid>
<description></description>
</item>
<item>
<title>From Concurrent Programs to Simulating Sequential Programs: Correctness of a Transformation</title>
<link>https://sserl.github.io/publication/dblp-journalscorrabs-1708-07226/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalscorrabs-1708-07226/</guid>
<description></description>
</item>
<item>
<title>How Long and How Much: What to Expect from Summer of Code Participants?</title>
<link>https://sserl.github.io/publication/dblp-conficsm-silva-wgsg-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-conficsm-silva-wgsg-17/</guid>
<description></description>
</item>
<item>
<title>Imperative BSPlib-style Communications in BSML</title>
<link>https://sserl.github.io/publication/dblp-conficc-s-loulergue-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-conficc-s-loulergue-17/</guid>
<description></description>
</item>
<item>
<title>Implementing Algorithmic Skeletons with Bulk Synchronous Parallel ML</title>
<link>https://sserl.github.io/publication/dblp-confpdcat-loulergue-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confpdcat-loulergue-17/</guid>
<description></description>
</item>
<item>
<title>Introduction to the Special Issue on Practical Aspects of High-Level Parallel Programming</title>
<link>https://sserl.github.io/publication/dblp-journalsscpe-loulergue-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalsscpe-loulergue-17/</guid>
<description></description>
</item>
<item>
<title>Is It Better to Learn from Problems or Erroneous Examples?</title>
<link>https://sserl.github.io/publication/dblp-confcsee-silva-sc-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confcsee-silva-sc-17/</guid>
<description></description>
</item>
<item>
<title>Mutation Reduction Strategies Considered Harmful</title>
<link>https://sserl.github.io/publication/dblp-journalstr-gopinath-aajg-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalstr-gopinath-aajg-17/</guid>
<description></description>
</item>
<item>
<title>On-demand Developer Documentation</title>
<link>https://sserl.github.io/publication/dblp-conficsm-robillard-mtbceg-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-conficsm-robillard-mtbceg-17/</guid>
<description></description>
</item>
<item>
<title>One test to rule them all</title>
<link>https://sserl.github.io/publication/dblp-confissta-groce-hk-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-confissta-groce-hk-17/</guid>
<description></description>
</item>
<item>
<title>Passages</title>
<link>https://sserl.github.io/publication/dblp-journalssigsoft-groce-17-a/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalssigsoft-groce-17-a/</guid>
<description></description>
</item>
<item>
<title>Passages</title>
<link>https://sserl.github.io/publication/dblp-journalssigsoft-groce-17-b/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalssigsoft-groce-17-b/</guid>
<description></description>
</item>
<item>
<title>Passages</title>
<link>https://sserl.github.io/publication/dblp-journalssigsoft-groce-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalssigsoft-groce-17/</guid>
<description></description>
</item>
<item>
<title>Provenance and Pseudo-Provenance for Seeded Learning-Based Automated Test Generation</title>
<link>https://sserl.github.io/publication/dblp-journalscorrabs-1711-01661/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-journalscorrabs-1711-01661/</guid>
<description></description>
</item>
<item>
<title>Replicated Synchronization for Imperative BSP Programs</title>
<link>https://sserl.github.io/publication/dblp-conficc-s-jakobsson-dblh-17/</link>
<pubDate>Sun, 01 Jan 2017 00:00:00 +0000</pubDate>
<guid>https://sserl.github.io/publication/dblp-conficc-s-jakobsson-dblh-17/</guid>
<description></description>
</item>
<item>
<title>Resource Adaptation via Test-Based Software Minimization</title>
<link>https://sserl.github.io/publication/dblp-confsaso-christi-gg-17/</link>