-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·105 lines (92 loc) · 4.86 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
<!doctype html>
<html lang="en">
<head>
<!-- Meta tag from Bootstrap to enable responsiveness -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Import CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/styles.css" rel="stylesheet">
<!-- Bring in that good good Roboto font -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300&display=swap" rel="stylesheet">
<link rel='icon' href='assets/images/favicon.ico' type='image/x-icon'/>
<title>Alex Isken</title>
</head>
<body>
<!-- Nav bar -->
<nav class="navbar sticky-top navbar-expand-lg navbar-dark" style="background-color: #33393d">
<a class="navbar-brand" href="#"><img src="assets/images/square_logo.png" width="30" height="30" alt="logo"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<li class="nav-item active">
<a class="nav-link" href="#">Home<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.linkedin.com/in/alexisken/">Linkedin</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/alexisken">GitHub</a>
</li>
<li class="nav-item">
<a class="nav-link" href="assets/resume/AI's Resume.pdf">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">[email protected]</a>
</li>
</ul>
</div>
</nav>
<!-- My content -->
<div class="hometext">
<div class="intro">
<img src="assets/images/work_alex.jpg" alt="me" id="pic" class="floated">
Hi, I'm Alex.
</div>
</br>
</br>
<div class="headline">
<p>
I'm a product marketing manager at <a class="ext-link" href="https://www.datadoghq.com" style="color: white; text-decoration: underline">Datadog</a>
<img src="assets/images/dd_icon_white.png" alt="datadog" class="sprite">
</p>
</div>
</br>
<div class="continued">
<p>
I'm also a proud alumnus of <a class="ext-link" href="https://www.marquette.edu/" style="color: white; text-decoration: underline">Marquette University</a>, and I'm passionate about solving problems with technology.
</p>
</br>
<hr style="background-color: white">
</br></br>
<p>
Previously, I worked at <a class="ext-link" href="https://www.nielsen.com" style="color: white; text-decoration: underline">Nielsen</a>, where
I was a part of the Technology Emerging Leaders Program. I worked as a serverless engineer, technical product owner, client consultant, and CloudOps project manager.
I even had the privilege of moving to Milan to work as a systems designer & architect with teams around the world.
</p>
<p>
Before that, I worked briefly as an investment research analyst. I focused mostly on healthcare equities, but I also built a statistical ratings model for municipal debt.
</p>
<p>
While at Marquette I had the opportunity to study under <a class="ext-link" href="https://www.marquette.edu/business/directory/david-krause.php" style="color: white; text-decoration: underline">Dr. David Krause</a>
in the Applied Investment Management program. I also worked under <a class="ext-link" href="https://www.marquette.edu/business/directory/terence-ow.php" style="color: white; text-decoration: underline">Professor Terence Ow</a>
to research behavioral finance in action, studying the correlation between daily sentiment of tweets and following stock price movements.
</p>
</br>
<hr style="background-color: white">
</br></br>
<p>
Outside of work, I love board games, disc golf, exploring New York, and reading Sci-Fi. You can often find me programming or taking online classes at coffee shops around Manhattan.
</p>
<p>
If you'd like to say hi, you can find me at <a href="mailto:[email protected]" style="color: white; text-decoration: underline">[email protected]</a>.
</p>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>