-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
3278 lines (3066 loc) · 178 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
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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jan Vitek @ NEU</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!--[if lt IE 8]>
<link href="css/ie7.css" rel="stylesheet">
<![endif]-->
<!-- Custom css -->
<link href="css/custom.css" rel="stylesheet">
<!-- For IE 9 and below. ICO should be 32x32 pixels in size -->
<!--[if IE]><link rel="shortcut icon" href="./img/favicon.ico"><![endif]-->
<!-- Firefox, Chrome, Safari, IE 11+ and Opera. 196x196 pixels in size. -->
<link rel="icon" href="img/favicon.png">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script language="JavaScript" type="text/JavaScript"><!--
function MM_swapImgRestore() { var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc; }
function MM_preloadImages() {
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) {
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() {
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function swaptabs (showthis,hidethis) {
var style2 = document.getElementById(showthis).style;style2.display = "block";
var style3 = document.getElementById(hidethis).style;style3.display ="none";
}
//-->
</script>
</head>
<body id="pn-top">
<div class="container">
<div class="header">
<div class="row">
<nav>
<ul class="nav navbar-nav">
<li role="presentation"><a href="#pn-anchor-home">[jv]</a></li>
<li role="presentation"><a href="#pn-anchor-news">[news]</a></li>
<li role="presentation"><a href="#pn-anchor-service">[service]</a></li>
<li role="presentation"><a href="#pn-anchor-projects">[projects]</a></li>
<li role="presentation"><a href="#pn-anchor-publications">[publications]</a></li>
<li role="presentation"><a href="#pn-anchor-teaching">[teaching]</a></li>
<li role="presentation"><a href="http://prl.ccs.neu.edu" target="_blank"> <img src="img/prl.png" height=25></a></a>
<li role="presentation"><a href="http://prl-prg.github.io" target="_blank"> <img src="img/prl-final-2.png" height=25></a></a>
</ul>
</nav>
</div>
</div>
<div class="content">
<div class="row pn-white-bg">
<div class="col-md-12">
<h2 id="pn-anchor-home" class="pn-courier-bold" vertical-align="bottom">
<img src="images/me2wide.jpg" width = 1040 alt="Jan Vitek" />
</h2>
</div>
<div class="col-md-4">
<p>My research focus on <em>design and implementation of
programming abstractions </em> in areas that have included
real-time embedded systems, concurrent and distributed
systems and more recently scalable data analytics.</p>
<p>I have published in venues that specialize in Programming
Languages, Virtual Machines, Compilers, Software Engineering,
Real-time Computing, and Bioinformatics.</p>
<p>I enjoy beautiful code that solves real-world problems.</p>
<p>Software & papers should be
free. <a href="http://en.wikipedia.org/wiki/Open_access"
target="_blank"><img class="pn-inline-link"
src="img/open_access.jpg" alt="Open access" /></a></p>
<p>Research should be repeatable and
replicated. <a href="http://cacm.acm.org/magazines/2015/3/183593-the-real-software-crisis/fulltext"
target="_blank"><img class="pn-inline-link"
src="img/real_software.jpg" alt="The real software crisis"
/></a></p>
<a href="http://ccs.neu.edu" target="_blank"><img src="img/neu.png" height=50></a>
<a href="http://prl.ccs.neu.edu" target="_blank"> <img src="img/prl.png" height=50></a>
<a href="https://prl-prg.github.io" target="_blank"> <img src="images/prl.png" height=60></a>
</p>
<table>
<tr><td><img src="images/CZ.ico" width=25></td>
<td>Czech by birth.</td></tr>
<tr><td><img src="images/CH.png" width=25></td><td>Swiss by adoption, I miss the Alps. </td></tr>
</table>
</div>
<div class="col-md-4 pn-grey-font">
<p>Jan Vitek is a Professor of Computer Science at
Northeastern University. He holds an appointment at
Charles University in Prague supported by an ERC.CZ
grant. He holds degrees from the University of Geneva
and Victoria. He works on topics related to the design
and implementation of programming languages. In
the <em>Ovm project</em>, he led the implementation of
the first real-time Java virtual machine to be
successfully flight-tested. Together with Noble and
Potter, he proposed a concept that became known
as <em>Ownership Types</em>. He was one of the designers
of the Thorn language. He worked on gaining a better
understanding of the JavaScript language and is looking
at how to support scalable data analysis in
R. Prof. Vitek is the Editor in Chief of TOPLAS, chaired
ACM SIGPLAN, was the Chief Scientist at Fiji Systems and
on the founding team at H2O.ai, a vice chair of AITO; a
vice chair of IFIP WG 2.4, and chair(s|ed) SPLASH, PLDI,
ECOOP, ISMM and LCTES and was program chair of ESOP,
ECOOP, VEE, Coordination, and TOOLS.</p>
</div>
<div class="col-md-4 pn-top--40px">
<br>
<h2>Jan Vitek</h2>
<p><em>Professor of Computer Science</em></p>
<address>
<p class="pn-grey-font">Khoury College of <br />
Computer Sciences<br />
Northeastern University<br />
440 Huntington Ave,<br />
Boston, MA 02115</p>
<p>
<p class="pn-grey-font">Charles University<br />
Prague, Czechia<br />
<p>
<p>
<span class="pn-grey-font pn-contact-span">Email:</span>
<span class="pn-courier-bold"><a class="pn-dark" href="mailto:[email protected]?subject=Jan%20Vitek%20website%20inquiry">[email protected]</a></span><br />
<span class="pn-grey-font pn-contact-span">Zoom:</span>
<span class="pn-courier-bold"><a href="https://https://northeastern.zoom.us/my/jvroom">jvroom</a></span><br />
<span class="pn-grey-font pn-contact-span">CV:</span>
<a href="pubs/cv.pdf" target="_blank" class="pn-dark"><span class="pn-courier-bold">PDF</span></a><br />
<span class="pn-grey-font pn-contact-span">H-index:</span>
<a href="https://scholar.google.com/citations?user=Ws0GjboAAAAJ&hl=en&oi=ao" target="_blank" class="pn-dark"><span class="pn-courier-bold">55</span></a><br />
<span class="pn-grey-font pn-contact-span">DBLP:</span>
<a href="http://dblp.uni-trier.de/pers/hd/v/Vitek:Jan" target="_blank" class="pn-dark"><span class="pn-courier-bold">Here</span></a><br>
<span class="pn-grey-font pn-contact-span">Ln:</span>
<a href="https://www.linkedin.com/in/jvitek" target="_blank" class="pn-dark"><span class="pn-courier-bold">Here</span></a><br >
<span class="pn-grey-font pn-contact-span">Lab:</span>
<a href="http://prl.ccs.neu.edu" target="_blank" class="pn-dark"><span class="pn-courier-bold">PRL</span></a>
and
<a href="https://prl-prg.github.io" target="_blank" class="pn-dark"><span class="pn-courier-bold">PRL-PRG</span></a>
</p>
</address>
</div>
</div>
<div class="row pn-grey-bg">
<div class="col-md-12"><h2 id="pn-anchor-news" class="pn-courier-bold">[news]</h2></div>
<div class="col-md-12">
<table>
<tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="#pn-anchor-publications" target="_blank">Papers</a></strong></span></li></ul></td>
<td>We have papers at PLDI and ECOOP in 2024</td></tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="events/NEU/7575" target="_blank">7575</a></strong></span></li></ul></td>
<td>I was teaching program analysis last fall</td></tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="https://dl.acm.org/journal/toplas" target="_blank">TOPLAS</a></strong></span></li></ul></td>
<td>I am now the Editor in Chief of TOPLAS</td></tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="https://pliss.org/2023" target="_blank">PLISS</a></strong></span></li></ul></td><td>The fourth <a href="https://pliss.org/2023"
target="_blank">Programming Language Implementation Summer School</a> for my birthday, September 2023</td> </tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="pubs/artem-phd23.pdf"
target="_blank">Thesis</a></strong></span></li></ul></td>
<td>Artem Pelenitsyn defended his thesis on <a href="pubs/artem-phd23.pdf">Type Stability in Julia</a> in Augsut 2023</td></tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="pubs/julia-thesis23.pdf"
target="_blank">Thesis</a></strong></span></li></ul></td>
<td>Julia Belyakova defended her thesis on <a href="pubs/julia-thesis23.pdf">Decidable Subtyping of Existential Types for the Julia Language</a> in Augsut 2023</td></tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="pubs/chung-phd22"
target="_blank">Thesis</a></strong></span></li></ul></td>
<td>Ben Chung defended his thesis on <a href="pubs/chung-phd23.pdf">A type system for Julia</a> in May 2023</td></tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="pubs/peta-phd23.pdf"
target="_blank">Thesis</a></strong></span></li></ul></td>
<td>Petr Maj defended his thesis on <a href="pubs/peta-phd23.pdf">Analyzing Large Code Repositories</a> in July 2023</td></tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="aviral-phd.pdf"
target="_blank">Thesis</a></strong></span></li></ul></td>
<td>Aviral Goel defended his thesis on <a href="pubs/aviral-phd.pdf">Data-driven ecosystem migration</a> in February 2023</td></tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="pubs/fluckiger-phd-22.pdf"
target="_blank">Thesis</a></strong></span></li></ul></td>
<td>Oli Flückiger defended his thesis on <a href="pubs/fluckiger-phd-22.pdf">Just in Time: Assumptions and Speculations</a> in Augsut 2022</td></tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="http://www.aito.org/Dahl-Nygaard/2020.html"
target="_blank">DN Prize</a></strong></span></li></ul></td>
<td>I am delighted to have received the <a href="http://www.aito.org/Dahl-Nygaard/2020.html">
Dahl-Nygaard Senior Prize</a>, 2020. The talk is <a href="https://youtu.be/LaaUKWXHpNs">Fitzcarraldo or How to Hack Academia to Build Stuff</a></td></tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="http://rebase-conf.org/2020/"
target="_blank">Talks</a></strong></span></li></ul></td>
<td>Failing for fun a profit: a talk about my repeated failures
compiling R
<a href="https://youtu.be/VdD0nHbcyk4" target="blank">[WhyR]</a> and
repeated failures analyzing GitHub data <a href="https://youtu.be/ePCpq0AMyVk" target="blank">[Video]</a></tr></tr>
<!--
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="https://www.sigplan.org/Awards/Service/"
target="_blank">Award</a></strong></span></li></ul></td>
<td>I am grateful for the 2019 <a href="https://www.sigplan.org/Awards/Service/">ACM SIGPLAN Distinguished Service Award</a></td> </tr>
-->
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="https://2018.ecoop.org/attending/awards"
target="_blank">ToT</a></strong></span></li></ul></td>
<td>Our 1998 ownership work <a href="http://janvitek.org/pubs/ecoop98.pdf">Flexible Alias Protection</a> is the ECOOP 20-Years-Test-Of-Time paper</td></tr>
<!--
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong>
<a href="https://conf.researchr.org/event/issta-2018/issta-2018-artifacts-tests-from-traces-automated-unit-test-generation-for-r"
target="_blank">AEC</a></strong></span></li></ul> </td><td><a href="https://github.com/PRL-PRG/genthat">Genthat</a> received an ISSTA 18 distinguished
artifact award </td></tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="https://2018.splashcon.org/track/splash-2018-OOPSLA-Artifacts"
target="_blank">AEC</a></strong></span></li></ul> </td><td>The OOPSLA artifact evaluation process accepted a record 35 artifacts and 33 are archived for reuse</td> </tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="https://conf.researchr.org/track/ecoop-issta-2018/wossca-2018-papers"
target="_blank">WoSSCA</a></strong></span></li></ul> </td><td> I co-organizedthe first <a href="https://conf.researchr.org/track/ecoop-issta-2018/wossca-2018-papers">
Workshop on Speculative Side Channel Analysis, 2018</a> </td></tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong> <a href="https://conf.researchr.org/track/ecoop-issta-2018/salad-2018-papers"
target="_blank">SALAD</a></strong></span></li></ul> </td><td>I co-organized the first ONR-funded workshop <a href="https://conf.researchr.org/track/ecoop-issta-2018/salad-2018-papers"
target="_blank">Workshop on SoftwAre debLoating And Delayering</a></td></tr>
-->
<td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="http://janvitek.org/pubs/oopsla17b.pdf"
target="_blank">Deja Vu</a></strong></span></li></ul></td>
<td>Our paper on code duplication on Github is popular
<a href="http://blog.acolyer.org/2017/11/20/dejavu-a-map-of-code-duplicates-on-github">here</a>
<a href="https://developers.slashdot.org/story/17/11/23/2352233/more-than-half-of-github-is-duplicate-code-researchers-find">here</a>
<a href="https://www.theregister.co.uk/2017/11/21/github_duplicate_code/">here</a>
<a href="https://www.developpez.com/actu/175363/GitHub-des-chercheurs-estiment-que-plus-de-la-moitie-des-codes-ecrits-en-Java-Python-C-Cplusplus-et-JavaScript-sont-dupliques/">ici</a>
<a href="https://www.opennet.ru/opennews/art.shtml?num=47596">bot</a>
<a href="https://www.toutiao.com/a6491879685222302221/">这里</a>
<a href="http://www.sohu.com/a/206363660_114760">这里</a>
<a href="https://www.youtube.com/watch?v=4M-ASEpVOaY">[Talk]</a>
<a href="http://mondego.ics.uci.edu/projects/dejavu/">[Distinguished Artifact]</a>
</td>
</tr>
<!--
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="http://services.google.com/fh/files/blogs/v2_final_list.pdf" target="_blank">Google</a></strong></span></li></ul></td>
<td>Our work on analysis of JavaScript is supported by a <a href="http://services.google.com/fh/files/blogs/v2_final_list.pdf" target="_blank">Google Faculty Research Award</a></td></tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong> <a href="https://github.com/rift-lecture/rift" target="_blank">LLVM</a></strong></span></li> </ul></td>
<td>Our <em>Build a JIT with LLVM</em> class at <a href="https://www.fit.cvut.cz/en">CVUT</a> is here <a href="https://github.com/rift-lecture/rift" target="_blank">[source]</a></td>
</tr>
-->
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="http://sigplan.org" target="_blank">SIGPLAN</a></strong></span></li></ul></td>
<td>I was Chair of SIGPLAN, here is my final <a href="pubs/sigplan-15-report.pdf" target="_blank">report</a></td> </tr>
<tr><td><ul class="pn-ul-triangle"> <li><span class="pn-news-span"><strong><a href="http://www.dagstuhl.de/en/publications/lipics"
target="_blank">OA</a></strong></span></li></ul></td><td>I am proud that <a href="http://2015.ecoop.org" target="_blank">ECOOP</a> has been Gold Open Access since 2015</td></tr>
<tr><td><ul class="pn-ul-triangle"><li><span class="pn-news-span"><strong><a href="http://cacm.acm.org/magazines/2015/3/183593-the-real-software-crisis/fulltext"
target="_blank">Artifacts</a></strong></span></li></ul></td><td>My position arguing for artifact evaluation in <a href="http://cacm.acm.org" target="_blank">CACM</a></td> </tr>
</table>
</div>
</div>
<div class="row pn-white-bg">
<div class="col-md-12">
<h2 id="pn-anchor-service" class="pn-courier-bold">[service]</h2>
</div>
<div class="col-md-4">
<h3>Honors</h3>
<table>
<tr><td>2020</td>
<td><a href="http://www.aito.org/Dahl-Nygaard/2020.html" target="_blank"> Dahl-Nygaard Senior Prize</a></td>
</tr>
<tr><td>2019</td>
<td><a href="https://www.sigplan.org/Awards/Service/" target="_blank">ACM SIGPLAN Distinguished Service Award</a></td>
</tr>
<tr><td>2018</td>
<td><a href="https://2018.ecoop.org/attending/awards" target="_blank">ECOOP Test of Time Award</a></td>
</tr>
<tr><td>2018</td>
<td><a href="https://conf.researchr.org/event/issta-2018/issta-2018-artifacts-tests-from-traces-automated-unit-test-generation-for-r"
target="_blank">ISSTA Distinguished Artifact
Award</a></td>
</tr>
<tr><td>2017</td>
<td><a href="https://2017.splashcon.org/attending/splash-awards" target="_blank">OOPSLA Distinguished Artifact Award</a></td>
</tr>
<tr><td>2013</td>
<td><a href="https://www.cs.purdue.edu/people/awards/" target="_blank">Purdue Undergraduate Advising Award</a></td>
</tr>
<tr><td>2011</td>
<td><a href="http://www.purdue.edu/provost/faculty/awards/faculty.html" target="_blank">Purdue University Faculty Scholar</a></td>
</tr>
<tr>
<td>2011</td>
<td>Purdue Undergraduate Advising Award</td>
</tr>
<tr><td>2011</td>
<td>Microsoft SEIF Research Award</td>
</tr>
<tr><td>2006</td>
<td><a href="http://download.boulder.ibm.com/ibmdl/pub/software/dw/university/facultyawards/2006_faculty_recipients.pdf" target="_blank">IBM Faculty Award</a></td>
</tr>
<tr><td>2001</td>
<td>NSF <a href="http://www.nsf.gov/awardsearch/showAward?AWD_ID=0093282" target="_blank">CAREER Award</a></td>
</tr>
</table>
<h3>Conferences</h3>
<table>
<tr><td class="pn-first-td"><a href="https://2022.splashcon.org"
target="_blank">SPLASH 22</a></td><td>Program (co)Chair</td>
</tr>
<tr><td class="pn-first-td"><a href="https://2022.ecoop.org"
target="_blank">ECOOP 22</a></td><td>Program (co)Chair</td>
</tr>
<tr><td class="pn-first-td"><a href="https://2020.splashcon.org"
target="_blank">SPLASH'20</a></td><td>Virtualization Chair</td>
</tr>
<tr><td class="pn-first-td"><a href="http://rebase-conf.org/2020/"
target="_blank">REBASE'20</a></td><td>General Chair</td></tr>
<tr><td class="pn-first-td"><a href="https://2020.ecoop.org/committee/ecoop-2020-organizing-committee"
target="_blank">ECOOP'20</a></td><td>Workshop Chair</td></tr>
<Tr><td class="pn-first-td"><a href="https://2019.splashcon.org/track/splash-2019-Artifacts"
target="_blank">OOPSLA'19</a></td><td>Artiface Evaluation Chair</td>
</tr>
<tr><td class="pn-first-td"><a href="https://conf.researchr.org/home/etaps-2019"
target="_blank">ETAPS'19</a></td><td>General Chair</td>
</tr>
<tr><td class="pn-first-td"><a href="http://splashcon.org"
target="_blank">SPLASH'18</a></td><td>General Chair</td>
</tr>
<tr><td class="pn-first-td"><a href="http://splashcon.org" target="_blank">OOPSLA'18</a></td>
<td>Artifact Evaluation Chair</td>
</tr>
<tr><td class="pn-first-td"><a href="http://2015.ecoop.org"
target="_blank">ECOOP'15</a></td> <td>Comfy Chair</td>
</tr>
<tr><td class="pn-first-td"><a href="http://conf.researchr.org/home/esop-2015"
target="_blank">ESOP'15</a></td><td>Program Chair</td>
</tr>
<tr><td class="pn-first-td"><a href="http://popl15-aec.cs.umass.edu/home/"
target="_blank">POPL'15</a></td><td>Artiface Evaluation Chair</td>
</tr>
<tr><td class="pn-first-td"><a href="http://pldi14-aec.cs.brown.edu"
target="_blank">PLDI'14</a></td><td>Artiface Evaluation Chair</td>
</tr>
<tr><td class="pn-first-td"><a href="http://ecoop13-aec.cs.brown.edu"
target="_blank">ECOOP'13</a></td><td>Artiface Evaluation Chair</td>
</tr>
<tr><td><a href="http://pldi12.cs.purdue.edu"
target="_blank">PLDI'12</a></td><td>General Chair</td>
</tr>
<tr><td><a href="http://lctes2011.elis.ugent.be/?file=kop1.php"
target="_blank">LCTES'11</a></td> <td>General Chair</td>
</tr>
<tr><td><a href="http://www.cs.purdue.edu/ISMM10/"
target="_blank">ISMM'10</a></td><td>General Chair</td>
</tr>
<tr><td><a href="http://malaga2010.lcc.uma.es/"
target="_blank">TOOLS'10</a></td><td>Program Chair</td>
</tr>
<tr><td><a href="http://d3s.mff.cuni.cz/conferences/jtres2010/"
target="_blank">JTRES'10</a></td><td>Program Chair</td>
</tr>
<tr><td><a href="https://ecoop08.cs.ucy.ac.cy/"
target="_blank">ECOOP'08</a></td> <td>Program Chair</td>
</tr>
<tr><td><a href="events/COORD07/"
target="_blank">COORD'07</a></td> <td>Program Chair</td>
</tr>
<tr><td><a href="http://janvitek.github.io/events/TRANSACT"
target="_blank">TRANSACT'06</a></td> <td>General Chair</td>
</tr>
<tr><td><a href="http://www.sigplan.org/Conferences/VEE/"
target="_blank">VEE'05</a></td><td>Program Chair</td>
</tr>
<tr><td><a href="http://janvitek.github.io/plditut"
target="_blank">PLDI'05</a></td><td>Tutorial Chair</td>
</tr>
</table>
<h3>Events</h3>
<table>
<tr><td><a href="http://rebase-conf.org/2020/" target="_blank">REBASE</a></td>
<td>REBASE conference, <a href="http://rebase-conf.org/2020/">2020</a>
</td></tr>
<tr><td><a href="https://pliss.org/2020" target="_blank">PLISS</a></td>
<td>Programming Language Implementation Summer School,
<a href="https://pliss2017.github.io">2017</a>,
<a href="https://pliss2019.github.io">2019</a>,
<a href="https://pliss.org/2020">2020</a></td>
</tr>
<tr>
<td><a href="vitekj/ESS10/Welcome.html" target="_blank">ESS</a></td>
<td>ECOOP Summer School: <a href="events/ESS10/index.html" target="_blank">2010</a>,
2011,
<a href="http://ecoop12.cs.purdue.edu/content/ecoop-summer-school">2012</a>,
<a href="events/ESS13" target="_blank">2013</a>,
<a href="http://ecoop14.it.uu.se/programme/ecoop-school.php" target="_blank">2014</a>,
<a href="http://ecoop14.it.uu.se/programme/ecoop-school.php">2015</a>,
<a href="http://2016.ecoop.org/track/Summer+School">2016</a>,
<a href="http://2017.ecoop.org/track/ecoop-2017-Summer-School">2017</a>,
<a href="https://conf.researchr.org/track/ecoop-issta-2018/ecoop-issta-2018-summer-school">2018</a></td>
</tr>
<tr><td><a href="http://www.dagstuhl.de/en/program/calendar/semhp/?semnr=16111" target="_blank">REMC'16</a></td>
<td>Dagstuhl Seminar 16111 on Rethinking Experimental Methods in Computing</td>
</tr>
<tr>
<td><a href="http://splashcon.org/2013/program/splash-i" target="_blank">SPLASH-I</a></td>
<td>SPLASH-I track: 2013, 2015,
<a href="https://2018.splashcon.org/track/splash-2018-SPLASH-I">2018</a>
</td>
</tr>
<tr>
<td><a href="http://janvitek.org/events/sotu.js14/" target="_blank">SOTU.JS'14</a></td>
<td>Stat of the Union: JavaScript</td>
</tr>
<tr>
<td><a href="http://www.dynali.org/" target="_blank">DALI'13</a></td>
<td>NSF Workshop on Dynamic Languages for Scalable Data Analytics</td>
</tr>
<tr>
<td><a href="events/PBD13/" target="_blank">PDB'13</a></td>
<td>NSF Workshop on Programming with Big Data</td>
</tr>
<tr>
<td><a href="https://www.cs.purdue.edu/sss/projects/veesc/2010/" target="_blank">VEESC'10</a></td>
<td>Workshop on Dynamic Languages for Scientific Computing</td>
</tr>
<tr>
<td><a href="vitekj/TIC10/Welcome.html" target="_blank">TiC</a></td>
<td>Trends in Concurrency: <a href="events/TiC06" target="_blank">2006</a>, <a href="events/TiC08" target="_blank">2008</a>, <a href="vitekj/TIC10/Welcome.html" target="_blank">2010</a></td>
</tr>
<tr>
<td><a href="https://www.cs.purdue.edu/sss/projects/tm/tmw2010/Welcome.html" target="_blank">TMW'10</a></td>
<td>NSF Transactional Memory Workshop</td>
</tr>
<tr>
<td><a href="events/IFIP08/" target="_blank">WG2.4</a></td>
<td>IFIP WG2.4 meeting in Bormio</td>
</tr>
<tr>
<td><a href="http://www.dagstuhl.de/en/program/calendar/semhp/?semnr=05251" target="_blank">TfT'05</a></td>
<td>Dagstuhl Workshop on Types for Tools</td>
</tr>
</table>
<h3>Activities</h3>
<table>
<tr>
<tr><td><a href="https://dl.acm.org/journal/toplas" target="_blank">TOPLAS</a></td><td>Editorial in Cheif, 2023--</td></tr>
<tr><td><a href="https://dl.acm.org/journal/toplas" target="_blank">TOPLAS</a></td><td>Editorial Board, 2022--2023</td></tr>
<tr><td><a href="http://bioconductor.org/about/advisory-board" target="_blank">Bioconductor</a></td><td>Scientific Advisory Board, 2017--2022</td></tr>
<tr><td><a href="http://www.sigplan.org/" target="_blank">SIGPLAN</a></td><td>Past Chair, 2015--2018</td><tr>
<tr><td><a href="http://www.sigplan.org/" target="_blank">SIGPLAN</a></td><td>Chair, 2012--2015</td> </tr>
<tr>
<td><a href="http://www.aito.org/" target="_blank">AITO</a></td>
<td>Vice President, 2010--2018</td>
</tr>
<tr>
<td><a href="http://wg24.cs.uvic.ca/ContentWG24.shtml" target="_blank">IFIP WG2.4</a></td>
<td>Vice Chair, 2011--2015 </td>
</tr>
<tr>
<td><a href="http://www.cominlabs.ueb.eu/" target="_blank">Comin Labs</a></td>
<td>Member, Advisory Board, 2011--2016</td>
</tr>
<tr>
<td><a href="https://jcp.org/en/jsr/detail?id=302" target="_blank">JSR-302</a></td>
<td>Member, Expert Group, 2008--2013</td>
</tr>
<tr>
<td><a href="http://www.sigplan.org/Conferences/lctes/main" target="_blank">LCTES</a></td>
<td>Member, SC, 2011--2015</td>
</tr>
<tr>
<td><a href="http://www.sigplan.org/Conferences/icfp/main" target="_blank">ICFP</a></td>
<td>Member, SC, 2012--2015</td>
</tr>
<tr>
<td><a href="http://www.sigplan.org/Conferences/oopslas/main" target="_blank">OOPSLA</a></td>
<td>Member, SC, 2012--</td>
</tr>
<tr>
<td><a href="http://www.sigplan.org/Conferences/pldi/main" target="_blank">PLDI</a></td>
<td>Member SC, 2012--18; Chair 2014--16</td>
</tr>
<tr>
<td><a href="http://www.sigplan.org/Conferences/popl/main" target="_blank">POPL</a></td>
<td>Member, SC, 2012--2015</td>
</tr>
<tr>
<td><a href="http://www.sigplan.org/Conferences/ismm/main" target="_blank">ISMM</a></td>
<td>Member, SC, 2010--2015</td>
</tr>
<tr>
<td><a href="http://d3s.mff.cuni.cz/conferences/jtres2010/cfp.html" target="_blank">JTRES</a></td>
<td>Member, SC, 2010--2017</td>
</tr>
<tr>
<td><a href="http://janvitek.github.io/events/TRANSACT" target="_blank">TRANSACT</a></td>
<td>Founding Member, SC, 2006--2017</td>
</tr>
<tr>
<td><a href="http://2015.ecoop.org/track/RIOT-2015-papers" target="_blank">RIOT</a></td>
<td>Founding Member, SC, 2015--</td>
</tr>
<tr>
<td><a href="http://2015.ecoop.org/track/ML4PL2015" target="_blank">ML4PL</a></td>
<td>Founding Member, SC, 2015</td>
</tr>
<tr>
<td><a href="http://wrigstad.com/stop11/" target="_blank">STOP</a></td>
<td>Founding Member, SC, 2011--</td>
</tr>
<tr>
<td class="pn-first-td"><a href="http://www.jot.fm/index.html" target="_blank">JOT</a></td>
<td>Editor in Chief, 2013--2014</td>
</tr>
</table>
</div>
<div class="col-md-4">
<h3>Invited Talks</h3>
<table>
<tr><td><a href="https://www.youtube.com/watch?v=I6ypm3FU-yY&list=PLyrlk8Xaylp51heboZcGANXlgKp6DLx8I&index=6">
DLS'23</a></td>
<td> Prof. Strangelove. Or: How I learned to stop worrying and love dynamic languages. DLS 2023.
<a href="https://www.youtube.com/watch?v=I6ypm3FU-yY&list=PLyrlk8Xaylp51heboZcGANXlgKp6DLx8I&index=6" target="blank">[Video]</a></td></tr>
<tr><td><a href="https://www.youtube.com/watch?v=LT4AP7CUMAw&t=449s">JuliaCon'21 </a></td>
<td> On the design and foundations of dynamic languages for scientific computing. Keynote at JuliCon, online 2021.
<a href="https://www.youtube.com/watch?v=LT4AP7CUMAw&t=449s" target="blank">[Video]</a>
</td></tr>
<tr><td><a href="https://www.youtube.com/watch?v=LaaUKWXHpNs">SPLASH'20 </a></td>
<td>Fitzcarraldo as a Metaphor for Research. Keynote talk at the SPLASH 2020 Conference, online, 2020.
<a href="https://www.youtube.com/watch?v=LaaUKWXHpNs&t=726s" target="blank">[Video]</a>
</td></tr>
<tr><td><a href="https://youtu.be/VdD0nHbcyk4">WhyR?'20</a></td>
<td> R Melts Brains, or: How I Learned to Love Failing at Compiling R. online, 2020. <a href="https://youtu.be/VdD0nHbcyk4" target="blank">[Video]</a>
</Td></tr>
<tr><td><a href="https://youtu.be/ePCpq0AMyVk">CurryOn'19</a></td>
<td>Getting everything wrong without doing anything right! (On the perils of large-scale analysis of Github data). London, 2019. <a href="https://youtu.be/ePCpq0AMyVk" target="blank">[Video]</a>
</td></tr>
<tr><td><a href="https://conf.researchr.org/details/mplr-2019/mplr-2019-papers/16/Adversarial-Compilation">MPLR'19</a></td>
<td>Adversarial Compilation. Athens, 2019.
</td></tr>
<tr><td><a href="https://2019.splashcon.org/details/meta/4/Meta-programming-in-Data-Science">Meta'19</a></td>
<td> Meta-programming in Data Science. Athens, 2019.
</td></tr>
<tr><td><a href="http://www.praguecomputerscience.cz/?l=en&p=44">PragueCS'19</a></td>
<td>Reasoning about programs: Soundness revisited. Prague, 2019.
</td></tr>
<tr><td><a href="http://ssw.jku.at/manlang18/manlang/program#">ManLang'18</a></td>
<td>The Beauty and the Beast -- from Fortress to Julia. Linz, 2018.
</td></tr>
<tr><td><a href="https://www.icse2018.org/details/icse-2018-Doctoral-Symposium/5/Keynote-Engineering-your-software-engineering-research-career">ICSE'18 DS</a></td>
<td>Engineering your Software Engineering Resarch Career. Gothenburg, 2018.
</td></tr>
<tr>
<td><a href="https://www.fedcsis.org/2017/speakers/jan_vitek">FedCSIS'17</a></td>
<td>Data Analysis for the Masses. Prague <a href="https://www.youtube.com/watch?v=4yIV3OpP0tw&t=846s"
target="blank">[Video]</a>
</td> </tr>
<tr><td><a href="http://conf.researchr.org/track/scala-2016/scala-2016">Scala'16</a></td>
<td>This Is Not A Type: Gradual Typing in Practice. Amsterdam</td>
</tr>
<tr><td><a href="https://www.meetup.com/Boston-useR/">useR</a></ta><td> Making R run fast. Greater Boston useR Group
<a href="https://www.youtube.com/watch?v=HStF1RJOyxI">[Video]</a>
</td> </tr>
<tr><td><a href="">PLMW'16</a></td>
<td>My twenty five years in OO. Amsterdam</td>
</trachelectomyr>
<tr><td><a href="http://http://mloc-js.com/2015/">MLOC.JS'15</a></td>
<td>Benchmarks killed the beast: Understanding JS performance
for fun and profit. International Large Scale JavaScript
Conference, Budapest</td>
</tr>
<tr><td><a href="http://plmw15.iisc-seal.net/program">PLMW'15</a></td>
<td> Repeatability, reproducibility and rigor in CS research.
Programming Language Mentoring Workshop, Mumbai
<a href="https://www.youtube.com/watch?v=ii72uzciu6I">[Video 1]</a> <a href="https://www.youtube.com/watch?v=EAzrn2DeAL0">[Video 2]</a> </td>
</tr>
<tr>
<td><a href="http://vee2014.cs.technion.ac.il" target="_blank">VEE'14</a></td>
<td> The Case for the Three Rs of Systems Research: Repeatability, Reproducibility and Rigor</td>
</tr>
<tr>
<td><a href="http://www.srl.inf.ethz.ch/workshop2013.php" target="_blank">SCR'13</a></td>
<td>Why JavaScript Programmers Hate You: An ode to dynamic languages. Workshop on Software Correctness and Reliability, Zurich <a href="http://www.srl.inf.ethz.ch/workshop2013/eth-vitek.pdf" target="_blank">PDF</a> <a href="http://www.youtube.com/watch?v=t3GzCwoQfb4" target="_blank">[Video]<a/></td>
</tr>
<tr>
<td><a href="http://www.doc.ic.ac.uk/~gds/PLMW/" target="_blank">PLMW'13</a></td>
<td>Planet Dynamic or: How I Learned to Stop Worrying and Love Reflection. SIGPLAN Programming Languages Mentoring Workshop, Rome</td>
</tr>
<tr>
<td><a href="http://types.cs.washington.edu/ftfjp2013/" target="_blank">FTFJP'13</a></td>
<td>JavaScript Programmers Hate You. Formal Techniques for Java-like Programs, Montpellier</td>
</tr>
<tr>
<td><a href="http://aplas12.kuis.kyoto-u.ac.jp" target="_blank">APLAS'12</a></td>
<td>Planet Dynamic or: How I Learned to Stop Worrying and Love Reflection. Asian Symposium on Programming Languages and Systems, Kyoto</td>
</tr>
<tr>
<td><a href="https://sites.google.com/site/aki65thbd/" targeet="_blank">Aki'12</a></td>
<td>Thorn: Objects, Scripts and more... Concurrent Objects and Beyond Symposium in Honor of Professor Akinori Yonezawa’s 65th Birthday, Kobe</td>
</tr>
<tr>
<td><a href="http://research.microsoft.com/en-us/events/fs2011/" target="_blank">MSR'11</a></td>
<td>The Rise of Dynamic Languages for Scientific Computing, MSR Faculty Summit <a href="http://research.microsoft.com/apps/video/?id=152280" target="_blank">[Video]</a></td>
</tr>
<tr>
<td><a href="http://goedel.cs.uiowa.edu/MVD/" target="_blank">MVD 10</a></td>
<td>Is Java Ready for Real-time? <a href="http://goedel.cs.uiowa.edu/MVD/talks/Vitek.pdf" target="_blank">PDF</a></td>
</tr>
<tr>
<td> <a href="http://research.microsoft.com/en-us/um/redmond/events/APLWACA2010/program.htm" target="_blank">APLWA'10</a></td>
<td>Of Scripts and Programs Tall tales, Urban Legends and Future Prospects <a href="talks/dls09.pdf" target="_blank">PDF</a></td>
</tr>
<tr>
<td><a href="http://www.dynamic-languages-symposium.org/dls-09/" target="_blank">DLS'09</a></td>
<td>Of Scripts and Programs Tall tales, Urban Legends and Future Prospects <a href="talks/dls09.pdf" target="_blank">PDF</a></td>
</tr>
<tr>
<td><a href="http://tools.ethz.ch/tools2009/" target="_blank">TOOLS'09</a></td>
<td>Programming models for Real-time and Concurrency. <a href="talks/tools09.pdf" target="_blank">PDF</a></td>
</tr>
<tr>
<td><a href="http://people.cs.kuleuven.be/~dirk/ada-belgium/events/05/050630-fcs.html" target="_blank">FCS'05</a></td>
<td>Language-based Intrusion Detection, Foundations of Computer Security</td>
</tr>
<tr>
<td> <a href="http://www.sti.uniurb.it/events/fosad04/" target="_blank">FOSAD'04</a></td>
<td>Coordination and Security, School on Foundations of Security Analysis and Design <a href="http://www.sti.uniurb.it/events/fosad04/fosad04-coordination.pdf" target="_blank">PDF</a></td>
</tr>
</table>
<h3>Program Committees</h3>
<table>
<tr>
<td class="pn-first-td"><a href="http://www.math.nagoya-u.ac.jp/~garrigue/APLAS2014/" target="_blank">APLAS</a></td>
<td>Asian Symp. on Programming Languages and Systems, 2014</td>
</tr>
<tr>
<td><a href="http://www.sable.mcgill.ca/array/" target="_blank">ARRAY</a></td>
<td>Workshop on Libraries, Languages, and Compilers for Array Programming,
<a href="http://www.sable.mcgill.ca/array/" target="_blank">2014</a>,
<a href="http://conf.researchr.org/track/pldi2015/ARRAY-2015-papers" target="_blank">2015</a>,
<a href="http://pldi17.sigplan.org/committee/array-2017-papers-program-committee" target="_blank">2017</a>
</td>
</tr>
<tr>
<td><a href="http://www.stix.polytechnique.fr/~logozzo/WEB/Aiool.html" target="_blank">AIOOL</a></td>
<td>Workshop on Abstract Interpretation of Object-oriented Languages, 2005</td>
</tr>
<tr>
<td><a href="http://webhome.cs.uvic.ca/~ycoady/acp4is04/pc.html" target="_blank">ACP4IS</a></td>
<td>Workshop on Aspects, Components, and Patterns for Infrastructure Software, 2003, 2004</td>
</tr>
<tr>
<td><a href="http://www.cs.dartmouth.edu/ASA-MA/" target="_blank">ASA/MA</a></td>
<td>Agent Systems and Applications/ Mobile Agents, 2001</td>
</tr>
<tr>
<td><a href="http://users.ecs.soton.ac.uk/lavm/aisb/cfp.html" target="_blank">AISB</a></td>
<td>Symposium on Software mobility and adaptive behaviour, 2001</td>
</tr>
<tr>
<td><a href="http://www.sci.univr.it/~spoto/Bytecode07/" target="_blank">Bytecode</a></td>
<td>Workshop on Bytecode Semantics, Verification, Analysis and Transformation, 2007, 2008</td>
</tr>
<tr>
<td><a href="http://etaps08.mit.bme.hu/" target="_blank">CC</a></td>
<td>Conference on Compiler Construction, 2003, 2008, <a href="http://www.etaps.org/2012/cc" target="_blank">2012</a>,
<a href="http://www.etaps.org/index.php/2014/cc" target="_blank">2014</a>,
<a href="https://conf.researchr.org/home/CC-2021" target="_nlack">2021</a></td>
</tr>
<tr>
<td><a href="http://www.cse.chalmers.se/~andrei/" target="_blank">CSF</a></td>
<td>Computer Security Foundations Symposium, 2008</td>
</tr>
<tr>
<td><a href="http://www-users.cs.york.ac.uk/~paige/cordie06.htm" target="_blank">CORDIE</a></td>
<td>Workshop on Concurrency, Real-Time and Distribution in Eiffel, 2006</td>
</tr>
<tr>
<td><a href="http://discotec09.di.fc.ul.pt/index.php?title=Coordination" target="_blank">COORD</a></td>
<td>Conference on Coordination Models and Languages, 2005, 2009</td>
</tr>
<tr>
<td><a href="http://www.cs.mcgill.ca/~xueliu/Confs/WCPS2009/" target="_blank">CPS</a></td>
<td>Workshop on Cyber-Physical Systems, 2008, 2009</td>
</tr>
<tr>
<td><a href="http://cd04.cs.ucl.ac.uk/" target="_blank">CD</a></td>
<td>Component Deployment, 2002, 2004</td>
</tr>
<tr>
<td><a href="http://www.podc.org/data/podc2004/JavaWorkshop-cfp.txt" target="_blank">CSJP</a></td>
<td>Workshop on Concurrency and Synchronization in Java Programs, 2004</td>
</tr>
<tr>
<td><a href="http://www.date-conference.com/" target="_blank">DATE</a></td>
<td>DATE Conference, Model Based Design of Embedded Systems track, 2010</td>
</tr>
<tr>
<td><a href="http://www.dynamic-languages-symposium.org/dls-16/index.html" target="_blank">DLS</a></td>
<td>Dynamic Language Symposium
Conference, <a href="http://www.dynamic-languages-symposium.org/dls-10/"
target="_blank">2010</a>,
<a href="http://www.dynamic-languages-symposium.org/dls-14/index.html" target="_blank">2014</a>,
<a href="http://www.dynamic-languages-symposium.org/dls-15/index.html" target="_blank">2015</a>,
<a href="http://www.dynamic-languages-symposium.org/dls-16/index.html" target="_blank">2016</a>,
<a href="http://www.dynamic-languages-symposium.org/dls-17" target="_blank">2017</a>
</td>
</tr>
<tr>
<td><a href="events/dosws.html" target="_blank">DOSW</a></td>
<td>Distributed Object Security Workshop, 1999</td>
</tr>
</table>
</div>
<div class="col-md-4">
<p class="pn-h3-like"> </p>
<table>
<tr>
<td class="pn-first-td"><a href="https://2017.ecoop.org/" target="_blank">ECOOP</a></td>
<td>European Conference on Object-Oriented Programming, 1998, 2000, 2001, 2002, 2003, 2007, 2008, 2009, 2010,
<a href="http://www.lirmm.fr/ecoop13/"
target="_blank">2013</a>, <a href="http://2017.ecoop.org">2017<a>, <a href="http://2020.ecoop.org">2020<a>
</td>
</tr>
<tr>
<td><a href="http://esop09.pps.jussieu.fr/" target="_blank">ESOP</a></td>
<td>European Symposium on Programming, 2002, 2007, 2009,
2011, <a href="http://conf.researchr.org/home/esop-2015">2015</a>,
<a href="http://www.etaps.org/index.php/2016/esop" target="_blank">2016</a></td>
</tr>
<tr>
<td><a href="http://www.emsoft.org/" target="_blank">EMSOFT</a></td>
<td>Conference on Embedded Software, 2011.</td>
</tr>
<tr>
<td><a href="http://cse.stfx.ca/~euc09/" target="_blank">EUC</a></td>
<td>Conference on Embedded and Ubiquitous Computing, 2009, 2010</td>
</tr>
<tr>
<td><a href="https://tc.gtisc.gatech.edu/feast17/" target="_blank">FEAST</a></td>
<td>Workshop on Forming an Ecosystem Around Software Transformation, <a href="https://tc.gtisc.gatech.edu/feast17/">2017</a></td>
</tr>
<tr>
<td><a href="http://foclasa07.lcc.uma.es/" target="_blank">FOCLASA</a></td>
<td>Foundations of Coordination Languages and Software Architectures, 2007</td>
</tr>
<tr>
<td><a href="http://fool2013.cs.brown.edu/" target="_blank">FOOL</a></td>
<td>Foundations of Object-Oriented Languages, 2013</td>
</tr>
<tr>
<td><a href="http://proton.inrialpes.fr/~depalma/GCM11/" target="_blank">GCM</a></td>
<td>Workshop on Green Computing Middleware, 2011.</td>
</tr>
<tr>
<td><a href="http://program-transformation.org/GPCE13" target="_blank">GPCE</a></td>
<td>Generative Programming: Concepts & Experiences, 2013</td>
</tr>
<tr>
<td><a href="#" target="_blank">MASS</a></td>
<td>Symposium on Multi-Agent Security and Survivability, 2004</td>
</tr>
<tr>
<td><a href="http://www.cs.ru.nl/~erikpoll/ftfjp/cfp.html" target="_blank">FTfJP</a></td>
<td>Workshop on Formal Techniques for Java-like Programs, 2005</td>
</tr>
<tr>
<td><a href="http://w3.isis.vanderbilt.edu/HCSP-CPS/" target="_blank">HCSP</a></td>
<td>Workshop on High Confidence Software Platforms for Cyber-Physical Systems, 2006</td>
</tr>
<tr>
<td><a href="https://www.usenix.org/conference/hotpar13" target="_blank">HotPar</a></td>
<td>Topics in Parallelism, 2013</td>
</tr>
<tr>
<td><a href="http://soft-dev.org/events/icooolps14/" target="_blank">ICOOOLPS</a></td>
<td>Implementation, Compilation, Optimization of
Object-Oriented Languages, Programs and Systems, 2006,
<a href="http://soft-dev.org/events/icooolps14/" target="_blank">2013,
<a href="http://2015.ecoop.org/track/ICOOOLPS-2015-papers" target="_blank">2015</a>,
<a href="http://conf.researchr.org/track/pldi-ecoop-2017/ICOOOLPS-2017-papers" target="_blank">2017</a>
</td>
</tr>
<tr>
<td><a href="https://www.cs.purdue.edu/homes/jv/var/icalp.html" target="_blank">ICALP</a></td>
<td>International Conference on Automata, Languages and Programming, 2000</td>
</tr>
<tr>
<td><a href="http://cs.au.dk/~danvy/icfp05/" target="_blank">ICFP</a></td>
<td>International Functional Programming Conference, 2005</td>
</tr>
<tr>
<td><a href="#" target="_blank">ISORC</a></td>
<td>International Symposium on Object and componentoriented Real-time Computing, 2012.</td>
</tr>
<tr>
<td><a href="http://www.multicore-systems.org/iwmse2010" target="_blank">IWMSE</a></td>
<td>International Workshop on Multicore Software Engineering, 2010</td>
</tr>
<tr>
<td><a href="http://people.dsv.su.se/~tobias/iwaco2007.html" target="_blank">IWACO</a></td>
<td>International Workshop on Aliasing, Confinement and
Ownership, 2003,
2007, <a href="http://ecs.victoria.ac.nz/Events/IWACO2011/WebHome"
target="_blank">2014</a>
</td>
</tr>
<tr>
<td><a href="events/ecoopws/iwaoos" target="_blank">IWAOOS</a></td>
<td>Intercontinental Workshop on Aliasing in Object- Oriented Systems, 1999</td>
</tr>
<tr>
<td><a href="#" target="_blank">JTRes</a></td>
<td>Workshop on Java Technologies for Real-Time and Embedded
Systems, 2008, 2007, 2006, 2005, 2004, 2003, 2008, 2009,
2010</td>
</tr>
<tr>
<td><a href="#" target="_blank">JFLA</a></td>
<td>Journees Francophones des Langages Applicatifs, 2000, 1998, 1995</td>
</tr>
<tr>
<td><a href="http://ssw.jku.at/manlang18/" target="_blank">ManLang</a></td>
<td>International Conference on Managed Languages and Runtimes,
<a href="http://d3s.mff.cuni.cz/conferences/manlang17" target="_blank">2017</a>,
<a href="http://ssw.jku.at/manlang18/" target="_blank">2018</a>,
</td>
</tr>
<tr>
<td><a href="events/ecoopws/ws00" target="_blank">MOS</a></td>
<td>Mobile Objects Systems Workshop, 2004, 2003, 2002,
2001, <a href="events/ecoopws/ws00"
target="_blank">2000</a>, <a href="events/ecoopws/ws99"
target="_blank">1999</a>, <a href="events/ecoopws/ws98"
target="_blank">1998</a>, <a href="events/ecoopws/ws97"
target="_blank">1997</a>, <a href="events/ecoopws/ws996"
target="_blank">1996</a>, <a href="events/ecoopws/ws95"
target="_blank">1995</a></td>
</tr>
<tr >
<td><a href="http://faculty.uoit.ca/bradbury/sac-musepat2016/" target="_blank">MUSEPAT</a></td>
<td>Multicore Software Engineering, Performance, Applications, and Tools, <a href="http://faculty.uoit.ca/bradbury/sac-musepat2016" target="_blank">2016</a></td>
</tr>
<tr>
<td><a href="http://places09.di.fc.ul.pt/" target="_blank">PLACES</a></td>
<td>Programming Language Approaches to Concurrency and
Communication-cEntric Software, 2009,
2010, <a href="http://places11.di.fc.ul.pt/"
target="_blank">2011</a>, <a href="http://places12.di.fc.ul.pt/"
target="_blank">2012</a></td>
</tr>
<tr>
<td><a href="http://www.cs.umd.edu/~mwh/PLAS07/" target="_blank">PLAS</a></td>
<td>Workshop on Programming Languages and Analysis for Security, 2007</td>
</tr>
<tr>
<td><a href="http://unavailable.adobe.com/" target="_blank">PLASTIC</a></td>
<td>Workshop on Programming Language And Systems Technologies for Internet Clients, 2011</td>
</tr>
<tr>
<td><a href="http://cs.stanford.edu/pldi10/" target="_blank">PLDI</a></td>
<td>Programming Language Design and Implementation, 2002, 2010, <a href="http://pldi2013.ucombinator.org/" target="_blank">2013</a></td>
</tr>
<tr>
<td><a href="http://www.podc.org/podc2010/" target="_blank">PODC</a></td>
<td>Symposium on Principles of Distributed Computing, 2010</td>
</tr>
<tr>
<td><a href="http://www.cse.psu.edu/popl/11/" target="_blank">POPL</a></td>
<td>Principles of Programming Languages, 2001, 2008, 2011.</td>
</tr>
<tr>
<td><a href="http://www.wifo.uni-mannheim.de/pppj2006/" target="_blank">PPPJ</a></td>
<td>conference on Principles and Practice of Programming in Java, 2006</td>
</tr>
<tr>
<td><a href="http://2015.rtas.org/" target="_blank">RTAS</a></td>
<td>Real-Time and Embedded Technology and Applications Symposium, 2011.</td>
</tr>
<tr>
<td><a href="http://2014.rtss.org/" target="_blank">RTSS</a></td>
<td>Real-Time System Symposium, 2009, 2010, 2011.</td>
</tr>
<tr>
<td><a href="http://www.sigsac.org/sacmat2001.html" target="_blank">SACMAT</a></td>
<td>Symposium on Access Control Models and Technologies, 2001</td>
</tr>
<tr>
<td><a href="http://www.mrtc.mdh.se/SANCS15/" target="_blank">SANCS</a></td>
<td>Workshop on Software Architectures for Next-generation
Cyber-physical
Systems, <a href="http://www.mrtc.mdh.se/SANCS15/"
target="_blank">2015</a></td>
</tr>
<tr>
<td><a href="http://lampwww.epfl.ch/~hmiller/scala2015/" target="_blank">SCALA</a></td>
<td>Scala Symposium, <a href="http://lampwww.epfl.ch/~hmiller/scala2015/" target="_blank">2015</a></td>
</tr>
<tr>
<td><a href="http://2016.ecoop.org/track/STOP-2016" target="_blank">STOP</a></td>
<td>Script to Program Evolution Workshop, <a href="http://2016.ecoop.org/track/STOP-2016" target="_blank">2016</a></td>
</tr>
<tr>
<td><a href="http://popl-obt-2014.cs.brown.edu/" target="_blank">OBT</a></td>
<td>Off-the Beaten Track, 2014</td>
</tr>
<tr>
<td><a href="http://oops.disi.unige.it/" target="_blank">OOPS</a></td>
<td>Object Oriented Programming Languages and Systems 2005, 2004</td>