-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (41 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Munroe Score Checker</title>
<link href="/css/global.css" rel="stylesheet" />
<script src="/js/jquery.min.js"></script>
<script src="/js/global.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-92928-29']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<h1>Munroe Score</h1>
<p>
This site is based on the <a href="http://xkcd.com/903/" rel="external">XKCD comic</a>,
designed to put to the test the idea that every Wikipedia article
eventually leads to <strong>Philosophy</strong>. This is now known as <strong>Munroe's Law</strong>.
</p>
<p>
The <strong>Munroe Score</strong> is the number of articles you have to go through
before reaching <strong>Philosophy</strong>.
</p>
<p>
For more details on this phenomenon, check out this
<a href="http://en.wikipedia.org/wiki/Wikipedia:Getting_to_Philosophy" rel="external">relevant wikipedia page</a>.
</p>
<p>
<strong>Important:</strong> This site is a work in progress.<br />
All code is now available on
<a href="https://github.com/BluSyn/MunroeScore.com" rel="external">GitHub</a>
</p>
</body>
</html>