-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
503 lines (400 loc) · 26.7 KB
/
index.html
File metadata and controls
503 lines (400 loc) · 26.7 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
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
<!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">
<meta name="description" content="graphic web design ui ux user interface experience engineer developer designer tasos papazoglou chalikias">
<meta name="author" content="Tasos Papazoglou Chalikias">
<meta name="robots" content="all">
<title>Tasos Papazoglou Chalikias - UX Engineer & Developer</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="theme-color" content="#455EDE">
<link href='https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700i' rel='stylesheet' type='text/css'>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-35499383-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body data-spy="scroll" data-target="#navbar">
<nav class="navbar navbar-default navbar-fixed-top BGColorPrimary500 z-depth-1 HeaderStyle">
<div class="PreNavbar BGColorPrimary700"></div>
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-responsive-collapse" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<p class="visible-xs HeaderTextMobile">Tasos Papazoglou Chalikias </p>
</div>
<div id="navbar" class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#home">Home</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#knowledge">Knowledge</a></li>
<li><a href="#education">Education</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div id="home">
<div class="SplashImageStyle">
<img alt="splash screen" src="img/splash2.jpg">
</div>
<div class="PresentationTextStyle">
<div class="container">
<div class="col-lg-8 col-md-10 col-lg-offset-2 col-md-offset-1">
<h1 class="FontSize48 hidden-xs">Tasos Papazoglou - Chalikias</h1>
<hr class="hidden-xs">
<h1 class="FontSize36 hidden-xs">UX Engineer / Full Stack Developer</h1>
<h1 class="FontSize28 visible-xs">Tasos Papazoglou - Chalikias</h1>
<hr class="visible-xs">
<h1 class="FontSize28 visible-xs">UX Engineer / Full Stack Developer</h1>
</div>
</div>
</div>
</div>
<div class="MainContent">
<div class="clearfix row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 SheetStyle">
<div class="row SectionStyle">
<div class="visible-xs visible-sm">
<img alt="avatar" src="img/avatar.png" class="AvatarImageStyle img-responsive CenterContent">
</div>
<div class="col-lg-3 col-md-3 hidden-xs hidden-sm">
<img alt="avatar" src="img/avatar.png" class="AvatarImageStyle img-responsive">
</div>
<div class="col-lg-9 col-md-9 hidden-xs hidden-sm">
<h2>Hi, I'm Tasos</h2>
<p class="BlockText IntroductionTextStyle ">I'm a UX Engineer that designs user interfaces, develops for the web and creates animated videos.</p>
<p class="BlockText IntroductionTextStyle ">I like consulting on functional Design practices, writing software in JavaScript and analyzing the UX/UI of video games.</p>
<p class="BlockText IntroductionTextStyle ">Sometimes I write about the design process:</p>
<p class="BlockText IntroductionTextStyle "><a target="_blank" href="https://www.improve-my-city.com/imc-wp-design-language/"> IMC WP Design Language <sup>[article]</sup></a></p>
<a href="https://twitter.com/sushiperv" target="_blank" class="SocialMediaIcon">K</a>
<a href="http://gr.linkedin.com/in/tpapazoglou" target="_blank" class="SocialMediaIcon">G</a>
<a href="https://www.youtube.com/user/sushipervert" target="_blank" class="SocialMediaIconAlt">9</a>
</div>
<div class="visible-xs visible-sm">
<h2 class="text-center">Hi, I'm Tasos</h2>
<p class="BlockText IntroductionTextStyle text-center ">I'm a UX Engineer that designs user interfaces and develops for the web.</p>
<p class="BlockText IntroductionTextStyle text-center ">I like consulting on functional Design practices, writing software in JavaScript and analyzing the UX/UI of video games.</p>
<p class="BlockText IntroductionTextStyle text-center">Sometimes I write about the design process:</p>
<p class="BlockText IntroductionTextStyle "><a target="_blank" href="https://www.improve-my-city.com/imc-wp-design-language/"> IMC WP Design Language <sup>[article]</sup></a></p>
<div class="CenterContentFlex">
<a href="https://twitter.com/sushiperv" target="_blank" class="SocialMediaIcon">K</a>
<a href="http://gr.linkedin.com/in/tpapazoglou" target="_blank" class="SocialMediaIcon">G</a>
<a href="https://www.youtube.com/user/sushipervert" target="_blank" class="SocialMediaIconAlt">9</a>
</div>
</div>
</div>
<hr>
<div class="row SectionStyle" id="projects">
<div class="col-lg-12">
<h2>Latest projects</h2>
<div class="WhiteSpaceSpacer"></div>
<div class="grid">
<div class="row">
<div class="col-lg-6 col-md-6">
<figure class="effect-apollo">
<img class="img-responsive" src="img/yt.png" alt="UX/UI Video Game Review series"/>
<figcaption>
<h2 class="hidden-sm hidden-xs"> UX / UI Video Game <span> Review </span> series </h2>
<h3 class="visible-sm visible-xs"> UX / UI Video Game <span> Review </span> series </h3>
<p> An analysis on the UX/UI aspect of video games</p>
<a href="https://www.youtube.com/watch?v=a_h9wYNjiPQ&list=PLroVNk6nru5TDMFy-exZUXquk8VnYrTAP" target="_blank">View more</a>
</figcaption>
</figure>
</div>
<div class="col-lg-6 col-md-6">
<figure class="effect-apollo">
<img class="img-responsive" src="img/cutler.png" alt="CUTLER promo video"/>
<figcaption>
<h2 class="hidden-sm hidden-xs"> CUTLER <span> PROMO VIDEO </span> </h2>
<h3 class="visible-sm visible-xs"> CUTLER <span> PROMO VIDEO </span> </h3>
<p> Promotional video for the CUTLER EU funded H2020 project</p>
<a href="https://www.youtube.com/watch?v=g3dh5mfOXAc" target="_blank">View more</a>
</figcaption>
</figure>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6">
<figure class="effect-apollo">
<img class="img-responsive" src="img/gtw.png" alt="Gaze the Web training app"/>
<figcaption>
<h2 class="hidden-sm hidden-xs"> Gaze The Web <span> TRAINING APP </span> </h2>
<h3 class="visible-sm visible-xs"> Gaze The Web <span> TRAINING APP </span> </h3>
<p> A training game for an 'eyes only interface' browser</p>
<a href="https://www.behance.net/gallery/84232377/Gaze-The-Web-training-app" target="_blank">View more</a>
</figcaption>
</figure>
</div>
<div class="col-lg-6 col-md-6">
<figure class="effect-apollo">
<img class="img-responsive" src="img/yt-mamem.png" alt="MAMEM promotional video"/>
<figcaption>
<h2 class="hidden-sm hidden-xs"> MAMEM <span> PROMO VIDEO </span> </h2>
<h3 class="visible-sm visible-xs"> MAMEM <span> PROMO VIDEO </span> </h3>
<p> Promotional video for the MAMEM EU funded H2020 project</p>
<a href="https://www.youtube.com/watch?v=42yGmr3NE0k" target="_blank">View more</a>
</figcaption>
</figure>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6">
<figure class="effect-apollo">
<img class="img-responsive" src="img/envisage.png" alt="Virtual Labs Authoring tool"/>
<figcaption>
<h2 class="hidden-sm hidden-xs"> Virtual Labs <span> AUTHORING TOOL </span> </h2>
<h3 class="visible-sm visible-xs"> Virtual Labs <span> AUTHORING TOOL </span> </h3>
<p> A web interface to the Unity3D Building environment</p>
<a href="https://www.behance.net/gallery/84196143/Virtual-Labs-Authoring-tool" target="_blank">View more</a>
</figcaption>
</figure>
</div>
<div class="col-lg-6 col-md-6">
<figure class="effect-apollo">
<img class="img-responsive" src="img/material-icons-22.png" alt="Material Design Icons 2.2"/>
<figcaption>
<h2 class="hidden-sm hidden-xs">Material <span> Icons</span> 2.2 </h2>
<h3 class="visible-sm visible-xs">Material <span> Icons</span> 2.2 </h3>
<p>Material Design Icons for Adobe Fireworks & Illustrator CS6+</p>
<a href="https://www.behance.net/gallery/38463293/Google-Material-Design-Icons-22-(AI-FWPNG)" target="_blank">View more</a>
</figcaption>
</figure>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6">
<figure class="effect-apollo">
<img class="img-responsive" src="img/imc_wp.png" alt="Improve My City WordPress plugin"/>
<figcaption>
<h2 class="hidden-sm hidden-xs">IMC <br><span> WordPress plugin </span> </h2>
<h3 class="visible-sm visible-xs">IMC <span> WordPress plugin </span> </h3>
<p>Improve My City WordPress plugin design & implementation</p>
<a href="https://www.behance.net/gallery/38461375/Improve-My-City-WordPress-plugin" target="_blank">View more</a>
</figcaption>
</figure>
</div>
<div class="col-lg-6 col-md-6">
<figure class="effect-apollo">
<img class="img-responsive" src="img/AIS.png" alt="CERN - AIS Logo redesign"/>
<figcaption>
<h2 class="hidden-sm hidden-xs">CERN-AIS <span> Logo </span> </h2>
<h3 class="visible-sm visible-xs">CERN-AIS <span> Logo </span> </h3>
<p>CERN-AIS Logo redesign</p>
<a href="https://www.behance.net/gallery/27781065/CERN-AIS-Group-Logo-redesign" target="_blank">View more</a>
</figcaption>
</figure>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6">
<figure class="effect-apollo">
<img class="img-responsive" src="img/mobility.png" alt="Mobility Sense"/>
<figcaption>
<h2 class="hidden-sm hidden-xs">Mobility <span> Sense </span> </h2>
<h3 class="visible-sm visible-xs">Mobility <span> Sense </span> </h3>
<p>Web design & development</p>
<a href="http://on.be.net/18eczAt" target="_blank">View more</a>
</figcaption>
</figure>
</div>
<div class="col-lg-6 col-md-6">
<figure class="effect-apollo">
<img class="img-responsive" src="img/imc_android_mat.png" alt="Improve My City Android app redesign"/>
<figcaption>
<h2 class="hidden-sm hidden-xs">IMC <span> Android </span> </h2>
<h3 class="visible-sm visible-xs">IMC <span> Android </span> </h3>
<p>Improve My City Android app redesign & implementation</p>
<a href="http://on.be.net/13NdTqV" target="_blank">View more</a>
</figcaption>
</figure>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6">
<figure class="effect-apollo">
<img class="img-responsive" src="img/imc_ios_mat.png" alt="Improve My City Android app redesign"/>
<figcaption>
<h2 class="hidden-sm hidden-xs">IMC <span> iOS </span> </h2>
<h3 class="visible-sm visible-xs">IMC <span> iOS </span> </h3>
<p>Improve My City iOS app redesign</p>
<a href="http://on.be.net/1tVNd3Z" target="_blank">View more</a>
</figcaption>
</figure>
</div>
<div class="col-lg-6 col-md-6">
<figure class="effect-apollo">
<img class="img-responsive" src="img/imc_promo_vid.png" alt="Improve My City promotional video"/>
<figcaption>
<h2 class="hidden-sm hidden-xs">IMC <span> promo video </span></h2>
<h3 class="visible-sm visible-xs">IMC <span> promo video </span></h3>
<p>Improve My City promotional video</p>
<a href="https://www.behance.net/gallery/12466709/Improve-My-City-promotional-video" target="_blank">View more</a>
</figcaption>
</figure>
</div>
</div>
</div>
<h3 class="text-center"><a href="https://www.behance.net/tpapazoglou" target="_blank">Behance portfolio</a></h3>
<hr>
</div>
</div>
<div class="row SectionStyle">
<div class="col-lg-10">
<h2 id="experience">Experience</h2>
<div class="WhiteSpaceSpacer"></div>
<h3><a href="http://infalia.com/" target="_blank">Infalia, Greece</a></h3>
<h5 class="visible-xs">June 2014 - 2021</h5>
<h5>
<span class="pull-left">UX engineer, full stack developer</span>
<span class="pull-right hidden-xs">June 2014 - 2021</span>
</h5>
<br>
<p> - Core member of the Improve My City team, designing user interfaces for Android, iOS devices & the web.
<br> - Skinning designs on the Android platform and developing for the web.
<br> - Developer and maintainer of the WordPress IMC RESTful based API plugin.
</p>
<div class="WhiteSpaceSpacer"></div>
<h3><a href="http://iti.gr/" target="_blank">Information Technologies Institute, Centre for Research and Technology Hellas (CERTH)</a></h3>
<h5 class="visible-xs">August 2013 - Present</h5>
<h5>
<span class="pull-left">Research assistant, software engineer, graphic designer</span>
<span class="pull-right hidden-xs">August 2013 - Present</span>
</h5>
<br>
<p>Researcher and developer in CERTH - ITI with a focus on web applications and user
interfaces.
</p>
<p>Participating in HORIZON2020 & FP7 projects, work is related to:
<br> - Helping decision makers to extract effective policies from big data analytics using visualizations in the <a target="_blank" href="https://www.cutler-h2020.eu/" >CUTLER</a> project,
<br> - Enabling interface channels for people with neuromuscular diseases in the <a href="http://www.mamem.eu/" target="_blank">MAMEM</a> project,
<br> - Providing a new, cost efficient solution to the capture, processing and display of cultural artifacts in the <a href="http://digiart-project.eu/" target="_blank">DigiArt</a> project.
</p>
<p>
Co-authoring proposals for HORIZON2020 EU Research Projects along with other researchers of the Institute.
</p>
<div class="WhiteSpaceSpacer"></div>
<h3><a href="http://www.perfectedz.com/" target="_blank">Perfect Edge, UK</a></h3>
<h5 class="visible-xs">October 2011 - October 2012</h5>
<h5>
<span class="pull-left">UX/UI designer, front-end developer</span>
<span class="pull-right hidden-xs">October 2011 - October 2012</span>
</h5>
<br>
<p>Tasked with application design planning, UX analysis & graphic design,
being part of a startup company creating software products and multimedia applications
headquartered in London UK.
</p>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<hr>
</div>
</div>
<div class="row SectionStyle" id="knowledge">
<div class="col-lg-12">
<h2>Knowledge</h2>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6">
<h3>Skills</h3>
<h4>HTML5 / CSS3 / JavaScript</h4>
<h4>PHP / MYSQL / WORDPRESS</h4>
<h4>Android Skinning</h4>
<h4>C / CUDA C</h4>
<h4>OPENGL / PHYSX</h4>
</div>
<div class="WhiteSpaceSpacer visible-xs"></div>
<div class="col-lg-6 col-md-6 col-sm-6">
<h3>Software & Tools</h3>
<h4>Photoshop / Illustrator / Fireworks</h4>
<h4>After Effects / Audition</h4>
<h4>PhpStorm / JetBrains Development Tools</h4>
<h4>Android Studio</h4>
<h4>Elastic / Kibana</h4>
<h4>Git / Subversion</h4>
</div>
</div>
<hr>
</div>
</div>
<div class="row SectionStyle" id="education">
<div class="col-lg-10">
<h2>Education</h2>
<h3><a target="_blank" href="https://dmci.csd.auth.gr/en/"> Master of Science on Digital Media - Computational Intelligence</a></h3>
<h5>2012 - 2015</h5>
<p>Aristotle University of Thessaloniki, Department of Computer Science.
</p>
<div class="WhiteSpaceSpacer"></div>
<h3> <a target="_blank" href="http://informatics.teicm.gr/"> Bachelor’s Degree in Software Engineering & Telecommunications</a></h3>
<h5>2004 - 2011</h5>
<p>Technological Institute of Central Macedonia Greece, Department of Informatics Engineering.
</p>
</div>
</div>
</div>
</div>
</div>
</div> <!-- /container -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery-1.11.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
/*!
* IE10 viewport hack for Surface/desktop Windows 8 bug
* Copyright 2014 Twitter, Inc.
* Licensed under the Creative Commons Attribution 3.0 Unported License. For
* details, see http://creativecommons.org/licenses/by/3.0/.
*/
// See the Getting Started docs for more information:
// http://getbootstrap.com/getting-started/#support-ie10-width
(function () {
'use strict';
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
var msViewportStyle = document.createElement('style');
msViewportStyle.appendChild(
document.createTextNode(
'@-ms-viewport{width:auto!important}'
)
);
document.querySelector('head').appendChild(msViewportStyle)
}
})();
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 600);
return false;
}
}
});
});
</script>
</body>
</html>