forked from uwsampa/research-group-web
-
Notifications
You must be signed in to change notification settings - Fork 3
/
blog.html
659 lines (299 loc) · 17.4 KB
/
blog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
<!DOCTYPE html>
<html>
<head>
<title>The Software Design Lab: Blog</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="/js/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/group.css">
<link rel="shortcut icon" href="/img/tsdl.ico" type="image/x-icon">
<link rel="stylesheet" href="/css/flipster.min.css">
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
<div class="container" style="font-size: 1.35em !important;">
<div class="navbar-brand" style="font-size: 1.3em !important;">
<!--The Software Design Lab-->
<a href="/" class="">
<img src="/img/tsdlFondosOscuros.png" alt="TESDLA" id="logo">
</a>
</div>
<div class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item ">
<a class="nav-link" href="/">
Home
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/people.html">
People
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/teaching.html">
Teaching
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/research.html">
Research
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/development.html">
Development
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/publications.html">
Publications
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/code.html">
Code
</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="/contact.html">
Contact
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container body-container" style="padding-top: 20px">
<!-- This is a bit nasty, but it basically says be a column first, and on larger screens be a spaced out row -->
<ul class="news list-unstyled">
<li class="shortnews">
<div class="row">
<div class="col-sm-3" style="text-align: center">
<img class="img-fluid d-block mx-auto"
style="height: 120px"
src="../img/news/googleLara.png">
</div>
<div class="col-sm-9">
<span class="fa fa-fw fa-trophy"></span>
<span class="date">November 26, 2019</span>
<div>
<h5> <a href="/policies/google-lara.html"> TSDL receives a Google Latin America Research Award </a> </h5>
Mario Linares-Vásquez and Camilo Escobar-Velásquez have been awarded by Google with a Latin America Research Award 2018 (LARA 2018) for their work on “Enabling automated Software Engineering tasks on closed-source mobile apps”. Google will provide them with monetary founds to support our project for at least one year. Congratulation Guys!
</div>
</div>
</div>
<div style="background-color: #33a5db; height: 2px; margin-top: 10px"></div>
</li>
<li class="shortnews">
<div class="row">
<div class="col-sm-3" style="text-align: center">
<img class="img-fluid d-block mx-auto"
style="height: 120px"
src="../img/news/ESEM.jpg">
</div>
<div class="col-sm-9">
<span class="fa fa-fw fa-newspaper-o"></span>
<span class="date">November 22, 2019</span>
<div>
<h5> <a href="/policies/aossv-esem.html"> Accepted paper! </a> </h5>
A. Mazuera-Rozo, J. Bautista-Mora, M. Linares-Vásquez, S. Rueda, G. Bavota; “The Android OS stack and its vulnerabilities: an empirical study” journal paper has been accepted to be published on Springer Empirical Software Engineering (ESEM). Volume 24 Issue 4, August 2019.
</div>
</div>
</div>
<div style="background-color: #33a5db; height: 2px; margin-top: 10px"></div>
</li>
<li class="shortnews">
<div class="row">
<div class="col-sm-3" style="text-align: center">
<img class="img-fluid d-block mx-auto"
style="height: 120px"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Association_for_Computing_Machinery_%28ACM%29_logo.svg/300px-Association_for_Computing_Machinery_%28ACM%29_logo.svg.png">
</div>
<div class="col-sm-9">
<span class="fa fa-fw fa-trophy"></span>
<span class="date">May 27, 2019</span>
<div>
<h5> <a href="/policies/acm-award-scalabrino.html"> ACM SIGSOFT Distinguished Paper Award </a> </h5>
Mario Linares-Vásquez received an ACM DPA for his paper “Data-Driven Solutions to Detect API Compatibility Issues in Android: An Empirical Study”, in Proceedings of 16th International Conference on Mining Software Repositories (MSR’19), Montreal, Canada, May 26 - 27, 2019
</div>
</div>
</div>
<div style="background-color: #33a5db; height: 2px; margin-top: 10px"></div>
</li>
<li class="shortnews">
<div class="row">
<div class="col-sm-3" style="text-align: center">
<img class="img-fluid d-block mx-auto"
style="height: 120px"
src="../img/news/tse.png">
</div>
<div class="col-sm-9">
<span class="fa fa-fw fa-newspaper-o"></span>
<span class="date">February 25, 2019</span>
<div>
<h5> <a href="/policies/aacu-tse.html"> Accepted paper! </a> </h5>
Scalabrino, S. and Bavota, G. and Vendome, C. and Linares-V?squez, M. and Poshyvanyk, D. and Oliveto, R; “Automatically Assessing Code Understandability.” journal paper has been accepted to be published on IEEE Transaction on Software Engineering (TSE). February 2019.
</div>
</div>
</div>
<div style="background-color: #33a5db; height: 2px; margin-top: 10px"></div>
</li>
<li class="shortnews">
<div class="row">
<div class="col-sm-3" style="text-align: center">
<img class="img-fluid d-block mx-auto"
style="height: 120px"
src="../img/news/googleLara.png">
</div>
<div class="col-sm-9">
<span class="fa fa-fw fa-trophy"></span>
<span class="date">October 23, 2018</span>
<div>
<h5> <a href="/policies/google-lara.html"> TSDL receives a Google Latin America Research Award </a> </h5>
Mario Linares-Vásquez and Camilo Escobar-Velásquez have been awarded by Google with a Latin America Research Award 2019 (LARA 2019) for their work on “Enabling automated Software Engineering tasks on closed-source mobile apps”. Google will provide them with monetary founds to support our project for at least one year. Congratulation Guys!
</div>
</div>
</div>
<div style="background-color: #33a5db; height: 2px; margin-top: 10px"></div>
</li>
<li class="shortnews">
<div class="row">
<div class="col-sm-3" style="text-align: center">
<img class="img-fluid d-block mx-auto"
style="height: 120px"
src="../img/news/tosem_th.png">
</div>
<div class="col-sm-9">
<span class="fa fa-fw fa-newspaper-o"></span>
<span class="date">October 01, 2018</span>
<div>
<h5> <a href="/policies/mooec-tosem.html"> Accepted paper! </a> </h5>
M. Linares-Vásquez, G. Bavota, C. Bernal-Cárdenas, M. Di Penta, R. Oliveto and D. Poshyvanyk; “Multi-Objective Optimization of Energy Consumption of GUIs in Android Apps” journal paper has been accepted to be published on ACM Transactions on Software Engineering and Methodology (TOSEM). Volume 27 Issue 3, October 2018. Article No. 14.
</div>
</div>
</div>
<div style="background-color: #33a5db; height: 2px; margin-top: 10px"></div>
</li>
<li class="shortnews">
<div class="row">
<div class="col-sm-3" style="text-align: center">
<img class="img-fluid d-block mx-auto"
style="height: 120px"
src="../img/news/Bluehack.jpg">
</div>
<div class="col-sm-9">
<span class="fa fa-fw fa-trophy"></span>
<span class="date">September 01, 2018</span>
<div>
<h5> <a href="/policies/bluehack.html"> TSDL won the BlueHack Free Steps Against Human Trafficking! </a> </h5>
Diana Solano, Laura Bello, Camilo Escobar-Velásquez, Santiago Liñan and Sergio Velásquez, under the mentoring of Mario Linares-Vásquez, won the first Hackaton in Colombia Against Human Trafficking. This hackaton was promoted by United Nations Office on Drugs and Crime (UNODC), GloACT, Free Steps Foundation and IBM. Crongratulations!
</div>
</div>
</div>
<div style="background-color: #33a5db; height: 2px; margin-top: 10px"></div>
</li>
<li class="shortnews">
<div class="row">
<div class="col-sm-3" style="text-align: center">
<img class="img-fluid d-block mx-auto"
style="height: 120px"
src="https://conferences.computer.org/icsm/icsm.gif">
</div>
<div class="col-sm-9">
<span class="fa fa-fw fa-newspaper-o"></span>
<span class="date">July 09, 2018</span>
<div>
<h5> <a href="/policies/rip-icsme.html"> Accepted paper! </a> </h5>
S. Liñan, L. Bello-Jiménez, M. Arévalo and M. Linares-Vásquez, “Automated extraction of augmented models for Android apps” paper has been accepted at the 34th IEEE International Conference on Software Maintenance and Evolution (ICSME’18), New Ideas and Emerging Results Paper, Madrid, Spain, September 23 - 29, 2018, to appear 4 pages
</div>
</div>
</div>
<div style="background-color: #33a5db; height: 2px; margin-top: 10px"></div>
</li>
<li class="shortnews">
<div class="row">
<div class="col-sm-3" style="text-align: center">
<img class="img-fluid d-block mx-auto"
style="height: 120px"
src="https://pbs.twimg.com/profile_images/1566852138/twitter-avatar-summit_400x400.png">
</div>
<div class="col-sm-9">
<span class="fa fa-fw fa-slideshare"></span>
<span class="date">June 13, 2018</span>
<div>
<h5> <a href="/policies/mutode-nodesummit.html"> NodeSummit will be visited by TSDL </a> </h5>
Diego Rodríguez-Baquero has been accepted as Speaker at Node Summit 2018. He will give a talk named “Beyond Code Coverage, Mutation Testing: Tests for your tests” where he will share his experience creating Mutode.
</div>
</div>
</div>
<div style="background-color: #33a5db; height: 2px; margin-top: 10px"></div>
</li>
<li class="shortnews">
<div class="row">
<div class="col-sm-3" style="text-align: center">
<img class="img-fluid d-block mx-auto"
style="height: 120px"
src="https://conf.researchr.org/getImage/issta-2018/orig/issta-Amstr-final-square.png">
</div>
<div class="col-sm-9">
<span class="fa fa-fw fa-newspaper-o"></span>
<span class="date">May 25, 2018</span>
<div>
<h5> <a href="/policies/mutode-issta.html"> Accepted paper! </a> </h5>
D. Rodríguez-Baquero and M. Linares-Vásquez. “Mutode: generic JavaScript and Node. js mutation testing tool.” paper has been accepted at Gothenburg 27th ACM SIGSOFT International Symposium on Software Testing and Analysis (ISSTA’18), Formal Research Tool Demo, Amsterdam, Netherlands, July 15 - 20, 2018
</div>
</div>
</div>
<div style="background-color: #33a5db; height: 2px; margin-top: 10px"></div>
</li>
<li class="shortnews">
<div class="row">
<div class="col-sm-3" style="text-align: center">
<img class="img-fluid d-block mx-auto"
style="height: 120px"
src="https://www.icse2018.org/getImage/orig/icon-small-small.png">
</div>
<div class="col-sm-9">
<span class="fa fa-fw fa-newspaper-o"></span>
<span class="date">December 23, 2017</span>
<div>
<h5> <a href="/policies/mdroid.html"> Accepted paper! </a> </h5>
“MDroid+: A Mutation Testing Framework for Android” paper has been accepted at the 40th IEEE/ACM International Conference on Software Engineering (ICSE’18), Formal Research Tool Demo, Gothenburg, Sweden, May 27-June 3, 2018 (35% acceptance ratio)
</div>
</div>
</div>
<div style="background-color: #33a5db; height: 2px; margin-top: 10px"></div>
</li>
<li class="shortnews">
<div class="row">
<div class="col-sm-3" style="text-align: center">
<img class="img-fluid d-block mx-auto"
style="height: 120px"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Association_for_Computing_Machinery_%28ACM%29_logo.svg/300px-Association_for_Computing_Machinery_%28ACM%29_logo.svg.png">
</div>
<div class="col-sm-9">
<span class="fa fa-fw fa-trophy"></span>
<span class="date">November 03, 2017</span>
<div>
<h5> <a href="/policies/acm-award.html"> ACM SIGSOFT Distinguished Paper Award </a> </h5>
Mario Linares-Vásquez received an ACM DPA for his paper “Automatically Assessing Code Understandability: How Far Are We?”, in Proceedings of 32nd IEEE/ACM International Conference on Automated Software Engineering (ASE’17), Urbana-Champaign, Illinois, USA, October 30 - November 3, 2017
</div>
</div>
</div>
<div style="background-color: #33a5db; height: 2px; margin-top: 10px"></div>
</li>
</ul>
</div>
<!-- /container -->
<!-- Support retina images. -->
</body>
<script type="text/javascript" src="/js/srcset-polyfill.js"></script>
</html>