-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (44 loc) · 2.03 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
<!DOCTYPE html>
<html>
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-1441459-14"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-1441459-14');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css?v=174577373">
<link rel="icon" href="data:,">
<title>Go Time</title>
</head>
<body>
<div class="content">
<div class="verbiage">
<h3>
What time should I leave?
</h3>
Working backwards to figure out when to get going is familiar to all of us:
<p>
<strong><i>Flight leaves at 9:00, so be at the gate by 8:30, leave 20 minutes to get
through the terminal, 20 for TSA, 15 to park and take shuttle, 45 minute drive..."</i></strong>
</p>
<p>The calculator below can help!</p>
<ol>
<li>Enter your target end time (24-hour format)</li>
<li>Add the duration in minutes for intermediate steps (press Enter to insert rows)</li>
<li>Bookmark the page at any time to use as a template for next time (<a href="/?state=WzEsIjg6MDAiLCJTdGFydCBtYWtpbmcgY29va2llcyIsIiIsIk1peCBpbmdyZWRpZW50cyBhbmQgcHJlaGVhdCBvdmVuIiwxNSwiTGF5IG91dCBjb29raWVzIiwxMCwiQmFrZSIsMTIsIkNvb2wiLDUsIkVhdCBjb29raWVzIiwiIl0=">example</a>)</li>
</ol>
<p>
<br>
Visit the <a href="https://github.com/kalafut/gotime">project on GitHub</a> if you find bugs or have questions.
</p>
</div>
<div id="dest"></div>
</div>
<script src="mithril.min.js"></script>
<script src="index.js?v=574577373"></script>
</body>
</html>