-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·159 lines (154 loc) · 6.57 KB
/
index.html
File metadata and controls
executable file
·159 lines (154 loc) · 6.57 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!doctype html>
<html lang="en">
<head>
<!-- Created by Wesley Bryie in 2023, and should only be viewed at wesbryie.com. -->
<!-- The code for this site is hosted on GitHub, and the site itself is hosted by Vercel. -->
<!-- This site is licensed under the MIT License. -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wes Bryie's Site</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<meta
name="description"
content="I'm an Early College student and a future Systems Administrator."
/>
<!-- Open Graph Begin -->
<meta property="og:title" content="Wes Bryie's Site" />
<meta property="og:site_name" content="wesbryie.com" />
<meta property="og:url" content="https://wesbryie.com/" />
<meta
property="og:description"
content="I'm an Early College student and a future Systems Administrator."
/>
<meta property="og:type" content="website" />
<!-- Open Graph End -->
<style>
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap");
* {
font-family: "Quicksand", sans-serif;
color: white;
background-color: #2c3333;
}
body {
overflow: hidden;
margin: 0;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
@media (max-width: 768px) {
body {
overflow: auto;
}
.container {
padding: 20px;
height: auto;
}
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<br>
<h1 class="header">Hi! I'm Wes!</h1>
<h2 class="subheader">
I'm an Early College student and a future Systems
Administrator.
</h2>
<div class="findme">
<h3>You can find me here:</h3>
<ul class="findmelist">
<li>
<a href="https://github.com/polymo1"
>GitHub: polymo1</a
>
</li>
<li>
<a
href="https://discordapp.com/users/812822472838873118"
>Discord: @polymo1</a
>
</li>
<li>
<a href="mailto:wes@wesbryie.com"
>Email: wes@wesbryie.com</a
>
</li>
<li>
<a rel="me" href="https://vmst.io/@wes">Mastodon @wes@vmst.io</a>
</li>
</ul>
</div>
<div class="gpg">
<p>You can find my GPG Public Key <a href="https://wesbryie.com/pub.key">here.</a></p>
</div>
<div class="projects">
<h3>Current Projects:</h3>
<ul class="projectslist">
<li><a href="https://sidestore.io/">SideStore</a></li>
<ul>
<li>I am a member of the SideStore team.</li>
<li>
SideStore makes sideloading on iDevice's
possible, and mostly computerless.
</li>
<li>
Find their GitHub
<a href="https://github.com/SideStore">here.</a>
</li>
</ul>
</ul>
<h3>Past Projects:</h3>
<ul class="projectslist">
<li>
<a href="https://bottlebill.wesbryie.com/"
>North Carolina Bottle Bill Project</a
>
</li>
<ul>
<li>
Getting bottle deposit stations in North
Carolina.
</li>
<li>
The Project received responses from multiple state legistlators.
</li>
<li>
There was success in getting one bill <a href="https://www.ncleg.gov/BillLookup/2023/H978">(2023-2024 H.B. 978)</a> introduced.
</li>
<li>
Any support should be guided towards the folks seen <a href="https://actionnetwork.org/petitions/support-nc-house-bill-978-the-litter-reduction-act-of-2024?source=direct_link&">here.</a>
</li>
</ul>
</ul>
</div>
<div class="certs">
<h3>Certifications:</h3>
<ul class="certslist">
<li>
<a href="https://certification.testout.com/verifycert/6-2C6-VK77FD"
>TestOut Client Pro</a
>
</li>
<ul>
<li>
The TestOut Client Pro Certification is a performance-based assessment for installing, managing,<br>and troubleshooting Windows desktops in an enterprise environment.
</li>
<li>
Issued on 6 December 2024. Certificate never expires.
</li>
</ul>
</ul>
</div>
</div>
</div>
</body>
</html>