-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
486 lines (474 loc) · 24.1 KB
/
index.html
File metadata and controls
486 lines (474 loc) · 24.1 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
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
<!DOCTYPE html>
<html lang="en">
<head>
<!-- META TAG -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- SITE TITLE -->
<title>Aleks Dushaj | Software Engineer</title>
<!-- FAV ICON -->
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicons/favicon-16x16.png">
<link rel="manifest" href="/assets/images/favicons/site.webmanifest">
<!-- GOOGLE FONTS CSS -->
<link
href="https://fonts.googleapis.com/css?family=Poppins:500,600|Roboto:500&display=swap|Cousine:400,700|Montserrat:400,700&subset=latin-ext"
rel="stylesheet" type="text/css">
<!-- BOOTSTRAP CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- FONT AWESOME CSS -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<!-- NORMALIZER CSS -->
<link href="assets/css/normalize.css" rel="stylesheet">
<!-- OWL CSS -->
<link href="assets/css/owl.carousel.min.css" rel="stylesheet">
<!-- OWL THEME CSS -->
<link href="assets/css/owl.theme.min.css" rel="stylesheet">
<link href="assets/css/lightbox.min.css" rel="stylesheet">
<!-- ANIMATED TEXT CSS -->
<link href="assets/css/animated-text.css" rel="stylesheet">
<!-- MAIN CSS -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- RESPONSIVE CSS -->
<link href="assets/css/responsive.css" rel="stylesheet">
</head>
<body>
<!-- START PRELOADER AREA-->
<div class="preloader-area">
<div class="preloader">
<div class="preload"></div>
</div>
</div>
<!-- END PRELOADER AREA -->
<!-- HEADER DESIGN AREA -->
<header id="home" class="header-area">
<div class="header-area-table">
<div class="header-area-tablecell">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- HEADER TEXT DESIGN AREA -->
<div class="header-text text-center">
<h1>Hi, my name is</h1>
<h3>Aleks Dushaj</h3>
<h2 class="cd-headline clip is-full-width">
<span class="cd-words-wrapper">
<b class="is-visible">Software Engineer</b>
<b>Web Developer</b>
<b>Lead Consultant</b>
<b>Video Editor</b>
<b>Network Engineer</b>
<b>PC Gamer</b>
<b>Dog Lover</b>
</span>
</h2>
<div class="social-link">
<a href="https://www.github.com/adushaj"><i class="fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/aleksdushaj/"><i
class="fa fa-linkedin"></i></a>
<a href="https://www.instagram.com/aleks.js/"><i
class="fa fa-instagram"></i></a>
</div>
</div>
<!-- / END HEADER TEXT DESIGN AREA -->
</div>
</div>
</div>
</div>
</div>
</header>
<!-- / END HEADER DESIGN AREA -->
<!-- MENU DESIGN AREA -->
<div class="menu-area">
<div class="container">
<div class="row">
<!-- LOGO DESIGN AREA -->
<div class="col-md-3 col-sm-2">
<div class="logo">
<a href="">Aleks</a>
</div>
</div>
<!-- / END LOGO DESIGN AREA -->
<div class="col-md-9 col-sm-10">
<div class="mainmenu">
<div class="navbar navbar-nobg">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse"
data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<!-- <li class="active"><a class="smoth-scroll" href="#home">Home <div
class="ripple-wrapper"></div></a> -->
</li>
<li><a class="smoth-scroll" href="#about">01. About</a>
</li>
<li><a class="smoth-scroll" href="#education">02. Education</a>
</li>
<li><a class="smoth-scroll" href="#experience">03. Experience</a>
</li>
<li><a class="smoth-scroll" href="#projects">04. Projects</a>
</li>
<li><a class="smoth-scroll" href="#contact">05. Contact</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- / END MENU DESIGN AREA -->
<!-- ABOUT ME DESIGN AREA -->
<section id="about" class="about-me-area section-padding">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4 col-xs-8 col-xs-offset-2">
<div class="section-title text-center">
<h2>About me</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="col-md-4">
<div class="me-image center">
<img src="assets\images\Black and White.png" class="img-circle" alt="">
</div>
</div>
<div class="col-md-9">
<div class="about-me-text">
<p>Software engineer offering a strong foundation in enterprise computing resource
requirements analysis and design, single sign-on management, application and server
deployment, virtualization, task automation, security configurations, full-stack web
development, and performance analysis.</p>
<a class="about-button" target="_blank" href="assets\Resume_Aleksander_Dushaj.pdf">download resume</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-5">
<!-- PERSONAL INFORMATION DESIGN AREA -->
<div class="about-info">
<h2>personal information</h2>
<ul>
<li><span>name:</span>Aleks Dushaj</li>
<li><span>Birthday:</span>February 8, 1994</li>
<li><span>address:</span>Royal Oak, Michigan, USA</li>
<li><span>email:</span>aleksdushaj@outlook.com</li>
</ul>
</div>
<!-- / END PERSONAL INFORMATION DESIGN AREA -->
</div>
<div class="col-sm-7">
<!-- SKILLS DESIGN AREA -->
<div class="skill-area">
<h2>skills</h2>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0"
aria-valuemax="100" style="width:90%">
html & css
</div>
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="95" aria-valuemin="0"
aria-valuemax="100" style="width:95%">
bash
</div>
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0"
aria-valuemax="100" style="width:90%">
nodejs
</div>
</div>
</div>
</div>
<!-- /END SKILLS DESIGN AREA -->
</div>
</div>
</div>
</section>
<!-- / END ABOUT ME DESIGN AREA -->
<!-- EDUCATION DESIGN AREA -->
<section id="education" class="education">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4 col-xs-8 col-xs-offset-2">
<div class="section-title">
<h2>Education</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="row">
<!-- SINGLE EDUCATION DESIGN AREA -->
<div class="col-sm-12">
<div class="single-education">
<i class="fa fa-book"></i>
<h2>Oakland University</h2>
<h3 class="text-muted"> Rochester, Michigan, USA | 2014-2018</h3>
<p>Bachelor's of Science in Information Technology</p>
<br>
<p><b>Coursework</b></p>
<p>CSI 1200 - Computing and Programming</p>
<p>CSI 1310 - Computer Programming</p>
<p>CSI 2300 - Object-Oriented Computing</p>
<p>CSI 2470 - Computer Networks</p>
<p>CSI 2520 - Interactive Web Systems</p>
<p>CSI 2440 - Computer Systems</p>
<p>CSI 2500 - Operating Systems</p>
<p>CSI 3370 - Software Engineering</p>
<p>CSI 3450 - Database Design and Implementation</p>
<p>CSI 3500 - Human Computer Interaction</p>
<p>CSI 3520 - Systems Analysis</p>
<p>CSI 4480 - Information Security Practice</p>
</div>
</div>
<!-- / END SINGLE EDUCATION DESIGN AREA -->
</div>
</div>
</div>
</div>
</section>
<!-- / END EDUCATION DESIGN AREA -->
<!-- EXPERIENCE DESIGN AREA -->
<section id="experience" class="education experience">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4 col-xs-8 col-xs-offset-2">
<div class="section-title">
<h2>experience</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="row">
<!-- SINGLE EXPERIENCE DESIGN AREA -->
<div class="col-sm-6">
<div class="single-education">
<i class="fa fa-briefcase"></i>
<h2>Ford Motor Company</h2>
<h3 class="text-muted">Software Engineer | Sep 2019 - Present</h3>
<p>• Develop NodeJS APIs that provide app deployment automation tools to
internal teams</p>
<p>• Utilize Git for source control to deliver stable, tested, and
versioned software</p>
<p>• Provide support for automation tools to ensure the successful
delivery of network automation services that meets Ford's business objectives</p>
<p>• Perform lifecycle management on legacy infrastructure</p>
<p>• Responsible for representing network engineering during vehicle launch events</p>
</div>
</div>
<!-- / END SINGLE EXPERIENCE DESIGN AREA -->
<!-- SINGLE EXPERIENCE DESIGN AREA -->
<div class="col-sm-6">
<div class="single-education">
<i class="fa fa-briefcase"></i>
<h2>Ford Motor Company</h2>
<h3 class="text-muted">DevOps Engineer | Jan 2019 - Sep 2019</h3>
<p>• Conduct FMEA testing on next-gen datacenter leaf layer switches</p>
<p>• Developed internal web portal for inventory tracking and project management</p>
<p>• Migrated TFTP virtual servers to physical infrastructure while automating the
backup and compression of network configs</p>
<p>• Implement change controls to F5 load balancers, primarily the copy of SSH keys</p>
<p>• Completed failover conversion of primary Syslog-ng host to secondary node</p>
</div>
</div>
<!-- / END SINGLE EXPERIENCE DESIGN AREA -->
<!-- SINGLE EXPERIENCE DESIGN AREA -->
<div class="col-sm-6">
<div class="single-education">
<i class="fa fa-briefcase"></i>
<h2>365 Retail Markets</h2>
<h3 class="text-muted">Implementation Specialist | May 2018 - Dec 2018</h3>
<p>• Provide client support and technical resolution via email, phone and other
electronic mediums for pre-live locations</p>
<p>• Manage client cases within Salesforce CRM and communicate any perceived
delays to management upon identification</p>
<p>• Configure Cisco Meraki cloud-managed routers</p>
<p>• Configure self-service kiosks in accordance to customer’s order</p>
</div>
</div>
<!-- / END SINGLE EXPERIENCE DESIGN AREA -->
<!-- SINGLE EXPERIENCE DESIGN AREA -->
<div class="col-sm-6">
<div class="single-education">
<i class="fa fa-briefcase"></i>
<h2>Oakland University</h2>
<h3 class="text-muted">Helpdesk Technician | Aug 2016 - Apr 2018</h3>
<p>• Install hardware, software and device drivers on standalone computers</p>
<p>• Test computer peripherals, hardware and software to ensure that they are working
appropriately</p>
<p>• Acted as a technical resource for user’s computer problems by phone, email and in
person</p>
<p>• Analyze and troubleshoot network authentication issues</p>
<p>• Document technical procedures</p>
</div>
</div>
<!-- / END SINGLE EXPERIENCE DESIGN AREA -->
<!-- SINGLE EXPERIENCE DESIGN AREA -->
<div class="col-sm-6">
<div class="single-education">
<i class="fa fa-briefcase"></i>
<h2>General Dynamics Land Systems</h2>
<h3 class="text-muted">IT Intern - Stryker Sustainment Services | May 2017 - Aug 2017
</h3>
<p>• Responsible for creating 53 procedures documenting routine duties in
inventory/demand forecasting</p>
<p>• Configured web-hosted forecasting tool to utilize single-sign on through Active
Directory</p>
<p>• Participated in early proof of concept negotiations in robotic process automation
</p>
<p>• Briefed executive leadership on summer internship deliverables</p>
<p>• Configured Automation Anywhere test environment with credential vault and developed
proof of concept demo </p>
</div>
</div>
<!-- / END SINGLE EXPERIENCE DESIGN AREA -->
<!-- SINGLE EXPERIENCE DESIGN AREA -->
<div class="col-sm-6">
<div class="single-education">
<i class="fa fa-briefcase"></i>
<h2>Michigan Schools and Government Credit Union</h2>
<h3 class="text-muted">System Operations Intern | Feb 2016 - Aug 2016</h3>
<p>• Administer the daily/monthly/annual operation schedules for the core mainframe and
related interfaces including imaging technology</p>
<p>• Provide system and interface support to all departments ensuring problems are
solved without significant interruption to member services</p>
<p>• Lead Symitar patch code review, testing, and documentation of results</p>
<p>• Ensure the off-site storage of credit union data</p>
<p>• Oversee the Episys patch and release information process to business partners</p>
</div>
</div>
<!-- / END SINGLE EXPERIENCE DESIGN AREA -->
</div>
</div>
</div>
</div>
</section>
<!-- / END EXPERIENCE DESIGN AREA -->
<!-- SERVICE DESIGN AREA -->
<section id="projects" class="service-area">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4 col-xs-8 col-xs-offset-2">
<div class="section-title">
<h2>projects</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="row">
<!-- SINGLE SERVICE DESIGN AREA -->
<center>
<p>Coming soon!</p>
</center>
<!-- <div class="col-md-4 col-sm-6">
<div class="single-service">
<i class="fa fa-camera"></i>
<h2>photography</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>
</div>
</div> -->
<!-- <div class="col-md-4 col-sm-6">
<div class="single-service">
<i class="fa fa-laptop"></i>
<h2>Web design</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>
</div>
</div> -->
</div>
</div>
</div>
</div>
</section>
<!-- / END SERVICE DESIGN AREA -->
<!-- CONTACT DESIGN AREA -->
<section id="contact" class="Contact section-padding">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4 col-xs-8 col-xs-offset-2">
<div class="section-title">
<h2>contact me</h2>
</div>
</div>
</div>
<!-- CONTACT DETAILS DESIGN AREA -->
<div class="row">
<div class="col-md-4">
<div class="single-contact">
<h2>Location:</h2>
<p>Royal Oak, Michigan, USA</p>
</div>
</div>
<div class="col-md-4">
<div class="single-contact">
</div>
</div>
<div class="col-md-4">
<div class="single-contact">
<h2>Email:</h2>
<p>aleksdushaj@outlook.com</p>
</div>
</div>
</div>
<!-- / END CONTACT DETAILS DESIGN AREA -->
<!-- / END CONTACT FORM DESIGN AREA -->
</div>
</div>
</section>
<!-- / END CONTACT DESIGN AREA -->
<!-- FOOTER DESIGN AREA -->
<footer class="footer-area">
<div class="container">
<div class="row">
<div class="col-md-12">
<p> ©
<script type="text/javascript">
document.write(new Date().getFullYear());
</script> <a href="#">Aleks Dushaj</a></p>
</div>
</div>
</div>
</footer>
<!-- / END FOOTER DESIGN AREA -->
<!-- START SCROLL UP DESIGN AREA -->
<div class="scroll-to-up">
<div class="scrollup">
<i class="fa fa-angle-up"></i>
</div>
</div>
<!-- / END SCROOL UP DESIGN AREA -->
<!-- LATEST JQUERY -->
<script src="assets/js/jquery.min.js"></script>
<!-- BOOTSTRAP JS-->
<script src="assets/js/bootstrap.min.js"></script>
<!-- OWL JS -->
<script src="assets/js/owl.carousel.min.js"></script>
<!-- ANIMATED TEXT JS-->
<script src="assets/js/animated-text.js"></script>
<!-- ISOTOPE JS -->
<script src="assets/js/isotope.pkgd.js"></script>
<!-- LIGHTBOX JS -->
<script src="assets/js/lightbox.min.js"></script>
<!-- STICKY JS -->
<script src="assets/js/jquery.sticky.js"></script>
<!-- SWITCHER JS -->
<script src="assets/js/switcher.js"></script>
<!-- MAIN JS-->
<script src="assets/js/main.js"></script>
</body>
</html>