-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
136 lines (128 loc) · 5.38 KB
/
about.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
---
layout: page
title: About
permalink: /about/
---
<div class="row">
<div class="col s12 m4 l4">
<div class="card">
<div class="card-image">
<img src="/img/about.jpg">
<span class="card-title">
<span class="strokeme">Koba Khitalishvili</span>
</span>
</div>
<div class="card-content">
<ul class="unstyled list-inline">
<li>
<a href="https://www.facebook.com/cobra.khitalishvili" target="_blank"><i class="fa fa-facebook-square fa-2x"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/kobakhit/" target="_blank"><i class="fa fa-linkedin-square fa-2x"></i></a>
</li>
<li>
<a href="https://plus.google.com/u/0/102338506491711479673/about" target="_blank"><i class="fa fa-google-plus-square fa-2x"></i></a>
</li>
<li>
<a href="https://github.com/KobaKhit"><i class="fa fa-github fa-2x" target="_blank"></i></a>
</li>
<li>
<a href="https://instagram.com/dostre"><i class="fa fa-instagram fa-2x" target="_blank"></i></a>
</li>
<!-- <li>
<a href="http://vk.com/id5413481"><i class="fa fa-vk fa-2x" target="_blank"></i></a>
</li> -->
</ul>
</div>
<div class="card-action center">
<a href="mailto:{{ site.email }}">{{ site.email }}</a>
</div>
</div>
</div>
<!-- Bio -->
<div class="col s12 m8 l8">
<div class = "card-panel">
<p>Welcome to my website! My name is Koba. I am a data scientist and an analytics expert with several years of experience in academia, sports, and marketing technology industries. I am a problem solver at heart and love creating value through data driven solutions complemented with colorful visuals and a captivating story.
</p>
<p>Outside of work, I volunteer as a member of Global Shapers trying to create a positive impact in the Philadelphia community. In addition, web development has been one of my hobbies and from time to time I help people build websites.
</p>
<p>
I use this website to practice my web dev skills, write about data science, machine learning and everything else that may come to mind.</p>
</div>
</div>
</div>
<hr>
</div markdown='0'>
</div makrdown = '0' comment = "container end. After this full width page">
<div class = "row">
<h1 id = "projects" class = "center">Projects</h1>
<h2 class = "center">Reproducible Research</h2>
<div>
<ul class = "list-inline unstyled center">
{% for p in site.data.portfolio %}
{% if p.cat == "repres" %}
<li class = 'left-align' style = "margin-right:0px">
<div class="card small" style = "max-width:300px; display:inline-block">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="{{ p.img }}">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">{{ p.title }}<i class="material-icons right">more_vert</i></span>
<br>
<br>
<p class = "card-title">
{% if p.link %}<a href="{{ p.link }}" target = "_blank">Link</a>{% endif %}
{% if p.ipynb %}<a href="{{ p.ipynb }}" target = "_blank">Ipynb</a> •{% endif %}
{% if p.rmd %}<a href="{{ p.rmd }}" target = "_blank">Rmd</a> •{% endif %}
{% if p.pdf %}<a href="{{ p.pdf }}" target = "_blank">Paper</a> •{% endif %}
{% if p.github %}<a href="{{ p.github}}" target = "_blank">Code</a> •{% endif %}
{% if p.kaggle %}<a href="{{ p.kaggle}}" target = "_blank">Kaggle</a> •{% endif %}
</p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Description<i class="material-icons right">close</i></span>
<p>{{ p.description }}</p>
</div>
</div>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
<br>
<div class = "row">
<h2 id = 'webdev'class = "center">Webdev</h2>
<div>
<ul class = "list-inline unstyled center">
{% for p in site.data.portfolio %}
{% if p.cat == "webdev" %}
<li class = 'left-align' style = "margin-right:0px">
<div class="card small" style = "max-width:300px; display:inline-block">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="{{ p.img }}">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">{{ p.title }}<i class="material-icons right">more_vert</i></span>
<br>
<br>
<p class = "card-title">
{% if p.link %}<a href="{{ p.link }}" target = "_blank">Link</a> •{% endif %}
{% if p.ipynb %}<a href="{{ p.ipynb }}" target = "_blank">Ipynb</a>{% endif %}
{% if p.rmd %}<a href="{{ p.rmd }}" target = "_blank">Rmd</a>{% endif %}
{% if p.pdf %}<a href="{{ p.pdf }}" target = "_blank">Paper</a>{% endif %}
{% if p.github %}<a href="{{ p.github}}" target = "_blank">Code</a>{% endif %}
{% if p.kaggle %}<a href="{{ p.kaggle}}" target = "_blank">Kaggle</a>{% endif %}
</p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Description<i class="material-icons right">close</i></span>
<p>{{ p.description }}</p>
</div>
</div>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>