-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (77 loc) · 4.57 KB
/
index.html
File metadata and controls
94 lines (77 loc) · 4.57 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" type="image/png" href="../img/integral.png"/>
<title>rywit</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" href="css/rywit.css">
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<a class="navbar-brand" href="#">Rywit</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Running</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Math</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Apps</a>
</li>
</ul>
</div>
</nav>
<main role="main">
<div class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-4">
<h2>The Statistical Guide to a Silver Buckle</h2>
<p>In this paper, we analyze the results of the 2017 Western States 100 Mile Endurance Run. We build a simple classification model which estimates each runner’s likelihood of finishing under 24 hours and earning a coveted silver buckle. </p>
<p><a class="btn btn-secondary" href="docs/Witko2017SplitAnalysis.pdf" role="button">View paper »</a></p>
</div>
<div class="col-md-4">
<h2>An Analysis of the Western States Lottery</h2>
<p>The Western States Endurance Run is America’s most prestegious 100-mile trail ultramarathon. But before runners can conquer 100 miles, they must first conquer the “2^(n-1)” lottery system used to select the entrants. This paper provides a quantitative analysis of several key features of this lottery system. </p>
<p><a class="btn btn-secondary" href="docs/WesternStatesLotteryAnalysis.pdf" role="button">View paper »</a></p>
</div>
<div class="col-md-4">
<h2>Unary Continued Fraction Generator</h2>
<p>A web app for generating Unary Continued Fraction representations of ordinary real or complex fractions. </p>
<p><a class="btn btn-secondary" href="math/gaussian.html" role="button">Open app »</a></p>
</div>
</div>
<hr>
</div> <!-- /container -->
</main>
<footer class="container">
<p>
<a href="//twitter.com/RyanWitko"><img src="img/twitter.png" height="32" width="32"/></a>
<a href="//www.strava.com/athletes/2208973"><img src="img/strava.jpg" height="32" width="32"/></a>
<a href="//github.com/rywit"><img src="img/github.png" height="32" width="32"/></a>
<a href="//www.linkedin.com/in/ryan-witko-5a20005a"><img src="img/linkedin.png" height="32" width="32"/></a>
<a href="//ultrasignup.com/results_participant.aspx?fname=Ryan&lname=Witko"><img src="img/ultrasignup.png" height="32" width="136"/></a>
</p>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
<!-- Custom JS files -->
<script src="js/rywit.js"></script>
</body>
</html>