-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgeiger.html
More file actions
50 lines (50 loc) · 1.94 KB
/
Copy pathgeiger.html
File metadata and controls
50 lines (50 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fsh?</title>
<!-- Boiler plate------ -->
<link rel="icon" href="/fsh.png" type="image/png">
<meta name="description" content="Fsh?">
<!-- ------- -->
<link rel="stylesheet" href="/media/style.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:image" content="https://fsh.plus/fsh.png"/>
<meta name="theme-color" content="#a89c9b">
<!-- ------------------ -->
<script src="https://account.fsh.plus/script.js"></script>
<style>
p { font-family: monospace; }
</style>
</head>
<body>
<p>----- Chat log -----<br>
[9uy]: Do you copy?<br>
[4wg]: I copy.<br>
[9uy]: What's the status?<br>
[4wg]: Approaching the source.<br>
[9uy]: Any signals of <i>anyone</i>?<br>
[4wg]: Negative.<br>
[4wg]: Geiger counter increasing rapidly.<br>
[9uy]: What are the readings?<br>
[4wg]: Readings are [Data removed].<br>
[9uy]: Back off, too dangerous.<br>
[4wg]: it keeps increasing, do you <b>hear</b> it<br>
----- Disconnected -----<br><br>
Attached message by [Data removed]:<br>
||->>>|- || |--<<< <<|-<>><|-->><< <-| |-->>>>| ->><<--| |--<<|-<>><|-->><-| |>< <<|-->><< <-| |-->>>> ><-| - -|<< >><<|-- |<< <>>|--<>||>><<||><-| --- -|| ||- -|<< <>>|-- |-<>|-->>>>|>< >><<|-- ---| ---</p>
<audio loop id="geiger" src="/media/geiger.mp3"></audio>
<script>
const p = setInterval(() => {
document.getElementById("geiger").play()
.then(() => {
clearInterval(p);
})
.catch(error => {
console.info('User has not interacted with document yet.');
});
}, 500);
</script>
</body>
</html>