-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
247 lines (227 loc) · 10.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
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Jonas Andresen's professional CV, showcasing his over 10 years of experience in IT administration, specializing in Windows server management, automation, and cybersecurity.">
<meta name="keywords" content="Jonas Andresen, IT Administrator, Windows Server, Automation, Cybersecurity, Edmonton, CV, Resume">
<meta name="author" content="Jonas Andresen">
<title>Jonas Andresen</title>
<!-- Default Favicon (Light Mode) -->
<link rel="icon" href="favicon/favicon_black.ico" type="image/x-icon">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32_black.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16_black.png">
<!-- Dark Mode Favicon -->
<link rel="icon" href="favicon/favicon_white.ico" type="image/x-icon" media="(prefers-color-scheme: dark)">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32_white.png" media="(prefers-color-scheme: dark)">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16_white.png" media="(prefers-color-scheme: dark)">
<!-- Apple Touch Icons -->
<link rel="apple-touch-icon" href="favicon/apple-touch-icon_black.png">
<link rel="apple-touch-icon" href="favicon/apple-touch-icon_white.png" media="(prefers-color-scheme: dark)">
<!-- Android Chrome Icons -->
<link rel="icon" type="image/png" sizes="192x192" href="favicon/android-chrome-192x192_black.png">
<link rel="icon" type="image/png" sizes="512x512" href="favicon/android-chrome-512x512_black.png">
<link rel="icon" type="image/png" sizes="192x192" href="favicon/android-chrome-192x192_white.png" media="(prefers-color-scheme: dark)">
<link rel="icon" type="image/png" sizes="512x512" href="favicon/android-chrome-512x512_white.png" media="(prefers-color-scheme: dark)">
<!-- Web Manifest -->
<link rel="manifest" href="favicon/site_black.webmanifest">
<link rel="manifest" href="favicon/site_white.webmanifest" media="(prefers-color-scheme: dark)">
<!-- Icon libraries -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/simple-icons@v4/iconsfont/simple-icons.min.css">
<!-- Custom Styles -->
<style>
body {
font-family: Helvetica, Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
color: #333;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px; /* Reduced whitespace here */
}
.name-title {
text-align: center;
flex: 1;
}
.name-title h1 {
margin-bottom: 5px;
font-size: 2em;
}
.name-title h2 {
color: #555;
margin-top: 0;
margin-bottom: 5px; /* Reduced whitespace here */
font-size: 1.2em;
}
.contact-info {
text-align: right;
padding-left: 20px;
}
.contact-info a {
display: block;
margin-bottom: 5px;
}
.download-link {
margin-top: 10px;
}
.download-link a {
text-decoration: none;
color: #fff;
background-color: #007BFF;
padding: 8px 16px;
border-radius: 5px;
font-size: 0.9em;
}
.download-link a:hover {
background-color: #0056b3;
}
section {
margin-bottom: 20px;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h3 {
border-bottom: 2px solid #ddd;
padding-bottom: 5px;
margin-bottom: 10px;
}
ul {
padding-left: 20px;
line-height: 1.6;
}
.experience, .education {
margin-bottom: 20px;
padding: 15px;
background-color: #f9f9f9;
border-left: 4px solid #007BFF;
border-radius: 5px;
}
.experience h4, .education h4 {
margin-top: 0;
margin-bottom: 10px;
}
.experience p, .education p {
margin: 5px 0;
}
/* Skills section */
.skills {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
gap: 20px;
}
.skill-item {
display: flex;
align-items: center;
font-size: 1.1em;
padding: 10px;
border-radius: 5px;
background-color: #f9f9f9;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.skill-item i, .skill-item svg {
margin-right: 10px;
font-size: 2em;
}
</style>
</head>
<body>
<header>
<div class="name-title">
<h1>Jonas Andresen</h1>
<h2>Windows Systems Administrator</h2>
<p>Edmonton, Alberta, Canada</p>
</div>
<div class="contact-info">
<a href="mailto:[email protected]">Email: [email protected]</a>
<div class="download-link">
<a href="https://cv.jcsa.ca/Jonas%20Andresen-PrintOut.pdf" download>Download My CV (PDF)</a>
</div>
</div>
</header>
<section>
<h3>Professional Summary</h3>
<p>IT Professional with 10 years of IT administration experience in small-medium businesses to large corporate infrastructures. <br>Focus on Windows server management and client deployment through automation and scripting.</p>
</section>
<section>
<h3>Professional Experience</h3>
<div class="experience">
<h4>Information Technology System Administrator</h4>
<p><strong>CCI INC., Edmonton, Alberta</strong></p>
<p><strong>September 2017 – Present</strong></p>
<ul>
<li>Provided technical support in a dynamic Oil and Gas engineering consulting environment.</li>
<li>Collaborated within a two-person IT team to support seven offices across North America and remote users in Europe.</li>
<li>Implemented and maintained advanced security measures for Microsoft Office 365 tenants, including proactive monitoring using Crowdstrike Falcon and Abnormal Security.</li>
<li>Managed hardware installations across multiple Alberta offices, ensuring timely completion.</li>
<li>Key achievements include successfully managing a 130% increase in end-users, executing the migration from G Suite to Office 365, and developing a comprehensive onboarding/offboarding process.</li>
</ul>
</div>
<div class="experience">
<h4>System Administrator</h4>
<p><strong>Superior Safety Codes, Edmonton, Alberta</strong></p>
<p><strong>May 2016 – August 2017</strong></p>
<ul>
<li>Sole IT staff responsible for supporting 60 users across five offices in Alberta after the part-time manager's departure.</li>
<li>Worked with limited budget to implement industry standards and ensure efficient IT operations.</li>
</ul>
</div>
<div class="experience">
<h4>IT Support Technician</h4>
<p><strong>Lindab A/S, Denmark</strong></p>
<p><strong>July 2012 – August 2015</strong></p>
<ul>
<li>Provided technical support in a multinational company, collaborating daily with the international service desk.</li>
<li>Participated in vendor conferences across Europe, aligning Danish IT deployments with global standards.</li>
<li>Implemented and maintained data connections for mobile devices and laptops using DirectAccess VPN.</li>
</ul>
</div>
</section>
<section>
<h3>Education</h3>
<div class="education">
<h4>Northern Alberta Institute of Technology (NAIT)</h4>
<p><strong>Bachelor of Applied Information Systems Technology, Network Management</strong></p>
<p>2015 – 2017</p>
<p>Relevant courses: Server Infrastructure, Enterprise Security, Ethical Hacking, Leadership & Professional Development</p>
</div>
<div class="education">
<h4>EUC Syd</h4>
<p><strong>IT Supporter – Data and Communication Associate Degree</strong></p>
<p>2009 – 2012</p>
<p>Relevant courses: Basic TCP/IP networking, Server AD, DNS, DHCP server roles, Basic SQL server management</p>
</div>
</section>
<section>
<h3>Skills</h3>
<div class="skills">
<div class="skill-item"><i class="fab fa-microsoft"></i> Azure AD, Microsoft 365</div>
<div class="skill-item"><i class="fas fa-server"></i> Windows Server 2016+</div>
<div class="skill-item"><i class="si si-vmware"></i> VMware</div> <!-- Updated with VMware icon -->
<div class="skill-item"><i class="fab fa-windows"></i> Windows 10/11</div>
<div class="skill-item"><i class="fas fa-tools"></i> PDQ Inventory & Deploy</div>
<div class="skill-item"><i class="fab fa-cloudflare"></i> CrowdStrike Falcon</div>
<div class="skill-item"><i class="fas fa-shield-alt"></i> Abnormal Security</div>
<div class="skill-item"><i class="fas fa-sync-alt"></i> PowerAutomate</div>
<div class="skill-item"><i class="fas fa-code"></i> PowerShell</div>
</div>
</section>
<section>
<h3>Languages</h3>
<ul>
<li>Danish (Native)</li>
<li>English (Fluent)</li>
</ul>
</section>
<footer>
<p>Contact: <a href="mailto:[email protected]">[email protected]</a></p>
</footer>
</body>
</html>