-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (61 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<!-- return QR code that evals to python code that evals to scheme code that... -->
<!-- this lets us jump into the loop -->
<!-- the code itself looks at mse.mehvix.com/file.scm -->
<!-- but there's no reason it couldn't download + eval the QR code too -->
<head>
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>✍️</text></svg>"
/>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MSE: M. Scheme EschQR</title>
<style>
body,
html {
height: 100%;
margin: 0;
text-align: center;
}
img {
padding: 10px;
max-width: 95%;
max-height: 95%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
<script src="flip.js"></script>
</head>
<body>
<img src="py-qr-reg.png" id="QR" /><br />
<div>
<b>NOTE:</b> iPhones have a(n especially) hard time scanning this
large a QR. You may have better success using a third party app.
</div>
<input
type="checkbox"
name="ck"
id="ck"
onclick="flippy()"
style="margin-top: 1em"
/>Un-minified QR Code
<blockquote>
...<a href="https://en.wikipedia.org/wiki/Drawing_Hands"
>drawing hands</a
>
create<br />
a
<a href="https://en.wikipedia.org/wiki/Strange_loop"
>strange loop</a
>
from meaningless<br />
symbols, just as hands...
</blockquote>
<a href="http://github.com/Mehvix/mse">GitHub</a><br /><br /><br />
</body>
</html>