-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
161 lines (151 loc) · 5.83 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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Default Required Resources -->
<meta
name="viewport"
content="width=569,
maximum-scale=1"
/>
<meta charset="utf-8" />
<link
rel="alternate"
type="application/rss+xml"
title="Blog RSS"
href="//mehvix.com/posts/rss.xml"
/>
<link
href="//mehvix.com/static/css/style.css"
type="text/css"
rel="stylesheet"
/>
<script src="//mehvix.com/static/js/include.js"></script>
<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>"
/>
<title>Mehvix | Berkeley Badge 2.0</title>
<style>
:root {
--outside-bg-color: #095092;
}
</style>
</head>
<body>
<div class="box">
<div class="nav">
<a href="https://mehvix.com">~</a>/<a href="" class="inverse-bg"
>Berkeley Pass</a
>
</div>
<article>
I received an email threatening legal action against me.
<a href="http://mehvix.com/posts/pass.html">Read more here</a>.
<!-- <div>
<div
style="
align-items: center;
text-align: center;
padding: 2ch;
"
>
<input
class="input"
type="text"
name="name"
id="name"
placeholder="First + Last Name"
style="width: 30ch"
/>
<button onclick="go()">Open Pass</button>
<script>
function go() {
let name = encodeURI(
document.getElementById("name").value
);
if (name) {
console.log(name);
window.location.assign(
`${window.location.origin}/pass.html?name=${name}`
);
}
}
document.addEventListener(
"keypress",
function (e) {
if (e.keyCode === 13) {
//enter
go();
}
},
false
);
</script>
</div>
</div> -->
<!--
<h1>Usage</h1>
<p>
After you press "Open Pass", tap anywhere on the page to
enter full screen (hiding the browser GUI). This will not
work in Safari, but works in Chrome & FF.
</p>
<p>
By using this site you agree that I'm not liable for
anything dumb you do with it!
</p>
<h1>Why?</h1>
<p>
UC Berkeley requires students to fill out a daily screener
through an app to access dining halls / RSF / etc. This app
is slow, buggy, and requires you to sign-in + authenticate
with duo mobile every. single. time. On top of that, the
survey itself is useless, asking essentially
<i
>"hey, for the nth time, do you have the vax? also you
don't have COVID symptoms right?"</i
>.
</p>
<p>
I'm not an antivaxxer, just someone who doesn't want to
spend 5-10 minutes each day using some buggy, pointless app
so that I can be <i>allowed</i> to get food or workout.
</p>
<h1>How?</h1>
<p>
I yoink'd the HTML/CSS of the badge page by going to
<code>about://inspect/#devices</code> in Brave. Peep the
code on
<a
href="https://github.com/mehvix/pass"
target="_blank"
rel="noopener noreferrer"
>Github</a
>.
</p> -->
</article>
<div id="footer">
<table id="footerTable">
<tr>
<td>$BTC</td>
<td>15adHcuUPLHzVmUqKqgeLfLzvtfD5r7WJ1</td>
</tr>
<tr>
<td>$XMR</td>
<td>
45MaKMYnWBnNWS4rtbrMp8C6wL1B1mguW6AjmJBGqLJkCzVUMuXwamzRfrmiwLw1WrbUptNjY1DoL4Yu4fXqTDAcDEWpuTZ
</td>
</tr>
<tr>
<td>$ETH</td>
<td>0xeeC384Cdef3aD975EdF1D2f6C1dC9a4b1fEEBF74</td>
</tr>
<tr>
<td id="footerDateYear">2021</td>
<td>Max Vogel</td>
</tr>
</table>
</div>
</div>
</body>
</html>