-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunning.html
More file actions
105 lines (90 loc) · 5 KB
/
running.html
File metadata and controls
105 lines (90 loc) · 5 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
95
96
97
98
99
100
101
102
103
104
105
<!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="">
<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">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="running.html">Running <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Math</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">NYC</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Apps</a>
</li>
</ul>
</div>
</nav>
<main role="main">
<div class="bg"></div>
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container">
<h1 class="display-3">Rywit:</h1>
<p>Math, Computers, Running, New York City.</p>
<p><a class="btn btn-primary btn-lg" href="#" role="button">Learn more »</a></p>
</div>
</div>
<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>Ultrasignup Results</h2>
<p>Check out my ultra history on <a href="//ultrasignup.com">Ultrasignup</a>. To date, I've completed 4 100-milers, 2 100Ks, 7 50-milers and 5 50Ks. I've also done one 12-hour and four 6-hours timed races. </p>
<p><a class="btn btn-secondary" href="//ultrasignup.com/results_participant.aspx?fname=Ryan&lname=Witko" role="button">Results »</a></p>
</div>
</div>
<!-- Example row of columns -->
<div class="row">
<div class="col-md-4">
<h2>Strava Training Log</h2>
<p>I have logged nearly every run since December 2013 using Strava. Check out my most recent activities. </p>
<p><a class="btn btn-secondary" href="https://www.strava.com/athletes/2208973" role="button">View history »</a></p>
</div>
</div>
<hr>
</div> <!-- /container -->
</main>
<footer class="container">
<p>© Rywit 2017</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>