-
Notifications
You must be signed in to change notification settings - Fork 1
/
currentcv.tex
1056 lines (1014 loc) · 30.2 KB
/
currentcv.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
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
%% start of file 'template.tex'.
%% Based on a c.v. template (moderncv) that is Copyright 2006-2013 Xavier Danaux ([email protected]).
%% Also based on code by Saad Quadri in latexresu.me
%% modern cv under LaTeX Project Public License version 1.3c
%% latexresu.me under MIT license.
%% Paul Gowder additions under MIT license.
\documentclass[letterpaper]{moderncv}
\usepackage{textcomp}
\usepackage{multicol}
% moderncv themes
\moderncvstyle{classic} % style options are 'casual' (default), 'classic', 'oldstyle' and 'banking'
\moderncvcolor{green} % color options 'blue' (default), 'orange', 'green', 'red', 'purple', 'grey' and 'black'
%\renewcommand{\familydefault}{\sfdefault} % to set the default font; use '\sfdefault' for the default sans serif font, '\rmdefault' for the default roman one, or any tex font name
%\nopagenumbers{} % uncomment to suppress automatic page numbering for CVs longer than one page
% character encoding
\usepackage[utf8]{inputenc} % if you are not using xelatex ou lualatex, replace by the encoding you are using
% adjust the page margins
\usepackage[scale=0.75]{geometry}
\setlength{\hintscolumnwidth}{2cm} % if you want to change the width of the column with the dates
%\setlength{\makecvtitlenamewidth}{10cm} % for the 'classic' style, if
%you want to force the width allocated to your name and avoid line breaks. be
%careful though, the length is normally calculated to avoid any overlap with
%your personal info; use this at your own typographical risks...
\usepackage{fontspec}
\renewcommand*{\addressfont}{\small\mdseries}
\renewcommand*{\namefont}{\fontsize{34}{36}\mdseries\upshape\sffamily}
\renewcommand*{\titlefont}{\LARGE\mdseries\upshape\sffamily}
\renewcommand*{\sectionfont}{\Large\bfseries\upshape\sffamily}
\renewcommand*{\subsectionfont}{\large\bfseries\upshape\sffamily}
\setsansfont{CooperHewitt-Medium.ttf}
\usepackage{xpatch}
\xpatchcmd{\cventry}{\slshape#4}{#4}{}{}
\newcommand*{\mycvlistdoubleitem}[3][.25em]{%
\cvitem[#1]{}{\begin{minipage}[t]{\listdoubleitemcolumnwidth}#2\end{minipage}%
\hfill% fill of \separatorcolumnwidth
\ifthenelse{\equal{#3}{}}%
{}%
{\begin{minipage}[t]{\listdoubleitemcolumnwidth}#3\end{minipage}}}}
% Profile
\name{Paul Gowder}{}
\address{Last update: February 8, 2021} %% total hack to get last rev date instead of
%% address in here.
\email{[email protected]}
\homepage{gowder.io}
\begin{document}
\makecvtitle
\lfoot{\thepage}
%
% positions
%
\section{Academic Positions}
\cventry
{2020-}
{Professor of Law}
{Northwestern University}
{Chicago, IL}
{}
{}
\cventry
{2012-2020}
{Professor of Law}
{University of Iowa}
{Iowa City, IA}
{}
{Associate Professor of Law (pre-tenure) 2012-17; Professor of Law (tenured); 2017-2020; Professor of Law and O.K. Patton Fellow in Law 2019-20; courtesy appointments in Political Science 2012-20, Philosophy 2016-20.}
%
\cventry
{Fall 2019}
{Visiting Professor of Law}
{Boston University}
{}
{}
{}
%
% education
%
\section{Education}
\cventry
{2012}
{Ph.D., Political Science}
{Stanford University}
{}
{}
{}
\cventry
{2000}
{J.D.}
{Harvard Law School}
{}
{}
{}
\cventry
{1997}
{B.A., Political Science}
{California State University, Los Angeles}
{}
{}
{}
%
% Publications
%
\section{Publications}
\subsection{Books}
\cventry
{2016}
{The Rule of Law in the Real World}
{}
{Cambridge University Press}
{}
{Translated into Ukrainian (2019)}
\vspace{1mm}
\vspace{1mm}
\subsection{Peer-Reviewed/Edited Articles}
\cventry
{2018}
{Transformative Legal Technology and the Rule of Law}
{}
{University of Toronto Law Journal}
{}
{68(S1):82-105. }
\vspace{1mm}
\cventry
{2015}
{What the Laws Demand of Socrates---and of Us}
{}
{The Monist}
{}
{98(4):360-374. }
\vspace{1mm}
\cventry
{2014}
{Institutional Corruption and the Rule of Law}
{}
{Les Ateliers de l'Ethique/The Ethics Forum}
{}
{9(1):84-102. }
\vspace{1mm}
\cventry
{2014}
{Institutional Values, or How to Say What Democracy Is}
{}
{Southwest Philosophy Review}
{}
{30(1):235-242. }
\vspace{1mm}
\cventry
{2014}
{Market Unfreedom}
{}
{Critical Review}
{}
{26(3-4):306-347. (peer-edited, invited contribution, not blind reviewed)}
\vspace{1mm}
\cventry
{2013}
{Death and Taxes in NFIB v. Sebelius}
{}
{Public Affairs Quarterly}
{}
{27(3):243-266. }
\vspace{1mm}
\cventry
{2013}
{The Rule of Law and Equality}
{}
{Law \& Philosophy}
{}
{32(5):565-618. }
\vspace{1mm}
\cventry
{2006}
{Secrecy as Mystification of Power: Meaning and Ethics in the Security State}
{}
{I/S: A Journal of Law and Policy for the Information Society}
{}
{2(1):1-26. (supported by the Century Foundation; reprinted in Maret and Goldman, eds., Understanding Government Secrecy: Classic and Contemporary Readings)}
\vspace{1mm}
\vspace{1mm}
\subsection{Law Review (Student-Edited) Articles}
\cventry
{2020}
{The Dangers to the American Rule of Law Will Outlast the Next Election}
{}
{Cardozo Law Review de novo}
{}
{2020:126-164. (online law review)}
\vspace{1mm}
\cventry
{2019}
{Reconstituting We the People: Frederick Douglass and Jurgen Habermas in Conversation}
{}
{Northwestern University Law Review}
{}
{114(2):335-413. }
\vspace{1mm}
\cventry
{2018}
{Resisting the Rule of Men}
{}
{Saint Louis University Law Journal}
{}
{62(2):333-359. }
\vspace{1mm}
\cventry
{2016}
{Democratic Paternalism, not Libertarian Paternalism}
{}
{Georgetown Journal of Law and Public Policy}
{}
{14:747-787. }
\vspace{1mm}
\cventry
{2016}
{Transnational Litigation as a Prisoner's Dilemma}
{}
{North Carolina Law Review}
{}
{94(3):751-816. (co-author with Maya Steinitz)}
\vspace{1mm}
\cventry
{2015}
{Critical Race Science and Critical Race Philosophy of Science}
{}
{Fordham Law Review}
{}
{83(6):3155-3177. (invited contribution)}
\vspace{1mm}
\cventry
{2015}
{The Rule of Law Against Sovereign Immunity in a Democratic State}
{}
{Texas Law Review See Also}
{}
{93:247-262. (online law review commentary)}
\vspace{1mm}
\cventry
{2014}
{Democracy, Solidarity and the Rule of Law: Lessons from Athens}
{}
{Buffalo Law Review}
{}
{62(1):1-67. }
\vspace{1mm}
\cventry
{2014}
{Equal Law in an Unequal World}
{}
{Iowa Law Review}
{}
{99:1021-1081. }
\vspace{1mm}
\cventry
{2014}
{Racial Classification and Ascriptive Injury}
{}
{Washington University Law Review}
{}
{92(2):325-396. }
\vspace{1mm}
\cventry
{2014}
{The Countermajoritarian Complaint}
{}
{Transnational Law and Contemporary Problems}
{}
{23:7-33. (invited contribution)}
\vspace{1mm}
\cventry
{2006}
{Quasi-Public Executives}
{}
{Yale Law Journal}
{}
{115(9):2254-2278. (co-author with K.A.D. Camara)}
\vspace{1mm}
\cventry
{1998}
{Remote Purchasing and Fundamental Fairness: The Sales and Use Tax Equalization Act}
{}
{Harvard Journal on Legislation}
{}
{35:537-559. (major contributor within Harvard Legislative Research Bureau)}
\vspace{1mm}
\vspace{1mm}
\subsection{Book Chapters}
\cventry
{2020}
{Is Legal Cognition Computational? (When Will DeepVehicle Replace Judge Hercules?)}
{}
{in Computational Legal Studies: The Promise and Challenge of Data-Driven Research}
{}
{Ryan Whalen, ed., Edward Elgar, pp. 215-237.}
\vspace{1mm}
\cventry
{2015}
{Trust and Commitment: How Athens Rebuilt the Rule of Law}
{}
{in Theorizing Transitional Justice}
{}
{Corradetti, Eiskovits, and Rotondi, ed., Ashgate, pp. 225-236.}
\vspace{1mm}
\cventry
{2014}
{The Health Insurance Mandate Really is a Tax, and That's a Good Thing Too}
{}
{in The Affordable Care Act Decision: Philosophical and Legal Implications}
{}
{Allhoff and Hall, ed., Routledge, pp. 103-116.}
\vspace{1mm}
\vspace{1mm}
\subsection{Book Reviews}
\cventry
{2021}
{Untitled Review of Cass Sunstein and Adrian Vermeule, Law and Leviathan: Redeeming the Administrative State}
{}
{Law and Politics Book Review}
{}
{31(1):12-47. Law and Politics Book Review}
\vspace{1mm}
\cventry
{2019}
{Untitled Review of Federica Carugati, Creating a Constitution: Law, Democracy and Growth in Ancient Athens}
{}
{Law and Politics Book Review}
{}
{29(11):136-141. Law and Politics Book Review}
\vspace{1mm}
\cventry
{2018}
{Institutions and Instrumentalization in International Law (Review of Fox-Decent and Criddle, Fiduciaries of Humanity)}
{}
{Tulsa Law Review}
{}
{53(2):261-266. Tulsa Law Review Book Review Issue}
\vspace{1mm}
\cventry
{1999}
{Book Note: Data Smog/The Transparent Society}
{}
{Harvard Journal of Law and Technology}
{}
{12(2):513-532. (student book note, fairly terrible)}
\vspace{1mm}
\cventry
{1999}
{Book Note: Losing the Vote, the Impact of Prisoner Disenfranchisement}
{}
{Harvard Human Rights Journal}
{}
{12:399-401. (student book note, fairly terrible)}
\vspace{1mm}
\vspace{1mm}
\subsection{Forthcoming (all categories)}
\cvitem
{}
{Philosophical Approaches to Constitutional Law Methods, forthcoming in Constitutional Law Methodology volume (title pending), edited by David Law and Malcolm Langford, Elgar (2020).}
\vspace{1mm}
\subsection{Miscellany}
\cvitem
{2016}
{The Rule of Law, entry in Oxford Bibliographies in Political Science.}
\vspace{1mm}
\cvitem
{2014}
{Procedural Due Process: the Missing Casebook Chapter, open access casebook chapter, released on SSRN.}
\vspace{1mm}
\cvitem
{2014}
{The Rule of Law, entry in Sage Encyclopedia of Criminal Justice Ethics.}
\vspace{1mm}
\cvitem
{2013}
{The Serious Point, a micro-contribution to the Green Bag/Journal of Law micro- symposium on Orin Kerr's "Theory of Law".}
\vspace{1mm}
\cvitem
{2009}
{"Shopping Malls and the First Amendment," "Masson v. New Yorker Magazine," and "Pruneyard Shopping Center v. Robins", entries in Schultz, ed., Encyclopedia of the United States Constitution (Facts on File).}
\vspace{1mm}
\cvitem
{2008}
{"Noerr-Pennington Doctrine," "Pruneyard Shopping Center v. Robins," and "Amalgamated Food Employees Union Local 590 v. Logan Valley Plaza, Inc", entries in Hudson, Schultz and Vile, eds., Encyclopedia of the First Amendment, (Congressional Quarterly Press).}
\vspace{1mm}
\cvitem
{1999}
{Recent Developments: Antitrust, 27 Journal of Law, Medicine, and Ethics 278 (student comment).}
\vspace{1mm}
\section{Grants, Awards, Honors}
\cvitem
{2020-}
{American Law Institute, elected member (beginning December 2020).}
\vspace{1mm}
\cvitem
{2020-1}
{Knight Foundation, grant funding (\$100,000) to support research that applies principles from constitutional law and institutional political science to the challenges of platform governance.}
\vspace{1mm}
\cvitem
{2014-5}
{Institute for Advanced Study, Princeton, NJ: Member (School of Social Science).}
\vspace{1mm}
\cvitem
{2014-5}
{Law and Public Affairs Program, Princeton University (LAPA/Perkins Fellow, offered but declined).}
\vspace{1mm}
\cvitem
{2014-5}
{Edmond J. Safra Center for Ethics, Harvard University: Network Fellow.}
\vspace{1mm}
\cvitem
{2014}
{Montreal Political Theory Manuscript Award, Groupe de recherche interuniversitaire en philosophie politique de Montreal (for The Rule of Law in the Real World).}
\vspace{1mm}
\cvitem
{2011-2}
{Geballe Dissertation Prize Fellowship, Stanford University.}
\vspace{1mm}
\cvitem
{2008-11}
{Gerhard Casper Stanford Graduate Fellowship.}
\vspace{1mm}
\cvitem
{2008-9}
{Philanthropy and Civil Society Fellowship, Stanford University.}
\vspace{1mm}
\cvitem
{1998}
{Williston Contracts Competition (first place), Harvard Law School.}
\vspace{1mm}
\section{Presentations}
\subsection{Invited Talks}
\cvitem
{2020}
{On Platforms and Polities, University at Buffalo, Baldy Center.}
\vspace{1mm}
\cvitem
{2019}
{Dignity and the Rule of Law Against Self-Abnegation and Racial Inequality, Brigham Young University Center for Law and Religion: Human Dignity from Judges' Perspectives.}
\vspace{1mm}
\cvitem
{2019}
{The Owl of Minverva is All Fun and Games Until She Swoops Down and Takes Out an Eye: Limited Epistemic Horizons, Inequality, Polarization, and the Rule of Law, Loyola University Chicago School of Law Institute for Investor Protection: Investors and the Rule of Law.}
\vspace{1mm}
\cvitem
{2018}
{Is Legal Cognition Computational?, Hong Kong University, Workshop on the Emergence of Computational Legal Studies.}
\vspace{1mm}
\cvitem
{2017}
{Ethics of Augmentation, University of Toronto, Centre for Ethics.}
\vspace{1mm}
\cvitem
{2017}
{Normative and Empirical Constitutionalism, Research Methods in Constitutional Law Conference, University of Oslo.}
\vspace{1mm}
\cvitem
{2017}
{Popular Sovereignty with Weak Causality, McGill University, Legal Theory Workshop.}
\vspace{1mm}
\cvitem
{2017}
{Two Models of Technological Change in Law, University of Toronto, Centre for Innovation Law and Policy.}
\vspace{1mm}
\cvitem
{2016}
{The Rule of Law in the Real World (practitioner-oriented book presentation), American Bar Association, Rule of Law Initiative.}
\vspace{1mm}
\cvitem
{2015}
{Democratic Paternalism, not Libertarian Paternalism, Georgetown University McDonough School of Business, Symposium on Nudging.}
\vspace{1mm}
\cvitem
{2015}
{Democratic Rule of Law Reform, Circa 403 B.C.E., Stanford University, Freeman Spogli Institute for International Studies and Stanford Law School.}
\vspace{1mm}
\cvitem
{2015}
{General Will, Causality, Equality, Georgetown University, McDonough School of Business.}
\vspace{1mm}
\cvitem
{2015}
{Thinking Aloud About Vulnerability and Policy, American Association of Law Schools Midyear Meeting, Workshop on Next Generation Issues on Sex, Gender and the Law (plenary session).}
\vspace{1mm}
\cvitem
{2015}
{What the Laws Demand of Socrates---and of Us, Stanford University, Political Theory Workshop.}
\vspace{1mm}
\cvitem
{2014}
{Critical Race Science Studies?, Fordham Law Review symposium on critical race theory and empirical methods.}
\vspace{1mm}
\cvitem
{2014}
{Racial Classification and Ascriptive Injury, Loyola University Chicago School of Law faculty workshop.}
\vspace{1mm}
\cvitem
{2014}
{Underprotection, Domination, and Group-Subordinating Violence, Cardozo Law School Conference on Republicanism and Criminal Law.}
\vspace{1mm}
\cvitem
{2014}
{What the Laws Demand of Socrates---and of Us, Loyola University New Orleans School of Law faculty workshop.}
\vspace{1mm}
\cvitem
{2014}
{What the Laws Demand of Socrates---and of Us, Princeton University, Law and Public Affairs seminar.}
\vspace{1mm}
\cvitem
{2013}
{How Demanding is Occupational Liberty?, Annual Meeting of the American Philosophical Association, Pacific Division (invited commentary on Tomasi, Free Market Fairness).}
\vspace{1mm}
\subsection{Conference Presentations}
\cvitem
{2021}
{Lawless Lawmaking: The Attorney General Self-Referral Power and the Rule of Law (Co-author with Stella Elias), American Association of Law Schools Annual Meeting, Immigration Section.}
\vspace{1mm}
\cvitem
{2019}
{Reconstituting We the People: Frederick Douglass and Jurgen Habermas in Conversation, National People of Color Legal Scholarship Conference, American University.}
\vspace{1mm}
\cvitem
{2019}
{Reconstituting We the People: Frederick Douglass and Jurgen Habermas in Conversation, National Conference of Constitutional Law Scholars, Arizona State University.}
\vspace{1mm}
\cvitem
{2017}
{Author/Respondent for Author Meets Critics session on The Rule of Law in the Real World, Annual Meeting of the American Philosophical Association, Central Division.}
\vspace{1mm}
\cvitem
{2017}
{Beyond the Arab Spring: Digital Collective Action and the Rule of Law, Loyola Constitutional Law Colloquium.}
\vspace{1mm}
\cvitem
{2016}
{Scalia, Equality, Rule of Law, Southeast Association of Law Schools Annual Meeting.}
\vspace{1mm}
\cvitem
{2016}
{The Rule of Law in the Real World, Loyola Constitutional Law Colloquium.}
\vspace{1mm}
\cvitem
{2015}
{Heaven Save Us From Legal Heroes, American Association of Law Schools Annual Meeting, Law and Humanities Section.}
\vspace{1mm}
\cvitem
{2015}
{What the Laws Demand of Socrates---and of Us, American Society for Legal History.}
\vspace{1mm}
\cvitem
{2014}
{A Respect-Centered Sex Discrimination Jurisprudence, Southeast Association of Law Schools Annual Meeting.}
\vspace{1mm}
\cvitem
{2014}
{An Islamic Rule of Law, Mid-Atlantic People of Color Legal Scholarship Conference.}
\vspace{1mm}
\cvitem
{2014}
{Racial Classification and Ascriptive Injury, John Mercer Langston Conference.}
\vspace{1mm}
\cvitem
{2014}
{Racial Classification and Ascriptive Injury, Mid-Atlantic Law and Society Association Annual Meeting.}
\vspace{1mm}
\cvitem
{2014}
{Racial Classification and Ascriptive Injury, Midwest People of Color Legal Scholarship Conference.}
\vspace{1mm}
\cvitem
{2014}
{The Rule of Law in the Real World (two book MS chapters), Culp Colloquium at Duke Law School.}
\vspace{1mm}
\cvitem
{2013}
{Equal Law in an Unequal World, Arizona State University Legal Scholars Workshop.}
\vspace{1mm}
\cvitem
{2013}
{Equal Law in an Unequal World, Mid-Atlantic People of Color Legal Scholarship Conference.}
\vspace{1mm}
\cvitem
{2013}
{Equal Law in an Unequal World, Sharing Scholarship, Building Teachers Development Workshop at Albany Law School.}
\vspace{1mm}
\cvitem
{2013}
{Equal Law in an Unequal World, Southeast/Southwest People of Color Legal Scholarship Conference.}
\vspace{1mm}
\cvitem
{2013}
{Institutional Values, or How to Say What Democracy Is, Southwestern Philosophical Society.}
\vspace{1mm}
\cvitem
{2013}
{The Countermajoritarian Complaint, American Political Science Association.}
\vspace{1mm}
\cvitem
{2013}
{The People's Will and the People's Laws, American Political Science Association.}
\vspace{1mm}
\cvitem
{2013}
{The People's Will and the People's Laws, Annual Meeting of the Law and Society Association.}
\vspace{1mm}
\cvitem
{2013}
{The People's Will and the People's Laws, Association for Political Theory.}
\vspace{1mm}
\cvitem
{2013}
{The People's Will and the People's Laws, Loyola Constitutional Law Colloquium.}
\vspace{1mm}
\cvitem
{2013}
{The People's Will and the People's Laws, Midwest People of Color Legal Scholarship Conference.}
\vspace{1mm}
\cvitem
{2013}
{The Rule of Law Will Not Set You Free, Midwest Law and Economics Association.}
\vspace{1mm}
\cvitem
{2012}
{Death and Taxes in NFIB v. Sebelius, Medical Humanities Conference, Western Michigan University.}
\vspace{1mm}
\cvitem
{2012}
{Democracy, Solidarity, and the Rule of Law: Lessons from Athens, Big Ten Conference for Untenured Scholars, Indiana University Maurer School of Law.}
\vspace{1mm}
\cvitem
{2012}
{Equal Law in an Unequal World, Classcrits V, University of Wisconsin, Madison.}
\vspace{1mm}
\cvitem
{2012}
{Equal Law in an Unequal World, Washington University Regional Junior Faculty Workshop.}
\vspace{1mm}
\cvitem
{2012}
{The Countermajoritarian Complaint, Loyola Constitutional Law Colloquium.}
\vspace{1mm}
\cvitem
{2012}
{Violence and Inequality: The Liberal Critique of Domination, Western Political Science Association.}
\vspace{1mm}
\cvitem
{2010}
{Para-Ideal Theory and the Strategic Justification of Democracy, Canadian Political Science Association.}
\vspace{1mm}
\cvitem
{2010}
{Para-Ideal Theory and the Strategic Justification of Democracy, Democracy as Idea and Practice Conference, University of Oslo.}
\vspace{1mm}
\cvitem
{2010}
{When does the Rule of Law Persist? A Strategic Model of Institutional Endurance, Midwest Law and Economics Association.}
\vspace{1mm}
\cvitem
{2009}
{Don't be Afraid, the Clown's Afraid Too: Deliberation, Participation, Tolerance and Fear, Association for Political Theory.}
\vspace{1mm}
\cvitem
{2009}
{Making Space for Rosa Parks: Democratic Authorship as Political Autonomy, Public Reason Political Philosophy Podcast Symposium.}
\vspace{1mm}
\cvitem
{2009}
{Strategic Morality and Para-Ideal Theory, Graduate Conference in Political Philosophy, University of Pavia.}
\vspace{1mm}
\subsection{Campus Talks}
\cvitem
{2015}
{Corruption and the Transnational Litigation Prisoner's Dilemma (Co-Author with Maya Steinitz), Iowa Legal Studies Workshop.}
\vspace{1mm}
\cvitem
{2015}
{General Will, Causality, Equality, Institute for Advanced Study, School of Social Science.}
\vspace{1mm}
\cvitem
{2015}
{The Logic of Coordination/The Logic of Commitment (book MS chapters), Institute for Advanced Study, School of Social Science---Egalitarianism Workshop.}
\vspace{1mm}
\cvitem
{2014}
{Racial Classification and Ascriptive Injury, Iowa Legal Studies Workshop.}
\vspace{1mm}
\cvitem
{2012}
{Equal Law in an Unequal World, Iowa Legal Studies Workshop.}
\vspace{1mm}
\cvitem
{2012}
{The Countermajoritarian Complaint, Annual Meeting of the American Society for Comparative Law (hosted at Iowa).}
\vspace{1mm}
\cvitem
{2012}
{The Countermajoritarian Complaint, University of Iowa Food for Thought Speaker Series.}
\vspace{1mm}
\cvitem
{2010}
{The Oligarch, the Miser, and the Capitalist: Plato, Kant, and Marx on the Psychology and Politics of the Money-Hungry, Stanford Ethics and Politics, Ancient and Modern Workshop.}
\vspace{1mm}
\section{Legal Practice}
\cventry
{2004-6}
{Victor M. Glasberg and Associates}
{Associate Attorney}
{Alexandria, VA}
{}
{\begin{itemize}%
\item Civil rights litigation in small private public interest firm with caseload including employment discrimination,
police misconduct, First Amendment, due process and similar subject areas.
\end{itemize}}
\cventry
{2001-3}
{Oregon Law Center}
{Staff Attorney}
{Ontario, OR}
{}
{\begin{itemize}%
\item Low-income legal services representation with caseload primarily centered on employment
(especially farmworker), housing, and public benefits litigation.
\end{itemize}}
\cventry
{1999}
{ACLU of the National Capital Area}
{Summer Law Clerk}
{Washington, D.C.}
{}
{}
\section{Consulting}
\cventry
{2018-2019}
{Facebook, Inc.}
{Contract Researcher/Consultant}
{Menlo Park, CA}
{}
{\begin{itemize}%
\item Consulting relating to questions surrounding elections and democratic
integrity as well as content moderation oversight board.
Full-time for two months in summer 2018, and then continuing on
part-time basis thereafter. Formal relationship
as contractor via Pro Unlimited, Inc.
\end{itemize}}
\cventry
{07/2016}
{JSTOR Labs}
{Subject matter expert}
{Ann Arbor, CA}
{}
{\begin{itemize}%
\item Participate as outside expert on a voluntary basis in weeklong design
sprint relating to potential expansion of scholarly archiving and discovery products.
\end{itemize}}
\section{Teaching}
\subsection{Lead Instructor}
\cvitem
{2019-}
{Introduction to Quantitative and Computational Legal Reasoning, University of Iowa.}
\vspace{1mm}
\cvitem
{2019}
{Advanced Constitutional Law: The Fourteenth Amendment, Boston University.}
\vspace{1mm}
\cvitem
{2019}
{Critical Race Theory, Boston University.}
\vspace{1mm}
\cvitem
{2016-8}
{Constitutional Law I, University of Iowa.}
\vspace{1mm}
\cvitem
{2016-}
{Torts, University of Iowa.}
\vspace{1mm}
\cvitem
{2015-6}
{Policy Lab, University of Iowa.}
\vspace{1mm}
\cvitem
{2013-4}
{Professional Responsibility, University of Iowa.}
\vspace{1mm}
\cvitem
{2012-}
{Constitutional Law II, University of Iowa.}
\vspace{1mm}
\cvitem
{2010-2}
{Topics in Political Science, Stanford University, Educational Program for Gifted Youth (Stanford campus, plus Singapore Honors Academy in 2011).}
\vspace{1mm}
\subsection{Teaching Assistant}
\cvitem
{2008}
{Corruption Research Seminar, Stanford University.
\newline
(teaching assistant for Lawrence Lessig).
}
\vspace{1mm}
\cvitem
{2008}
{Introduction to Global Justice, Stanford University.
\newline
(teaching assistant for Helena de Bres and Avia Pasternak).
}
\vspace{1mm}
\cvitem
{2008}
{Philosophical Issues Concerning Race and Racism, Stanford University.
\newline
(teaching assistant for Debra Satz).
}
\vspace{1mm}
\cvitem
{2007}
{Introduction to Political Philosophy, Stanford University.
\newline
(teaching assistant for Nadeem Hussein).
}
\vspace{1mm}
\section{Service}
\subsection{University Service}
\cvitem
{2020-1}
{Member, Dean Search Committee, Northwestern University, Pritzker School of Law.}
\vspace{1mm}
\cvitem
{2020-1}
{Member, Public Interest Committee, Northwestern University, Pritzker School of Law.}
\vspace{1mm}
\cvitem
{2020-1}
{Member, Faculty Advisory Council, Northwestern University, Buffett Institute for Global Affairs.}
\vspace{1mm}
\cvitem
{2019-20}
{Member, Faculty Appointments Committee, University of Iowa, College of Law.}
\vspace{1mm}
\cvitem
{2019}
{Member, Curricular and Community Enhancement Committee, University of Iowa, College of Law.}
\vspace{1mm}
\cvitem
{2018-20}
{Member, Tenure Committee (for one junior colleague), University of Iowa, College of Law.}
\vspace{1mm}
\cvitem
{2017-9}
{Member, J.D. Admissions Committee, University of Iowa, College of Law.}
\vspace{1mm}
\cvitem
{2017-9}
{Member, Faculty Judicial Commission, University of Iowa, .}
\vspace{1mm}
\cvitem
{2017-9}
{Chair, S.J.D. Admissions Committee, University of Iowa, College of Law.}
\vspace{1mm}
\cvitem
{2017-9}
{Service on two Ph.D. committees and one M.A. committee, University of Iowa, Department of Philosophy.}
\vspace{1mm}
\cvitem
{2017-}
{Advisory Board Member, University of Iowa, Obermann Center for Advanced Studies.}
\vspace{1mm}
\cvitem
{2017}
{Public/Student Presentation, "The Unfamiliar Threats to Free Speech", University of Iowa, Student Governmemt/Lecture Committee.}
\vspace{1mm}
\cvitem
{2016-7}
{Member, Diversity Committee, University of Iowa, College of Law.}
\vspace{1mm}
\cvitem
{2016-7}
{Member, Honors and Awards Committee, University of Iowa, College of Law.}
\vspace{1mm}
\cvitem
{2016-}
{Faculty Adviser, Black Law Students Association, University of Iowa, College of Law.}
\vspace{1mm}
\cvitem
{2016-}
{Faculty Advisor, American Constitution Society Student Chapter, University of Iowa, College of Law.}
\vspace{1mm}
\cvitem
{2015-9}
{Service on one S.J.D. committee, and (2016-) adviser to another, University of Iowa, College of Law.}
\vspace{1mm}
\cvitem
{2015-6}
{Chair, Speakers Committee, University of Iowa, College of Law.}
\vspace{1mm}
\cvitem
{2014, 6}
{Faculty Advisor, AAI Moot Court Problem Creation, University of Iowa, College of Law.}
\vspace{1mm}
\cvitem
{2012-8}
{Judge, AAI Moot Court, University of Iowa, College of Law.}
\vspace{1mm}
\cvitem
{2012-4}
{Member, Speakers Committee, University of Iowa, College of Law.}
\vspace{1mm}
\cvitem
{2010-11}
{Graduate Admissions Committee, Stanford University, Department of Political Science.}
\vspace{1mm}
\cvitem
{2008}
{Graduate Organizer, Political Theory Workshop, Stanford University, Department of Political Science.}
\vspace{1mm}
\cvitem
{2008}
{Graduate Organizer (interim), Global Justice Workshop, Stanford University, Department of Political Science.}
\vspace{1mm}
\cvitem
{2008}
{Chair, Ad Hoc Graduate Incentives Committee, Political Science Graduate Students Association, Stanford University, Department of Political Science.}
\vspace{1mm}
\cvitem
{2007-8}
{Social Chair, Political Science Graduate Students Association, Stanford University, Department of Political Science.}
\vspace{1mm}
\cvitem
{1999-2000}
{Public Relations Chair, Harvard Law School, Student Public Interest Network.}
\vspace{1mm}
\subsection{Disciplinary Service: peer reviewing (various years)}
\mycvlistdoubleitem{American J. of Pol. Sci.}{American Pol. Sci. Rev.}
\mycvlistdoubleitem{British J. of Pol. Sci.}{Cambridge Univ. Press}
\mycvlistdoubleitem{Columbia Univ. Press}{Crit. Rev. of Int'l Soc. \& Pol. Phil.}
\mycvlistdoubleitem{European J. of Pol. Theory}{Hart Pub.}
\mycvlistdoubleitem{Int'l J. of Law \& Econ.}{J. of Legal Analysis}
\mycvlistdoubleitem{J. of Pol. Phil.}{J. of Politics}
\mycvlistdoubleitem{Law \& Policy}{Law \& Soc. Inquiry}
\mycvlistdoubleitem{McGill Univ. Press}{Northwestern Univ. Law Rev.}
\mycvlistdoubleitem{Oxford Univ. Press}{Routledge}
\mycvlistdoubleitem{Social Theory \& Practice}{South Carolina Law Rev.}
\vspace{1mm}
\subsection{Community Service and Outreach}
\cvitem
{2016-9}
{Member, Iowa City Telecommunications Commission.}
\vspace{1mm}
\cvitem
{2016}
{Panelist: 'Family Law', Iowa LGBT Rural Summit (USDA/National Center for Lesbian Rights/Drake Law School).}
\vspace{1mm}
\cvitem
{2016}
{Presentation, 'Loving v. Virginia,' African-American Museum of Iowa/Cedar Rapids Public Library.}
\vspace{1mm}
\cvitem
{2015, 6}
{Guest blogger, Prawfsblawg.}
\vspace{1mm}
\cvitem
{2015}