-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
590 lines (579 loc) · 22.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Michael Z. Lee - Computer Science PhD @University of Texas: Austin</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="include/css/bootstrap.css" rel="stylesheet" />
<link href="include/style.css" rel="stylesheet" />
<style>
body {
/* 60px to make the container go all the way to the bottom of the topbar */
padding-top: 60px;
}
</style>
<link href="include/css/bootstrap-responsive.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<!-- <link rel="shortcut icon" href="include/ico/favicon.ico"> -->
<link rel="apple-touch-icon-precomposed" sizes="144x144"
href="include/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114"
href="include/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72"
href="include/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed"
href="include/ico/apple-touch-icon-57-precomposed.png">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<span class="brand">Michael Z. Lee</span>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a id="about-nav" class="active" href="#about">About</a></li>
<li><a id="research-nav" href="#research">Research</a></li>
<li><a id="publications-nav" href="#publications">Publications</a></li>
<!-- <li><a id="projects-nav" href="#projects">Projects</a></li> -->
<li><a id="contact-nav" href="#contact">Contact</a></li>
<li><a id="cv-nav" href="#cv">CV</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container no-js-hide">
<h1 id="title"></h1>
<!-- Content goes here -->
<div id="content"></div>
</div> <!-- /container -->
<div class="hidden-data container" id="about-data">
<span id="about" style="font-size: 3em;"> </span>
<h1>About</h1>
<div class="background hidden">
url(pics/me.png) no-repeat bottom right
</div>
<div class="info">
<p>
I am a fourth year, PhD student
in <a href="https://cs.utexas.edu/">Computer Science</a> at
<a href="https://utexas.edu/">The University of Texas at
Austin</a>. My adviser is
<a href="https://cs.utexas.edu/~witchel">Professor Emmett
Witchel</a> and I am working as part of the Operating
systems and Architecture group and
the <a href="https://www.cs.utexas.edu/lasr/">Laboratory for
Advanced Systems Research</a>. I did my undergraduate work
at the <a href="https://umich.edu/">University of Michigan:
Ann Arbor</a> in <a href="https://cse.umich.edu/">Computer
Science</a>
and <a href="https://math.umich.edu">Mathematics</a> with a
minor
in <a href="https://www.lsa.umich.edu/econ">Economics</a>.
</p>
</div>
</div>
<div class="hidden-data container" id="research-data">
<span id="research" style="font-size: 3em;"> </span>
<h1>Research</h1>
<div class="info">
<h3>Statement</h3>
<p>
My main research focus is in operating systems and security
with a concentration in how virtualization can help enable
novel security properties.
</p>
<p>
I am also interested in cryptography and implementing new
cryptographic tools in a practical setting.
</p>
<p>
See a full listing of my
<a onclick="selectPage('publications');" href="#!/publications">publications</a>.
</p>
<h3>Research Projects</h3>
<ul>
<li>
<h4><a href="http://zweb.cs.utexas.edu/users/osa/anon-pass/">Anon-Pass</a></h4>
Anon-Pass provide practical anonymity for users of
subscription services. It allows users to authenticate to
a service anonymously (i.e., prove the to service s/he
should be allowed access) without linking the current
access with any prior login. But at the same time, it
guarantees that if a user tries to log in more than once
at the same time, the service will be able to detect the
double use of a single credential.<br />
[<a href="https://github.com/ut-osa/anon-pass">source code</a>]
</li>
<li>
<h4>InkTag</h4>
InkTag is a virtualization-based architecture that gives
strong safety guarantees to high-assurance processes even
in the presence of a malicious operating system. We
introduce paraverification, a technique that simplifies
the InkTag hypervisor by forcing the untrusted operating
system to participate in its own verification.
</li>
<li>
<h4>Lacuna</h4>
Modern systems keep long memories and an adversary who
gains access to a Linux system can recover the contents of
applications' windows, audio buffers, and data remaining
in device drivers — long after the applications have
terminated. Lacuna is a system that allows users to run
programs in "private sessions." After the session is
over, all memories of its execution are erased.<br />
[<a href="https://github.com/ut-osa/lacuna">source code</a>]
</li>
</ul>
</div>
</div>
<div class="hidden-data container" id="publications-data">
<span id="publications" style="font-size: 3em;"> </span>
<h1>Publications</h1>
<div class="info">
<h3>Computer Science Publications</h3>
<h4>2014</h4>
<ul>
<li>
<div class="paper-title">Pebbles: Fine-Grained Data Management Abstractions for Modern Operating Systems</div>
<div class="paper-bib">
<span class="authors">
Riley Spahn, Jonathan Bell, <span class="me">Michael Z. Lee</span>, Sravan Bhamidipati, Roxana Geambasu, Gail Kaiser.
</span>
In the
<span class="conference">
Proceedings of the USENIX Operating Systems Design and Implementation (OSDI), Broomfield, CO, October 2014.
</span>
</div>
<div class="paper-links">
<span>[<a href="https://www.usenix.org/conference/osdi14">conf</a>]</span>
<span>[<a href="pubs/spahn_osdi14.pdf">pdf</a>]</span>
</div>
</li>
<li>
<div class="paper-title">Application-Defined Decentralized Access Control</div>
<div class="paper-bib">
<span class="authors">
Yuanzhong Xu, Alan M. Dunn, Owen S. Hofmann, <span class="me">Michael Z. Lee</span>, Syed Akbar Mehdi, Emmett Witchel.
</span>
In the
<span class="conference">
Proceedings of the 2014 USENIX Annual Technical Conference (ATC), Philadelphia, PA, June 2014.
</span>
</div>
<div class="paper-links">
<span>[<a href="https://www.usenix.org/conference/atc14">conf</a>]</span>
<span>[<a href="pubs/xu_atc14.pdf">pdf</a>]</span>
</div>
</li>
</ul>
<h4>2013</h4>
<ul>
<li>
<div class="paper-title">Anon-Pass: Practical Anonymous Subscriptions</div>
<div class="paper-bib">
<span class="authors">
<span class="me">Michael Z. Lee</span>, Alan M. Dunn, Jonathan Katz, Brent Waters, Emmett Witchel.
</span>
In the
<span class="conference">
Proceedings of the 34th IEEE Symposium on Security and Privacy (S&P), San Francisco, CA, May 2013.
</span>
</div>
<div class="paper-links">
<span>[<a href="http://www.ieee-security.org/TC/SP2013/">conf</a>]</span>
<span>[<a href="pubs/lee_sp13-anon-pass.pdf">pdf</a>]</span>
<span>[<a href="pubs/lee_sp13_fullversion.pdf">full version</a>]</span>
<span>[<a href="pubs/lee_sp13_slides.pdf">slides</a>]</span>
<span>[<a href="http://z.cs.utexas.edu/users/osa/anon-pass/">project webpage</a>]</span>
</div>
</li>
<li>
<div class="paper-title">InkTag: Secure Applications on an Untrusted Operating System</div>
<div class="paper-bib">
<span class="authors">
Owen S. Hofmann, Alan M. Dunn, Sangman Kim, <span class="me">Michael Z. Lee</span>, Emmett Witchel.
</span>
In the
<span class="conference">
Proceedings of the 18th International Conference on Architectural Support for Programming Languages and Operating Systems (ASPLOS), Houston, TX, March 2013.
</span>
</div>
<div class="paper-links">
<span>[<a href="http://asplos13.rice.edu/">conf</a>]</span>
<span>[<a href="pubs/hofmann_asplos13-inktag.pdf">pdf</a>]</span>
</div>
</li>
</ul>
<h4>2012</h4>
<ul>
<li>
<div class="paper-title">Eternal Sunshine of the Spotless Machine: Protecting Privacy with Ephemeral Channels</div>
<div class="paper-bib">
<span class="authors">
Alan M. Dunn, <span class="me">Michael Z. Lee</span>, Suman Jana, Sangman Kim, Mark Silberstein, Yuanzhong Xu, Vitaly Shmatikov, Emmett Witchel.
</span>
In the
<span class="conference">Proceedings of the 10th USENIX Symposium on Operating Systems Design and Implementation (OSDI 2012), Hollywood, California, October 2012.</span>
</div>
<div class="paper-links">
<span>[<a href="https://www.usenix.org/conference/osdi12/tech-schedule/osdi-12-program">conf</a>]</span>
<span>[<a href="pubs/dunn_osdi12.pdf">pdf</a>]</span>
</div>
</li>
<li>
<div class="paper-title">Improving Server Applications with System Transactions</div>
<div class="paper-bib">
<span class="authors">
Sangman Kim, <span class="me">Michael Z. Lee</span>, Alan M. Dunn, Owen S. Hofmann, Xuan Wang, Emmett Witchel, Donald E. Porter.
</span>
In the
<span class="conference">Proceedings of the 7th ACM European Conference on Computer Systems (EuroSys 2012), Bern, Switzerland, April 2012.</span>
</div>
<div class="paper-links">
<span>[<a href="http://eurosys2012.unibe.ch/program/conference">conf</a>]</span>
<span>[<a href="pubs/kim_eurosys12.pdf">pdf</a>]</span>
</div>
</li>
</ul>
<h3>Other Publications</h3>
<ul>
<li>
<div class="paper-title">Anon-Pass: Practical Anonymous Subscriptions</div>
<div class="paper-bib">
<span class="authors">
<span class="me">Michael Z. Lee</span>, Alan M. Dunn, Jonathan Katz, Brent Waters, Emmett Witchel.
</span>
In
<span class="conference">
IEEE Security & Privacy (Volume:12, Issue:3) (S&P Magazine), July/August 2014.
</span>
</div>
<div class="paper-links">
<span>[<a href="http://ieeexplore.ieee.org/xpl/articleDetails.jsp?arnumber=6678363">article</a>]</span>
</div>
</li>
<li>
<div class="paper-title">FIREAXE: The DHS Secure Design Competition Pilot</div>
<div class="paper-bib">
<span class="authors">
Yevgeniy Vorobeychik, <span class="me">Michael Z. Lee</span>, Adam Anderson, Robert Mitchell Adair, William Dee Atkins, Alan Berryhill, Daming Dominic Chen, Ben Cook, Jeremy Erickson, Steve Hurd, Ron Olsberg, Lyndon Pierson, Owen Redwood.
</span>
In the
<span class="conference">
Proceedings of the 8th Cyber Security and Information Intelligence Research Workshop (CSIIRW8), Oak Ridge, Tennessee, January 2013.
</span>
</div>
<div class="paper-links">
<span>[<a href="http://csiir.ornl.gov/csiirw/12/index.html">conf</a>]</span>
<span>[<a href="pubs/vorobeychik_csiirw8.pdf">pdf</a>]</span>
<span>[<a href="pubs/vorobeychik_csiirw8_slides.pdf">slides</a>]</span>
</div>
</li>
<li>
<div class="paper-title">On Nonsingular Regular Magic Squares of Odd Order</div>
<div class="paper-bib">
<span class="authors">
<span class="me">Michael Z. Lee</span>, Elizabeth Love, Sivaram K. Narayan, Elizabeth Wascher, Jordan D. Webster.
</span>
Appeared in
<span class="conference">Linear Algebra and its Applications.</span>
Volume 437, Issue 6, 15 September 2012, Pages 1346-1355.
</div>
<div class="paper-links">
<span>[<a href="http://www.sciencedirect.com/science/article/pii/S0024379512002686">link</a>]</span>
</div>
</li>
</ul>
<h3>Program Committees</h3>
<ul>
<li><div class="paper-title">2012:</div>
<div class="paper-bib">
8th Annual Cyber Security and Information Intelligence Research Workshop
[<a href="http://www.csiir.ornl.gov/csiirw/12/index.html">link</a>]
</div>
</li>
</ul>
</div>
</div>
<div class="hidden-data container" id="projects-data">
<span id="projects" style="font-size: 3em;"> </span>
<h1>Other Projects and Links</h1>
<div class="info">
<h3>Other projects</h3>
<ul>
<li><a href="http://webian.org/shell/">Webian Shell</a></li>
<li><a href="http://github.com/mzlee/">more</a></li>
</ul>
</div>
</div>
<div class="hidden-data container" id="contact-data">
<span id="contact" style="font-size: 3em;"> </span>
<h1>Contact</h1>
<div class="info">
<h3>Mailing Address</h3>
<span id="mailingaddress">This does not display without JavaScript enabled</span>
<h3>Email Address</h3>
<span id="emailaddress">This does not display without JavaScript enabled</span>
<h3>External Website</h3>
<a href="http://michaelzlee.com">
michaelzlee.com
</a>
<h3>Other</h3>
<ul>
<li><a href="https://twitter.com/#!/michaelzlee">Twitter</a></li>
<li><a href="https://github.com/mzlee">GitHub</a></li>
</ul>
</div>
</div>
<div class="hidden-data container" id="cv-data">
<span id="cv" style="font-size: 3em;"> </span>
<h1>CV</h1>
<div class="info">
<h2>education:</h2>
<h4>The University of Texas at Austin</h4>
<ul>
<li>Pursuing a PhD in Computer Science</li>
<li>Began 2010</li>
</ul>
<h4>University of Michigan: Ann Arbor</h4>
<ul>
<li>Bachelors of Engineering in Computer Science Engineering, May 2010</li>
<li>Bachelors of Science in Mathematics, May 2010</li>
</ul>
<h4>Central Michigan University</h4>
<ul>
<li>Dual Enrolled during High School in general studies</li>
</ul>
<h2 id="CV-research">research:</h2>
<h4>2014</h4>
<ul>
<li>
<div class="paper-title">Pebbles: Fine-Grained Data Management Abstractions for Modern Operating Systems</div>
<div class="paper-bib">
<span class="authors">
Riley Spahn, Jonathan Bell, <span class="me">Michael Z. Lee</span>, Sravan Bhamidipati, Roxana Geambasu, Gail Kaiser.
</span>
In the
<span class="conference">
Proceedings of the USENIX Operating Systems Design and Implementation (OSDI), Broomfield, CO, October 2014.
</span>
</div>
</li>
<li>
<div class="paper-title">Application-Defined Decentralized Access Control</div>
<div class="paper-bib">
<span class="authors">
Yuanzhong Xu, Alan M. Dunn, Owen S. Hofmann, <span class="me">Michael Z. Lee</span>, Syed Akbar Mehdi, Emmett Witchel.
</span>
In the
<span class="conference">
Proceedings of the 2014 USENIX Annual Technical Conference (ATC), Philadelphia, PA, June 2014.
</span>
</div>
</li>
</ul>
<h4>2013</h4>
<ul>
<li>
<div class="paper-title">Anon-Pass: Practical Anonymous Subscriptions</div>
<div class="paper-bib">
<span class="authors">
<span class="me">Michael Z. Lee</span>, Alan M. Dunn, Jonathan Katz, Brent Waters, Emmett Witchel.
</span>
In the
<span class="conference">
Proceedings of the 34th IEEE Symposium on Security and Privacy (S&P), San Francisco, CA, May 2013.
</span>
</div>
</li>
<li>
<div class="paper-title">InkTag: Secure Applications on an Untrusted Operating System</div>
<div class="paper-bib">
<span class="authors">
Owen S. Hofmann, Alan M. Dunn, Sangman Kim, <span class="me">Michael Z. Lee</span>, Emmett Witchel.
</span>
In the
<span class="conference">
Proceedings of the 18th International Conference on Architectural Support for Programming Languages and Operating Systems (ASPLOS), Houston, TX, March 2013.
</span>
</div>
</li>
</ul>
<h4>2012</h4>
<ul>
<li>
<div class="paper-title">Eternal Sunshine of the Spotless Machine: Protecting Privacy with Ephemeral Channels</div>
<div class="paper-bib">
<span class="authors">
Alan M. Dunn, <span class="me">Michael Z. Lee</span>, Suman Jana, Sangman Kim, Mark Silberstein, Yuanzhong Xu, Vitaly Shmatikov, Emmett Witchel.
</span>
In the
<span class="conference">Proceedings of the 10th USENIX Symposium on Operating Systems Design and Implementation (OSDI 2012), Hollywood, California, October 2012.</span>
</div>
</li>
<li>
<div class="paper-title">Improving Server Applications with System Transactions</div>
<div class="paper-bib">
<span class="authors">
Sangman Kim, <span class="me">Michael Z. Lee</span>, Alan M. Dunn, Owen S. Hofmann, Xuan Wang, Emmett Witchel, Donald E. Porter.
</span>
In the
<span class="conference">Proceedings of the 7th ACM European Conference on Computer Systems (EuroSys 2012), Bern, Switzerland, April 2012.</span>
</div>
</li>
</ul>
<h3>Other Publications</h3>
<ul>
<li>
<div class="paper-title">FIREAXE: The DHS Secure Design Competition Pilot</div>
<div class="paper-bib">
<span class="authors">
Yevgeniy Vorobeychik, <span class="me">Michael Z. Lee</span>, Adam Anderson, Robert Mitchell Adair, William Dee Atkins, Alan Berryhill, Daming Dominic Chen, Ben Cook, Jeremy Erickson, Steve Hurd, Ron Olsberg, Lyndon Pierson, Owen Redwood.
</span>
In the
<span class="conference">
Proceedings of the 8th Cyber Security and Information Intelligence Research Workshop (CSIIRW8), Oak Ridge, Tennessee, January 2013.
</span>
</div>
</li>
<li>
<div class="paper-title">On Nonsingular Regular Magic Squares of Odd Order</div>
<div class="paper-bib">
<span class="authors">
<span class="me">Michael Z. Lee</span>, Elizabeth Love, Sivaram K. Narayan, Elizabeth Wascher, Jordan D. Webster.
</span>
Appeared in
<span class="conference">Linear Algebra and its Applications.</span>
Volume 437, Issue 6, 15 September 2012, Pages 1346-1355.
</div>
</li>
</ul>
<h2 id="CV-teaching">teaching:</h2>
<ul>
<li class="block">
<div class="teaching-course">TA for CS 315</div>
Algorithms and Data Structures<br />
Professor: Gordan Novak<br />
UT: Austin<br />
August 2010 - December 2010
</li>
<li class="block">
<div class="teaching-course">IA for EECS 281</div>
Data Structures and Algorithms<br />
Professors: David Chesney and Zeeshan Syed<br />
UM: Ann Arbor<br />
January 2010 - April 2010
</li>
<li class="block">
<div class="teaching-course">IA for EECS 281</div>
Data Structures and Algorithms<br />
Professors: H.V. Jagadish and Igor Markov<br />
UM: Ann Arbor<br />
September 2009 - December 2009
</li>
<li class="block">
<div class="teaching-course">IA for EECS 281</div>
Data Structures and Algorithms<br />
Professors: David Chesney and Don Winsor<br />
UM: Ann Arbor<br />
January 2009 - April 2009
</li>
<li class="block">
<div class="teaching-course">Grader for EECS 281</div>
Data Structures and Algorithms<br />
Professor: H.V. Jagadish<br />
UM: Ann Arbor<br />
January 2008 - April 2008
</li>
</ul>
<h2 id="CV-other experience">internships:</h2>
<ul>
<li class="block">
<div class="intern-company">Facebook</div>
PhD Software Engineering Intern<br />
Team: Security Infrastructure<br />
Primary Language: PHP<br />
June 2013 - September 2013
</li>
<li class="block">
<div class="intern-company">Sandia Corporation</div>
Graduate CCD Intern<br />
Team: 5624<br />
Primary Language: c, c++, Python<br />
May 2012 - August 2012
</li>
<li class="block">
<div class="intern-company">Qualcomm QCT</div>
Software Engineering Intern<br />
Team: SecureMSM in Core BSP<br />
Primary Language: c<br />
May 2010 - August 2010
</li>
<li class="block">
<div class="intern-company">Microsoft Windows Live</div>
Software Developer in Test Intern<br />
Team: Windows Live Experience<br />
Primary Language: C#<br />
May 2009 - August 2009
</li>
<li class="block">
<div class="intern-company">Zattoo Inc.</div>
Software Engineering Intern<br />
Team: Software Services<br />
Primary Language: Python<br />
April 2008 - December 2008
</li>
</ul>
</div>
<div class="hidden-data container" id="erdos-data">
<span id="erdos" style="font-size: 3em;"> </span>
<div class="info">
<h1>Erdős Number</h1>
<h4>The shortest path I've found from me to Paul Erdős has four steps.</h4>
<ol>
<li>1. András Kroó (On convergent interpolatory polynomials.)</li>
<li>2. Terry D. Lenker (Local and global Lipschitz constants.)</li>
<li>3. Sivaram K. Narayan (On Schur D-stable matrices.)</li>
<li>4. Michael Z. Lee (On nonsingular regular magic squares of odd order.)</li>
</ol>
<p>
This was found using the AMS Math Sci
Net <a href="http://www.ams.org/mathscinet/collaborationDistance.html">collaboration
distance tool</a>.
</p>
</div>
</div>
</div>
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="include/js/jquery.js"></script>
<script src="include/js/bootstrap-transition.js"></script>
<script src="include/js/bootstrap-alert.js"></script>
<script src="include/js/bootstrap-modal.js"></script>
<script src="include/js/bootstrap-dropdown.js"></script>
<script src="include/js/bootstrap-scrollspy.js"></script>
<script src="include/js/bootstrap-tab.js"></script>
<script src="include/js/bootstrap-tooltip.js"></script>
<script src="include/js/bootstrap-popover.js"></script>
<script src="include/js/bootstrap-button.js"></script>
<script src="include/js/bootstrap-collapse.js"></script>
<script src="include/js/bootstrap-carousel.js"></script>
<script src="include/js/bootstrap-typeahead.js"></script>
<script src="include/site-script.js"></script>
</body>
</html>