This repository was archived by the owner on Jan 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
135 lines (124 loc) · 5.66 KB
/
index.html
File metadata and controls
135 lines (124 loc) · 5.66 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="your #1 source for accurate linux graphs">
<meta name="keywords" content="accurate,linux,graphs">
<meta property="og:site_name" content="accuratelinuxgraphs.com">
<meta property="og:title" content="accuratelinuxgraphs.com">
<meta property="og:description" content="your #1 source for accurate linux graphs">
<meta property="og:type" content="website">
<meta property="og:url" content="https://accuratelinuxgraphs.com/">
<meta property="og:image" content="https://accuratelinuxgraphs.com/files/img/ico/grain.png">
<title>accurate linux graphs</title>
<link rel="icon" type="image/x-icon" href="files/img/ico/grain.png">
<link rel="stylesheet" href="files/css/index.css">
<script type="text/javascript" src='files/js/index.js'></script>
</head>
<header>
<h1><a href="fizzbuzz.html">accuratelinuxgraphs.com</a></h1>
<p class="widen">YOUR source for the most ACCURATE linux graphs around.</p>
<img id="site-icon" src="files/img/ico/grain.png" title="a project of the grain"></img>
<script>
function neverAskAgain() {
localStorage.setItem('neverAskAgain', 'true');
window.location.href = "accuracy.html";
}
function checkIfNeverAskAgain() {
stopAnimations()
if (localStorage.getItem('neverAskAgain') === 'true') {
// remove every element from the page except for the <body> and <html> tags
var elements = document.body.children;
for (var i = elements.length - 1; i >= 0; i--) {
var element = elements[i];
if (element.tagName !== 'BODY' && element.tagName !== 'HTML') {
element.parentNode.removeChild(element);
}
}
var message = document.createElement('h1');
message.innerHTML = "You will be redirected to accuracy shortly. We are verifying your accuracy.";
document.body.appendChild(message);
// add a button to stop the redirect
var button = document.createElement('button');
button.innerHTML = "<p>Stop redirect</p>";
button.onclick = function() {
// remove the localStorage item and reload the page
localStorage.removeItem('neverAskAgain');
location.reload();
};
document.body.appendChild(button);
var randomNum = Math.random();
if (randomNum < 0.33) {
// say "You are not accurate"
var message = document.createElement('h1');
message.innerHTML = "You are not accurate";
document.body.appendChild(message);
setTimeout(function() {
window.location.href = "redirect3.html";
}, 2000);
} else if (randomNum < 0.66) {
setTimeout(function() {
window.location.href = "accuracy.html";
}, 2000);
} else {
setTimeout(function() {
window.location.href = "accuracy.html";
}, 2000);
}
}
}
</script>
</header>
<body onload="checkIfNeverAskAgain()">
<hr>
<a href="https://store.accuratelinuxgraphs.com"><img class="ad" src="files/img/ad.gif"></a>
<a href="https://stats.atl.dev"><img class="ad" src="files/img/ad2.gif"></a>
<hr>
<marquee behavior="alternate" scrollamount="50" direction="left">
<h1>ACCURACY ALERT</h1>
</marquee>
<h1>due to some CSS funkyness the page may cause epileptic seizures</h1>
<h1>if you are prone to seizures please close this page</h1>
<h1>if you are not, click below to continue or click the continue and never ask again button</h1>
<form action="accuracy.html">
<button type="submit"><p>continue</p></button>
<button type="button" onclick="neverAskAgain()"><p>continue and never ask again</p></button>
</form>
<h1>still want to experience the accuracy experience without this risk?</h1>
<h1>go to atl.moe by clicking below, its a bit less accurate but a bit more kawaii</h1>
<form action="https://atl.moe">
<button type="submit"><p>go to atl.moe</p></button>
</form>
<noscript>
<h1>enable javascript you fool</h1>
<h1>may the gods smite you for your foolishness</h1>
<form action="redirect3.html">
<button type="submit"><p>click here if you dont want to enable javascript</p></button>
</form>
</noscript>
</div>
</body>
<footer>
<script>
// add "<img id="site-icon" src="files/img/ico/grain.png"></img>" 3 times to the footer
for (var i = 0; i < 4; i++) { // This code creates a loop that will run 5 times
var img = document.createElement('img'); // THiis code creates a "element"
img.id = "site-icon"; // This code sets the id of the element to "site-icon"
img.src = "files/img/ico/grain.png"; // This code sets the source of the image to "files/img/ico/grain.png"
document.querySelector('footer').appendChild(img); // Grain
} // End of the loop
</script>
<a href="https://accuratelinuxgraphs.com/easteregg.html"><img id="site-icon" src="files/img/ico/grain.png" class="easteregg" ></img></a>
<p>accuratelinuxgraphs.com</p>
<script>
// add "<img id="site-icon" src="files/img/ico/grain.png"></img>" 2 times to the footer
for (var i = 0; i < 5; i++) { // This code creates a loop that will run 8 times
var img = document.createElement('img'); // THiis code creates a "element"
img.id = "site-icon"; // This code sets the id of the element to "site-icon"
img.src = "files/img/ico/grain.png"; // This code sets the source of the image to "files/img/ico/grain.png"
document.querySelector('footer').appendChild(img); // Grain
} // End of the loop
</script>
</footer>
</html>