-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutme.html
152 lines (142 loc) · 5.03 KB
/
aboutme.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
<!DOCTYPE html>
<html lang='en'>
<head>
<title>Apro's Site - About Me</title>
<meta charset='utf-8'>
<meta name='description' content='i am gameing (wtf how are they gameing)'>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="main.css">
<script src="https://kit.fontawesome.com/497f4f4907.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="navbar" class="sticky">
<a href="javascript:void(0);" class="icon" onclick="navExpand()"><i class="fa fa-bars"></i></a>
<a href="/">Main Page</a>
<a class="active" href="javascript:void(0);">About Me</a>
<a href="blog">Blog</a>
<span class="navsocial">
<a class="navsocial" href="https://www.youtube.com/channel/UCk1zcHlOko3j4UcJh-0WWig"><i class="fab fa-youtube"></i></a>
<a class="navsocial" href="https://github.com/Call-Me-Apro"><i class="fab fa-github"></i></a>
<a class="navsocial" href="https://open.spotify.com/user/r4ilax"><i class="fab fa-spotify"></i></a>
</span>
</div>
<div class="content">
<h1>About Me</h1>
<h2>new phone who dis?</h2>
<div class="centered" style="padding-bottom:18px">
<img src="https://avatars.githubusercontent.com/u/53254254?v=4" alt="" style="border-radius:50%;height:10vmax;" class="rotate">
<p><b>Heyo! I'm Emily, and I'm a 17 year old IT student from Czechia..</b></p>
</div>
<p>I am a huge PC nerd, and I enjoy digging deep into how my system works a lot, and I also like to dabble into development every once in a while..</p>
<p>Other than that, I also enjoy <b>producing music</b> under the fictional character "Rrrin", as well as <b>video editing</b> and <b>graphic effects.</b></p>
<p>I also play games sometimes, namely <b>Geometry Dash</b> and <b>Minecraft</b>, as well as <b>Beat Saber</b>, <b>Celeste</b> and <b>Mario Kart 8 Deluxe.</b></p>
<p>Some of my other hobbies include:
<ul>
<li><b>Speedcubing</b>
<ul>
<li>Main Event: <b>3x3</b>
<ul>
<li>Global Average: <b>30s</b></li>
<li>Personal Best: <b>15.56s</b>
</ul>
</ul>
<li><b>Listening to Music</b>
<ul>
<li>Fav Artists:
<ul>
<li><b>Machine Girl</b>
<li><b>Sewerslvt</b>
<li><b>Goreshit</b>
<li><b>100 gecs</b>
<li><b>food house</b>
<li><b>glaive</b>
<li><b>leroy</b>
<li><b>cavetown</b>
<li><b>Jack Stauber</b>
<li><b>khai dreams</b>
</ul>
</ul>
</ul>
<p>When it comes to programming, my system and my workflow, I use:</p>
<div class="flexbox clear">
<!-- div style="padding-right:40px;" -->
<table>
<tr>
<td>
<ul><li>OS:</ul>
</td>
<td>
Arch Linux or Windows 10
</td>
</tr>
<tr>
<td>
<ul><li>WM:</ul>
</td>
<td>
dwm
</td>
</tr>
<tr>
<td>
<ul><li>IDE:</ul>
</td>
<td>
vim or VSCode
</td>
</tr>
<tr>
<td>
<ul><li>Browser:</ul>
</td>
<td>
Mozilla Firefox
</td>
</tr>
<tr>
<td>
<ul><li>Notes Taking:</ul>
</td>
<td>
Obsidian
</td>
</tr>
<tr>
<td>
<ul><li>DAW:</ul>
</td>
<td>
FL Studio 20
</td>
</tr>
<tr>
<td>
<ul><li>Image Editor:</ul>
</td>
<td>
GIMP (or paint.net)
</td>
</tr>
<tr>
<td>
<ul><li>Video Editor</ul>
</td>
<td>
MAGIX Vegas Pro 16
</td>
</tr>
</table>
</div>
</div>
<script type="application/javascript">
var navbar = document.getElementById("navbar");
function navExpand() {
if (navbar.classList.contains("dropped")) {
navbar.classList.remove("dropped")
} else {
navbar.classList.add("dropped");
}
}
</script>
</body>
</html>