-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1756 lines (1678 loc) · 79.4 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 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">
<!--Guillermo Sierra -->
<title>Guillermo Sierra</title>
<meta name="description" content="Guillermo Sierra, Telecommunications Engineer">
<meta name="author" content="Guillermo Sierra">
<meta name="keywords" content="Sierra,Aiello,Guillermo,UPC,EPFL,dustOfThings,phood,MIT,google,facebook">
<!--OG share -->
<meta property="og:title" content="Guillermo Sierra" />
<meta property="og:url" content="https://www.guillesierra.com/">
<meta property="og:type" content="website"/>
<meta property="og:description"
content="👨🏼💻Mobile developer, 🎨UX passionate, 🚀Enterpreneur"/>
<meta property="og:image" content="https://guillesierra.com/img/logos/gsierra_bg.png">
<meta property="og:image:secure_url" content="https://guillesierra.com/img/logos/gsierra_bg.png"/>
<meta property="og:locale" content="en_US" />
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="454">
<meta property="og:image:height" content="454">
<meta property="og:favicon" content="https://guillesierra.com/img/logos/gsierra_w.png">
<link rel="shortcut icon" href="img/logos/gsierra_circ.png">
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!--<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">-->
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato|Oswald&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Titillium+Web&display=swap" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet'
type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- Theme CSS -->
<link href="css/main.css" rel="stylesheet">
<!--Linkedn Badge-->
<script type="text/javascript" src="https://platform.linkedin.com/badges/js/profile.js" async defer></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --><!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"
integrity="sha384-0s5Pv64cNZJieYFkXYOTId2HMA2Lfb6q2nAcx2n0RTLUnCAoTTsS0nKEO27XyKcY"
crossorigin="anonymous"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"
integrity="sha384-ZoaMbDF+4LeFxg6WdScQ9nnR1QC2MIRxA1O9KWEXQwns1G8UNyIEZIQidzb0T1fo"
crossorigin="anonymous"></script>
<![endif]-->
</head>
<body id="page-top" class="index">
<!-- Google Analytics-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-87929994-1', 'auto');
ga('send', 'pageview');
</script>
<nav id="mainNav" class="navbar navbar-fixed-top navbar-gsierra">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<a class="navbar-brand" href="#page-top">
<img alt="gsierra" src="img/logos/gsierra_side.svg">
</a>
<h1 class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#collapsed-data" aria-expanded="false" style="background: #122b40">
<span class="sr-only">Toggle navigation</span>
<!--Menu <i class="fa fa-bars"></i>-->
<span class="icon-bar bg-light"></span>
<span class="icon-bar bg-light"></span>
<span class="icon-bar bg-light"></span>
</button>
</h1>
<!-- Collect the nav links, forms, and other content for toggling -->
<h4 class="collapse navbar-collapse" id="collapsed-data">
<ul class="nav navbar-nav navbar-right" style="margin-top: 1em">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#portfolio">🚀 Summits</a>
</li>
<li>
<a class="page-scroll" href="#timeline">⌛ Timeline</a>
</li>
<li>
<a class="page-scroll" href="#services">🔥 Services</a>
</li>
<li>
<a class="page-scroll" href="#map">🌎 Map</a>
</li>
<li>
<a class="page-scroll" href="#contact">📷 Social</a>
</li>
</ul>
</h4>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header
<header></header> -->
<section style="margin: 9em 2em 2em 1em; ">
<div class="row text-center">
<h2 class="section-heading">👨🏻💻 Mobile dev</h2>
<h2 class="section-heading">🎨 UX passionate</h2>
<h4 style="color: #2e6da4">️React Native, React</h4>
<!--
<h6></h6>
-->
<img height="180"
src="img/about/sierra.JPG"
style="border-radius: 90px; margin: 20px; -webkit-box-shadow: 3px 6px 2px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 7px 10px 5px 0px rgba(0,0,0,0.25);
box-shadow: 7px 10px 5px 0px rgba(0,0,0,0.25);">
</div>
</section>
<!-- Portfolio Grid Section -->
<section id="portfolio" style="padding-bottom: 6em">
<!--<div class="container">-->
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">
<!--<img height="30" src="img/icons/rocket-icon.svg"/>-->
🚀 Summits</h2>
<h4 style="color: #2e6da4; margin-bottom: 2em">Highlighted Projects</h4>
</div>
</div>
<div class="row" >
<!--VetEasy-->
<div class="col-md-4 col-sm-6 portfolio-item" id="VetEasy" onclick="location.href = 'https://veteasy-5fb1a.web.app/Veterinary'">
<a class="portfolio-link" data-toggle="modal" href="https://veteasy-5fb1a.web.app">
<img alt="" class="img-responsive-caption imgCent"
src="img/brands/veteasy.jpeg">
</a>
<div class="portfolio-caption">
<img alt="" class="img-rounded" height="50px" src="img/brands/veteasy_grad.png"
style="float: left; margin-top: 1em">
<!--<h3 alt="" class="img-rounded" height="32px" style="float: right">🚀</h3>-->
<h4>🐶 VetEasy</h4>
<h5>👩🏼⚕️ Veterinary Marketplace</h5>
<p class="text-muted">CTO</p>
</div>
</div>
<div class="row" >
<!--PlanetMoji-->
<div class="col-md-4 col-sm-6 portfolio-item" id="PlanetMoji" onclick="location.href = 'https://www.planetmoji.com'">
<a class="portfolio-link" data-toggle="modal" href="http://planetmoji.com/">
<img alt="" class="img-responsive-caption imgCent"
src="img/background/planetMoji_mockup.png">
</a>
<div class="portfolio-caption">
<img alt="" class="img-rounded" height="50px" src="https://planetmoji.com/planet_iso.png"
style="float: left; margin-top: 1em">
<!--<h3 alt="" class="img-rounded" height="32px" style="float: right">🚀</h3>-->
<h4>🌍 Planet Moji</h4>
<h5>eMojis Game for 📱 Mobile & 💻 Web </h5>
<p class="text-muted">Founder</p>
</div>
</div>
<!--HOLDED-->
<div class="col-md-4 col-sm-6 portfolio-item" id="HOLDED" onclick="location.href = 'https://www.holded.com'">
<a class="portfolio-link" data-toggle="modal" href="http://holded.com/">
<img alt="" class="img-responsive-caption imgCent"
src="img/background/holded6.png">
</a>
<div class="portfolio-caption">
<img alt="" class="img-rounded" height="50px" src="img/brands/holded.png"
style="float: left; margin-top: 1em">
<!--<h3 alt="" class="img-rounded" height="32px" style="float: right">🚀</h3>-->
<h4>HOLDED</h4>
<h5>All-in-one Business Platform</h5>
<p class="text-muted">React Native Developer</p>
</div>
</div>
<!--INSPIRENCE-->
<!--<div class="col-md-4 col-sm-6 portfolio-item" id="INSPIRENCE">
<a class="portfolio-link" data-toggle="modal" href="http://inspirence.com/">
<img alt="" class="img-responsive-caption"
src="https://i1.wp.com/www.marcfitt.com/wp-content/uploads/IMG_8896.jpg?fit=1700%2C900"
style="object-fit: cover;">
</a>
<div class="portfolio-caption">
<img alt="" class="img-rounded" height="50px" src="img/brands/inspirence-logo-100.jpg"
style="float: left; margin-top: 1em">
<h3 alt="" class="img-rounded" height="32px" style="float: right">🚀</h3>
<h4>INSPIRENCE</h4>
<h5>Achieve your hero's goals</h5>
<p class="text-muted">Founder</p>
</div>
</div>-->
<!--GoPure-->
<div class="col-md-4 col-sm-6 portfolio-item" id="gopure" onclick="location.href = 'https://gopureapp.firebaseapp.com/'">
<a class="portfolio-link" href="https://gopureapp.com/">
<img alt="" class="img-responsive-caption imgCent" height="auto" src="img/background/gopure1.png">
</a>
<div class="portfolio-caption">
<a href="https://gopureapp.firebaseapp.com">
<img class="img-portfolio" class="img-rounded" height="50px" src="img/brands/gopure.png"
style="float: left; margin-top: 1em"
alt="">
<!-- <h3 class="img-rounded" height="32px" style="float: right" alt="">🚀</h3>-->
<h4>goPure</h4></a>
<h5>Personalized Nutrition</h5>
<p class="text-muted">CTO & Co-Founder</p>
</div>
</div>
<!--Velocity-->
<div class="col-md-4 col-sm-6 portfolio-item" id="Velocity" onclick="location.href = 'https://velocity.black/'">
<a href="https://velocity.black" class="portfolio-link" data-toggle="modal">
<img alt="" class="img-responsive-caption imgCent" height="auto" src="img/background/velocity.png">
</a>
<div class="portfolio-caption">
<a href="https://velocity.black/">
<img class="img-rounded" height="50px" src="img/brands/velocity_logo.jpg"
style="float: left; margin-top: 1em"
alt="">
<!-- <h3 class="img-rounded" height="32px" style="float: right" alt="">🚀</h3>-->
<h4>Velocity Black</h4></a>
<h5>Best Experiences curator</h5>
<p class="text-muted">Android & Frontend Developer</p>
</div>
</div>
<!--Autoqe-->
<div class="col-md-4 col-sm-6 portfolio-item" id="Autoqe" onclick="location.href = 'https://autoqe.com/'">
<a href="https://www.autoqe.com/" class="portfolio-link" data-toggle="modal">
<img alt="" class="img-responsive-caption imgCent" height="auto" src="img/background/autoqe_mockup.png">
</a>
<div class="portfolio-caption">
<a href="https://www.autoqe.com/">
<img src="img/brands/autoqe.svg" class="img-rounded" height="80px"
style="float: left; margin-top: 0em;"
alt="">
<h3 class="img-rounded" style="float: right" alt="">🚀</h3>
<h4>Autoqe</h4></a>
<h5> Auto al Toque</h5>
<p class="text-muted">Founder. Carpooling</p>
</div>
</div>
<!--ShotGot-->
<div class="col-md-4 col-sm-6 portfolio-item" id="ShotGot" onclick="location.href = 'https://shotgot.com/'">
<a href="https://www.shotgot.com/" class="portfolio-link" data-toggle="modal">
<img alt="" class="img-responsive-caption imgCent" src="img/about/imgRecog4.jpg">
</a>
<div class="portfolio-caption">
<h3 class="img-rounded" style="float: right">🚀</h3>
<a href="https://www.shotgot.com/">
<img src="img/brands/shotgot.png" class="img-rounded" height="65px"
alt="" style="float: left; margin-top: 1em">
<h4>ShotGot</h4></a>
<h5>See it, Got it </h5>
<p class="text-muted">Founder. Visual search.</p>
</div>
</div>
<!--EPFL-->
<div class="col-md-4 col-sm-6 portfolio-item" id="ThirdEye">
<a class="portfolio-link" data-toggle="modal">
<div class="img-responsive-caption videoWrapper">
<iframe width="360" height="185"
src="https://www.youtube.com/embed/xojhlhPSs6E?showinfo=0&start=2" frameborder="0"
allow="autoplay; encrypted-media" allowfullscreen></iframe>
<!--<img src="img/portfolifo/bikeThirdEye5.jpg" width="333px" class="img-responsive-caption" alt=""> -->
</div>
</a>
<div class="portfolio-caption">
<img src="img/brands/epfl.png" class="img-rounded" height="30px" style="float: left" alt="">
<h3 class="img-rounded" height="32px" style="float: right" alt="">🎓</h3>
<h4>Self-driving cars</h4>
<h5>Exchange Project</h5>
<p class="text-muted">Collab. sensing, decision making</p>
</div>
</div>
<!--CubeCat-->
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal">
<img src="img/about/cubecat.jpg" class="img-responsive-caption" alt="">
</a>
<div class="portfolio-caption">
<h3 alt="" class="img-rounded" height="100px" style="float: left; margin-top: .4em; font-size: 40px">
🛰</h3>
<h3 class="img-rounded" height="32px" style="float: right" alt="">🎓</h3>
<h4>CubeCat</h4>
<h5>Semester Project</h5>
<p class="text-muted">NanoSatellite</p>
</div>
</div>
</div>
</div>
<!--</div>-->
</section>
<!-- Timeline Section -->
<section id="section-timeline">
<div class="container" id="timeline">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">
⌛ Timeline</h2>
<h3 class="section-subheading text-muted">
Professional experience, studies 🎓
</h3>
<script>
var disp = true;
function toggleInfo() {
var elems = document.getElementsByClassName('timeline-body');
for (var i = 0; i < elems.length; i++) {
elems[i].style.display = disp ? 'inline' : 'none';
}
document.getElementById("toggle-arrow").src = disp ? 'img/icons/arrow-d.png' : 'img/icons/arrow.png';
disp = !disp;
}
</script>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<ul class="timeline">
<!--VetEasy-->
<li class="timeline-inverted">
<div class="timeline-image" onclick="toggleInfo()">
<a href="https://veteasy-5fb1a.web.app/Landing">
<img alt="" class="img-circle img-responsive" src="img/brands/veteasy_grad.png" style="padding: 2px">
</a>
</div>
<div>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<a href="https://veteasy-5fb1a.web.app/Landing/">
<h2 class="subheading">VetEasy</h2>
<h4> 👨🏻💻 CTO</h4>
</a>
<p>⚔️ Conquer a world 🌐 of Emojis</p>
<h5 class="date">
🇪🇺 Bcn - Mar 2021</h5>
</div>
<hr>
</div>
</li>
<!--Planet Moji-->
<li >
<div class="timeline-image" onclick="toggleInfo()">
<a href="http://planetmoji.com/">
<img alt="" class="img-circle img-responsive" src="https://planetmoji.com/planet_iso.png"
style="padding: 2px">
</a>
</div>
<div>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<a href="https://planetmoji.com/">
<h2 class="subheading">Planet 🌍 Moji</h2>
<h4>👨🏻💻 Founder</h4>
</a>
<p>⚔️ Conquer a world 🌐 of Emojis</p>
<h5 class="date">
🇪🇺 Bcn - Jan 2021</h5>
</div>
<hr>
</div>
</li>
<!--MVPrio-->
<li >
<div class="timeline-image" onclick="toggleInfo()">
<a href="https://mvprio.com/">
<img alt="" class="img-circle img-responsive" src="https://i.ibb.co/VCF4Rw4/mvprio.gif"
style="padding: 2px">
</a>
</div>
<div>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<a href="https://guillesierra.com/">
<h2 class="subheading">MVPrio💡</h2>
<h4>Founder 👨🏻💻</h4>
</a>
<p>Help Startups 🚀 prioritize based on user feedback 📊</p>
<h5 class="date">
🇪🇺 Bcn - Jan 2021</h5>
</div>
<hr>
</div>
</li>
<!--6tages-->
<li>
<div class="timeline-image" onclick="toggleInfo()">
<a href="http://6tages.com/">
<img alt="" class="img-circle img-responsive" src="img/brands/6tages.png"
style="padding: 2px">
</a>
</div>
<div>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<a href="https://guillesierra.com/">
<h2 class="subheading">6tages</h2>
<h4>👨🏻💻 Founder</h4>
</a>
<p>Create your digital portfolio in 6 minutes</p>
<h5 class="date">
🇪🇺 Bcn - Dec 2020</h5>
</div>
<hr>
</div>
</li>
<!--Holded-->
<li class="timeline-inverted">
<div class="timeline-image" onclick="toggleInfo()">
<a href="http://holded.com/">
<img alt="" class="img-circle img-responsive" src="img/brands/holded.png"
style="padding: 2px">
</a>
</div>
<div>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<a href="https://holded.com/">
<h2 class="subheading">Holded</h2>
<h4>👨🏻💻 React Native</h4>
</a>
<p>All-in-one Smart Business Platform</p>
<h5 class="date">
🇪🇺 Bcn - Sept '19</h5>
</div>
<hr>
</div>
</li>
<!--Inspirence-->
<li>
<div class="timeline-image" onclick="toggleInfo()">
<a href="http://inspirence.com/">
<img alt="" class="img-circle img-responsive" src="img/brands/inspirence-logo-100.jpg"
style="padding: 2px">
</a>
</div>
<div>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<a href="https://inspirence.com/">
<h2 class="subheading">Inspirence</h2>
<h4>👨🏻💻 Founder</h4>
</a>
<p>Achieve your hero's goals</p>
<h5 class="date">
🇪🇺 Bcn - Jul '19</h5>
</div>
<hr>
</div>
</li>
<!--GoPure-->
<li>
<div class="timeline-image" onclick="toggleInfo()">
<a href="https://gopureapp.com/">
<img class="img-circle img-responsive" src="img/brands/gopure.png" alt="">
</a>
</div>
<div>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<a href="https://gopureapp.firebaseapp.com/">
<h2 class="subheading">GoPure </h2>
<h4>👨🏻💻 CTO & Co-Founder</h4>
</a>
<p>Personalized Nutrition</p>
<h5 class="date">
🇪🇺 Bcn - Jun '18</h5>
</div>
<hr>
</div>
</li>
<!--LowTaux-->
<li class="timeline-inverted">
<div class="timeline-image" onclick="toggleInfo()">
<a href="https://www.lowtaux.fr/">
<img class="img-circle img-responsive" src="img/brands/immotchat.svg" alt="">
</a>
</div>
<div>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<a href="https://www.lowtaux.fr/">
<h2 class="subheading"> Lowtaux </h2>
<h4>👨🏻💻 Mobile Developer</h4>
</a>
<p>🏬 Immotchat - React Native App</p>
<h5 class="date">
🇫🇷Bcn - March '18</h5>
</div>
<hr>
</div>
</li>
<!--Velocity-->
<li >
<div class="timeline-image" onclick="toggleInfo()">
<a href="https://www.velocityapp.com/">
<img class="img-circle img-responsive" src="img/brands/velocity_logo.jpg" alt="">
</a>
</div>
<div>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<a href="https://www.velocityapp.com/">
<h2 class="subheading">Velocity Black</h2>
<h4>👨🏻💻Android & Frontend Developer</h4>
</a>
<p> Android App - Kotlin & React Native (from scratch)
<h5 class="date">
🇬🇧 London 🇪🇺Bcn - Sept '17</h5>
</div>
<hr>
</div>
</li>
<!-- MapBook -->
<li class="timeline-inverted">
<div class="timeline-image" onclick="toggleInfo()">
<img class="img-circle img-responsive" src="img/brands/ganomad.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<a href="https://www.ganomad.com/">
<h2 class="subheading">
MapBook
</h2>
<h4> Android app</h4>
</a>
<p> Developer and designer - Kotlin - Mapbox & Foursquare API </p>
<h5 class="date">
🇪🇺 Feb '18</h5>
</div>
<hr>
</div>
</li>
<!--Guillesierra-->
<li class="timeline-inverted">
<div class="timeline-image" onclick="toggleInfo()">
<a href="https://www.guillesierra.com/">
<img class="img-circle img-responsive" src="img/logos/gsierra_w.svg" alt="">
</a>
</div>
<div>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<a href="https://www.guillesierra.com/">
<h2 class="subheading">
Guille<span style="color: #122b40">sierra</span></h2>
<h4>Personal webpage template</h4>
</a>
<p>Designer and publisher</p>
<h5 class="date">
🇮🇹 Naples, Aug '17</h5>
</div>
<hr>
</div>
</li>
<!-- Autoqe -->
<li>
<div class="timeline-image" onclick="toggleInfo()">
<a href="https://www.autoqe.com/">
<img class="img-circle img-responsive" src="img/brands/autoqe.svg" alt="autoqe">
</a>
</div>
<div>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<a href="https://www.autoqe.com/">
<h2 class="subheading">🚀 Autoqe</h2>
<h4>Auto al Toque</h4>
</a>
<p>Founder. Carpooling arrives to South-America</p>
<h5 class="date">
🇦🇷 Buenos Aires, Feb '17</h5>
</div>
<hr>
<div class="timeline-body">
<p class="text-muted">
All-in-one transport application in the context of Collaborative Economy,
including <b>Carpooling</b>, <b>Carsharing</b>, and private <b>car or parking
rental</b>.
</p>
</div>
</div>
</li>
<!-- ShotGot -->
<li class="timeline-inverted">
<div class="timeline-image" onclick="toggleInfo()">
<img class="img-circle img-responsive" src="img/brands/shotgot.png" alt="shotgot">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h2 class="subheading" href="https://www.shotgot.com/">🚀 ShotGot</h2>
<h4> See it, Got it!</h4>
<p> Founder. Visual search comparison tool to match against e-commerce catalogues. </p>
<h5 class="date">
🇺🇸 Nov '16</h5>
</div>
<hr>
<div class="timeline-body">
<p class="text-muted">
Visual search engine able to match a picture with an item within a catalog
providing a powerful, scalable purchase comparator platform. </p>
</div>
</div>
</li>
<!-- Amadeus -->
<li id="Amadeus">
<div class="timeline-image" onclick="toggleInfo()">
<img class="img-circle img-responsive" src="img/brands/amadeus.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h2 class="subheading">👨🏻💻 Amadeus</h2>
<h4 class="subheading"> Java Developer</h4>
<h5 class="date">
🇫🇷 Nice, Jun-Nov '16</h5>
</div>
<hr>
<div class="timeline-body">
<p class="text-muted">
Air department. Java Software developer engineer in Tribe agile team. E-commerce
product and bookings. </p>
</div>
</div>
</li>
<!-- SEAT -->
<li id="SEAT">
<div class="timeline-image" onclick="toggleInfo()">
<img alt="" class="img-circle img-responsive"
src="https://www.griffintaxfree.com/wp/wp-content/uploads/seat-logo-2018.png"
style="object-fit: contain">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h2 class="subheading">👨🏻💻 Seat</h2>
<h4 class="subheading">Android Developer</h4>
<h5 class="date">
🇪🇺
Bcn - Mar-May '16</h5>
</div>
<hr>
<div class="timeline-body">
<p class="text-muted">
Android developer. NFC Android application for SEAT:
<br> <b>SeatTap</b> as an interactive controller through NFC to several vehicle
interfaces such as the dashbord or engine level.
</p>
</div>
</div>
</li>
<!-- EWSN -->
<li class="timeline-inverted">
<div class="timeline-image" onclick="toggleInfo()">
<img class="img-circle img-responsive" src="img/brands/tu-graz.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h2 class="subheading">
🏆 EWSN 2016 </h2>
<h4 class="subheading"> IoT Dependability CHALLENGE </h4>
<h5 class="date">
🇦🇹 Graz, Feb '16</h5>
</div>
<hr>
<div class="timeline-body">
<p class="text-muted">Final Degree project at UPC promoted to EWSN challenge 2016.
<br>Dependability Competition within the International Conference on Embedded
Wireless Systems and Networks [EWSN] 2016 at TU Graz, Austria.
</div>
</div>
</li>
<!-- HACKEPFL -->
<li class="timeline-inverted" id="hackepfl">
<div class="timeline-image" onclick="toggleInfo()">
<img class="img-circle img-responsive" src="img/brands/facebook.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h2 class="subheading">
🏆 HackEPFL
</h2>
<h4 class="subheading"> Facebook Hackathon 2015 at EPFL</h4>
<h5 class="date">
🇨🇭 Lausanne, Mar '15</h5>
</div>
<hr>
<div class="timeline-body">
<p class="text-muted">
Hackathon organized by Facebook at EPFL. <br>First prize was an Internship at <br>
Facebook California 🇺🇸
</p>
</div>
</div>
</li>
<!-- EPFL -->
<li id="EPFL">
<div class="timeline-image" onclick="toggleInfo()">
<img alt="" class="img-circle img-responsive"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Logo_EPFL.svg/1280px-Logo_EPFL.svg.png"
style="object-fit: contain">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h2>🎓 EPFL</h2>
<h4>Exchange project</h4>
<h5>Collaborative sensing on selfdriving cars</h5>
🇨🇭 Lausanne, Feb-Jun '15</h5>
</div>
<hr>
<div class="timeline-body">
<p class="text-muted">
Swiss-European Mobility Programme (formerly Erasmus)</a>
at <img src="img/brands/epfl-icon.jpg" class="img-rounded" height="32">.
<a href="http://disal.epfl.ch/">DISAL</a> department. </p>
</div>
</div>
</li>
<!-- Thinkbig -->
<li class="timeline-inverted" id="Thinkbig">
<div class="timeline-image" onclick="toggleInfo()">
<img alt="" class="img-circle img-responsive"
src="https://www.underconsideration.com/brandnew/archives/movistar_old_old_logo.jpg">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h2 class="subheading">
🏆 ThinkBig</h2>
<h4 class="subheading"> Telefonica Smartcity Hackathon 2014</h4>
<h5 class="date">
🇪🇺
Bcn - 2010-'15</h5>
</div>
<hr>
<div class="timeline-body">
<p class="text-muted">
<a href="#ThirdEye"> <b>ThirdEye</b></a> : SmartBike idea promoted to
<img src="img/brands/ficod.png" width="80" height="40"> National
Enterpreneurship Challenge. </p>
</div>
</div>
</li>
<!-- CubeSat -->
<li class="timeline-inverted" id="Cubesat">
<div class="timeline-image" onclick="toggleInfo()">
<img alt="" class="img-circle img-responsive"
src="http://space.skyrocket.de/img_sat/m-sat_mr-sat_mrs-sat__1.jpg">
<!--
<h1 style="font-size: 54px;margin-top: 0.2em; margin-left: 0.2em">🛰</h1>
-->
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h2 class="subheading">🏆 CubeCat </h2>
<h4 class="subheading">Nano Satellite - <img height="22" src="img/brands/google.png"
alt=""> award</h4>
<h5 class="date">
🇪🇺
Bcn - Feb-Jun 2013</h5>
</div>
<hr>
<div class="timeline-body">
<h5 style="text-align: center">CUBECAT Project at <a href="#UPC">UPC </a></h5>
<p class="text-muted">
In charge of the design of the communication layers, as well as tinkering with the
WiFi driver and the source code of Android Hammerhead.
<br> Communication department at <img src="img/brands/abs.jpeg" width="80"
height="40"> ABS <a
href="https://nanosatlab.upc.edu/en/missions-and-projects/android-beyond-the-stratosphere">
[Android Beyond Stratosphere] </a>
Project granted by <img src="img/brands/google.png" width="40" height="40">Google,
aiming to send a Satellite controlled by a Nexus5 device.
<br>In the context of <a href="https://nanosatlab.upc.edu/en"> <img
src="img/brands/cubecat.jpg" width="130" height="40"></a>
at <img src="img/brands/upc-logo.png" width="40" height="40"> UPC,
belonging to CubeSat worldwide project, targetingt to send 10x10x10cm Satellites to
the Space.</p>
</div>
</div>
</li>
<!-- UPC -->
<li id="UPC">
<div class="timeline-image" onclick="toggleInfo()">
<img class="img-circle img-responsive" src="img/brands/upc-logo.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h2 class="subheading">
🎓 Telecomm. Engineering
</h2>
<h4 class="subheading">B.Sc. at UPC - Branch in Telematics</h4>
<h5 class="date">
🇪🇺
Bcn - 2010-'15</h5>
</div>
<hr>
<div class="timeline-body">
<p class="text-muted">Telecommunications Engineering degree, Telematics branch.
<br>
<a href="#EPFL"> Exchange project</a> at <img src="img/brands/epfl-icon.jpg"
class="img-rounded" height="24">
<br> Final degree project promoted to EWSN 2016 in Graz, Austria. </p>
</div>
</div>
</li>
<!-- SUMO -->
<li class="timeline-inverted" id="Sumo">
<div class="timeline-image" onclick="toggleInfo()">
<img alt="" class="img-circle img-responsive"
src="https://www.robotroom.com/Roundabout/Roundabout.gif">
<!--
<h1 style="font-size: 54px;margin-top: 0.2em">🤖</h1>
-->
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h2 class="subheading">
🏆 Robosumo
</h2>
<h4 class="subheading">HighSchool project at UPC Challenge 2010</h4>
<h5 class="date">
🇪🇺
Bcn - Jun '10</h5>
</div>
<hr>
<div class="timeline-body">
<p class="text-muted">Final HighSchool project presented to RoboSumo UPC
<img src="img/brands/upc-logo.png" class="img-rounded" height="32">
challenge 2010.
</p>
</div>
</div>
</li>
<!-- Born -->
<li id="born">
<div class="timeline-image" onclick="toggleInfo()">
<h1 style="font-size: 54px;margin-top: 0.2em">🤱</h1>
<!--<img class="img-circle img-responsive" src="img/icons/stork.png" alt="">-->
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h2 class="subheading">
🍼 Born</h2>
<h5 class="date">
🇪🇺
Bcn - 9th Dec 1992</h5>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="bg-darkest-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading" style="color: #2e6da4">🔥 Services</h2>
<h3 class="section-subheading text-muted-light" style="color: white">Find out what can I actually
offer and reach me out:</h3>
</div>
</div>
<div class="row text-center">
<div style="margin-bottom: 1.5em" class="LI-profile-badge" data-version="v1" data-size="large" data-locale="en_US" data-type="horizontal" data-theme="dark" data-vanity="sierraguillermo">
<a class="LI-simple-link" href='https://es.linkedin.com/in/sierraguillermo?trk=profile-badge'>Guillermo Sierra</a>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-diamond fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Web and App design</h4>
<p class="text-muted-light">Startup and company IT consulting and development.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-shopping-cart fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">E-Commerce</h4>
<p class="text-muted-light">Experience in e-Commerce platform deployments.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-lock fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Web Security</h4>
<p class="text-muted-light">End-To-End security, technologies and tool analysis for your business.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Team Section
<section id="team" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Our Amazing Team</h2>
<h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/1.jpg" class="img-responsive img-circle" alt="">
<h4>Kay Garland</h4>
<p class="text-muted">Lead Designer</p>
<ul class="list-inline social-buttons">
<li><a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li><a href="#"><i class="fa fa-facebook"></i></a>
</li>
<li><a href="#"><i class="fa fa-linkedin"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">