forked from uwsampa/research-group-web
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
610 lines (351 loc) · 19.3 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>The Software Design Lab: Home</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 active">
<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 -->
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="3"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="4"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="5"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="6"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="7"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="8"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="/img/lara2019.jpg" alt="Android18">
<div class="carousel-caption d-none d-md-block">
<h5>Google Latin American Research Awards 2019-2020</h5>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="/img/ICSME19.jpg" alt="Android18">
<div class="carousel-caption d-none d-md-block">
<h5>ICMSE 2019, Cleveland, Ohio, USA</h5>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="/img/lara2018.jpg" alt="Android18">
<div class="carousel-caption d-none d-md-block">
<h5>Google Latin American Research Awards 2018-2019</h5>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="/img/google18.jpg" alt="Android18">
<div class="carousel-caption d-none d-md-block">
<h5>Android Dev Summit 18, Mountain View, California</h5>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="/img/peru18.jpg" alt="TC18">
<div class="carousel-caption d-none d-md-block">
<h5>Tech Camp, Perú 18: Against transnational crime, security affairs, and emerging humanitarian crises. </h5>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="/img/grace.jpg" alt="GHC">
<div class="carousel-caption d-none d-md-block">
<h5>TSDL at Grace Hopper Celebration 18, the world's largest gathering of women technologists. </h5>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="/img/ICSME18LR.jpg" alt="ICSME">
<div class="carousel-caption d-none d-md-block">
<h5>ICSME 18, Madrid, Spain</h5>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="/img/news/BluehackTSDLSlider.jpeg" alt="Bluehack">
<div class="carousel-caption d-none d-md-block">
<h5>TSDL in Bluehack Free Steps Against Human Trafficking</h5>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="/img/DSC_0414_Original.jpg" alt="Team">
<div class="carousel-caption d-none d-md-block">
<h5>TSDL Team</h5>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="row" style="padding-top: 15px">
<div class="col-sm-12 col-md-12 col-lg-12">
<div class="jumbotron">
<p>
<strong>
The Software Design Lab (TSDL) is a research group at <a href="http://uniandes.edu.co">Universidad
de los Andes (Bogotá, Colombia)</a>. Our purpose is to design and build software-based
solutions that are user-centered. We care about improving state-of-the-art methods, and building
high quality software. In order to accomplish our goals, we look for innovative and disruptive ways of using software
engineering methods. Our work can be summarized in four areas: <span class="badge badge-info">Automated
Software Engineering</span> <span class="badge badge-info">Design for everyone</span> <span
class="badge badge-info">Mining Software Repositories</span> <span class="badge badge-info">App
development with societal impact</span>
</strong>
</p>
</div>
</div>
</div>
<section>
<div class="row">
<div class="col-lg-3" style="background-color: #33a5db; color: white; padding-top: 10px">
<h1>News</h1>
</div>
</div>
<div class="row">
<div class="col-lg-8">
<div style="background-color: #33a5db; height: 2px; margin-top: 10px"></div>
<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>
</ul>
<p>
<span class="fa fa-fw fa-history"></span>
<a href="/blog.html">Older posts…</a>
</p>
</div>
<div class="col-lg-4" style="border: 2px solid #33a5db">
<a class="twitter-timeline" data-height="1600" data-theme="light" href="https://twitter.com/TheSwDLab?ref_src=twsrc%5Etfw">Tweets
by TheSwDLab</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</section>
<!--
<section>
<div class="row">
<div class="col-lg-3" style="background-color: #33a5db; color: white">
<h1>Teaching</h1>
</div>
</div>
</section> -->
</div>
<!-- /container -->
<!-- Support retina images. -->
</body>
<script type="text/javascript" src="/js/srcset-polyfill.js"></script>
</html>