-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
673 lines (625 loc) · 31.6 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
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
<!DOCTYPE html>
<html class="no-js" 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="Author: Stathis Kaloutsidis, a personal dev portfolio can also be used as CV because it summarizes my working life.">
<title>Stathis Kaloutsidis</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900&display=swap" rel="stylesheet">
<link href="libs/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<div id="mobile-menu-open" class="shadow-large">
<i class="fa fa-bars" aria-hidden="true"></i>
</div>
<!-- End #mobile-menu-toggle -->
<header>
<div id="mobile-menu-close">
<span>Close</span> <i class="fa fa-times" aria-hidden="true"></i>
</div>
<ul id="menu" class="shadow">
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#experience">Experience</a>
</li>
<li>
<a href="#education">Education</a>
</li>
<li>
<a href="#projects">Projects</a>
</li>
<li>
<a href="#skills">Skills</a>
</li>
<li>
<a href="#certifications">Certifications</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</header>
<!-- End header -->
<div id="lead">
<div id="lead-content">
<h1>Stathis Kaloutsidis</h1>
<h2>Lead Data Engineer</h2>
<a href="assets/Efstathios_Kaloutsidis_CV.pdf" download="Efstathios_Kaloutsidis_CV.pdf"
class="btn-rounded-white">Download Resume</a>
</div>
<!-- End #lead-content -->
<div id="lead-overlay"></div>
<div id="lead-down">
<span>
<i class="fa fa-chevron-down" aria-hidden="true"></i>
</span>
</div>
<!-- End #lead-down -->
</div>
<!-- End #lead -->
<div id="about">
<div class="container">
<div class="row">
<div class="col-md-4">
<h2 class="heading">About Me</h2>
</div>
<div class="col-md-8">
<p> Hello, my name is Efstathios Kaloutsidis, but you can call me Stathis. I am a Greek data
engineer with a Bachelor of
Science in Computer and Informatics Engineering from the Technological Educational Institute of
Western Greece, and
an Executive MBA from the University of Piraeus. Besides my passion for Information Technology,
I enjoy spending
quality time with friends and family. My hobbies include snowboarding, weight training, reading,
and watching
movies. For more insights into my professional interests, you can visit these links:
<a href="https://www.credly.com/users/efstathios-kaloutsidis/badges" target="_blank"
rel="noreferrer">Credly</a>,
<a href="https://github.com/Stathis-Kal" target="_blank" rel="noreferrer">GitHub</a> or you can
connect
with me in <a href="https://gr.linkedin.com/in/efstathios-kaloutsidis" target="_blank"
rel="noreferrer">LinkedIn</a>.
</p>
</div>
</div>
</div>
</div>
<!-- End #about -->
<div id="experience" class="background-alt">
<h2 class="heading">Experience</h2>
<div id="experience-timeline">
<div data-date="April 2024 - Present">
<h3><a href="https://www.covariance.gr/" target="_blank" rel="noreferrer">COVARIANCE P.C.</a></h3>
<h4>Head of Data Engineering Dept</h4>
<p>As the Head of Data Engineering, my role encompasses a diverse set of responsibilities:
<ul>
<li>
Oversee the entire project lifecycle, from gathering specifications to writing code,
implementing pipelines, and
producing documentation.
</li>
<li>
Manage projects, communicate with customers, and ensure seamless communication between all
stakeholders.
</li>
<li>
Handle end-to-end project tasks, encompassing all aspects of data engineering, ensuring that
each project runs smoothly
from start to finish.
</li>
<li>
Excel in multitasking and managing high-pressure environments, adapting swiftly to evolving
project demands.
</li>
<li>
Mentor and guide junior engineers, fostering a collaborative and growth-oriented team
environment.
</li>
</ul>
Indicative Tools:
<ul>
<li>Python</li>
<li>Azure SQL Server</li>
<li>Azure Data Factory</li>
<li>Azue Functions</li>
<li>Azure Blob Storage</li>
<li>Azure Logic Apps</li>
<li>SharePoint</li>
<li>Power Automate</li>
<li>Jira</li>
<li>Git / GitHub</li>
</ul>
</p>
</div>
<div data-date="September 2021 – April 2024">
<h3><a href="https://home.kpmg/gr/el/home.html" target="_blank" rel="noreferrer">KPMG Greece</a></h3>
<h4>Software Developer</h4>
<p>
Member of internal IT applications team
<ul>
<li>Supported users with software-related problems and implemented new solutions based on business
needs.
</li>
<li>Leveraged data engineering tools and technologies to provide detailed reports for business users
and executives.
</li>
</ul>
Indicative tools:
<ul>
<li>SSRS reports (RDL)</li>
<li>SSAS multidimensional (MDX) / Tabular (DAX)</li>
<li>SSIS, ETL</li>
<li>PowerBI reports/dashboards</li>
<li>Excel reports</li>
<li>CCH Tagetik</li>
<li>SQL Server / Transact-SQL</li>
<li>.NET (#C, VB)</li>
<li>VBA</li>
</ul>
</p>
</div>
<div data-date="December 2018 – September 2021">
<h3><a href="https://ist.com.gr/" target="_blank" rel="noreferrer">IST - International Software
Techniques S.A.</a></h3>
<h4>Software Engineer</h4>
<p>
External Collaborator - Multinational Telecommunication Company <br>Business Intelligence Department
& OSS Department
<ul>
<li>BI Engineer: Developed and maintained business intelligence solutions to provide actionable
insights.</li>
<li>OSS Engineer: Managed and optimized operational support systems.</li>
</ul>
Indicative tools:
<ul>
<li>SSRS reports (RDL), PowerBI reports, Excel reports</li>
<li>SSAS multidimensional cubes</li>
<li>SQL Server, Oracle database, PL/SQL</li>
<li>SharePoint</li>
<li>PowerShell scripts for DB’s, Reporting Services, SharePoint, AD and system administration.
</li>
</ul>
</p>
</div>
<div data-date="October 2016 – April 2017">
<h3><a href="https://www.eydap.gr/" target="_blank" rel="noreferrer">EYDAP</a></h3>
<h4>IT Support Technician - Internship</h4>
<p>
During my internship as IT Support, I honed my technical skills in maintaining and upgrading various
devices, and
developed strong problem-solving abilities through daily troubleshooting tasks. Additionally, I
learned the importance
of effective communication and providing timely support to ensure smooth operations within the
company.
<ul>
<li>Administartion of company portal and email.</li>
<li>Maintenance, repair, upgrade and installation of PC's, laptops, scanners, printers and
multifunction printers.</li>
<li>Troubleshooting everyday IT related problems of employees through remote access or in
person.</li>
</ul>
</p>
</div>
</div>
</div>
<!-- End #experience -->
<div id="education">
<h2 class="heading">Education</h2>
<div class="education-block">
<h3><a href="https://emba.unipi.gr/?lang=en" target="_blank" rel="noreferrer">University of Piraeus</a>
</h3>
<span class="education-date">Fall 2024 - Present</span>
<h4>Executive MBA</h4>
<ul>
<li>Critically interpret business organization and management concepts.</li>
<li>Use appropriate tools and statistical methods for analyzing and solving business problems and
crises.</li>
<li>Apply knowledge, experience, and skills to develop innovative solutions for modern organizational
challenges.</li>
<li>Embrace continuous improvement and personal development within the organization.</li>
<li>Understand the entrepreneurship ecosystem and evaluate business opportunities.</li>
</ul>
</div>
<div class="education-block">
<h3><a href="http://www.cied.teiwest.gr/" target="_blank" rel="noreferrer">Technological Educational
Institute of Western
Greece</a></h3>
<span class="education-date">Fall 2011 - Dec 2017</span>
<h4>Bachelor of Science in Computer and Informatics Engineering Department - CIED</h4>
<ul>
<li>
Thesis: Data Mining in RDBMS.
</li>
<li>
Paper about Internet of Things (IoT).
</li>
<li>
In Jan 2016 I presented the “Production and Distribution of a Product in Marketing” for a students’
conference held by the Technological Educational Institute of Western Greece (Patras).
</li>
</ul>
</div>
<!-- End .education-block -->
</div>
<!-- End #education -->
<div id="projects" class="background-alt">
<h2 class="heading">Projects</h2>
<div class="container">
<div class="row">
<div class="project shadow-large">
<div class="project-image">
<picture>
<source type="image/webp" srcset="images/ch_app.webp">
<source type="image/png" srcset="images/ch_app.png">
<img src="images/ch_app.png" alt="screenshot_of_collecting_height_app" width="300"
height="300">
</picture>
</div>
<!-- End .project-image -->
<div class="project-info">
<h3>Collecting Height</h3>
<p>
A Web application that collects users height, stores it in DB then it send an email
to the user with statistical analysis of average height data in the records of db.
<br> Deployed on <a href="https://collectingheightapp.herokuapp.com/" target="_blank"
rel="noreferrer">Heroku</a>. <br>
<u>Keywords</u>: Python, Flask, HTML, CSS, PostgreSQL, Heroku.
</p>
<a href="https://github.com/Stathis-Kal/collecting-height-app" target="_blank"
rel="noreferrer">View
Project</a>
</div>
<!-- End .project-info -->
</div>
<!-- End .project -->
<div class="project shadow-large">
<div class="project-image">
<picture>
<source type="image/webp" srcset="images/happiness.webp">
<source type="image/png" srcset="images/happiness.png">
<img src="images/happiness.png" alt="globe_image" width="300" height="300">
</picture>
</div>
<!-- End .project-image -->
<div class="project-info">
<h3>World Happiness</h3>
<p>
A Jupyter notebook in which I explore the happiness of Greece according to the <strong>World
Happiness Report</strong> in the years of 2015 to 2019.
<br><u>Keywords</u>: Python, Jupyter Notebook, Pandas, NumPy, Matplotlib, GeoJSON, Folium,
Choropleth map,
Data Science, Data Analysis, Data Visualization.
</p>
<a href="https://github.com/Stathis-Kal/world-happiness" target="_blank" rel="noreferrer">View
Project</a>
</div>
<!-- End .project-info -->
</div>
<!-- End .project -->
</div>
<a id="view-more-projects" href="#">View More Projects</a>
<div id="more-projects" class="row">
<div class="project shadow-large">
<div class="project-image">
<picture>
<source type="image/webp" srcset="images/greece_map.webp">
<source type="image/png" srcset="images/greece_map.png">
<img src="images/greece_map.png" alt="map_of_Greece" width="302" height="300">
</picture>
</div>
<!-- End .project-image -->
<div class="project-info">
<h3>Webmap of Greece</h3>
<p>
An <strong>interactive</strong> Webmap of Greece, to display various locations on the map
with valuable
information. The user can click the points on the map to display numerous information about
volcanoes, ports, mountains, ski resorts and lakes across Greece.
<br><u>Keywords</u>: Python, Folium, Leaflet, OpenStreetMap.
</p>
<a href="https://github.com/Stathis-Kal/Greece-WebMap" target="_blank" rel="noreferrer">View
Project</a>
</div>
<!-- End .project-info -->
</div>
<!-- End .project -->
<div class="project shadow-large">
<div class="project-image">
<picture>
<source type="image/webp" srcset="images/bookshelf.webp">
<source type="image/png" srcset="images/bookshelf.png">
<img src="images/bookshelf.png" alt="screenshot_of_bookshelf_app" width="310" height="217">
</picture>
</div>
<!-- End .project-image -->
<div class="project-info">
<h3>Bookshelf</h3>
<p>
Bookshelf is an executable program made with python. You can use Bookshelf as a
storeroom of the books which you have read.
Bookshelf stores the information about the <strong>Title</strong>, <strong>Author</strong>,
<strong>Year</strong> and the <strong>ISBN</strong> of the book.<br>
<u>Keywords</u>: Python, Tkinter, SQLite, GUI, SQL.
</p>
<a href="https://github.com/Stathis-Kal/Bookshelf" target="_blank" rel="noreferrer">View
Project</a>
</div>
<!-- End .project-info -->
</div>
<!-- End .project -->
</div>
</div>
<!-- Projects Above -->
</div>
<!-- End #projects -->
<div id="skills">
<h2 class="heading">Skills</h2>
<ul>
<li>Azure Data Factory</li>
<li>Azure Logic Apps</li>
<li>Azure SQL Server</li>
<li>Azure Blob Storage</li>
<li>Azure Functions</li>
<li>Microsoft Azure</li>
<li>Power Automate</li>
<li>Cloud</li>
<li>JavaScript</li>
<li>Python</li>
<li>.NET</li>
<li>C#</li>
<li>HTML</li>
<li>CSS</li>
<li>SQL</li>
<li>Git</li>
<li>SVN</li>
<li>PowerShell</li>
<li>Microsoft Office</li>
<li>VBA</li>
<li>PowerBI</li>
<li>SSAS</li>
<li>SSRS</li>
<li>SSIS</li>
<li>Oracle DB</li>
<li>PL/SQL</li>
<li>Microsoft SQL Server</li>
<li>T-SQL</li>
<li>PostgreSQL</li>
<li>SharePoint</li>
<li>Jira</li>
<li>Data Analysis</li>
<li>Data Visualization</li>
<li>Data Engineering</li>
<li>ETL</li>
<li>ELT</li>
</ul>
</div>
<!-- End #skills -->
<div id="certifications">
<div class="certifications-section background-alt">
<h2 class="heading">Certifications</h2>
<div class="certifications-section-block">
<h3>Universities</h3>
<h4>Athens University of Economics and Business</h4>
<ul>
<li> <a href="images/python_certification_opa.jpg" target="_blank" rel="noreferrer">Data Analysis
and programming with Python 3.</a>
Issued Jun 2021.
</li>
</ul>
<h4>University of Michigan</h4>
<ul>
<li> <a href="assets/ecpe.pdf" target="_blank" rel="noreferrer">Examination for the Certificate of
Proficiency in English (ECPE).</a>
Issued Dec 2019.
</li>
</ul>
<h4>Stanford University</h4>
<ul>
<li><a href="assets/StatementStanford.pdf" target="_blank" rel="noreferrer">JSON DATA.</a> Issued
Oct 2017.
</li>
<li><a href="assets/StatementStanfordCS101.pdf" target="_blank" rel="noreferrer">Computer Science
101.</a> Issued Oct
2018.
</li>
<li><a href="assets/StatementStanfordOLAP.pdf" target="_blank" rel="noreferrer">On-Line Analytical
Processing.</a>
Issued Feb 2019.
</li>
</ul>
<h4>The Open University (United Kingdom)</h4>
<ul>
<li><a href="assets/CYBER_B1_statement.pdf" target="_blank" rel="noreferrer">Introduction to cyber
security: stay
safe online.</a> Issued on: October 14, 2017</li>
</ul>
<h4>The Open Universities (Australia)</h4>
<ul>
<li><a href="assets/Subject_Certificate_15_November_2016.pdf" target="_blank" rel="noreferrer">Big
Data for Better
Performance.</a> Issued on: November 15, 2016.</li>
<li><a href="assets/Subject_Certificate_22_September_2017.pdf" target="_blank"
rel="noreferrer">Management for a
Competitive Edge.</a> Issued on: September 22, 2017</li>
</ul>
</div>
<div class="certifications-section-block">
<h3>Companies</h3>
<h4>Databricks</h4>
<ul>
<li><a href="https://credentials.databricks.com/251e625d-5681-435c-a931-e9df1b0cc345#gs.gqf7i7" target="_blank"
rel="noreferrer">Databricks Lakehouse Fundamentals
</a>Issued on:
February 22, 2024.</li>
<li><a href="https://credentials.databricks.com/f50052bb-e09c-4db6-b075-51760be0e2dc" target="_blank"
rel="noreferrer">Generative AI Fundamentals
</a>Issued on:
March 21, 2024.</li>
</ul>
<h4>KPMG International</h4>
<ul>
<li><a href="https://www.credly.com/badges/e27c565a-879d-4d54-a24d-2917bca6133c" target="_blank"
rel="noreferrer">KPMG
TOM Foundations.
</a>Issued on:
June 12, 2023.</li>
<li><a href="https://www.credly.com/badges/5c5d1c3e-2723-422f-ad58-35bd98974c3a" target="_blank"
rel="noreferrer">Digital and Data Foundations - Disruptive technologies.
</a>Issued on:
June 14, 2023.</li>
<li><a href="https://www.credly.com/badges/dc67b487-1a51-43a5-a279-d9cd47e36704" target="_blank"
rel="noreferrer">Digital and Data Foundations - Cloud, Technology Platforms and Cyber Security
</a>Issued on:
June 07, 2023.</li>
<li><a href="https://www.credly.com/badges/4ef30ffa-5144-4a67-92fd-8cec054c9f52" target="_blank"
rel="noreferrer">Digital and Data Foundations - Agile and Software Development
</a>Issued on:
June 14, 2023.</li>
<li><a href="https://www.credly.com/badges/ac973d6b-d9ae-4678-b76c-d44cb7ebdea7" target="_blank"
rel="noreferrer">Digital and Data Foundations - Artificial intelligence and automation
</a>Issued on:
June 14, 2023.</li>
<li><a href="https://www.credly.com/badges/6ddc1a2c-cee5-45b4-b271-0b1b2db7fd59" target="_blank"
rel="noreferrer">Digital and Data Foundations - Data, Sustainability and Technology
</a>Issued on:
January 10, 2024.</li>
</ul>
<h4>Google</h4>
<ul>
<li><a href="https://learndigital.withgoogle.com/greektourism/validate-certificate-code"
target="_blank" rel="noreferrer">Basic Digital Marketing Principles</a> please enter this
text <strong>R2T
VMQ
HLT</strong>
as the
Credential ID. Issued on: October 15, 2016.</li>
</ul>
<h4>IBM</h4>
<ul>
<li><a href="https://courses.cognitiveclass.ai/certificates/2092eba002a249eaa3ec802943bc76be"
target="_blank" rel="noreferrer">Introduction to Data Science.</a> Issued on:
February 13, 2020.
</li>
<li><a href="https://courses.cognitiveclass.ai/certificates/f3dc762dff5a4477b25fe58f34d6c08f"
target="_blank" rel="noreferrer">Data Science Methodology.</a> Issued on:
February 14, 2020.</li>
<li><a href="https://courses.cognitiveclass.ai/certificates/569bdd6ecd054d97a7e2bd2b1c4eed0e"
target="_blank" rel="noreferrer">Data Science Hands-On with Open Source Tools.</a> Issued
on:
February 14, 2020.</li>
<li><a href="https://courses.cognitiveclass.ai/certificates/41ae723e034c4c6ab2acfa2806485797"
target="_blank" rel="noreferrer">Python 101 for Data Science.</a> Issued on:
February 19, 2020.</li>
<li><a href="https://courses.cognitiveclass.ai/certificates/3aaf537c8f9c4307879318d0fa2ecf1c"
target="_blank" rel="noreferrer">Data Analysis with Python.</a> Issued on:
February 21, 2020.</li>
<li><a href="https://courses.cognitiveclass.ai/certificates/a8e66ddb0a324f60b1a6cb16972d3cad"
target="_blank" rel="noreferrer">Data Visualization with Python.</a> Issued on:
February 24, 2020.</li>
<li><a href="https://courses.cognitiveclass.ai/certificates/849562bea3f2456b9a9968ce9d19ca97"
target="_blank" rel="noreferrer">
NoSQL and DBaaS 101.</a> Issued on: October 5, 2020</li>
<li> <a href="https://courses.cognitiveclass.ai/certificates/efc0ea5b9af74be3973d3ddd48a9c01b"
target="_blank" rel="noreferrer">Data Privacy Fundamentals.
</a> Issued on: October 6, 2020</li>
<li> <a href="https://courses.cognitiveclass.ai/certificates/1a95c77d6874466d89290e1116103b68"
target="_blank" rel="noreferrer">Modernizing Java EE Applications.
</a> Issued on: October 6, 2020</li>
</ul>
<h4>Udemy</h4>
<ul>
<li><a href="https://www.udemy.com/certificate/UC-N642EL4X/" target="_blank" rel="noreferrer">HTML5
and CSS3
Fundamentals.</a> Issued on: November 25, 2019.</li>
<li><a href="https://www.udemy.com/certificate/UC-MAK6WFUK/" target="_blank"
rel="noreferrer">Javascript
Essentials.</a>
Issued on: November 26, 2019.</li>
<li><a href="https://www.udemy.com/certificate/UC-VOTUHR99/" target="_blank" rel="noreferrer">Learn
to Program in
Javascript: Beginner to Pro.</a> Issued on: November 28, 2019.</li>
<li><a href="https://www.udemy.com/certificate/UC-GWUG9SCA/" target="_blank"
rel="noreferrer">Leveling up to ES6.</a>
Issued on: November 29, 2019.</li>
<li><a href="https://www.udemy.com/certificate/UC-EK86VSAA/" target="_blank" rel="noreferrer">ES6 /
EcmaScript Fast
Crash
Course.</a> Issued on: December 5, 2019.</li>
<li><a href="https://www.udemy.com/certificate/UC-K3KZ6ZHO/" target="_blank" rel="noreferrer">Intro
to Git.</a>
Issued
on: January 5, 2020</li>
<li><a href="https://www.udemy.com/certificate/UC-C75HO4QM/" target="_blank" rel="noreferrer">Learn
Git: Everything
You
Need To Know.</a> Issued on: January 5, 2020.</li>
<li><a href="https://www.udemy.com/certificate/UC-76034c60-3cf5-4238-ad15-0c3678ddb74d/"
target="_blank" rel="noreferrer">The Complete Oracle SQL Certification Course.</a> Issued
on: February 12,
2020.
</li>
</ul>
</div>
</div>
</div>
<!-- End #certifications -->
<div id="contact">
<h2>Get in Touch</h2>
<div id="contact-form">
<form method="POST" action="https://formspree.io/xoqlddeg">
<input type="hidden" name="_subject" value="Contact request from personal website" />
<label for="fullname"></label>
<input id="fullname" type="text" name="_name" placeholder="Your full name" required>
<label for="message"></label>
<input id="message" type="email" name="_replyto" placeholder="Your email" required>
<textarea name="message" placeholder="Your message" required></textarea>
<input type="text" name="_gotcha" style="display:none" /> <!-- catch bots -->
<button type="submit" formtarget="_blank">Send</button>
</form>
</div>
<!-- End #contact-form -->
</div>
<!-- End #contact -->
<footer>
<div class="container">
<div class="row">
<div class="col-sm-5 copyright">
<p>
Copyright ©
<script type="text/javascript">document.write(new Date().getFullYear())</script> Stathis
Kaloutsidis
</p>
</div>
<div class="col-sm-2 top">
<span id="to-top">
<i class="fa fa-chevron-up" aria-hidden="true"></i>
</span>
</div>
<div class="col-sm-5 social">
<ul>
<li>
<a href="https://github.com/Stathis-Kal" target="_blank" rel="noreferrer"><i
class="fa fa-github" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://gr.linkedin.com/in/efstathios-kaloutsidis" target="_blank"
rel="noreferrer"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- End footer -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/scripts.min.js"></script>
</body>
</html>