This repository has been archived by the owner on Aug 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
71 lines (68 loc) · 3.2 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>How long since Google said a Google Drive Linux client is coming?</title>
<meta name="description" content="We've been waiting since April 24, 2012 for a Google Drive Linux client.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:image" content="https://abevoelker.github.io/how-long-since-google-said-a-google-drive-linux-client-is-coming/img/waiting.gif" />
<meta property="og:image:width" content="250" />
<meta property="og:image:height" content="188" />
<meta property="og:description" content="We've been waiting since April 24, 2012 for a Google Drive Linux client." />
<meta property="twitter:card" content="summary" />
<meta property="twitter:title" content="How long since Google said a Google Drive Linux client is coming?" />
<meta property="twitter:url" content="https://abevoelker.github.io/how-long-since-google-said-a-google-drive-linux-client-is-coming/" />
<meta property="twitter:description" content="We've been waiting since April 24, 2012 for a Google Drive Linux client." />
<meta property="twitter:creator" content="abevoelker" />
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: table
}
#content {
display: table-cell;
text-align: center;
}
</style>
</head>
<body>
<div class="container" id="content">
<div class="page-header">
<h1 id="since" title="Tue Apr 24 10:28:44 2012 +0100" datetime="2012-04-24T10:28:44+01:00">
Too many years
</h1>
</div>
<p>
have elapsed since <a href="https://productforums.google.com/forum/#!category-topic/drive/report-a-problem/KeC7Ax76dAA">Google said to "hang tight" about Linux support for Google Drive</a>.
</p>
<p>
<strong><a href="https://tools.google.com/dlpage/drive">We're still waiting</a></strong>.
</p>
<a href="https://productforums.google.com/forum/#!category-topic/drive/report-a-problem/KeC7Ax76dAA">
<img class="img-rounded" src="img/waiting.gif"></img>
</a>
<hr />
<p class="text-muted">
Made with frustration by <a href="https://twitter.com/abevoelker">@abevoelker</a>
</p>
</div>
<script src="js/moment.min.js"></script>
<script src="js/moment-precise-range.min.js"></script>
<script>
var announced = moment.utc('2012-04-24T10:28:44+01:00'); //.startOf('day');
var since = document.getElementById('since');
var render = function() {
var now = moment(); //.startOf('day');
since.innerHTML = moment.preciseDiff(announced, now);
}
render();
this.interval = setInterval(render, 1000);
</script>
</body>
</html>