forked from heathermiller/cv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.tex
912 lines (734 loc) · 39.6 KB
/
cv.tex
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
%%% A template to produce a nice-looking Curriculum Vitae.
%%% Original by Kieran Healy <kjhealy@gmail.com>, tweaked by Heather Miller <heather.c.miller@gmail.com>
%%% Most recent version is at http://github.com/heathermiller/cv
%%%
%%% ------------------------------------------------------------------------
%%% Requirements (should be included in a modern tex distribution):
%%% ------------------------------------------------------------------------
%%% xelatex
%%% fontspec.sty
%%% hyperrref.sty
%%% xunicode.sty
%%% color.sty
%%% url.sty
%%% fancyhdr.sty
%%%
%%% ------------------------------------------------------------------------
%%% Optional
%%% ------------------------------------------------------------------------
%%% git
%%% vc.sty
%%% revnum.sty
%%% Fonts
%%%
%%% ------------------------------------------------------------------------
%%% Note
%%%------------------------------------------------------------------------
%%% Because this is a hand-tweaked file, be on the look out for \medksip,
%%% \bigskip and \newpage commands here and there, which are used to balance
%%% the layout or avoid widows & orphans, etc. You should of course add or
%%% remove these as needed.
%%%------------------------------------------------------------------------
\documentclass[9pt]{article}
%%%------------------------------------------------------------------------
%%% Metadata
%%%------------------------------------------------------------------------
%% Change as needed. Or just add me as a coauthor. Only some of these are
%% used below in the hyperref declaration and address banner section.
\def\myauthor{Heather Miller}
\def\mytitle{Vita}
\def\mycopyright{\myauthor}
\def\mykeywords{}
\def\mybibliostyle{plain}
\def\mybibliocommand{}
\def\mysubtitle{}
\def\myaffiliation{Northeastern University}
\def\myaddress{College of Computer and Information Science}
\def\myemail{heather@ccs.neu.edu}
\def\myweb{http://heather.miller.am}
\def\myfax{+1 (617) 373-5121}
\def\myphone{+1 (646) 301-1825}
\def\myversion{}
\def\myrevision{}
\def\myaffiliation{EPFL}
\def\myauthor{Heather Miller}
\date{} % not used (revision control instead)
\def\mykeywords{Heather, Miller, Heather Miller, Vita, CV, Resume, Scala, Programming Languages}
%%%------------------------------------------------------------------------
%%% Git version tracking
%%%------------------------------------------------------------------------
%% If you don't use git or the vc package (from CTAN), comment this out.
%% If you comment it out, be sure to remove the \rfoot comment below, too.
% \immediate\write18{sh ./vc}
% \input{vc}
%%%------------------------------------------------------------------------
%%% Required style files
%%%------------------------------------------------------------------------
\usepackage{url,fancyhdr}
\usepackage[ampersand]{easylist}
%%\usepackage{revnum} % for reverse-numbered publications (revnumerate environment) if needed.
%% needed for xelatex to work
\usepackage{fontspec}
\usepackage{xunicode}
%% color for the links
% \usepackage[usenames,dvipsnames]{color}
\usepackage[usenames,dvipsnames]{xcolor}
\definecolor{DarkBlue}{HTML}{265B8C}
%% hyperlinks
\usepackage[xetex,
colorlinks=true,
urlcolor=DarkBlue,
plainpages=false,
pdfpagelabels,
bookmarksnumbered,
pdftitle={\mytitle},
pagebackref,
pdfauthor={\myauthor},
pdfkeywords={\mykeywords}
]{hyperref}
\usepackage{marvosym}
% \usepackage{showframe}
\usepackage[width=4.825in,top=1.7in]{geometry}
%%%------------------------------------------------------------------------
%%% Document
%%%------------------------------------------------------------------------
\begin{document}
%% Choose fonts for use with xelatex
%% Minion and Myriad are widely available, from Adobe.
%% Pragmata is available to buy at http://www.fsd.it/fonts/pragma.htm
%% and is worth every penny. Any good monospace font will work fine, though.
%% Consolas or inconsolata are good alternatives.
\setromanfont[Mapping={tex-text},Numbers={OldStyle},Ligatures={Common}]{Minion Pro}
\setsansfont[Mapping=tex-text,Colour=AA0000]{Myriad Pro}
\setmonofont[Mapping=tex-text,Scale=0.9]{Inconsolata}
%%%------------------------------------------------------------------------
%%% Local commands
%%%------------------------------------------------------------------------
%% Marginal header
%% Note: as the document goes on you may need to introduce a (gradually increasing)
%% \vspace element to keep the marginal header pleasingly aligned with the first
%% item in the body text. Like this: \marginhead{{\vskip 0.4em}Grants}, or
%% \marginhead{{\vskip 0.8em}Service}. Experiment as needed.
\newcommand{\marginhead}[1]{\marginpar{\textsf{{\normalsize\vspace{-1em}\flushright #1}}}}
\newcommand{\dates}[1]{\hfill \emph{#1}}
%% custom ampersand (font consistent with the one chosen above)
\newcommand{\amper}{{\fontspec[Scale=.95,Colour=AA0000]{Minion Pro Medium}\selectfont\&\,}}
%% No bullets on labels
\renewcommand{\labelitemi}{~}
%% Custom hanging indent for vita items
\def\ind{\hangindent=1 true cm\hangafter=1 \noindent}
%\def\ind{\hangindent=18pt\hangafter=1 \noindent}
\def\labelitemi{~}
\renewcommand{\labelitemii}{~}
%%%------------------------------------------------------------------------
%%% Page layout
%%%------------------------------------------------------------------------
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\fancyhead{}
\fancyfoot{}
\rhead{{\scriptsize\thepage}}
% \setlength{\headsep}{12pt}
\textheight=580pt
\raggedbottom
\thispagestyle{fancy}
%% git revision control footer
% \rfoot{\texttt{\scriptsize \VCRevision\ on \VCDateTEX}} % git revision info inserted via external script -- see docs for vc package for details. comment out this line if you're not using vc, and also remove the \input{vc} line above.
%%%------------------------------------------------------------------------
%%% Address and contact block
%%%------------------------------------------------------------------------
% \begin{absolutelynopagebreak}
\begin{minipage}[t]{2.95in}
\flushright {\footnotesize \href{http://www.ccis.northeastern.edu/}{College of Computer, \\ \vspace{-0.03in} and Information Science} \\ Northeastern University \\ \vspace{-0.03in} 202 WVH \\ \vspace{-0.03in} Boston, MA 02115 \\ \vspace{-0.05in} USA}
\end{minipage}
\hfill
%\begin{minipage}[t]{0.0in}
% dummy (needed here)
%\end{minipage}
\hfill
\begin{minipage}[t]{1.7in}
\flushright \footnotesize Phone: \myphone \\
Fax: \myfax \\
{\scriptsize \texttt{\href{mailto:\myemail}{\myemail}}} \\
{\scriptsize \vspace{-0.03in} \texttt{\href{\myweb}{\myweb}}}
\end{minipage}
\medskip
%% Name
\noindent{\huge {\textsc{heather miller}}}
\reversemarginpar
\medskip
\bigskip
%% Citizenship
% \medskip
\marginhead{Citizenship}
\noindent USA
\medskip
%% Research Interests
\textheight=580pt
\marginhead{{\vskip 0.3em}Research \newline Interests}
% \medskip
\noindent Concurrent, distributed, eventually-consistent (edge computing), data-centric, and data-intensive (big data) programming, from the perspective of programming languages. I work on both theoretical ideas {\em \&} implementations typically in/for the Scala programming language. {\bf My goal is to reduce the burden of building distributed systems.}
\bigskip
\medskip
% Programming language support for concurrent and distributed programming; \\type systems; non-standard uses of types for data-centric programming and big data; language and library design
%% Education
\marginhead{Education}
\noindent{\bf \em EPFL}, \emph{Lausanne, Switzerland} \vspace{0.01in} \dates{2009 -- 2015}
\newline Ph.D. in Computer Science
\newline Advisor: Martin Odersky \dates{2011 -- 2015}
\bigskip
\noindent{\bf \em University of Miami}, \emph{Coral Gables, FL} \vspace{0.01in} \dates{2006 -- 2009}
\newline\noindent BSEE in Electrical Engineering, Audio Engineering, {\em with honors, May 2009}
\bigskip
\noindent{\bf \em Cooper Union for the Advancement of Science and Art}, \emph{New York, NY} \vspace{0.01in} \dates{2004 -- 2006}
\bigskip
%% Employment
\medskip
\marginhead{Employment}
\noindent {\bf Northeastern University}, \emph{Boston, MA, USA} \vspace{0.01in} \dates{9/2016 -- }
\newline\noindent {\bf \em Assistant Clinical Professor}
\bigskip
\noindent {\bf Scala Center, EPFL}, \emph{Lausanne, Switzerland} \vspace{0.01in} \dates{10/2015 -- }
\newline\noindent {\bf \em Executive Director, Research Scientist}
\newline\noindent Founded a new not-for-profit center dedicated to research,
\newline\noindent open source development, and education surrounding the Scala
\newline\noindent programming language.
\bigskip
\noindent {\bf Databricks}, \emph{Berkeley, CA, USA} \vspace{0.01in} \dates{8/2014 -- 11/2014}
\newline\noindent {\bf \em Research Intern}
\newline\noindent Supervisor: Matei Zaharia
\newline\noindent Integrated Scala Pickling, our framework for fast, boilerplate-free, extensible
\newline\noindent serialization focused on distributed programming (OOPSLA'13), into Spark.
\newline\noindent Developed new function-passing programming model and framework, can be
\newline\noindent thought of as a generalization of Spark/MapReduce programming model (JFP'18).
\bigskip
%% Teaching Experience
\medskip
\marginhead{Teaching \newline Experience \newline (Classroom)}
\noindent {\bf Instructor, Designer}, \dates{Spring 2018}
\newline\noindent CS4240: Large-Scale Parallel Data Processing \dates{Northeastern}
%\newline\noindent Northeastern University senior-level undergraduate course on big data \dates{Northeastern}
%\newline\noindent processing, covering Spark, Hadoop, TensorFlow, amongst others.
%\newline (\textasciitilde40 students)
\bigskip
\noindent {\bf Instructor, Designer}, \dates{Fall 2016}
\newline\noindent CS7680: Programming Models for Distributed Computation \dates{Northeastern}
%\newline\noindent Northeastern University PhD-level course on programming models for \dates{Northeastern}
%\newline\noindent distributed systems. (\textasciitilde20 students)
\bigskip
\noindent {\bf Co-Instructor, Co-Designer}, {(\em with Viktor Kun\v cak \& Martin Odersky)} \dates{Spring 2016}
\newline\noindent CS 206: Parallelism \& Concurrency \dates{EPFL}
\bigskip
\noindent {\bf Co-Instructor, Co-Designer}, {(\em with Viktor Kun\v cak \& Martin Odersky)} \dates{Spring 2015}
\newline\noindent CS 212: Reactive Programming \& Parallelism \dates{EPFL}
\bigskip
\noindent {\bf (Lead) Teaching Assistant}, \dates{Fall 2011-2014}
\newline\noindent CS 201: Functional Programming \dates{EPFL}
%\newline\noindent Required EPFL undergraduate course on functional \& logic programming \dates{EPFL}
%\newline\noindent (\textasciitilde160 students)
\bigskip
%\noindent {\bf Instructor, Co-Designer}, {\em Reactive Programming \& Parallelism} \dates{Spring 2015 \& 2016}
%\newline\noindent EPFL Undergraduate course on parallel, distributed, and asynchronous \dates{EPFL}
%\newline\noindent programming (90 -- 150 students)
%\bigskip
\medskip
\marginhead{Teaching \newline Experience \newline (MOOCs)}
\noindent {\bf Instructor, Designer}, {\em Big Data Analysis with Scala and Spark} \dates{2017 --}
\newline\noindent Popular Coursera MOOC on big data analysis using Spark. \dates{Coursera}
\smallskip
\begin{easylist}[itemize]
& Designed lectures and produced lecture videos. Designed exercises
\newline and developed cloud-hosted automated graders.
& Between March-November 2017, over 120,000 registered learners.
\end{easylist}
%\begin{easylist}[itemize]
%& General introduction to distributed systems for big data
%\newline up through shuffling and optimizations like partitioning,
%\newline as well as the basics of data analytics.
%
%& Between March-November 2017, over 120,000 registered learners.
%\end{easylist}
\bigskip
%\noindent {\bf Instructor, Co-Designer}, {\em Parallel Programming \& Data Analysis} \dates{2015}
%\newline\noindent Upcoming Coursera MOOC on parallel, distributed, and asynchronous
%\newline\noindent programming.
%\bigskip
\noindent {\bf Lead}, {\em Scala Specialization (mini-degree)} \dates{2015 --}
\newline\noindent Responsible for EPFL's offering of a Scala {\em mini-degree} on Coursera. \dates{Coursera}
\smallskip
\begin{easylist}[itemize]
& Assembled offering of 4 Scala MOOCs, topped off with a capstone
\newline project. Taught and produced 1 course in the specialization and
\newline managed the development of the remaining 3 courses and the project.
\end{easylist}
\bigskip
\noindent {\bf Lead}, {\em Functional Programming Principles in Scala} \dates{2012 -- 2014}
\newline\noindent Popular Coursera MOOC on functional programming in Scala. \dates{Coursera}
\smallskip
\begin{easylist}[itemize]
& Lead teaching staff member, organized a team of graduate
\newline students, managed content production, designed course exercises
\newline with cloud-hosted grading, production of lecture videos, etc.
& >400,000 learners across iterations \& largest completion
\newline rate for a course its size (\textasciitilde19\%)
\end{easylist}
\bigskip
%\noindent {\bf Instructor}, {\em Scala as a Research Tool} \dates{2013}
%\newline\noindent ECOOP Tutorial
% \bigskip
% \noindent {\bf Teaching Assistant}, {\em Programming Principles} \dates{2011, 2014}
% \newline\noindent Required EPFL Undergraduate course on functional and logic programming
% \newline\noindent (\textasciitilde160 students)
\bigskip
\marginhead{Book}
\noindent{\bf Distributed Programming}\dates{MIT Press 2018/2019}
\newline\noindent Heather Miller, Nat Dempkowski, James Larisch,
\newline\noindent Christopher Meiklejohn, and Philipp Haller
\smallskip
\newline\noindent A textbook about the building blocks we use to build distributed systems. These range from the small, RPC, futures, actors, to the large; systems built up of these components like MapReduce and Spark. We explore issues and concerns central to distributed systems like consistency, availability, and fault tolerance, from the lens of the programming models and frameworks that the programmer uses to build these systems.
\newline\noindent\href{https://github.com/heathermiller/dist-prog-book}{\em Source (draft)}
\bigskip
\bigskip
%% Publications: Journals
\marginhead{Publications: \newline Journals}
% \medskip
%% Use revnumerate environment if numbered publications are needed.
%% (Include it above in the preamble).
%% \renewcommand{\labelenumi}{\textsc{a}\theenumi.}
%% \begin{revnumerate}
% \noindent\href{http://infoscience.epfl.ch/record/191239}{\bf Function-Passing Style: Typed, Distributed}\dates{}\vspace{-0.03in}
% \newline\noindent\href{http://infoscience.epfl.ch/record/191239}{\bf Functional Programming}
\noindent{\bf A Programming Model and Foundation for Lineage-Based Distributed}\dates{JFP 2018}
\noindent{\bf Computation}\dates{(to appear)}
\newline\noindent Heather Miller, Philipp Haller, Normen M\"{u}ller
\newline\noindent\emph{Journal of Functional Programming}
\newline\noindent\emph{Special Issue: Programming Languages for Big Data}
\bigskip
\pagebreak
%% Publications: Conferences
\marginhead{Publications: \newline Conferences}
\noindent\href{https://infoscience.epfl.ch/record/229878}{\bf Simplicitly: Foundations and Applications of Implicit Function Types}\dates{POPL 2018}
\newline\noindent Martin Odersky, Olivier Blanvillain, Fengyun Liu, Aggelos Biboudis
\newline\noindent Heather Miller, Sandro Stucki
\newline\noindent\emph{ACM SIGPLAN Symposium on Principles of Programming Languages}
\bigskip
\noindent\href{https://infoscience.epfl.ch/record/205822}{\bf Function Passing: A Model for Typed, Distributed Functional}\dates{SPLASH 2016}\vspace{-0.03in}
\newline\noindent\href{https://infoscience.epfl.ch/record/205822}{\bf Programming}
\newline\noindent Heather Miller, Philipp Haller, Normen M\"{u}ller, Joceyln Boullier
\newline\noindent\emph{ACM SIGPLAN International Symposium on New Ideas, New Paradigms,}
\newline\noindent\emph{and Reflections on Programming \& Software}
\bigskip
\noindent\href{http://infoscience.epfl.ch/record/191239}{\bf Spores: A Type-Based Foundation for Closures in the Age of}\dates{ECOOP 2014}\vspace{-0.03in}
\newline\noindent\href{http://infoscience.epfl.ch/record/191239}{\bf Concurrency and Distribution}
% \smallskip
\newline\noindent Heather Miller, Philipp Haller, Martin Odersky
\newline\noindent\emph{European Conference on Object Oriented Programming}
\bigskip
\noindent\href{http://infoscience.epfl.ch/record/190022}{\bf Functional Programming For All! Scaling a MOOC for Students}\dates{ICSE 2014}\vspace{-0.03in}
\newline\noindent\href{http://infoscience.epfl.ch/record/190022}{\bf And Professionals Alike}
% \smallskip
\newline\noindent Heather Miller, Philipp Haller, Lukas Rytz, Martin Odersky
\newline\noindent\emph{ACM SIGSOFT International Conference on Software Engineering}
\bigskip
\noindent\href{http://infoscience.epfl.ch/record/188383}{\bf Instant Pickles: Generating Object-Oriented Pickler}\dates{OOPSLA 2013}\vspace{-0.03in}
\newline\noindent\href{http://infoscience.epfl.ch/record/188383}{\bf Combinators for Fast and Extensible Serialization}
% \smallskip
\newline\noindent Heather Miller, Philipp Haller, Eugene Burmako, Martin Odersky
\newline\noindent\emph{ACM SIGPLAN Conference on Object Oriented Programming, Systems,}
\newline\noindent\emph{Languages and Applications}
\bigskip
%% Publications: Workshops
\marginhead{Publications: \newline Workshops}
\noindent\href{https://infoscience.epfl.ch/record/205039}{\bf Distributed Programming via Safe Closure Passing}\dates{PLACES 2015}
\newline\noindent Philipp Haller, Heather Miller
\newline\noindent\emph{Programming Language Approaches to Communication}
\newline\noindent\emph{and Concurrency Centric Systems}
\bigskip
\noindent\href{http://infoscience.epfl.ch/record/188383}{\bf RAY: Integrating Rx and Async for Direct-Style Reactive Streams}\dates{REM 2013}
% \smallskip
\newline\noindent Philipp Haller, Heather Miller
\newline\noindent\emph{ACM SPLASH Workshop on Reactivity, Events and Modularity}
\bigskip
\noindent\href{http://infoscience.epfl.ch/record/180265}{\bf FlowPools: A Lock-Free Deterministic Concurrent}\dates{LCPC 2012}\vspace{-0.03in}
\newline\noindent\href{http://infoscience.epfl.ch/record/180265}{\bf Dataflow Abstraction}
% \smallskip
\newline\noindent Aleksandar Prokopec, Heather Miller, Tobias Schlatter,
\newline\noindent Philipp Haller, Martin Odersky
\newline\noindent\emph{International Workshop on Languages and Compilers for Parallel Computing}
\vspace{0.03in}
\newline\noindent {\small Invited to Revised Selected Papers on the 25th International Workshop on}
\vspace{-0.03in}
\newline\noindent {\small Languages and Compilers for Parallel Computing, Lecture Notes in Computer}
\vspace{-0.03in}
\newline\noindent {\small Science, Vol. 7760, 2013}
\bigskip
\noindent\href{http://infoscience.epfl.ch/record/170032}{\bf Tools and Frameworks for Big Learning in Scala: Leveraging the}\dates{BigLearn 2011}\vspace{-0.03in}
\newline\noindent\href{http://infoscience.epfl.ch/record/170032}{\bf Language for High Productivity and Performance}
% \smallskip
\newline\noindent Heather Miller, Philipp Haller, Martin Odersky
\newline\noindent\emph{NIPS Workshop on Parallel and Large-Scale Machine Learning}
\bigskip
\noindent\href{http://infoscience.epfl.ch/record/165111}{\bf Parallelizing Machine Learning -- Functionally: A Framework}\dates{Scala 2011}\vspace{-0.03in}
\newline\noindent\href{http://infoscience.epfl.ch/record/165111}{\bf and Abstractions for Parallel Graph Processing}
% \smallskip
\newline\noindent Philipp Haller, Heather Miller
\newline\noindent\emph{Scala Workshop}
\bigskip
%% In Progress
\marginhead{{\vskip 0.4em}Submitted/In Preparation}
\medskip
%% Use revnumerate environment if numbered publications are needed.
%% (Include it above in the preamble).
%% \renewcommand{\labelenumi}{\textsc{a}\theenumi.}
%% \begin{revnumerate}
\noindent{\bf Monotonicity Types}\dates{}
\newline\noindent Kevin Clancy, Heather Miller, Christopher Meiklejohn
\medskip
\noindent{\bf The Essence of Coordination-Free Distributed Computation}\dates{}
\newline\noindent Christopher Meiklejohn, Kevin Clancy, Heather Miller
\medskip
%% Selected Tech Reports
%\bigskip
\marginhead{{\vskip 0.3em}Selected \newline Tech Reports}
\medskip
%% Use revnumerate environment if numbered publications are needed.
%% (Include it above in the preamble).
%% \renewcommand{\labelenumi}{\textsc{a}\theenumi.}
%% \begin{revnumerate}
\noindent\href{https://infoscience.epfl.ch/record/221395}{\bf The Function Passing Model: Types, Proofs, and Semantics}\dates{May 2016}
\newline\noindent Philipp Haller, Normen M\"{u}ller, Heather Miller
\medskip
\noindent{\bf Specialising Parsers for Queries}\dates{April 2016}
\newline\noindent Manohar Jonnalagedda, Jorge Vicente Cantero, Heather Miller, Martin Odersky
\medskip
\noindent\href{https://infoscience.epfl.ch/record/197948}{\bf Improving Human-Compiler Interaction Through Customizable} \dates{December 2014}\vspace{-0.03in}
\newline\noindent\href{https://infoscience.epfl.ch/record/197948}{\bf Type Feedback}\dates{}
\newline\noindent Hubert Plociniczak, Heather Miller, Martin Odersky
\medskip
\noindent\href{https://infoscience.epfl.ch/record/199389}{\bf Self-Assembly: Lightweight Language Extension and Datatype}\dates{August 2014}\vspace{-0.03in}
\newline\noindent\href{https://infoscience.epfl.ch/record/199389}{\bf Generic Programming, All-in-One!}\dates{}
\newline\noindent Heather Miller, Philipp Haller, Bruno C. d. S. Oliveira
\medskip
\noindent\href{http://infoscience.epfl.ch/record/191240}{\bf Spores, Formally}\dates{December 2013}
% \smallskip
\newline\noindent Heather Miller, Philipp Haller
% \bigskip
\medskip
\noindent\href{http://infoscience.epfl.ch/record/181098}{\bf FlowPools: A Lock-Free Deterministic Concurrent Dataflow}\dates{June 2012}\vspace{-0.03in}
\newline\noindent\href{http://infoscience.epfl.ch/record/181098}{\bf Abstraction -- Proofs}\dates{}
% \smallskip
\newline\noindent Aleksandar Prokopec, Heather Miller, Philipp Haller
%% External Service
\bigskip
\marginhead{External \newline Service}
% \noindent {\bf Committees:}
\noindent {\bf General Chair and/or Program Chair:}
%\smallskip
\newline\noindent {\em Curry On} {(\textbf{Curry On})} \dates{2015, 2016, 2017, 2018}
\newline\noindent {\em Trends in Functional Programming in Education} {(\textbf{TFPIE})} \dates{2018}
\newline\noindent {\em Scala Symposium} {(\textbf{Scala})} \dates{2013, 2014, 2017}
\newline\noindent {\em Programming Models \& Languages for Distributed Computation} {(\textbf{PMLDC})} \dates{2016, 2017}
\bigskip
\noindent {\bf Organizing Committee Member:}
%\smallskip
\newline {\em Object-Oriented Programming, Systems, Languages \& Applications} {(\textbf{OOPSLA})} \dates{2018}
\newline {\em European Conference on Object-Oriented Programming} {(\textbf{ECOOP})} \dates{2015 -- 2018}
\bigskip
\noindent {\bf Program Committee Member:}
%\smallskip
\newline\noindent {\em International Conference on Functional Programming} {(\textbf{ICFP})} \dates{2018}
\newline\noindent {\em Object-Oriented Programming, Systems, Languages \& Applications} {(\textbf{OOPSLA})} \dates{2017}
\newline\noindent {\em Off the Beaten Track} {(\textbf{OBT})} \dates{2018}
\newline\noindent {\em Scala Symposium} {(\textbf{Scala})} \dates{2016}
\newline\noindent {\em Symposium on Trends in Functional Programming} {(\textbf{TFP})} \dates{2016}
\newline\noindent {\em Software Language Engineering} {(\textbf{SLE})} \dates{2016}
\newline\noindent {\em Symposium on Applied Computing} {(\textbf{SAC})} \dates{2016}
\newline\noindent {\em Programming Language Evolution} {(\textbf{PLE})} \dates{2015}
\newline\noindent {\em Domain-Specific Language Design and Implementation} {(\textbf{DSLDI})} \dates{2015}
\medskip
\noindent {\bf External Review Committee Member:}
\newline\noindent {PLDI 2018}, {ECOOP 2016}, {ECOOP 2013}, {Scala 2013}
\medskip
\newline\noindent {\bf Artifact Evaluation Committee:} {POPL 2015}
\medskip
%% Diversity and Outreach
\bigskip
\marginhead{Diversity \&\newline Outreach}
\noindent {\bf Girls Code It: Intensive Pre-College Computer Science Program} \dates{Summer 2018}
\newline\noindent Conceived of and am organizing large pre-college program aimed at \dates{Northeastern}
\newline\noindent preparing high school-aged girls for a career in Computer Science.
\smallskip
\newline\noindent 6 week-long residential program for 100 students which awards
\newline\noindent college credit and puts alumni of the program on an accelerated
\newline\noindent CS track upon matriculating at Northeastern University.
\bigskip
\noindent {\bf ScalaBridge Organizer}
\newline\noindent Organizer of free full-day workshops on the weekends aimed at teaching women
\newline\noindent and underrepresented minorities in computing how to think computationally and
\newline\noindent how to program in Scala.
\smallskip
\newline\noindent {\em ScalaBridge Chapters: Basel (CH), Z\"{u}rich (CH), Copenhagen (DK), Boston (US).}
\bigskip
%% Open Source
\medskip
\marginhead{{\vskip 0.1em}Open Source}
\vspace{0.01in}
\noindent {\bf Scala Programming Language}, {\em member of the Scala team} \dates{2011 --}
\vspace{0.05in}
\begin{easylist}[itemize]
& \href{http://docs.scala-lang.org/sips/pending/spores.html}{{\bf Scala Spores} (Scala Improvement Proposal SIP-21)}, {\bf \em project lead}
\newline novel type-based abstraction for using closures safely
\newline in concurrent and distributed environments
& \href{http://lampwww.epfl.ch/~hmiller/pickling/}{{\bf Scala Pickling}}, {\bf \em project lead}
\newline novel framework for fast, boilerplate-free, extensible serialization.
\newline Adopted by sbt, the most widely-used build tool for Scala. Popular
\newline open-source project on GitHub with >820 stars \& dozens of contributors
& \href{http://docs.scala-lang.org/sips/completed/futures-promises.html}{{\bf Scala Futures \& Promises} (Scala Improvement Proposal SIP-14)}, {\bf \em team member}
\newline unified non-blocking concurrency substrate for
\newline Scala, Akka, Play, and others
& \href{http://docs.scala-lang.org/}{{\bf Scala Documentation}}, {\bf \em creator, writer, lead maintainer}
\newline a central website for community-driven documentation for
\newline the Scala programming language and core libraries
& \href{https://wiki.scala-lang.org/display/SW/Scaladoc}{{\bf Scaladoc}}, {\bf \em co-maintainer}
\newline documentation tool for Scala's official API documentation
\end{easylist}
\bigskip
%% Honors
\medskip
\marginhead{Honors}
\noindent US National Science Foundation Graduate Research Fellowship \dates{2011 -- 2014}
% \newline\noindent PLMW Travel Grant \dates{2014-2015}
% \newline\noindent ICSE Travel Grant \dates{2014}
\newline\noindent EPFL Outstanding Teaching Award \dates{2012}
\newline\noindent EPFL Computer Science Fellowship \dates{2009 -- 2010}
\newline\noindent Most Outstanding Audio Engineering Student, University of Miami \dates{2009}
\newline\noindent Most Outstanding Eta Kappa Nu Student, University of Miami \dates{2009}
\newline\noindent Information Technology Scholarship, University of Miami \dates{2006 -- 2009}
\newline\noindent John Farina Family Scholarship, University of Miami \dates{2006 -- 2009}
\newline\noindent Eta Kappa Nu \dates{2008}
\newline\noindent Tau Beta Pi \dates{2008}
\newline\noindent SMART US Department of Defense Scholarship Alternate \dates{2007}
\newline\noindent Cooper Union Full Tuition Scholarship \dates{2004 -- 2006}
\bigskip
\pagebreak
%% Talks
\medskip
\marginhead{Selected Talks}
\vspace{-0.02in}
\noindent{\bf What Happened to Distributed Programming} \dates{Strange Loop \& PWLConf 2017}\vspace{-0.03in}
\newline\noindent {\bf Languages?}\dates{{\bf \em (invited)}}
\linebreak\noindent St. Louis, MO, USA. September 29, 2017
\bigskip
\noindent{\bf The Dramatic Consequences of the Open Source Revolution:}\dates{Devoxx 2017}\vspace{-0.03in}
\newline\noindent {\bf Unrecognized Challenges \& Some Modest Attempts at}\dates{{\bf \em (invited)}}\vspace{-0.03in}
\newline\noindent {\bf Solutions in Scala}\dates{}
\linebreak\noindent Paris, France. April 7, 2017
\bigskip
\noindent{\bf The Dramatic Consequences of the Open Source Revolution}\dates{Scala Exchange 2016}\vspace{-0.03in}
\newline\noindent {\bf \& How the Scala Center Hopes to Help}\dates{{\bf \em (keynote)}}
\linebreak\noindent London, UK. December 9, 2016
\bigskip
\noindent{\bf Function Passing: A Model for Typed, Distributed Functional}\dates{SPLASH 2016}\vspace{-0.03in}
\newline\noindent {\bf Programming}\dates{}
\linebreak\noindent Amsterdam, The Netherlands. November 2, 2016
\bigskip
\noindent{\bf Introducing the Scala Center}\dates{Scala Days 2016}
\linebreak\noindent New York, NY, US. May 10, 2016 \& Berlin, Germany. June 16, 2016 \dates{{\bf \em (keynote)}}
\newline\noindent {\em (total \textasciitilde1700 attendees)}
\bigskip
\noindent\href{https://speakerdeck.com/heathermiller/function-passing-style-typed-distributed-functional-programming}{\bf Function Passing Style: Typed, Distributed} \dates{Strange Loop 2014}\vspace{-0.03in}
\linebreak\noindent\href{https://speakerdeck.com/heathermiller/function-passing-style-typed-distributed-functional-programming}{\bf Functional Programming}\dates{}
\linebreak\noindent St. Louis, MO, USA. September 19, 2014
\bigskip
\noindent\href{https://speakerdeck.com/heathermiller/spores-a-type-based-foundation-for-closures-in-the-age-of-concurrency-and-distribution}{\bf Spores: A Type-Based Foundation for Closures in the Age of} \dates{ECOOP 2014}\vspace{-0.03in}
\linebreak\noindent\href{https://speakerdeck.com/heathermiller/spores-a-type-based-foundation-for-closures-in-the-age-of-concurrency-and-distribution}{\bf Concurrency and Distribution}\dates{}
\linebreak\noindent Uppsala, Sweden. August 1, 2014
\bigskip
\noindent{\bf Functional Programming For All! Scaling a MOOC for} \dates{ICSE 2014}\vspace{-0.03in}
\linebreak\noindent{\bf Students and Professionals Alike}\dates{}
\linebreak\noindent Hyderabad, India. June 4, 2014
\bigskip
\noindent{\bf Academese to English: Scala's Type System, Dependent Types} \dates{NEScala 2014}\vspace{-0.03in}
\linebreak\noindent{\bf and What It Means To You}\dates{}
\linebreak\noindent New York, NY, USA. March 1, 2014
\bigskip
\noindent\href{https://speakerdeck.com/heathermiller/instant-pickles-generating-object-oriented-pickler-combinators-for-fast-and-extensible-serialization}{\bf Instant Pickles: Generating Object-Oriented Pickler} \dates{OOPSLA 2013}\vspace{-0.03in}
\linebreak\noindent\href{https://speakerdeck.com/heathermiller/instant-pickles-generating-object-oriented-pickler-combinators-for-fast-and-extensible-serialization}{\bf Combinators for Fast and Extensible Serialization}\dates{}
\linebreak\noindent Indianapolis, IN, USA. October 30, 2013
\bigskip
\noindent\href{http://heather.miller.am/files/IU-PL-Abstractions-for-Dist-Programming.pdf}{\bf PL Abstractions for Distributed Programming:} \dates{Indiana University {\bf \em (invited)}}\vspace{-0.03in}
\linebreak\noindent\href{http://heather.miller.am/files/IU-PL-Abstractions-for-Dist-Programming.pdf}{\bf Pickle Your Spores!}\dates{}
\linebreak\noindent Bloomington, IN, USA. October 25, 2013
\bigskip
\noindent\href{https://speakerdeck.com/heathermiller/spores-distributable-functions-in-scala}{\bf Spores: Distributable Functions in Scala} \dates{Strange Loop 2013}
\linebreak\noindent St. Louis, MO, USA. September 19, 2013
\bigskip
\noindent\href{http://heather.miller.am/files/LaME2013-Dataflow.pdf}{\bf Open Issues in Dataflow Programming} \dates{LaME 2013 {\bf \em (invited)}}
\linebreak\noindent Montpellier, France. July 1, 2013
\bigskip
\noindent{\bf Scala as a Research Tool} \dates{ECOOP 2013 Tutorial}
\linebreak\noindent Montpellier, France. July 1, 2013
\bigskip
\noindent\href{https://speakerdeck.com/heathermiller/on-pickles-and-spores-improving-support-for-distributed-programming-in-scala}{\bf On Pickles \& Spores: Improving Scala's Support} \dates{ScalaDays 2013}\vspace{-0.03in}
\linebreak\noindent\href{https://speakerdeck.com/heathermiller/on-pickles-and-spores-improving-support-for-distributed-programming-in-scala}{\bf for Distributed Programming}\dates{}
\linebreak\noindent New York, NY, USA. June 12, 2013
\bigskip
\noindent\href{http://lampwww.epfl.ch/~hmiller/files/Futures-Try-PhillyETE.pdf}{\bf Futures \& Promises in Scala 2.10} \dates{PhillyETE 2013 {\bf \em (invited)}}
\linebreak\noindent Philadelphia, PA, USA. April 2, 2013
\bigskip
%\bigskip
\noindent {\em I am also a frequent speaker in industry, at industrial conferences, developer ``meet-ups'', and everything in between. Some such events include:}
\medskip
\newline\noindent
{\bf Open Source Summit} (12/2017, Paris, France),
{\bf Scala World} (9/2017, Lake District, UK),
{\bf \href{https://youtu.be/17yy5BwIiTw}{LxScala}} (5/2017, Lisbon, Portugal),
{\bf Lambda Days} (2/2017, Krakow, Poland),
{\bf\href{https://www.youtube.com/watch?v=67UNErFdr64}{PhillyETE}} (4/2016, Philadelphia, USA),
{\bf Code Mesh} (11/2015, London, UK),
{\bf Scalar} (4/2015, Warsaw, Poland),
{\bf\href{http://fby.by/}{f(by)}} (11/2014, Minsk, Belarus),
{\bf\href{https://www.youtube.com/watch?v=4obTnLVXQWY}{SF Scala}} (11/2014, SF, USA),
{\bf\href{http://www.scalapeno.org.il/#!heather-miller/cj0q}{Scalape\~{n}o}} (9/2014, Tel Aviv, Israel),
{\bf \href{https://www.eventbrite.com/e/soundcloud-techtalks-unconventional-thinking-in-design-and-programming-tickets-12166429117}{SoundCloud TechTalks}} (7/2014, Berlin, Germany),
{\bf Scala Days} (6/2014, Berlin, Germany),
{\bf\href{http://www.nescala.org/2014}{NEScala}} (3/2014, NYC, USA), amongst others.
\bigskip
% %% Selected Broader Service
% \medskip
% \marginhead{Selected \newline Broader \newline Service}
% \noindent \href{http://ic.epfl.ch/conseil-de-faculte}{\bf EPFL Computer Science Faculty Council}, {\bf \em PhD Student Representative} \dates{2012 --}
% \newline\noindent Members include the dean of the faculty as well as representatives
% \newline\noindent from every branch of the faculty, administrative, PhD, faculty, etc.
% \newline\noindent Quarterly meetings to steer the faculty and introduce new initiatives.
% \bigskip
% \noindent \href{http://ic-gsa.epfl.ch/}{\bf EPFL CS Graduate Student Association}, {\bf \em President} \dates{2009 -- 2011}
% \newline\noindent Volunteer student organization with a mission to foster a sense of
% \newline\noindent community and collaboration between different research groups in
% \newline\noindent the faculty. Initiatives led/introduced:
% \vspace{0.05in}
% \begin{easylist}[itemize]
% & {\bf Research Day}: college-wide showcase of labs' research activities
% & {\bf PhD Student Open House}: main recruiting event for CS doctoral program
% & {\bf Social Events}: aper\'{o}s, ski trips, outings
% \end{easylist}
% \bigskip
% \noindent {\bf EPFL CS Graduate Student Mentor} \dates{2010 -- 2012}
% \newline\noindent One-on-one mentoring of incoming doctoral students, aided students in
% \newline\noindent integrating into EPFL's research environment and Switzerland as a whole.
% \vspace{0.05in}
% \bigskip
%% External Activities
\medskip
\marginhead{External \newline Activities}
% \noindent {\bf \href{https://www.hackerschool.com/}{Hacker School}}, resident\dates{2015}
% \newline
\noindent {\bf \href{http://scalawags.tv/}{Scalawags Monthly Podcast}}, co-host\dates{2014 -- 2016}
\bigskip
%% Students Supervised
\medskip
\marginhead{Students \newline Supervised}
%\footnotetext[1]{At EPFL, research groups offer substantial projects for B.Sc./M.Sc. students to complete for credit. EPFL PhD students design and supervise these projects, as well as M.Sc. thesis projects.}
\noindent {\bf Kevin Clancy}, {\em Eventual Consistency via Types} \dates{2016 --}
\newline\noindent PhD thesis \dates{Northeastern}
\medskip
\noindent {\bf Joceyln Boullier}, {\em Evaluating the Efficiacy of the Function Passing Model} \dates{2/2016 -- 8/2016}
\newline\noindent M.Sc. thesis \dates{EPFL}
\medskip
\noindent {\bf Jorge Vicente Cantero}, {\em Implementing the Function Passing Model} \dates{2/2016 -- 6/2016}
\newline\noindent B.Sc. thesis \dates{EPFL}
\medskip
%\noindent {\bf Louis Bliss}, {\em Incremental Picklers for Scala Pickling} \dates{9/2013 -- 1/2014}
%\newline\noindent M.Sc. level, co-supervision with Philipp Haller \dates{EPFL}
%\medskip
\noindent {\bf Thadd\'{e}e Yann Tyl}, {\em Learning Scala Style} \dates{2/2013 -- 6/2013}
\newline\noindent M.Sc. thesis \dates{EPFL}
\medskip
%\noindent {\bf Tobias Schlatter}, {\em FlowSeqs: Barrier-Free ParSeqs} \dates{9/2012 -- 1/2013}
%\newline\noindent M.Sc. level, co-supervision w/ Philipp Haller \& Aleksandar Prokopec \dates{EPFL}
%\medskip
%
%\noindent {\bf Tobias Schlatter}, {\em Multi-Lane FlowPools} \dates{2/2012 -- 6/2012}
%\newline\noindent M.Sc. level, co-supervision w/ Philipp Haller \& Aleksandar Prokopec \dates{EPFL}
%\medskip
%
%\noindent {\bf Pierre Grydbeck}, {\em Parallel Machine Learning: An Expectation} \dates{2/2012 -- 6/2012}
%\newline\noindent {\em Maximization Algorithm for Gaussian Mixture Models}
%\newline\noindent M.Sc. level, co-supervision with Philipp Haller \dates{EPFL}
%\medskip
%
%\noindent {\bf Bruno Studer}, {\em Parallel Machine Learning: Collaborative Filtering} \dates{2/2012 -- 6/2012}
%\newline\noindent {\em via Alternating Least Squares}
%\newline\noindent B.Sc. level, co-supervision with Philipp Haller \dates{EPFL}
%\medskip
%
%\noindent {\bf Stanislav Peshterliev}, {\em Parallel Natural Language Processing} \dates{9/2011 -- 1/2012}
%\newline\noindent {\em Algorithms in Scala}
%\newline\noindent M.Sc. level, co-supervision with Philipp Haller \dates{EPFL}
%\medskip
%
%\noindent {\bf Olivier Blanvillain \& Louis Bliss}, {\em Parallelization of a Collaborative} \dates{9/2011 -- 1/2012}
%\newline\noindent {\em Filtering Algorithm with Menthor}
%\newline\noindent B.Sc. level, co-supervision with Philipp Haller \dates{EPFL}
%\medskip
%
%\noindent {\bf Florian Gysin}, {\em Improving Parallel Graph Processing Through} \dates{9/2011 -- 1/2012}
%\newline\noindent {\em the Introduction of Parallel Collections}
%\newline\noindent M.Sc. level, co-supervision with Philipp Haller \dates{EPFL}
%\medskip
%
%\noindent {\bf Georges Discry}, {\em Extending the Menthor Framework for Parallel} \dates{2/2011 -- 6/2011}
%\newline\noindent {\em Graph Processing to Distributed Computing}
%\newline\noindent M.Sc. level, co-supervision with Philipp Haller \dates{EPFL}
%\medskip
%% References
\bigskip
\marginhead{References}
\noindent\begin{tabular}{lr}
\begin{minipage}[t]{2.5in}
\noindent {\bf Martin Odersky}, Professor
%\newline\noindent {\em Faculty of Computer, Communication, and Information Science}
\newline\noindent {\em \'{E}cole Polytechnique F\'{e}d\'{e}rale de Lausanne}
\newline\noindent \Telefon~+41 21 693 68 63
\newline\noindent \Letter~\href{mailto:martin.odersky@epfl.ch}{martin.odersky@epfl.ch}
\medskip
\end{minipage}
&
\begin{minipage}[t]{2.5in}
\noindent {\bf Matthias Felleisen}, Trustee Professor
%\newline\noindent {\em College of Communication and Information Science}
\newline\noindent {\em Northeastern University}
\newline\noindent \Telefon~+1-617-373-2085
\newline\noindent \Letter~\href{mailto:matthias@ccs.neu.edu}{matthias@ccs.neu.edu}
\medskip
\end{minipage}
\\
\\
\begin{minipage}[t]{2.5in}
\noindent {\bf Jan Vitek}, Professor
%\newline\noindent {\em College of Communication and Information Science}
\newline\noindent {\em Northeastern University}
\newline\noindent \Telefon~+1-617-749-8148
\newline\noindent \Letter~\href{mailto:j.vitek@northeastern.edu}{j.vitek@northeastern.edu}
\medskip
\end{minipage}
&
\begin{minipage}[t]{2.5in}
\noindent {\bf Matei Zaharia}, Assistant Professor
%\newline\noindent {\em Department of Computer Science}
\newline\noindent {\em Stanford University}
\newline\noindent \Telefon~+1-510-610-0001
\newline\noindent \Letter~\href{mailto:matei@cs.stanford.edu}{matei@cs.stanford.edu}
\medskip
\end{minipage}
\\
\\
\begin{minipage}[t]{2.5in}
\noindent {\bf Philipp Haller}, Assistant Professor
%\newline\noindent {\em School of Computer Science and Communication}
\newline\noindent {\em KTH Royal Institute of Technology}
\newline\noindent \Telefon~+46 70 738 28 43
\newline\noindent \Letter~\href{mailto:phaller@kth.se}{phaller@kth.se}
\end{minipage}
\end{tabular}
\end{document}