-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandom.html
More file actions
28 lines (25 loc) · 1.18 KB
/
random.html
File metadata and controls
28 lines (25 loc) · 1.18 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
<!DOCTYPE html>
<head>
<title>random</title>
<script type="text/javascript">
function redirect(){
var urls = [
"http://startover.github.io/articles/2016/09/14/golang-for-pythonistas-testing/",
"http://startover.github.io/articles/2016/09/07/golang-for-pythonistas-package/",
"http://startover.github.io/articles/2016/08/30/golang-for-pythonistas-quickstart/",
"http://startover.github.io/articles/2016/08/22/golang-for-pythonistas-environment/",
"http://startover.github.io/articles/2016/08/15/golang-for-pythonistas/",
"http://startover.github.io/articles/2016/05/13/cloudinsight-cacti-integration/",
"http://startover.github.io/articles/2016/04/28/cloudinsight-nagios-integration/",
"http://startover.github.io/articles/2016/03/15/python-ruby-go-node-benchmark/",
"http://startover.github.io/articles/2015/06/06/python-mock-introduction/",
"http://startover.github.io/articles/2015/05/18/python-performance-tips/",
"http://startover.github.io/articles/2015/04/27/python-decorator-mistake/",
""];
var index = Math.floor(Math.random() * (urls.length-1));
window.location = urls[index];
}
</script>
<body onload="redirect()">
</body>
</html>