-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1007 lines (975 loc) · 47.5 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
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="target-densitydpi=device-dpi, initial-scale=1.0, user-scalable=no" />
<meta name="description" content="Curriculum hecho en bootstrap 3" />
<meta name="author" content="Andrés Sebastián García Scardilli">
<title>
CV - Andrés Sebastián García Scardilli
</title>
<meta prefix="og: http://ogp.me/ns#" property="og:site_name" content="CV - Andrés Sebastián García Scardilli"/>
<meta prefix="og: http://ogp.me/ns#" property="og:title" content="CV - Andrés Sebastián García Scardilli"/>
<meta prefix="og: http://ogp.me/ns#" property="og:description" content="Web curriculum vitae of Andrés Sebastián García Scardilli"/>
<meta prefix="og: http://ogp.me/ns#" property="og:type" content="profile"/>
<meta prefix="og: http://ogp.me/ns#" property="og:image" content="//spike886.github.io/cv/images/card.png" />
<!-- Favicons -->
<link rel="shortcut icon" href="img/ico-16.ico">
<link rel="apple-touch-icon" href="img/ico-57.png" sizes="57x57">
<link rel="apple-touch-icon" href="img/ico-72.png" sizes="72x72">
<link rel="apple-touch-icon" href="img/ico-114.png" sizes="114x114">
<link rel="apple-touch-icon" href="img/ico-144.png" sizes="144x144">
<!-- List of Stylesheet -->
<link type='text/css' href="css/normalize.css" rel="stylesheet">
<link type='text/css' href="css/bootstrap.min.css" rel="stylesheet">
<link type='text/css' href="css/font-awesome.min.css" rel="stylesheet">
<link type='text/css' href="css/style.css" rel="stylesheet">
<link type='text/css' href="css/style-responsive.css" rel="stylesheet">
<link type='text/css' href="css/bootstrap-tags.css" rel="stylesheet">
<!-- Google Font -->
<link href='http://fonts.googleapis.com/css?family=Tangerine|Sintony:400,700' rel='stylesheet' type='text/css'>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="75">
<!-- Pre-loader -->
<div class="mask">
<div id="intro-loader">
</div>
</div>
<!-- End Pre-loader -->
<!-- Home Section -->
<section id="home">
<img id="cycle-loader" src="img/loader.gif" alt="loader" />
<div id="fullscreen-slider">
<!-- Slider image 1-->
<div class="slider-item">
<img src="images/slide1.jpg" alt="">
</div>
<!-- End Slider image 1-->
<!-- Slider image 2-->
<div class="slider-item">
<img src="images/slide2.jpg" alt="">
</div>
<!-- End Slider image 2-->
</div>
<div class="slide-content">
<div class="text-center">
<!-- Visiting Card -->
<div class="vcard">
<div class="nameCard">
<h1>Andrés García</h1>
<h4>Full Stack Developer</h4>
</div>
<div class="idCard">
<a href="http://spike886.github.io/cv/index.html" class="white text"><i class="fa fa-globe"></i><span>spike886.github.io/cv</span></a><br />
<a href="mailto:[email protected]" class="white text"><i class="fa fa-envelope-o"></i><span>[email protected]</span></a><br />
<a href="skype:spike886?call" class="white text"><i class="fa fa-skype"></i><span>spike886</span></a>
<a href="https://github.com/spike886" class="white text"><i class="fa fa-github"></i><span>spike886</span></a>
</div>
<div class="clear"></div>
</div>
<!-- End Visiting Card -->
</div>
</div>
</section>
<!-- Home Section -->
<!-- Navbar -->
<nav id="nav" class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="navbar-wrapper">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Menu</span>
<i class="fa fa-bars fa-2x"></i>
</button>
<ul class="nav" style="margin: 0px;"><li>
<a href="#home" class="collapse-menu"><div class="navbar-logo">A. S. G. S.</div></a>
</li></ul>
</div></ul>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="#about" class="collapse-menu">Information</a>
</li>
<li>
<a href="#portfolio" class="collapse-menu">Projects</a>
</li>
<li>
<a href="#skill" class="collapse-menu">Knowledge</a>
</li>
<li>
<a href="#experience" class="collapse-menu">Experience</a>
</li>
<li>
<a href="#education" class="collapse-menu">Education</a>
</li>
<li>
<a href="#reference" class="collapse-menu">References</a>
</li>
<li>
<a href="#contact" class="collapse-menu">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- End Navbar -->
<!-- About Section -->
<section id="about" class="section-content bg1">
<div class="container">
<!-- Section title -->
<div class="section-title item_bottom text-center">
<h1>About <i>Me</i></h1>
<p class="tagline">I do not mention other than to better express my thoughts</p>
<p class="tagline grey">- Michel Eyquem de Montaigne -</p>
<div>
<span class="line-large"></span>
</div>
</div>
<!-- End Section title -->
<div class="row">
<div class="col-md-4 item_top">
<div class="row">
<h3 class="tagline-lg">First do it, then do it right, then do it fast.</h3>
<h3 class="tagline-lg grey">- Unknown author -</h3>
<div class="line-strong"></div>
</div>
<!-- SOCIAL LINKS -->
<div class="row social-link">
<a href="https://www.facebook.com/spike886"><i class="fa fa-facebook-square fa-3x"></i></a>
<a href="https://twitter.com/spike886"><i class="fa fa-twitter-square fa-3x"></i></a>
<a href="https://plus.google.com/u/0/115169040555461288504"><i class="fa fa-google-plus-square fa-3x"></i></a>
<a href="http://lnkd.in/byzbtFp"><i class="fa fa-linkedin-square fa-3x"></i></a>
<a href="https://github.com/spike886"><i class="fa fa-github-square fa-3x"></i></a>
</div>
<!-- END SOCIAL LINKS -->
</div>
<div class="col-md-4 text-center item_bottom">
<img src="images/photo.jpg" class="img-center img-rounded img-responsive" alt="My photo" />
</div>
<div class="col-md-4 item_top">
<div class="name-title">
<h2>Andrés Sebastián García Scardilli</h2>
<h5>Full Stack Developer</h5>
</div>
<p>I'm Argentine, I have 29 years old, I live in the City of Buenos Aires. I am unmarried and childless</p>
<p>I'm web Developer, both server and client side.</p>
<p>I'm studying computer engineering at the University of Buenos Aires, currently working on the thesis.</p>
<p>I currently work remotely at <a href="http://wedid.it/" target="_blank"> Wedid.it</a> a US located company, working a found raining platform for nonprofits with insights tools</p>
<p>I am a wing person who loves to learn new things and try new technologies.</p>
<div class="btn-group dropdown">
<a class="btn btn-default btn-lg" href="download/cv_en.pdf"><i class="fa fa-download"></i> Download CV</i></a>
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
<span class="caret"></span>
<span class="sr-only">Open</span>
</button>
<ul class="dropdown-menu" role="menu">
<li>
<a href="download/cv_en.pdf"><i class="fa fa-file-pdf-o"></i> PDF </a>
</li>
<li>
<a href="download/cv_en.doc"><i class="fa fa-file-word-o"></i> Word </i></a>
</li>
<li>
<a href="download/cv_en.odt"><i class="fa fa-file-text-o"></i> Libre Office </i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- StatBoard Container -->
<div id="one-parallax" class="parallax" style="background-image: url('images/bg3.jpg');" data-stellar-background-ratio="0.6" data-stellar-vertical-offset="20">
<div class="parallax-overlay">
<div class="section-content">
<div class="container text-center">
<!-- Parallax content -->
<div class="parallax-content">
<div class="row text-center number-counters">
<div class="col-md-3 col-sm-6">
<div class="counters-item new-line">
<i class="fa fa-graduation-cap fa-3x"></i>
<strong data-to-percentage="99">0</strong>
</div>
<p class="lead">Engineering completed</p>
</div>
<div class="col-md-3 col-sm-6">
<div class="counters-item new-line">
<i class="fa fa-university fa-3x"></i>
<strong data-to="19">0</strong>
</div>
<p class="lead">Academic Projects</p>
</div>
<div class="col-md-3 col-sm-6">
<div class="counters-item new-line">
<i class="fa fa-flag fa-3x"></i>
<strong data-to="7">0</strong>
</div>
<p class="lead">Personal projects</p>
</div>
<div class="col-md-3 col-sm-6">
<div class="counters-item new-line">
<i class="fa fa-briefcase fa-3x"></i>
<strong data-to="8">0</strong>
</div>
<p class="lead">Work projects</p>
</div>
</div>
</div>
<!-- Parallax content -->
</div>
</div>
</div>
</div>
<!-- End StatBoard Container -->
<!-- Services Section -->
<section id="services" class="section-content bg1">
<div class="container">
<!-- Section title -->
<div class="section-title item_bottom text-center">
<h1>My <i>Capabilities</i></h1>
<p class="tagline">What is better in the man is his ability to dissatisfaction</p>
<p class="tagline grey">- José Ortega y Gasset -</p>
<div>
<span class="line-large"></span>
</div>
</div>
<!-- End Section title -->
<!-- Container Text -->
<div class="col-md-12">
<div class="row">
<div class="col-md-3 col-sm-6 services-new-line">
<!-- services 1-->
<div class="services item_bottom">
<div class="services-icon text-center">
<i class="fa fa-group fa-4x"></i>
</div>
<div class="services-post">
<h4>Team worker</h4>
<p>I join and adapt to working groups easily and quickly, contributing to them with my skills and knowledge</p>
</div>
</div>
<!-- End Services 1-->
</div>
<div class="col-md-3 col-sm-6 services-new-line">
<!-- services 2-->
<div class="services item_top">
<div class="services-icon text-center">
<i class="fa fa-book fa-4x"></i>
</div>
<div class="services-post">
<h4>Autodidact</h4>
<p>Much of the knowledge they have acquired outside the academia and / or professional</p>
</div>
</div>
<!-- End Services 2-->
</div>
<div class="col-md-3 col-sm-6 services-new-line">
<!-- services 3-->
<div class="services item_bottom">
<div class="services-icon text-center">
<i class="fa fa-trophy fa-4x"></i>
</div>
<div class="services-post">
<h4>Responsible</h4>
<p>I worked nearly two years with a work scheme free lancer, without significant delays or cancellations</p>
</div>
</div>
<!-- End Services 3-->
</div>
<div class="col-md-3 col-sm-6 services-new-line">
<!-- services 4-->
<div class="services item_top">
<div class="services-icon text-center">
<i class="fa fa-bolt fa-4x"></i>
</div>
<div class="services-post">
<h4>Proactive</h4>
<p>I made several personal projects so I like to take the initiative and solve problems I see</p>
</div>
</div>
<!-- End Services 4-->
</div>
</div>
</div>
<!-- End Container Text -->
</div>
</section>
<!-- End Services Section -->
<!-- Portfolio Section -->
<section id="portfolio" class="section-content bg2">
<div class="container">
<!-- Section title -->
<div class="section-title item_bottom text-center">
<h1>My <i>projects</i></h1>
<p class="tagline">Always the optimist has a project; the pessimist, an excuse</p>
<p class="tagline grey">- Unknown author -</p>
<div>
<span class="line-large"></span>
</div>
</div>
<!-- End Section title -->
</div>
<div class="portfolio-top">
</div>
<div id="portfolio-wrap">
<div id="portfolio-page">
<div id="portfolio-content">
<div class="container">
<div id="protfolio-control">
<div class="row">
<div class="col-md-4 col-sm-4 col-xs-4">
<a href="#" id="prev-project" title="Previous Project"><i class="fa fa-arrow-left"></i></a>
</div>
<div class="col-md-4 col-sm-4 col-xs-4 text-center">
<a href="#" id="close-project" title="Close Project"><i class="fa fa-times"></i></a>
</div>
<div class="col-md-4 col-sm-4 col-xs-4 text-right">
<a href="#" id="next-project" title="Next Project"><i class="fa fa-arrow-right"></i></a>
</div>
</div>
</div>
<!-- End #protfolio-control -->
<!-- Ajax will load into here -->
<div id="portfolio-ajax">
</div>
<!-- End #portfolio-ajax -->
<!-- End Ajax -->
</div>
<!-- End .container -->
</div>
<!-- End #portfolio-content -->
</div>
<!-- End #portfolio-page -->
</div>
<!-- End #portfolio-wrap -->
<div id="portfolio-filter">
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<!--portfolio category-->
<ul class="portfolio-filter-list">
<li>
<a class="active" href="#" data-cat="*">All</a>
</li>
<li>
<a href="#" data-cat="personal">Personals</a>
</li>
<li>
<a href="#" data-cat="professional">Professional</a>
</li>
<li>
<a href="#" data-cat="academic">Academics</a>
</li>
<li>
<a href="#" data-cat="web-backend">Web backend</a>
</li>
<li>
<a href="#" data-cat="web-frontend">Web Frontend</a>
</li>
<li>
<a href="#" data-cat="mobile">Mobile</a>
</li>
</ul>
<!--End portfolio category-->
</div>
<!-- End .col-md-12 -->
</div>
<!-- End .row -->
</div>
<!-- End .container -->
</div>
<!-- End #portfolio-filter -->
<div id="portfolio-items" class="portfolio-items item_fade_in">
<article class="professional web-backend">
<a href="#!projects/wedidit.html">
<img src="images/portfolio/wedidit.png" alt="image" />
<div class="overlay">
<i class="fa fa-mobile "></i>
<h3>Wedid.it</h3>
<span>Design / Development</span>
</div>
<!-- End .overlay -->
</a>
</article>
<article class="personal professional web-frontend mobile">
<a href="#!projects/domotica-app.html">
<img src="images/portfolio/domotica-app.jpg" alt="image" />
<div class="overlay">
<i class="fa fa-mobile "></i>
<h3>Mobile App for home automation</h3>
<span>Creation / Design / Development</span>
</div>
<!-- End .overlay -->
</a>
</article>
<article class="personal professional web-backend admin">
<a href="#!projects/domotica-server.html">
<img src="images/portfolio/domotica-server.jpg" alt="image" />
<div class="overlay">
<i class="fa fa-desktop"></i>
<h3>Web Server for home automation</h3>
<span>Creation / Design / Development</span>
</div>
<!-- End .overlay -->
</a>
</article>
<article class="personal professional mobile web-frontend">
<a href="#!projects/domotica-app-simulator.html">
<img src="images/portfolio/domotica-app-simulator.jpg" alt="image" />
<div class="overlay">
<i class="fa fa-mobile "></i>
<h3>Mobile App for home automation maintenance</h3>
<span>Creation / Design / Development</span>
</div>
<!-- End .overlay -->
</a>
</article>
<article class="personal professional mobile web-frontend">
<a href="#!projects/spa.html">
<img src="images/portfolio/spa.png" alt="image" />
<div class="overlay">
<i class="fa fa-tablet "></i>
<h3>Spa controller Welsi®</h3>
<span>Creation / Design / Development</span>
</div>
<!-- End .overlay -->
</a>
</article>
<article class="personal academic">
<a href="#!projects/3d-framework.html">
<img src="images/portfolio/3d-framework.jpg" alt="image" />
<div class="overlay">
<i class="fa fa-film"></i>
<h3>3D Framework</h3>
<span>Development</span>
</div>
<!-- End .overlay -->
</a>
</article>
<article class="professional web-backend web-frontend admin">
<a href="#!projects/shoplins.html">
<img src="images/portfolio/shoplins.jpg" alt="image" />
<div class="overlay">
<i class="fa fa-desktop"></i>
<h3>Web Server for Business Marketing</h3>
<span>Design / Development</span>
</div>
<!-- End .overlay -->
</a>
</article>
<article class="professional web-backend admin">
<a href="#!projects/godish.html">
<img src="images/portfolio/godish.png" alt="image" />
<div class="overlay">
<i class="fa fa-desktop"></i>
<h3>IOS App's Server for discounts on meals</h3>
<span>Design / Development</span>
</div>
<!-- End .overlay -->
</a>
</article>
<article class="professional web-backend admin">
<a href="#!projects/kodomo.html">
<img src="images/portfolio/kodomo.png" alt="image" />
<div class="overlay">
<i class="fa fa-desktop"></i>
<h3>Multi-site Server application API and admin for video</h3>
<span>Creation / Design / Development</span>
</div>
<!-- End .overlay -->
</a>
</article>
<article class="professional web-frontend">
<a href="#!projects/kideos.html">
<img src="images/portfolio/kideos.png" alt="image" />
<div class="overlay">
<i class="fa fa-desktop"></i>
<h3>Front-end application for viewing videos</h3>
<span>Creation / Design / Development</span>
</div>
<!-- End .overlay -->
</a>
</article>
<article class="professional web-backend">
<a href="#!projects/cms.html">
<img src="images/portfolio/cms.png" alt="image" />
<div class="overlay">
<i class="fa fa-desktop"></i>
<h3>Backend application for website management (CMS)</h3>
<span>Creation / Design / Development</span>
</div>
<!-- End .overlay -->
</a>
</article>
<article class="professional web-frontend">
<a href="#!projects/movie_pass.html">
<img src="images/portfolio/movie_pass.png" alt="image" />
<div class="overlay">
<i class="fa fa-mobile"></i>
<h3>Android app for movies reservation</h3>
<span>Development</span>
</div>
<!-- End .overlay -->
</a>
</article>
</div>
<!-- End #portfolio-items.portfolio-items -->
</section>
<!-- End Portfolio Section -->
<!-- Skill Section -->
<section id="skill" class="section-content bg1 skill-section">
<div class="container">
<div class="row">
<!-- Section Title -->
<div class="section-title item_bottom text-center">
<h1>My <i>Knowledge</i></h1>
<p class="tagline">Who does not add to their knowledge, decreases</p>
<p class="tagline grey">- The Talmud -</p>
<div>
<span class="line-large"></span>
</div>
</div>
<!-- End Section Title -->
<section class="l-skill-nav item_left">
<!-- Skill Category -->
<nav class="slide-effect">
<a href="javascript: rotate('rotate1');" data-hover="Languages" class="skills-pink btn-skills"><span>Languages</span></a>
<a href="javascript: rotate('rotate4');" data-hover="Web Back" class="skills-orange btn-skills"><span>Web Back</span></a>
<a href="javascript: rotate('rotate6');" data-hover="Database" class="skills-red btn-skills"><span>Database</span></a>
<a href="javascript: rotate('rotate2');" data-hover="Web front" class="skills-blue btn-skills l-rMargin-20"><span>Web front</span></a>
<a href="javascript: rotate('rotate5');" data-hover="Methodologies" class="skills-teal btn-skills"><span>Methodologies</span></a>
<a href="javascript: rotate('rotate3');" data-hover="Otras" class="skills-green btn-skills"><span>Others</span></a>
</nav>
<!-- End Skill Category -->
</section>
<!-- SkillBar -->
<div id="pie-container" class="item_bottom">
<div id="l-inhalt">
<div id="skill-bar1" class="bar">
<h5 class="skill-caption"></h5>
</div>
<div id="skill-bar2" class="bar bar2">
<h5 class="skill-caption"></h5>
</div>
<div id="skill-bar3" class="bar bar3">
<h5 class="skill-caption"></h5>
</div>
<div id="skill-bar4" class="bar bar4">
<h5 class="skill-caption"></h5>
</div>
<div id="skill-bar5" class="bar bar5">
<h5 class="skill-caption"></h5>
</div>
</div>
</div>
<!-- End SkillBar -->
</div>
</div>
</section>
<!-- End Skill Section -->
<!-- Experience Timeline Section -->
<section id="experience" class="section-content bg2 timeline-content">
<div class="container">
<!-- Section title -->
<div class="section-title item_bottom text-center">
<h1>Work <i>experience</i></h1>
<p class="tagline">They told me and I forgot; I saw it and understand it; I did and I learned</p>
<p class="tagline grey">- Confucio -</p>
<div>
<span class="line-large"></span>
</div>
</div>
<!-- End Section title -->
<div class="new-line">
<ol id="timeline">
<!-- Timeline item -->
<li class="timeline-item">
<div class="item_left">
<div class="well post">
<div class="post-info bg2 text-center">
<div class="box-inner">
<i class="fa fa-check"></i>
</div>
<h5 class="info-date"> June 2015 to present </h5>
</div>
<div class="post-body clearfix text-right">
<div class="post-title">
<h4>Own Project</h4>
<h5>Project Manager / Developer</h5>
</div>
<div class="post-text">
<p>Mobile application for control and automatization of spa.</p>
</div>
<div class="arrow-right"></div>
</div>
</div>
</div>
</li>
<!-- End Timeline item -->
<!-- Timeline item -->
<li class="timeline-item">
<div class="item_left">
<div class="well post">
<div class="post-info bg2 text-center">
<div class="box-inner">
<i class="fa fa-check"></i>
</div>
<h5 class="info-date"> August 2015 to July 2016 </h5>
</div>
<div class="post-body clearfix text-right">
<div class="post-title">
<h4>Wedid.it</h4>
<h5>Full Stack Developer</h5>
</div>
<div class="post-text">
<p>Remote Full stack developer for US located company. Working on Rails server and moving frontend from jquery to react, using BDD methodologies</p>
</div>
<div class="arrow-right"></div>
</div>
</div>
</div>
</li>
<!-- End Timeline item -->
<!-- Timeline item -->
<li class="timeline-item">
<div class="item_left">
<div class="well post">
<div class="post-info bg2 text-center">
<div class="box-inner">
<i class="fa fa-check"></i>
</div>
<h5 class="info-date"> October 2013 to July 2015 </h5>
</div>
<div class="post-body clearfix text-right">
<div class="post-title">
<h4>Inaka</h4>
<h5>Full Stack Developer</h5>
</div>
<div class="post-text">
<p>Developer servers primarily for mobile applications with API, admin and front-end. Using multiple technologies: Ruby, Rails, Grape, Heroku, Amazon AWS / S3, JavaScript, Angle, React, Android, Scala, Erlang</p>
</div>
<div class="arrow-right"></div>
</div>
</div>
</div>
</li>
<!-- End Timeline item -->
<!-- Timeline item -->
<li class="timeline-item">
<div class="item_left">
<div class="well post">
<div class="post-info bg2 text-center">
<div class="box-inner">
<i class="fa fa-check"></i>
</div>
<h5 class="info-date"> August 2013 to October 2013</h5>
</div>
<div class="post-body clearfix text-right">
<div class="post-title">
<h4>Own Project</h4>
<h5>Project Manager / Developer</h5>
</div>
<div class="post-text">
<p>Project automation, mobile applications and web. It includes mobile application development and angularjs Cordova, maintenance applications, web server developed with RoR 4.1</p>
</div>
<div class="arrow-right"></div>
</div>
</div>
</div>
</li>
<!-- End Timeline item -->
<!-- Timeline item -->
<li class="timeline-item">
<div class="item_right">
<div class="well post">
<div class="post-info bg2 text-center">
<div class="box-inner">
<i class="fa fa-check"></i>
</div>
<h5 class="info-date">June 2010 to August 2013</h5>
</div>
<a href="http://www.startmeapp.com/">
<div class="post-body clearfix">
<div class="post-title">
<h4>Start Me Apps</h4>
<h5>Full Stack Developer</h5>
</div>
<div class="post-text">
<p>Web developer platform with RoR 3.2 and PHP. The responsibilities are: estimating, design, development, test development, customer delivery, deploy into production</p>
</div>
<div class="arrow-left"></div>
</div>
</a>
</div>
</div>
</li>
<!-- End Timeline item -->
</ol>
</div>
</div>
</section>
<!-- End Experience Timeline Section -->
<!-- Education Section -->
<section id="education" class="section-content bg1">
<div class="container">
<!-- Section title -->
<div class="section-title item_bottom text-center">
<h1>Educa<i>tion</i></h1>
<p class="tagline">What from root is learned it never altogether forgotten</p>
<p class="tagline grey">- Lucio Anneo Séneca -</p>
<div>
<span class="line-large"></span>
</div>
</div>
<!-- End Section title -->
<!-- Container Text -->
<div class="col-md-12">
<div class="row">
<div class="col-md-6 col-sm-12 edu-new-line">
<!-- Education 1-->
<div class="education item_left">
<div class="edu-post">
<h4>Computer engineering</h4>
<h5>UBA</h5>
<p>The Computer Engineering, UBA is able to solve complex problems and diverse nature with knowledge and analytical skills to build its computational solution scientifically from the use of advanced tools, appropriate state of the art computer, applying their knowledge independently, critical and innovative.</p>
</div>
<div class="edu-arrow-right"></div>
<div class="edu-grade text-center">
<strong>Average rating</strong>
<h3>7.12</h3>
<h5>2006 - Present</h5>
</div>
</div>
<!-- End Education 1-->
</div>
<div class="col-md-6 col-sm-12 edu-new-line">
<!-- Education 2-->
<div class="education item_right">
<div class="edu-post">
<h4>Electronic Technician</h4>
<h5>High school San José A-355</h5>
<p>The Electronic Technician is trained to design, maintain and operate electronic equipment in all fields. (telecommunications, industrial electronics, electro, computers and all technical support to any scientific specialty). Carry out quality control and expertise in the art. Development teams integrate new products, process, design and install communications systems according to national regulations</p>
</div>
<div class="edu-grade text-center">
<strong>Average rating</strong>
<h3>7.68</h3>
<h5>2000 - 2005</h5>
</div>
</div>
<!-- End Education 2-->
</div>
</div>
</div>
<!-- End Container Text -->
</div>
</section>
<!-- End Education Section -->
<!-- Reference Section -->
<section id="reference" class="section-content bg2">
<div class="container">
<!-- Section title -->
<div class="section-title item_bottom text-center">
<h1>Employment <i>References</i></h1>
<p class="tagline">I am grateful to those who took the time to write a recommendation</p>
<div>
<span class="line-large"></span>
</div>
</div>
<!-- End Section title -->
<!-- Container Text -->
<div class="col-md-12">
<div class="row">
<!-- Reference 1-->
<div class="col-md-10 col-md-offset-1 col-sm-12 edu-new-line">
<div class="education item_right reference">
<div class="edu-grade text-center reference">
<strong>Emiliano Ritiro</strong><br/>
<img src="images/emiliano.jpg" class="img-center img-rounded img-responsive" alt="My photo" />
<h2><a class="no-decoration white" href="mailto:[email protected]"><i class="fa fa-envelope"></i></a></h2> <p style="font-size: 8px;">[email protected]</p>
</div>
<div class="recomendation-post">
<h4>Project Leader</h4>
<h5>Start Me Apps</h5>
<p>Andres is a great software developer and a great human being.
His most outstanding attributes are its results and sense of responsibility.
It is a pleasure working with Andrew, since one can delegate a project and be assured that it will be done in a timely manner: from analysis to implementation.</p>
<p>Always proposing new technologies and best practices. More than once he told me when I proposed to do something that did not have much sense, saving problems.</p>
<p>His human quality and professionalism turn it into a key-player in any team. It is a pleasure to work with him.</p>
</div>
</div>
</div>
<!-- End Reference 1-->
<!-- Reference 2-->
<div class="col-md-10 col-md-offset-1 col-sm-12 edu-new-line">
<div class="education item_right reference">
<div class="edu-grade text-center reference">
<strong>Fernando "Brujo" Benavides</strong><br/>
<img src="images/brujo.jpg" class="img-center img-rounded img-responsive" alt="My photo" />
<h2><a class="no-decoration white" href="mailto:[email protected]"><i class="fa fa-envelope"></i></a></h2> <p style="font-size: 8px;">[email protected]</p>
</div>
<div class="recomendation-post">
<h4>CTO</h4>
<h5>Inaka</h5>
<p>Andrés is a very talented software developer. While we worked together he helped us shape the architecture of various systems that he also ended up developing. He has a keen eye for detecting poor design choices and he's willing to contribute with better alternatives. </p>
<p>Andrés is also a good team-player and he's always eager to teach and learn new things.</p>
</div>
</div>
</div>
<!-- End Reference 2-->
</div>
</div>
<!-- End Container Text -->
</div>
</section>
<!-- End Reference Section -->
<!-- Parallax Quote Section -->
<div id="three-parallax-2" class="parallax" style="background-image: url('images/bg3.jpg');" data-stellar-background-ratio="0.6" data-stellar-vertical-offset="20">
<div class="parallax-overlay">
<div class="section-content">
<div class="container item_fade_in text-center">
<!-- Quote title -->
<h1><i class="fa fa-quote-left"></i> Beauty is more important in computing than anywhere else in technology because software is so complicated. Beauty is the ultimate defense against complexity.</h1>
<p class="tagline grey">- David Gelernter -</p>
<!-- End Quote title -->
</div>
</div>
</div>
</div>
<!-- End Parallax Quote Section -->
<!-- Contact Section -->
<section id="contact" class="section-content bg1">
<div class="container">
<!-- Section title -->
<div class="section-title item_bottom text-center">
<h1>Con<i>tact</i></h1>
<p class="tagline">Feel free to contact me if you wish</p>
<div>
<span class="line-large"></span>
</div>
</div>
<!-- End Section title -->
</div>
<!-- Google maps -->
<div id="map_canvas" class="item_fade_in"></div>
<!-- End Google maps -->
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="form-respond text-center">
</div>
<form method="post" name="contactform" id="contactform" class="validate item_left" role="form">
<div class="form-group">
<div class="col-md-6">
<label for="name">Name</label>
<input type="text" name="name" id="name" class="form-control input-lg required" placeholder="Enter your name">
</div>
<div class="col-md-6">
<label for="email">Email</label>
<input type="email" name="email" id="email" class="form-control input-lg required email" placeholder="Enter your email">
</div>
</div>
<div class="form-group">
<div class="col-md-12">
<label for="message">Message</label>
<textarea name="message" id="message" class="form-control input-lg required" rows="9" placeholder="Enter the message to send"></textarea>
</div>
</div>
<div class="form-group">
<div class="col-md-12 text-right">
<input type="submit" id="contactForm_submit" class="btn btn-dark" value="Send">
</div>
</div>
<input type="hidden" name="subject" value="Contact from your site">
</form>
</div>
<div class="col-md-4 contact-block item_right">
<!-- Contact Details -->
<h4>Contact information</h4>
<ul class="contact-info">
<li>
<i class="fa fa-map-marker"></i>
<span>Liniers
<br>Capital Federal, Argentina
</span>
</li>
<a href="http://spike886.github.io/cv/index.html"><li>
<i class="fa fa-globe"></i>
<span>
spike886.github.io/cv/
</span>
</li></a>
<a href="mailto:[email protected]"><li>
<i class="fa fa-envelope"></i>
<span>
</span>
</li></a>
<a href="skype:spike886?call"><li>
<i class="fa fa-skype"></i>
<span>spike886
</span>
</li></a>
</ul>
<!-- End Contact Details -->
</div>
</div>
<!-- End form contact -->
</div>
</section>
<!-- End Contact Section -->
<!-- Back to top -->
<a href="#" id="back-top"><i class="fa fa-angle-up fa-2x"></i></a>
<footer class="text-center">
<!-- Footer Container -->
<div id="three-parallax" class="parallax" style="background-image: url('images/bg1.jpg');" data-stellar-background-ratio="0.6" data-stellar-vertical-offset="20">
<div class="parallax-overlay parallax-background-color">
<div class="section-content item_top">
<div class="container text-center">© Copyright 2015
<!-- Footer Social Icon -->
<div class="social-icon">
<a href="https://www.facebook.com/spike886"><i class="fa fa-facebook-square fa-4x"></i></a>
<a href="https://twitter.com/spike886"><i class="fa fa-twitter-square fa-4x"></i></a>
<a href="https://plus.google.com/u/0/115169040555461288504"><i class="fa fa-google-plus-square fa-4x"></i></a>
<a href="http://lnkd.in/byzbtFp"><i class="fa fa-linkedin-square fa-4x"></i></a>
<a href="https://github.com/spike886"><i class="fa fa-github-square fa-4x"></i></a>
</div>
<!-- End Footer Social Icon -->
</div>
</div>
</div>
</div>
<!-- End Footer Container -->
</footer>
<!-- Js Library -->
<script type="text/javascript" src="js/modernizr.js"></script>
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/jquery.sticky.js"></script>
<script type="text/javascript" src="js/jquery.easing-1.3.pack.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/bootstrap-modal.js"></script>
<script type="text/javascript" src="js/jquery.parallax-1.1.3.js"></script>
<script type="text/javascript" src="js/jquery.appear.js"></script>
<script type="text/javascript" src="js/piebar.js"></script>
<script type="text/javascript" src="js/jquery.cycle.all.js"></script>
<script type="text/javascript" src="js/jquery.flexslider.min.js"></script>
<script type="text/javascript" src="js/jquery.fitvids.js"></script>
<script type="text/javascript" src="js/jquery.maximage.js"></script>
<script type="text/javascript" src="js/jquery-countTo.js"></script>
<script type="text/javascript" src="js/jquery.isotope.min.js"></script>
<script type="text/javascript" src="js/jquery.nicescroll.min.js"></script>
<script type="text/javascript" src="js/jquery.validate.min.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>