-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
622 lines (592 loc) · 16.4 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
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
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Kenneth Aasan</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link href='http://fonts.googleapis.com/css?family=Lato:400,500,600,700|Open+Sans:400,500,600,700' rel='stylesheet' type='text/css'>
<style>
.clear-margin {
margin: 0;
}
.space-top {
margin-top: 10px;
}
.space-right {
margin-right: 10px;
}
.icon-left {
margin-right: 5px;
}
.icon-right {
margin-left: 5px;
}
.labels {
word-spacing: 5px;
line-height: 2;
}
.label-keyword {
display: inline-block;
background: #7eb0db;
color: white;
font-size: 0.9em;
padding: 5px;
border: 1px solid #357ebd;
}
.link-disguise {
color: inherit;
}
.link-disguise:hover {
color: inherit;
}
@media (max-width: 992px) {
.clear-margin-sm {
margin-bottom: 0;
}
}
body {
font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
background: #f0f0f0;
color: #333333;
font-size: 16px;
}
.text-bolder {
font-weight: bold;
}
@media only screen {
.container {
max-width: 50em;
}
}
@media (max-width: 480px) {
ul {
padding-left: 25px;
}
/*
.mobile-title {
display: inline-block;
margin-left: 5px;
font-weight: bold;
text-transform: uppercase;
vertical-align: middle;
}
*/
.background-details {
display: block;
}
.background-details .icon {
max-width: inherit;
min-width: inherit;
text-align: left;
}
.background-details .icon,
.background-details .info {
display: block;
padding: 10px 0;
}
.background-details .title {
display: none;
}
.card-nested {
padding: 5px 0;
}
}
.profile-card {
display: table;
width: 100%;
}
.profile-pic {
display: table-cell;
vertical-align: top;
padding: 1rem 4rem 0 0 ;
}
.profile-pic img {
width: 100px;
height: 100px;
}
.contact-details {
display: table-cell;
}
.contact-details .detail {
display: inline-block;
line-height: 2;
margin-right: 2rem;
}
.contact-details .detail .icon {
padding-right: 7px;
color: #888;
}
.contact-details .detail .info {
font-size: 0.8em;
}
.social-links {
line-height: 2.5;
}
.social-link {
display: block;
}
.social-link span {
display: inline-block;
vertical-align: middle;
}
.social-link:hover,
.social-link:focus {
text-decoration: none;
}
.social-link .fa {
text-align: center;
width: 2em;
}
.fa-github {
color: #454545;
}
.fa-github:hover,
.fa-github:focus {
text-decoration: none;
color: #2b2b2b;
}
.fa-twitter {
color: #33ccff;
}
.fa-twitter:hover,
.fa-twitter:focus {
text-decoration: none;
color: #00bfff;
}
.fa-rss {
color: #f36f24;
}
.fa-rss:hover,
.fa-rss:focus {
text-decoration: none;
color: #d8560c;
}
.fa-linkedin {
color: #007bb6;
}
.fa-linkedin:hover,
.fa-linkedin:focus {
text-decoration: none;
color: #005983;
}
.fa-skype {
color: #12a5f4;
}
.fa-skype:hover,
.fa-skype:focus {
text-decoration: none;
color: #0986ca;
}
.fa-stack-overflow {
color: #8e8e92;
}
.fa-stack-overflow:hover,
.fa-stack-overflow:focus {
text-decoration: none;
color: #747479;
}
.fa-soundcloud {
color: #e8822d;
}
.fa-soundcloud:hover,
.fa-soundcloud:focus {
text-decoration: none;
color: #cc6916;
}
.fa-pinterest {
color: #bd091f;
}
.fa-pinterest:hover,
.fa-pinterest:focus {
text-decoration: none;
color: #8c0717;
}
.fa-vimeo {
color: #17b3e8;
}
.fa-vimeo:hover,
.fa-vimeo:focus {
text-decoration: none;
color: #128fba;
}
.fa-behance {
color: #2c98cf;
}
.fa-behance:hover,
.fa-behance:focus {
text-decoration: none;
color: #2379a5;
}
.fa-codepen {
color: #1c1c1c;
}
.fa-codepen:hover,
.fa-codepen:focus {
text-decoration: none;
color: #020202;
}
.fa-foursquare {
color: #fa4778;
}
.fa-foursquare:hover,
.fa-foursquare:focus {
text-decoration: none;
color: #f91554;
}
.fa-reddit {
color: #545454;
}
.fa-reddit:hover,
.fa-reddit:focus {
text-decoration: none;
color: #3b3b3b;
}
.fa-spotify {
color: #acd200;
}
.fa-spotify:hover,
.fa-spotify:focus {
text-decoration: none;
color: #829f00;
}
.fa-dribbble {
color: #ce366f;
}
.fa-dribbble:hover,
.fa-dribbble:focus {
text-decoration: none;
color: #a82959;
}
.fa-facebook {
color: #4b6daa;
}
.fa-facebook:hover,
.fa-facebook:focus {
text-decoration: none;
color: #3b5687;
}
.fa-angellist {
color: #000000;
}
.fa-angellist:hover,
.fa-angellist:focus {
text-decoration: none;
color: #000000;
}
.fa-bitbucket {
color: #205081;
}
.fa-bitbucket:hover,
.fa-bitbucket:focus {
text-decoration: none;
color: #163758;
}
.fa-google-plus {
color: #bf2a1d;
}
.fa-google-plus:hover,
.fa-google-plus:focus {
text-decoration: none;
color: #932016;
}
.background-card h4 {
font-variant: small-caps;
color: #777777;
border-bottom: 1px solid #eeeeee;
padding-bottom: 1em;
margin-bottom: 1em;
line-height: 1.2;
}
.background-card h4:not(:first-child) {
margin-top: 2em;
}
h4 > .fa,
h4 > .title {
display: inline-block;
vertical-align: baseline;
}
h4 > .fa {
width: 4rem;
}
.content {
line-height: 1.5;
}
.card {
background: #ffffff;
border: 1px solid #e6e6e6;
border-radius: 3px;
padding: 2em 3.5em;
}
.card-nested {
padding: 1.5rem 0 1.5rem 4.2rem;
}
.card-wrapper {
padding: 5px;
}
.enumeration:not(:last-child):after {
content: ", ";
}
.enumeration:last-child:after {
content: ".";
}
@media only screen and (max-width: 768px) {
.profile-card {
display: block;
}
.contact-details,
.profile-pic {
display: block;
text-align: center;
}
.card-nested {
padding-left: 0;
}
}
@media only screen and (max-width: 480px) {
.contact-details .detail {
display: block;
}
}
.card-skills {
position: relative;
}
.skill-info {
margin-left: 20px;
}
@media only screen and (min-width: 768px) {
.skill {
border-left: 9px solid #555555;
}
.skill.beginner {
height: 50%;
border-color: #e74c3c;
}
.skill.intermediate {
height: 70%;
border-color: #f1c40f;
}
.skill.advanced {
border-color: #5cb85c;
}
.skill.master {
border-color: black;
}
}
@media (max-width: 768px) {
.quote {
font-size: inherit;
}
}
@media print {
body {
font-size: 10pt;
}
a[href]:after {
content: none !important;
}
.pagebreak {
page-break-before: always;
}
.background-card h4:not(:first-child) {
margin-top: 0 !important;
}
.card {
border: 0;
padding: 0;
}
.container {
max-width: 100%;
width: 100%;
}
.contact-details .detail .icon {
color: #888 !important;
}
.background-card h4 {
padding-bottom: 0.5em;
margin-bottom: 0.5em;
margin-top: 1em !important;
}
h4 > .fa {
display: none !important;
}
.card-nested {
padding: .5rem 0 .5rem 0;
}
.labels {
display: inline;
}
.skill-info {
margin-left: 0;
}
blockquote {
font-size: 100%;
}
}
</style>
</head>
<body itemscope itemtype="http://schema.org/Person">
<div class="container">
<section class="row">
<div class="card-wrapper">
<div class="card">
<div class="profile-card">
<div class="profile-pic">
<img class="media-object img-circle center-block" data-src="holder.js/100x100"
alt="Kenneth Aasan" src="https://pbs.twimg.com/profile_images/890485883031433216/CA31cNDm_400x400.jpg" itemprop="image">
</div>
<div class="contact-details">
<div class="name-and-profession">
<h3 class="text-bolder name" itemprop="name"> Kenneth Aasan</h3>
<h5 class="text-muted" itemprop="jobTitle">Software Developer</h5>
</div>
<div class="detail">
<span class="icon">
<i class="fa fa-lg fa-envelope"></i>
</span>
<span class="info">
<a href="mailto:[email protected]" class="link-disguise" itemprop="email">[email protected]</a>
</span>
</div>
<div class="detail">
<span class="icon">
<i class="fa fa-lg fa-phone"></i>
</span>
<a href="tel://+47 95802339" class="link-disguise info" itemprop="telephone">
+47 95802339
</a>
</div>
<div class="detail">
<span class="icon">
<i class="fa fa-lg fa-map-marker"></i>
</span>
<span class="info">
Trondheim, Sør-Trøndelag,
NO
</span>
</div>
</div>
</div>
<hr>
<div class="social-links">
<a class="social-link" href="https://www.linkedin.com/in/kenneth-aasan" target="_blank">
<span class="fa fa-linkedin fa-2x"></span>
<span class="social-link-text">https://www.linkedin.com/in/kenneth-aasan</span>
</a>
<a class="social-link" href="https://twitter.com/kennethaasan" target="_blank">
<span class="fa fa-twitter fa-2x"></span>
<span class="social-link-text">https://twitter.com/kennethaasan</span>
</a>
<a class="social-link" href="https://github.com/kennethaasan" target="_blank">
<span class="fa fa-github fa-2x"></span>
<span class="social-link-text">https://github.com/kennethaasan</span>
</a>
</div>
</div>
</div>
</section>
<section class="row">
<div class="card-wrapper">
<div class="card background-card">
<h4 id="about"> <span class="fa fa-lg fa-user"></span> <span class="title">About</span> </h4>
<div class="card-nested" itemprop="description">
<p> I'm born in Trondheim, Norway. I lived my first 18 years in Stadsbygd, Norway. After high school I spent a year in Bodø, Norway in the Norwegian Air Force as a soldier. After one year in the military I moved to Trondheim and started on NTNU where I studied Information Technology. Ever since I was a kid I’ve been watching and playing football. I’ve been a huge fan of Premier League and especially Chelsea all those years. Creating IT solutions for my own amateur football team got me into Sportradar in Trondheim. I wrote my bachelor thesis for Sportradar where I made a server-side rendered Livescore solution that is in production today. It was based on technologies like Webpack, Node, React and Redux. After I graduated from NTNU I started working as a full time employee for Sportradar in Trondheim. </p>
</div>
<h4 id="work-experience"> <span class="fa fa-lg fa-pencil-square-o"></span> <span class="title">Work Experience</span> </h4>
<ul class="list-unstyled">
<li class="card-nested">
<div class="content has-sidebar">
<p class="clear-margin-sm">
<strong>Lead Developer</strong>,
<a href="https://www.sportradar.com/" target="_blank">Sportradar</a>
</p>
<p class="text-muted">
<small>
<span class="space-right"> Jun 2014 - Present </span>
<span> <i class="fa fa-clock-o icon-left"></i> 3 years 2 months </span>
</small>
</p>
<p>Working in the Hosted Solutions team, bringing Sportradar's solutions up to speed with the most recent technological advances.</p>
<ul>
<li> Introduced React and Redux with server-side rendering to Sportradar's livescore and statistics solution. </li>
</ul>
</div>
</li>
</ul>
<h4 id="skills"> <span class="fa fa-lg fa-code"></span> <span class="title">Skills</span> </h4>
<ul class="list-unstyled">
<li class="card-nested skill master">
<strong>Web Development (master):</strong>
<span class="enumeration">HTML</span> <span class="enumeration">CSS</span> <span class="enumeration">Javascript</span> <span class="enumeration">React</span> <span class="enumeration">Redux</span> <span class="enumeration">Webpack</span> <span class="enumeration">Babel</span> <span class="enumeration">ESLint</span> <span class="enumeration">Flow</span> <span class="enumeration">Prettier</span> <span class="enumeration">Node</span> <span class="enumeration">npm</span> <span class="enumeration">yarn</span> <span class="enumeration">GraphQL</span> <span class="enumeration">Relay</span> <span class="enumeration">Elasticsearch</span> <span class="enumeration">nginx</span> <span class="enumeration">Varnish</span> <span class="enumeration">Jenkins</span> <span class="enumeration">GitLab (CI)</span>
</li>
</ul>
<h4 id="education"><span class="fa fa-lg fa-mortar-board"></span> <span class="title">Education</span></h4>
<ul class="list-unstyled">
<li class="card-nested">
<div class="content has-sidebar">
<p class="clear-margin-sm">
<strong>Information Technology with specialization in Information Management, Bachelor</strong>,
Norwegian University of Science and Technology
</p>
<p class="text-muted">
<small>
Jul 2011 - Jun 2015
</small>
</p>
<i></i>
<div class="space-top labels">
</div>
</div>
</li>
</ul>
<h4 id="volunteer-work"><span class="fa fa-lg fa-child"></span> <span class="title">Volunteer Work</span> </h4>
<ul class="list-unstyled">
<li class="card-nested">
<div class="content has-sidebar">
<p class="clear-margin-sm">
<strong>Webmaster</strong>,
Vanvik Idrettslag
</p>
<p class="text-muted">
<small>
Jan 2008 - Present
</small>
</p>
<p>Responsible for the website and social media accounts</p>
<ul>
<li> Made a livescore/statistics solution based on Angular and Laravel while I was studying that's still in use: https://live.vanvikil.no </li>
</ul>
</div>
</li>
</ul>
<h4 id="interests"> <span class="fa fa-lg fa-heart"></span> <span class="title">Interests</span> </h4>
<ul class="list-unstyled">
<li class="card-nested">
<p>
<strong>Sports</strong>
</p>
<div class="space-top labels">
<span class="label label-keyword">Football</span>
<span class="label label-keyword">Winter sports</span>
<span class="label label-keyword">Golf</span>
<span class="label label-keyword">Cycling</span>
</div>
</li>
</ul>
<h4 id="languages"><span class="fa fa-lg fa-language"></span> <span class="title">Languages</span> </h4>
<p class="card-nested">
<span class="enumeration">
<strong>Norwegian</strong> (Native speaker)
</span>
<span class="enumeration">
<strong>English</strong> (Bilingual proficiency)
</span>
</ul>
</div>
</div>
</section>
</div>
</body>
</html>