-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
993 lines (880 loc) · 43 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
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
<!DOCTYPE html>
<html class="no-js oldie" lang="en">
<html class="no-js oldie ie9" lang="en">
<html class="no-js" lang="en">
<head>
<!--- basic page needs -->
<meta charset="utf-8">
<title>Alexandra Damaschin</title>
<!-- mobile specific metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<!-- script -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
</head>
<body id="top">
<!-- header-->
<header class="s-header">
<nav class="header-nav-wrap">
<ul class="header-nav">
<li class="current"><a class="smoothscroll" href="#home" title="home">Home</a></li>
<li><a class="smoothscroll" href="#about" title="about">About me</a></li>
<li><a class="smoothscroll" href="#education" title="education">Education</a></li>
<li><a class="smoothscroll" href="#experience" title="experience">Experience</a></li>
<li><a class="smoothscroll" href="#projects" title="projects">Projects</a></li>
<li><a class="smoothscroll" href="#contact" title="contact">Contact</a></li>
</ul>
</nav>
<a class="header-menu-toggle" href="#0"><span>Menu</span></a>
</header> <!-- end s-header -->
<!-- home-->
<section id="home" class="s-home page-hero target-section" data-parallax="scroll"
data-image-src="images/main.jpeg"
data-natural-width=3000 data-natural-height=2000 data-position-y=center>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<h3>Hello</h3>
<h1>
I am Alexandra Damaschin
</h1>
<div class="home-content__buttons">
<a href="#projects" class="smoothscroll btn btn--stroke">
Latest Projects
</a>
<a href="#about" class="smoothscroll btn btn--stroke">
More About Me
</a>
</div>
<div class="home-content__scroll">
<a href="#about" class="scroll-link smoothscroll">
<span>Scroll Down</span>
</a>
</div>
</div>
</div> <!-- end home-content -->
<ul class="home-social">
<li>
<a href="https://github.com/AlexandraDamaschin" target="_blank"><i class="im im-github"
aria-hidden="true"></i><span>GitHub</span></a>
</li>
<li>
<a href="https://stackoverflow.com/users/9648176/alexandra-damaschin" target="_blank"><i
class="im im-stackoverflow"
aria-hidden="true"></i><span>Stackoverflow</span></a>
</li>
<li>
<a href="https://www.linkedin.com/in/alexandradamaschin" target="_blank"><i class="im im-linkedin"
aria-hidden="true"></i><span>LinkedIn</span></a>
</li>
<li>
<a href="https://www.facebook.com/www.wehelp.sibiu.ro/" target="_blank"><i class="im im-facebook"
aria-hidden="true"></i><span>Facebook</span></a>
</li>
</ul>
<!-- end home-social -->
</section> <!-- end s-home -->
<!-- about-->
<section id="about" class="s-about target-section">
<div class="row narrow section-intro has-bottom-sep">
<div class="col-full text-center">
<h3>About</h3>
<h1>More About Me</h1>
<p class="lead">
I am a Software Developer
</p>
</div>
</div>
<div class="row about-content">
<div class="col-six tab-full left">
<h3>Hello!</h3>
<p>
I like to describe myself as a passionate mobile developer.
I enjoy working with new technologies and the opportunity to improve my skills is particularly attractive to me as new challenges
are always a good idea.
</p>
<p>
I worked with companies and startups. Working in this environment gave me the chance to experiment more the mobile development area.
I realized that I will always be passionate about the new things and ready for change.
</p>
<p>
All this lead to my growth and gain of new skills.
</p>
</div>
<div class="col-six tab-full right">
<h3>I've got some skills.</h3>
<ul class="skill-bars">
<div class="col-six tab-full right">
<li>
<div class="progress percent85"><span>85%</span></div>
<strong>Android</strong>
</li>
<li>
<div class="progress percent80"><span>80%</span></div>
<strong>Flutter</strong>
</li>
<li>
<div class="progress percent60"><span>60%</span></div>
<strong>SQL</strong>
</li>
<li>
<div class="progress percent75"><span>75%</span></div>
<strong>Testing</strong>
</li>
</div>
<div class="col-six tab-full right">
<li>
<div class="progress percent35"><span>35%</span></div>
<strong>iOS</strong>
</li>
<li>
<div class="progress percent65"><span>65%</span></div>
<strong>MongoDb</strong>
</li>
<li>
<div class="progress percent90"><span>90%</span></div>
<strong>postgresql</strong>
</li>
<li>
<div class="progress percent65"><span>65%</span></div>
<strong>ASP.NET</strong>
</li>
</div>
</ul>
</div>
</div> <!-- end about-content -->
<!-- education -->
<section id="education" class="s-experience target-section">
<div class="row about-content about-content--timeline">
<div class="col-full text-center">
<h3>Education</h3>
</div>
<div class="col-six tab-full left">
<div class="timeline">
<!--Master in advanced computers-->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">September 2019 - Present</p>
<h3>Faculty of Science, Sibiu</h3>
<h5>Master in Advanced computer systems and technologies</h5>
</div>
<div class="timeline__desc">
<div>
Representative projects:
<br>
<a href="https://github.com/AlexandraDamaschin/SkipToTheFuture-Frontend" target="_blank">
<span>Flutter application</span></a>
<p>A project build with Flutter for mobile and web.
In this project, users could see a list of opportunities to volunteer and apply to be part of that volunteering opportunity.</p>
</div>
</div>
</div>
<!--Bachelor in Enginnering-->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">September 2015 - September 2019</p>
<h3>Faculty of Engineering, Sibiu</h3>
<h5>BSc (Hons) in Computer Science</h5>
</div>
<div class="timeline__desc">
<div>
Representative projects:
<br>
<a href="https://github.com/AlexandraDamaschin/CourseCorrelation" target="_blank">
<span>Course Correlation</span></a>
<p>The purpose of this project was to analyze the correlation of the courses of "Hermann
Oberth"
Engineering Faculty in Sibiu.</p>
<a href="https://github.com/AlexandraDamaschin/CDreader" target="_blank">
<span>DVD/CD Reader</span></a>
<p>The project was made for an OOP subject in C#.</p>
</div>
</div>
</div> <!-- end timeline__block -->
</div> <!-- end timeline -->
</div> <!-- end left -->
<div class="col-six tab-full right">
<div class="timeline">
<!--IT Sligo-->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">September 2015 - September 2018</p>
<h3>Institute Of Technology Sligo</h3>
<h5>BSc (Hons) in Computing - Software Development</h5>
</div>
<div class="timeline__desc">
<div>
Representative projects:
<br>
<a href="https://projectawesome1718.wordpress.com/" target="_blank">
<span>Project Awesome Box</span></a>
<p> Technologies: Angular, Ionic, Node.JS, Firebase, Google Analytics and ASP.NET.</p>
<a href="https://serene-depths-78539.herokuapp.com/" target="_blank">
<span>Angular/WEB Project</span> </a>
<p> Technologies: Angular and MongoDB.</p>
<a href="https://github.com/AlexandraDamaschin/MovieReviewsAngular" target="_blank">
<span>Movie Reviews Website</span> </a>
<p> Frontend: Angular
Backend: ASP.NET and SQL.</p>
</div>
</div>
</div> <!-- end timeline__block -->
</div> <!-- end timeline -->
</div> <!-- end right -->
</div> <!-- end about-content timeline -->
</section> <!-- end about -->
<!-- experience -->
<section id="experience" class="s-experience target-section">
<div class="row about-content about-content--timeline">
<div class="col-full text-center">
<h3>My Experience</h3>
</div>
<div class="col-six tab-full left">
<div class="timeline">
<!--EPIX-->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">July 2019 - Present</p>
<h3><a href="https://www.epix.com/" target="_blank">EPIX</a>, NY, USA
</h3>
<h5>Android Developer</h5>
</div>
<div class="timeline__desc">
<p>
EPIX and EPIX NOW (4.5 GoogleStore rating)
<br>
Complete app redesign & new features implementation
<br>
Collaborating with cross-functional teams to define and design new features
<br>
Doing Unit-test code for robustness, including edge cases, usability, and general reliability
<br>
Working on bug fixing and improving application performance
<br>
Continuously discovering, evaluating, and implementing new technologies to maximize development efficiency
<br>
Technologies: Kotlin, RxJava, and Koin
</p>
</div>
</div>
<!--Agile freaks-->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">July 2019 - Present</p>
<h3><a href="https://www.agilefreaks.com" target="_blank">Agile Freaks</a>, Sibiu, Romania
</h3>
<h5>Technology Consultant</h5>
</div>
<div class="timeline__desc">
<p>
Working on mobile applications in a agile team.
<br>
Developing Android applications based on clean code principles and proper testing.
All problems are solved using test-driven development (TDD).
<br>
Helping with the implementation of the summer internship where we helped interns to discover their passion for mobile development.
</p>
</div>
</div>
<!--simple trend-->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">November 2018 - Present</p>
<h3><a href="https://timeback.io" target="_blank">Simple Trend</a>, Sibiu, Romania</h3>
<h5>Full Stack Developer</h5>
</div>
<div class="timeline__desc">
<p>
Working on front end and back end in a agile team.
<br>
Developing applications to manage resources of a company based on clean code principles
and proper testing.
<br>
Design databases using best practices.
<br>
Back end technologies: ASP.NET Core 2 database first principles and
LinqPad: for migrating different databases (PostgreSQL & SQL).
<br>
Front end technologies: HTML 5, CSS3, Bootstrap, JavaScript and JQuery to create our
user friendly interface.
</p>
</div>
</div>
</div> <!-- end timeline -->
</div> <!-- end left -->
<div class="col-six tab-full right">
<div class="timeline">
<!--Avonbrook-->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">April - October 2018</p>
<h3><a href="https://avonbrook.com" target="_blank">Avonbrook</a>, Dublin, Ireland</h3>
<h5>Junior Software Developer</h5>
</div>
<div class="timeline__desc">
<p>
Built RESTful web services using .NET Core 2.
<br>
Clear understanding of web services like REST/OAuth/JSON.
<br>
API development experience by developing multiple APIs for our customers. Wrote tests to
ensure quality of the code.
<br>
Designed and developed mobile applications using Android studio.
</p>
</div>
</div> <!-- end timeline__block -->
<!--android google-->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">1 October 2017- 13 May 2018</p>
<h3>Udacity & Google</h3>
<h5>Android Basics by Google Nanodegree Program</h5>
</div>
<div class="timeline__desc">
<p>
I start with the challenge: Google Developer Scholarship.
After 4 months of challenges I was chosen to receive the Nanodegree from Google.
Then started 6 months full of interactive projects.
Techologies: Android, XML, SQLlite and JSON. </p>
<p>
<a href="https://confirm.udacity.com/UWFFSLXL" target="_blank">
<span>Take a look at my certificate</span>
</a>
</p>
</div>
</div> <!-- end timeline__block -->
<!--bearing point-->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">3 June - 3 July 2017</p>
<h3>BearingPoint, Sibiu, Romania</h3>
<h5>Software Intern</h5>
</div>
<div class="timeline__desc">
<p>
Worked in a team and created a blog to explain new technologies, share ideas and
projects.
Front-end development using HTML, CSS, XML, JavaScript, JSON, SASS. </p>
<p>
<a href="https://github.com/AlexandraDamaschin/Web" target="_blank">
<span>Take a look at our project</span>
</a>
</p>
</div>
</div> <!-- end timeline__block -->
</div> <!-- end timeline -->
</div> <!-- end right -->
</div> <!-- end about-content timeline -->
</section> <!-- end about -->
</section> <!-- end experience -->
<!-- projects -->
<section id="projects" class="s-projects target-section">
<!-- testimonials -->
<div class="s-testimonials">
<div class="overlay"></div>
<div class="row testimonials-header">
<div class="col-full">
<h1 class="h02">Projects </h1>
</div>
</div>
<div class="row testimonials">
<div class="col-full testimonials__slider">
<!--Course correlation project-->
<div class="testimonials__slide">
<img src="images/avatars/data_analysis.png" alt="Data analysis prj" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/CourseCorrelation" target="_blank">
<span>Course Correlation</span>
</a>
<br>
The purpose of this project was to analyze the correlation of the courses of
Engineering Faculty in Sibiu.
</p>
<div class="testimonials__author h06">
Data analysis, C#, JavaScript, HTML
<span>December 2018 - June 2019</span>
</div>
</div>
<!--Flutter login app-->
<div class="testimonials__slide">
<img src="images/avatars/flutter.png" alt="Flutter prj" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/LogInWithFlutter" target="_blank">
<span>Flutter login app</span>
</a>
<br>
Getting started with flutter.
<br>
Creating a login app using http requests.
</p>
<div class="testimonials__author h06">
Flutter, Dart
<span>March 2019</span>
</div>
</div>
<!--Machine learning algorithms-->
<div class="testimonials__slide">
<img src="images/avatars/ml.png" alt="Machine learning prj" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/MachineLearningAlgorithms" target="_blank">
<span>Machine Learning Algorithms</span>
</a>
<br>
Different types of machine learning algorithms implemented.
<br>
E.g: K-Means, Kohonen, Back propagation and Genetic algorithm
</p>
<div class="testimonials__author h06">
C#
<span>October 2018 - January 2019</span>
</div>
</div>
<!--BarcodeApp Android-->
<div class="testimonials__slide">
<img src="images/avatars/android.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/BarcodeApp" target="_blank">
<span>Barcode App</span>
</a>
<br>
Barcode Application which it`s able to transform code into strings.
</p>
<div class="testimonials__author h06">
Android
<span>July 2018</span>
</div>
</div>
<!--Testing-->
<div class="testimonials__slide">
<img src="images/avatars/testing.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/SoftwareTesting" target="_blank">
<span>Software Testing</span>
</a>
<br>
Simple C# project with Black Box Testing and White Box Testing.
</p>
<div class="testimonials__author h06">
Testing
<span>Feb 2018 - Mar 2018</span>
</div>
</div>
<!--Android-->
<div class="testimonials__slide">
<img src="images/avatars/android.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/CountryQuizApp" target="_blank">
<span>Country Quiz App</span>
</a>
<br>
Quiz with different types of questions and score implemented.
</p>
<div class="testimonials__author h06">
Android Basics by Google Nanodegree Program
<span>Feb 2018 - Apr 2018</span>
</div>
</div>
<!--ASP.NET FRONTEND-->
<div class="testimonials__slide">
<img src="images/avatars/angular.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/MovieReviewsAngular" target="_blank">
<span>Movie Reviews Angular</span>
</a>
<br>
Website implemented with Angular and using data from IMDB Web Api and Movie Reviews Web Api.
</p>
<div class="testimonials__author h06">
Angular
<span>Feb 2018 - Apr 2018</span>
</div>
</div>
<!--ASP.NET BACKEND-->
<div class="testimonials__slide">
<img src="images/avatars/asp.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/MovieReviewsBackend" target="_blank">
<span>Movie Reviews Web Api</span>
</a>
<br>
Web Api implemented with database hosted on Azure.
</p>
<div class="testimonials__author h06">
ASP.NET Web Api
<span>Feb 2018 - Apr 2018</span>
</div>
</div>
<!--Android-->
<div class="testimonials__slide">
<img src="images/avatars/android.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/MusicApp" target="_blank">
<span>Music App</span>
</a>
<br>
Music App implemnted using lists and adapter.
</p>
<div class="testimonials__author h06">
Android Basics by Google Nanodegree Program
<span>Mar 2018 - April 2018</span>
</div>
</div>
<!--Android-->
<div class="testimonials__slide">
<img src="images/avatars/android.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/ITS" target="_blank">
<span>ITS</span>
</a>
<br>
A single page app for presenting IT Sligo.
</p>
<div class="testimonials__author h06">
Android Basics by Google Nanodegree Program
<span>Feb 2018 - Mar 2018</span>
</div>
</div>
<!--wordpress-->
<div class="testimonials__slide">
<img src="images/avatars/wordpress.png" alt="Author image" class="testimonials__avatar">
<p>
<a href=" https://projectawesome1718.wordpress.com/" target="_blank">
<span>Find more out Salli</span>
</a>
<br>
Making this website i learn to use Wordpress and to create user-friendly posts.
</p>
<div class="testimonials__author h06">
Wordpress
<span>Sep 2017 - March 2018</span>
</div>
</div>
<!--Asp.net-->
<div class="testimonials__slide">
<img src="images/avatars/asp.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/CMS" target="_blank">
<span>CMS</span>
</a>
<br>
Content Management System for Sally.
<a href="https://sallinet.azurewebsites.net/" target="_blank">
<span> Take a look here</span>
</a>
</p>
<div class="testimonials__author h06">
ASP.NET
<span>Dec 2017 - March 2018</span>
</div>
</div>
<!--angular -->
<div class="testimonials__slide">
<img src="images/avatars/angular.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/raspberry-pi-interface" target="_blank">
<span>Salli</span>
</a>
<br>
Making this product I learn to develop an Angular project.
</p>
<div class="testimonials__author h06">
Angular & Firebase
<span>Sep 2017 - March 2018</span>
</div>
</div>
<!--ionic-->
<div class="testimonials__slide">
<img src="images/avatars/ionic.jpg" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/mobileApp" target="_blank">
<span>SALLI Mobile App</span>
</a>
<br>
<a href="https://play.google.com/store/apps/details?id=com.project_awesome.salli.mobile"
target="_blank">
<span>Take a look on Google Play Store</span>
</a>
</p>
<div class="testimonials__author h06">
Ionic
<span>Dec 2017 - March 2018</span>
</div>
</div>
<!--android-->
<div class="testimonials__slide">
<img src="images/avatars/android.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/ScoreKeeperApp" target="_blank">
<span>Score Keeper App</span>
</a>
<br>
Making this app I learned how to do an
Android app from scratch.
</p>
<div class="testimonials__author h06">
Google Developer Challenge Scholarship: Android Basics
<span>Nov 2017 - Jan 2018</span>
</div>
</div>
<!--asp.net -->
<div class="testimonials__slide">
<img src="images/avatars/asp.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/Library" target="_blank">
<span>Library</span>
</a>
<br>
My first Asp.Net project.
</p>
<div class="testimonials__author h06">
ASP.NET
<span>Dec 2017</span>
</div>
</div>
<!--android-->
<div class="testimonials__slide">
<img src="images/avatars/android.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/TravellerQuizApp" target="_blank">
<span>Traveller Quiz App</span>
</a>
<br>
I made this app thinking about what type of traveller I am.
You can try it also and let me know your type!
</p>
<div class="testimonials__author h06">
Google Developer Challenge Scholarship: Android Basics
<span>Nov 2017 - Jan 2018</span>
</div>
</div>
<!-- Asp.net-->
<div class="testimonials__slide">
<img src="images/avatars/asp.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/Attendance" target="_blank">
<span>Attendance at courses</span>
</a>
<br>
Making this apps I learned how to do an
Android app from scratch and develop it.
</p>
<div class="testimonials__author h06">
ASP.NET
<span>Dec 2017</span>
</div>
</div>
<!--android-->
<div class="testimonials__slide">
<img src="images/avatars/android.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/CoffeeApp" target="_blank">
<span>Coffee App</span>
</a>
<br>
Making this app I learned how to do an
Android app using intents and how to send emails to customers from my app.
</p>
<div class="testimonials__author h06">
Google Developer Challenge Scholarship: Android Basics
<span>Nov 2017 - Jan 2018</span>
</div>
</div>
<!--angular-->
<div class="testimonials__slide">
<img src="images/avatars/angular.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://serene-depths-78539.herokuapp.com/" target="_blank">
<span>E-commerce website </span>
</a>
<br>
<a href="https://github.com/AlexandraDamaschin/ClientApp" target="_blank">
<span>Client </span>
</a>
<a href="https://github.com/AlexandraDamaschin/ServerApp" target="_blank">
<span>Server </span>
</a>
<br>
App deployed on Heroku.
</p>
<div class="testimonials__author h06">
Angular & MongoDb
<span>Sep - Dec 2017</span>
</div>
</div>
<!--android-->
<div class="testimonials__slide">
<img src="images/avatars/android.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/BasketBallGame" target="_blank">
<span>BasketBall Game App</span>
</a>
<br>
Making this apps I learned how to do an
Android app from scratch and develop it after I attend my first basketball game.
</p>
<div class="testimonials__author h06">
Google Developer Challenge Scholarship: Android Basics
<span>Nov 2017 - Jan 2018</span>
</div>
</div>
<!--angular-->
<div class="testimonials__slide">
<img src="images/avatars/angular.png" alt="Author image" class="testimonials__avatar">
<p>
<a href="https://github.com/AlexandraDamaschin/Joe-s-bike" target="_blank">
<span>Joe and his bikes</span>
</a>
<br>
Myy first Angular Project
</p>
<div class="testimonials__author h06">
Angular
<span>Nov 2017</span>
</div>
</div>
</div> <!-- end testimonials__slider -->
</div> <!-- end testimonials -->
</div> <!-- end s-testimonials -->
</section> <!-- end s-projects -->
<!-- s-stats-->
<section id="stats" class="s-stats">
<div class="row block-1-4 block-tab-1-2 block-mob-full stats">
<div class="col-block stats__col ">
<div class="stats__count">
4
</div>
<h4>Years of programming</h4>
</div>
<div class="col-block stats__col">
<div class="stats__count">
81
</div>
<h4>Repositories</h4>
</div>
<div class="col-block stats__col stats__col--highlight">
<div class="stats__upsign">
<a href="#projects" target="_blank"><i class="im im-arrow-up" aria-hidden="true"></i></a>
</div>
<div class="stats__count">
22
</div>
<h4>Projects Completed</h4>
</div>
<div class="col-block stats__col">
<div class="stats__count">
8
</div>
<h4>Skills</h4>
</div>
</div>
</section> <!-- end s-stats -->
<!-- s-stats -->
<section id="contact" class="s-contact target-section">
<div class="row narrow section-intro">
<div class="col-full">
<h3>Contact</h3>
<h1>Say Hello.</h1>
<p>[email protected]</p>
<p>Sibiu, Romania</p>
<p>Sligo, Ireland</p>
</div>
</div>
</section> <!-- end s-contact -->
<!-- footer -->
<footer>
<div class="row">
<div class="col-full">
<ul class="footer-social">
<li>
<a href="https://github.com/AlexandraDamaschin" target="_blank"><i class="im im-github"
aria-hidden="true"></i><span>GitHub</span></a>
</li>
<li>
<a href="https://stackoverflow.com/users/9648176/alexandra-damaschin" target="_blank"><i
class="im im-stackoverflow"
aria-hidden="true"></i><span>Stackoverflow</span></a>
</li>
<li>
<a href="https://www.linkedin.com/in/alexandradamaschin" target="_blank"><i class="im im-linkedin"
aria-hidden="true"></i><span>LinkedIn</span></a>
</li>
<li>
<a href="https://www.facebook.com/www.wehelp.sibiu.ro/" target="_blank"><i class="im im-facebook"
aria-hidden="true"></i><span>Facebook</span></a>
</li>
</ul>
</div>
</div>
<div class="row footer-bottom">
<div class="col-twelve">
<div class="copyright">
<span>© Copyright Alexandra Damaschin 2020</span>
</div>
<div class="go-top">
<a class="smoothscroll" title="Back to Top" href="#top"><i class="im im-arrow-up"
aria-hidden="true"></i></a>
</div>
</div>
</div> <!-- end footer-bottom -->
</footer> <!-- end footer -->
<!-- photoswipe background -->
<div aria-hidden="true" class="pswp" role="dialog" tabindex="-1">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div>
<button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
<button class="pswp__button pswp__button--share" title=
"Share"></button>
<button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
<button class="pswp__button pswp__button--zoom" title=
"Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div>
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button>
<button class="pswp__button pswp__button--arrow--right" title=
"Next (arrow right)"></button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div><!-- end photoSwipe background -->
<div id="preloader">
<div id="loader"></div>
</div>
<!-- Java Script -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>