-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
997 lines (922 loc) · 49.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
<!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.0" />
<link rel="stylesheet" href="https://use.typekit.net/ldj8uhs.css" />
<link rel="stylesheet" href="https://unpkg.com/splitting/dist/splitting.css" />
<link rel="stylesheet" href="https://unpkg.com/splitting/dist/splitting-cells.css" />
<link rel="stylesheet" href="assets/index.css" />
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-119532863-1"></script>
<script>
document.documentElement.className = "js";
var supportsCssVars = function () {
var e,
t = document.createElement("style");
return (
(t.innerHTML = "root: { --tmp-var: bold; }"),
document.head.appendChild(t),
(e = !!(
window.CSS &&
window.CSS.supports &&
window.CSS.supports("font-weight", "var(--tmp-var)")
)),
t.parentNode.removeChild(t),
e
);
};
supportsCssVars() ||
alert("Please view this demo in a modern browser that supports CSS Variables.");
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-119532863-1");
</script>
<title>Camilo Salinas | Entrepreneur & Developer</title>
</head>
<body class="loading">
<div class="container">
<div class="menu">
<div class="menu__inner">
<div class="menu__links">
<a href="#banner">Home</a>
<a href="#about">About me</a>
<a href="#projects">Projects</a>
<a href="#awards">Awards</a>
<a href="#likes">Hobbies & Likes</a>
<a href="#academia">Academia</a>
<a href="#footer">Footer</a>
</div>
</div>
</div>
<main>
<div class="main-content" id="banner">
<section class="grid">
<div class="grid__item pos-1">
<div class="grid__item-img" style="background-image: url(assets/images/Me/matrimonio.jpeg)"></div>
</div>
<div class="grid__item pos-2">
<div class="grid__item-img" style="background-image: url(assets/images/Me/Cocora.jpeg)"></div>
</div>
<div class="grid__item pos-3">
<div class="grid__item-img" style="background-image: url(assets/images/Me/nieve1.jpeg)"></div>
</div>
<div class="grid__item pos-4">
<div class="grid__item-img" style="background-image: url(assets/images/Me/fbdevcircles.jpg)"></div>
</div>
<div class="grid__item pos-5">
<div class="grid__item-img" style="background-image: url(assets/images/Me/CEU2.jpeg)"></div>
</div>
<div class="grid__item pos-6">
<div class="grid__item-img" style="background-image: url(assets/images/Me/grad.jpg)"></div>
</div>
<div class="grid__item pos-7">
<div class="grid__item-img" style="background-image: url(assets/images/Me/nieve2.jpeg)"></div>
</div>
<div class="grid__item pos-8">
<div class="grid__item-img" style="background-image: url(assets/images/Me/seneca1.jpg)"></div>
</div>
<div class="grid__item pos-9">
<div class="grid__item-img" style="background-image: url(assets/images/Me/profile1.jpg)"></div>
</div>
<div class="grid__item pos-10">
<div class="grid__item-img" style="background-image: url(assets/images/Me/speaker.JPG)"></div>
</div>
</section>
<h2 class="content__title no-select">
<span data-splitting>Camilo</span>
<span data-splitting class="content__title-sub">Salinas</span>
</h2>
</div>
</main>
<section class="spacer"></section>
<!--About me-->
<section class="about" id="about">
<h2 class="content-title">
About me
</h2>
<p>
I am Camilo Salinas, a Systems and Computing Engineer who graduated from Universidad de los Andes in February 2024. As a Senior Front-End Engineer at Blankfactor, I build scalable cloud-based solutions for public safety services like 911 emergency systems. I’ve worked in Fintech and Proptech startups, leading engineering teams and building products from the ground up. My entrepreneurial experience includes co-founding Eskombros, a sustainable waste management solution for construction SMEs that integrated AI-driven logistics and optimization systems, processing over 1,600 cubic meters of waste. I also won Colombia's first Generative AI Hackathon in 2023 with a developer testing automation plugin. With expertise in React, Node.js, TypeScript, and leadership, I bring a mix of technical excellence and business-driven problem-solving to every challenge.
</p>
<p class="goal">
I am the kind of engineer you can rely on to <b>GET SHIT DONE</b>. I combine a deep technical background with an entrepreneurial mindset—focusing on business outcomes, understanding underlying problems, and delivering excellent results without getting stuck in perfectionism. I take ownership, prioritize impact, and make things happen.
</p>
</section>
<!--Featured Projects-->
<h2 class="content-title" id="projects">
Businesses, Projects, and Startups
</h2>
<section class="items">
<article class="item item--invert">
<div class="item__imgwrap">
<div class="item__img" style="background-image:url(assets/images/Projects/Eskombros/3.png)"></div>
</div>
<button class="item__enter unbutton">
<svg class="item__enter-circle" vector-effect="non-scaling-stroke" width="800" height="800"
viewBox="0 0 800 800">
<circle vector-effect="non-scaling-stroke" cx="400" cy="400" r="150" />
</svg>
</button>
<h2 class="heading heading--item">
<span data-splitting>Eskombros</span>
<span data-splitting>Startup</span>
</h2>
<div class="item__meta">
<span class="item__meta-row"><span>CEO & Co-founder</span></span>
<span class="item__meta-row"><span>Jan 2023 — Oct 2024</span></span>
</div>
<div class="item__excerpt">
<p>
Eskombros is a sustainable solution for managing construction waste, optimizing collection and disposal while promoting material reuse and reducing costs.</p>
<a class="item__excerpt-link" href="#eskombros"><span>Read more</span></a>
</div>
</article>
<article class="item">
<div class="item__imgwrap">
<div class="item__img" style="background-image:url(assets/images/Projects/Testbuddy/3.png)"></div>
</div>
<button class="item__enter unbutton">
<svg class="item__enter-circle" vector-effect="non-scaling-stroke" width="800" height="800"
viewBox="0 0 800 800">
<circle vector-effect="non-scaling-stroke" cx="400" cy="400" r="150" />
</svg>
</button>
<h2 class="heading heading--item">
<span data-splitting>TestBuddy</span>
<span data-splitting>Project</span>
</h2>
<div class="item__meta">
<span class="item__meta-row"><span>Hackathon Winner</span></span>
<span class="item__meta-row"><span>Oct 2023</span></span>
</div>
<div class="item__excerpt">
<p>TestBuddy is a VS Code extension that automates unit test creation using GPT-3.5, saving developers time and effort.</p>
<a class="item__excerpt-link" href="#testbuddy"><span>Read more</span></a>
</div>
</article>
<article class="item item--invert">
<div class="item__imgwrap">
<div class="item__img" style="background-image:url(assets/images/Projects/Eco2Wallet/Eco2Wallet.png)"></div>
</div>
<button class="item__enter unbutton">
<svg class="item__enter-circle" vector-effect="non-scaling-stroke" width="800" height="800"
viewBox="0 0 800 800">
<circle vector-effect="non-scaling-stroke" cx="400" cy="400" r="150" />
</svg>
</button>
<h2 class="heading heading--item">
<span data-splitting>Eco2Wallet</span>
<span data-splitting>Startup</span>
</h2>
<div class="item__meta">
<span class="item__meta-row"><span>Tech Directoor</span></span>
<span class="item__meta-row"><span>Jan 2022 — Jun 2022</span></span>
</div>
<div class="item__excerpt">
<p>
We are a green digital wallet with a debit card that plants trees and seagrass to compensate for the
environmental impact of your daily purchases. Let's transform each taxi, coffee, etc, into trees in the
Amazon with eco2wallet!
Money doesn't grow on trees, but your money in eco2wallet will make trees grow!</p>
<a class="item__excerpt-link" href="#eco2wallet"><span>Read more</span></a>
</div>
</article>
<article class="item">
<div class="item__imgwrap">
<div class="item__img" style="background-image:url(assets/images/Projects/Residia/Modulos.jpeg)"></div>
</div>
<button class="item__enter unbutton">
<svg class="item__enter-circle" vector-effect="non-scaling-stroke" width="800" height="800"
viewBox="0 0 800 800">
<circle vector-effect="non-scaling-stroke" cx="400" cy="400" r="150" />
</svg>
</button>
<h2 class="heading heading--item">
<span data-splitting>Residia</span>
<span data-splitting>Startup</span>
</h2>
<div class="item__meta">
<span class="item__meta-row"><span>CEO & Co-founder</span></span>
<span class="item__meta-row"><span>Mar 2019 — Dec 2021</span></span>
</div>
<div class="item__excerpt">
<p>Residia is a multiplatform application that empowers and promotes the comunication and integration in the
community of residential complexes, improving quality of services, and easing the managment of multiple
complexes and building upon community.</p>
<a class="item__excerpt-link" href="#residia"><span>Read more</span></a>
</div>
</article>
<article class="item item--invert">
<div class="item__imgwrap">
<div class="item__img"
style="background-image:url(assets/images/Projects/Recety/Screen\ Shot\ 2020-08-18\ at\ 10.46.41\ PM.png)">
</div>
</div>
<button class="item__enter unbutton">
<svg class="item__enter-circle" vector-effect="non-scaling-stroke" width="800" height="800"
viewBox="0 0 800 800">
<circle vector-effect="non-scaling-stroke" cx="400" cy="400" r="150" />
</svg>
</button>
<h2 class="heading heading--item">
<span data-splitting>Recety</span>
<span data-splitting>Startup</span>
</h2>
<div class="item__meta">
<span class="item__meta-row"><span>CEO & Co-founder</span></span>
<span class="item__meta-row"><span>Aug 2020 — Dec 2020</span></span>
</div>
<div class="item__excerpt">
<p>The recipe creation and consumption community where you can discover, create and support your favorite
creators.</p>
<a class="item__excerpt-link" href="#recety"><span>Read more</span></a>
</div>
</article>
<article class="item">
<div class="item__imgwrap">
<div class="item__img" style="background-image:url(assets/images/Projects/LearnToTransit/Screenshot.png)">
</div>
</div>
<button class="item__enter unbutton">
<svg class="item__enter-circle" vector-effect="non-scaling-stroke" width="800" height="800"
viewBox="0 0 800 800">
<circle vector-effect="non-scaling-stroke" cx="400" cy="400" r="150" />
</svg>
</button>
<h2 class="heading heading--item">
<span data-splitting>LearnToTransit</span>
<span data-splitting>Project</span>
</h2>
<div class="item__meta">
<span class="item__meta-row"><span>Creator</span></span>
<span class="item__meta-row"><span>Jan 2017 — Jun 2017</span></span>
</div>
<div class="item__excerpt">
<p>Project developed for "Expoandes" at university to help people learn transit rules didactically. Currently
available for download in Google's Play Store.</p>
<a class="item__excerpt-link" href="#learntotransit"><span>Read more</span></a>
</div>
</article>
<article class="item item--invert">
<div class="item__imgwrap">
<div class="item__img"
style="background-image:url(assets/images/Projects/GGITApps/Screen\ Shot\ 2022-02-17\ at\ 1.58.30\ AM.png)">
</div>
</div>
<button class="item__enter unbutton">
<svg class="item__enter-circle" vector-effect="non-scaling-stroke" width="800" height="800"
viewBox="0 0 800 800">
<circle vector-effect="non-scaling-stroke" cx="400" cy="400" r="150" />
</svg>
</button>
<h2 class="heading heading--item">
<span data-splitting>GGITApps</span>
<span data-splitting>Website dev Business</span>
</h2>
<div class="item__meta">
<span class="item__meta-row"><span>Co-founder & Director</span>
<span class="item__meta-row"><span>Dec 2016 — Jan 2019</span>
</div>
<div class="item__excerpt">
<p>Website and App development company I founded when I graduated school, taking advantage of my self-taught
coding skills having important clients such as: McDonalds, Siemon, Minesa, Etc... </p>
<a class="item__excerpt-link" href="#ggitapps"><span>Read more</span></a>
</div>
</article>
<article class="item">
<div class="item__imgwrap">
<div class="item__img" style="background-image:url(assets/images/Projects/Minecraft/BosyZh8IcAErDBy.png)">
</div>
</div>
<button class="item__enter unbutton">
<svg class="item__enter-circle" vector-effect="non-scaling-stroke" width="800" height="800"
viewBox="0 0 800 800">
<circle vector-effect="non-scaling-stroke" cx="400" cy="400" r="150" />
</svg>
</button>
<h2 class="heading heading--item">
<span data-splitting>Minespreack</span>
<span data-splitting>Minecraft Server</span>
</h2>
<div class="item__meta">
<span class="item__meta-row"><span>Admin & Creator</span></span>
<span class="item__meta-row"><span>Jan 2013 — Jun 2016</span></span>
</div>
<div class="item__excerpt">
<p>My first business and important project in life was minespreack, a minecraft server which became the 3rd
largest in LATAM and the 1st largest in Colombia, with more than 100.000 registered users.</p>
<a class="item__excerpt-link" href="#minespreack"><span>Read more</span></a>
</div>
</article>
</section>
<section class="content">
<article class="content__article content__article--invert" id="eskombros">
<h2 class="heading">
<span data-splitting>Eskombros</span>
<span data-splitting>Startup</span>
</h2>
<div class="content__text">
<img src="assets/images/Projects/Eskombros/logo.svg" alt="Some image" />
<h1>Eskombros: Transforming Construction Waste Management</h1>
<p>
Eskombros is a sustainable and technologically advanced solution designed to address one of the most significant challenges in the construction industry: the management of construction and demolition waste (RCD). By offering an end-to-end service, Eskombros helps companies optimize their debris processes, reduce costs, and promote environmental sustainability.
</p>
<h2>Our Mission</h2>
<p>
Eskombros aims to revolutionize the construction waste industry by providing an integrated platform that simplifies the collection, transportation, and recycling of debris. Designed for small and medium-sized enterprises (SMEs) in Latin America, the solution bridges efficiency and sustainability in a traditionally inefficient market.
</p>
<h2>Who Is It For?</h2>
<ul>
<li><strong>SMEs in Construction</strong>: Small and medium-sized construction companies seeking efficient waste management solutions.</li>
<li><strong>Construction Professionals</strong>: Directors, project managers, and logistics coordinators looking to streamline RCD handling.</li>
<li><strong>Sustainability Advocates</strong>: Companies aiming to comply with environmental regulations and reduce their ecological footprint.</li>
</ul>
<h2>How Eskombros Works</h2>
<p>
Eskombros provides an all-in-one service to simplify every stage of construction waste management:
</p>
<ul>
<li><strong>Collection</strong>: On-site pickup of construction and demolition waste.</li>
<li><strong>Transportation</strong>: Optimized routes to ensure timely delivery to processing centers.</li>
<li><strong>Processing</strong>: Sorting and recycling of reusable materials.</li>
<li><strong>Certifications</strong>: Issuance of certificates that ensure compliance with environmental laws and standards.</li>
</ul>
<p>
By managing the entire lifecycle of waste, Eskombros reduces the complexities of coordinating multiple vendors, saves time, and ensures operational transparency.
</p>
<h2>The Technology Behind Eskombros</h2>
<p>
Eskombros leverages advanced technologies to optimize operations and provide value to clients:
</p>
<ul>
<li><strong>Real-Time Tracking</strong>: Monitor waste collection and transportation in real-time to ensure efficiency.</li>
<li><strong>Data Analytics</strong>: Generate insights for better decision-making and operational improvements.</li>
<li><strong>AI Optimization</strong>: Use artificial intelligence to enhance route planning, reduce costs, and minimize environmental impact.</li>
</ul>
<img src="assets/images/Projects/Eskombros/3.png" alt="Some image" />
<h2>Why Choose Eskombros?</h2>
<p>
Construction companies face growing challenges with waste management, ranging from high costs to regulatory compliance. Eskombros addresses these issues through the following key benefits:
</p>
<ul>
<li><strong>Cost Savings</strong>: Clients save up to $10 per cubic meter of processed debris compared to traditional services.</li>
<li><strong>Operational Efficiency</strong>: Streamlined processes reduce delays and improve project timelines.</li>
<li><strong>Sustainability</strong>: Supports a circular economy by recycling materials and minimizing landfill use.</li>
<li><strong>Regulatory Compliance</strong>: Helps companies meet local environmental laws and achieve potential tax incentives.</li>
<li><strong>Reduced Responsibilities</strong>: Eskombros handles all logistics, allowing companies to focus on their core tasks.</li>
</ul>
<img src="assets/images/Projects/Eskombros/2.png" alt="Some image" />
<h2>Starting Point: Bogotá</h2>
<p>
Eskombros is launching its services in Bogotá, Colombia, focusing on medium-sized construction firms managing projects with waste volumes between 1,000 and 5,000 cubic meters. This strategic entry point allows Eskombros to work closely with companies open to innovation and technology-driven solutions.
</p>
<h2>Looking Ahead</h2>
<p>
Eskombros is not just about managing construction waste; it’s about transforming the industry through efficiency, transparency, and sustainability. By providing a unified, technology-backed solution, Eskombros helps companies reduce their environmental impact, save costs, and focus on what truly matters: building a better future.
</p>
<img src="assets/images/Projects/Eskombros/1.png" alt="Some image" />
<h3>Key Takeaways</h3>
<ul>
<li>Eskombros provides an all-in-one solution for construction waste management.</li>
<li>It reduces costs, enhances operational efficiency, and supports environmental sustainability.</li>
<li>Technology like real-time tracking and AI optimization sets it apart from traditional services.</li>
<li>Launching in Bogotá, it targets medium-sized construction companies ready for innovation.</li>
</ul>
<p>
Ready to revolutionize your construction waste management? Eskombros is your trusted partner for sustainable and efficient solutions.
</p>
</div>
</article>
<article class="content__article content__article--invert" id="testbuddy">
<h2 class="heading">
<span data-splitting>TestBuddy</span>
<span data-splitting>Project</span>
</h2>
<div class="content__text">
<img src="assets/images/Projects/Testbuddy/icon-1.gif" alt="Some image" />
<p>TestBuddy is an innovative Visual Studio Code extension designed to automate the process of unit testing in software development. By leveraging natural language processing with GPT-3.5-turbo-16k, TestBuddy generates, regenerates, and modifies unit tests based on user inputs, improving testing efficiency and reducing developer frustration. The tool seamlessly integrates into existing workflows, providing intelligent suggestions to address errors while enhancing code quality. It simplifies unit test creation, allowing developers to focus more on coding rather than repetitive testing tasks.</p>
<ul>
<li><strong>Purpose</strong>: Automates the creation, regeneration, and modification of unit tests.</li>
<li><strong>Integration</strong>: Designed as an extension for <em>Visual Studio Code</em>, ensuring seamless integration into developers' workflows.</li>
<li><strong>Technology</strong>: Utilizes <em>GPT-3.5-turbo-16k</em> to generate unit tests using natural language processing.</li>
<li><strong>User Input</strong>: Allows developers to modify or regenerate specific tests based on comments or errors.</li>
<li><strong>Back-End</strong>: Built with <em>Node.js</em> following the <em>MVC design pattern</em> for scalability.</li>
<li><strong>Endpoints</strong>: Provides various API routes like generating unit tests, regenerating single tests, and offering feedback on failed tests.</li>
<li><strong>Database</strong>: Uses <em>Azure SQL Database</em> to store data and support future analytics on user behavior.</li>
<li><strong>Deployment</strong>: Hosted on <em>Azure App Service</em> with continuous integration using <em>GitHub Actions</em>.</li>
<li><strong>Beta Testing</strong>: Tested with experienced developers to validate usability, effectiveness, and feedback.</li>
<li><strong>Focus</strong>: Improves developer efficiency by automating tedious testing tasks while ensuring early detection of errors.</li>
<li><strong>Scalability</strong>: Designed for long-term growth with a modular and well-structured back-end architecture.</li>
<li><strong>UI</strong>: Built with <em>JavaScript</em>, offering an intuitive and user-friendly interface.</li>
<li><strong>Cost Savings</strong>: Reduces the time and resources spent on manual unit test creation.</li>
<li><strong>Error Feedback</strong>: Provides intelligent suggestions when tests fail, assisting developers with debugging.</li>
</ul>
<img src="assets/images/Projects/Testbuddy/1.png" alt="Some image" />
<img src="assets/images/Projects/Testbuddy/2.png" alt="Some image" />
<img src="assets/images/Projects/Testbuddy/3.png" alt="Some image" />
<img src="assets/images/Projects/Testbuddy/4.png" alt="Some image" />
<img src="assets/images/Projects/Testbuddy/5.png" alt="Some image" />
<img src="assets/images/Projects/Testbuddy/6.png" alt="Some image" />
</div>
</article>
<article class="content__article" id="eco2wallet">
<h2 class="heading">
<span data-splitting>Eco2Wallet</span>
<span data-splitting>Startup</span>
</h2>
<div class="content__text">
<img src="assets/images/Projects/Eco2Wallet/Eco2Wallet.png" alt="Some image" />
<p>We are a green digital wallet with a debit card that plants trees and seagrass to compensate for the
environmental impact of your daily purchases. Let's transform each taxi, coffee, etc, into trees in the
Amazon with eco2wallet! Money doesn't grow on trees, but your money in eco2wallet will make trees grow! </p>
<p>Imagine a digital Personal Identification, all your debit and credit cards in one, awareness and trading of
your individual emissions, plant trees in the Amazon with each purchase while owning sustainable crypto. All
in your eco2wallet.</p>
<img src="assets/images/Projects/Eco2Wallet/first-image.png" alt="Some image" />
<p>eco2wallet, eco2card and eco2app are designed with sustainability at all points, CO2 stands for Carbon
Dioxide emissions which are the primary pollutant causing climate change, our background is primarily black,
saving you ~0,103 watts hours than any other website, our trees in the background are native amazonian and
our fonts is thin in case you have to print information, we provide true balance between people, profit and
planet!</p>
<p> Eco2wallet, was funded in 2020 by Yodaly S-R, in the middle of a hard lockdown in London, UK with the main
objective of creating a simple way for individuals and retail to be environmentally conscious while redeem
their environmental impact with real trees in the Colombian Amazon, because helping the environment via a
digital wallet is our motto, and creating an individual market of emissions backed by additionality is our
goal </p>
<img src="assets/images/Projects/Eco2Wallet/second-image.png" alt="Some image" />
</div>
</article>
<article class="content__article content__article--invert" id="residia">
<h2 class="heading">
<span data-splitting>Residia</span>
<span data-splitting>Startup</span>
</h2>
<div class="content__text">
<img src="assets/images/Projects/Residia/logo.png" alt="Some image" />
<p>Residential complexes are an uninformed and disjoint environment which creates arguments between community
members, this gets aggrieved by the fact that processes are done in an unorganized way.</p>
<ul>
<li>
Arguments between community members (administrators, neighbors, janitors, security guards, etc).</li>
<li>
Obsolete, neglected and uncommunicative billboards.
</li>
<li>
Inopportune delivery of payment receipts.
</li>
<li>
There is no simple, comfortable and formal way to reserve shared spaces or common areas.
</li>
<li>
Lack of an organized communication method between the community. Insecurity in cases of theft or others.
</li>
<li>
Low communication and poor quality coexistence between community members
</li>
</ul>
<img src="assets/images/Projects/Residia/CHAT-1---instaStory.gif" alt="Some image" />
<p>Residia creates a digital ecosystem in the residential complexes with the help of different functionalities and technologies, this allows the interaction and integration between the different community members. This promotes process optimization and formalization while improving coexistence which results in a collaborative and transparent community.
</p>
<p> Residia is a mobile first platform that creates, develops, and manages residential communities.</p>
<img src="assets/images/Projects/Residia/Modulos.jpeg" alt="Some image" />
</div>
</article>
<article class="content__article" id="recety">
<h2 class="heading">
<span data-splitting>Recety</span>
<span data-splitting>Startup</span>
</h2>
<div class="content__text">
<p>The recipe creation and consumption community where you can discover, create and support your favorite creators.
</p>
<p>Why us?
<ul>
<li>
The kitchen is part of the daily life of people in general
</li>
<li>
The creation of online communities focused on a topic generates accompaniment and distraction for people that can improve the quality of life of people in confinement.
</li>
<li>
We can generate a direct impact on people who are motivated to share their culinary knowledge
</li>
</ul>
</p>
<img src="assets/images/Projects/Recety/Screen Shot 2020-08-18 at 10.47.39 PM.png" alt="Some image" />
<img src="assets/images/Projects/Recety/Recety.jpeg" alt="Some image" />
</div>
</article>
<article class="content__article content__article--invert" id="learntotransit">
<h2 class="heading">
<span data-splitting>LearnToTransit</span>
<span data-splitting>Project</span>
</h2>
<div class="content__text">
<p>Project developed for "Expoandes" at university to help people learn transit rules didactically. Currently available for download in Google's Play Store. </p>
<img src="assets/images/Projects/LearnToTransit/Screenshot.png" alt="Some image" />
<img src="assets/images/Projects/LearnToTransit/expoandes.jpeg" alt="Some image" />
<img src="assets/images/Projects/LearnToTransit/LearnToTransit1.jpeg" alt="Some image" />
<video src="assets/images/Projects/LearnToTransit/LearnToTransit.mp4" autoplay muted loop></video>
</div>
</article>
<article class="content__article " id="ggitapps">
<h2 class="heading">
<span data-splitting>GGITApps</span>
<span data-splitting>Website dev Business</span>
</h2>
<div class="content__text">
<p>Website and App development company I founded when I graduated school, taking advantage of my self-taught coding skills having important clients such as: McDonalds, Siemon, Minesa, Etc... </p>
<img src="assets/images/Projects/GGITApps/IMG-20161219-WA0022.jpeg" alt="Some image" />
<img src="assets/images/Projects/GGITApps/Screen Shot 2022-02-17 at 1.58.30 AM.png" alt="Some image" />
</div>
</article>
<article class="content__article content__article--invert" id="minespreack">
<h2 class="heading">
<span data-splitting>Minespreack</span>
<span data-splitting>Minecraft Server</span>
</h2>
<div class="content__text">
<p>My first business and important project in life was minespreack, a minecraft server which became the 3rd largest in LATAM and the 1st largest in Colombia, with more than 100.000 registered users.</p>
<img src="assets/images/Projects/Minecraft/BosyZh8IcAErDBy.png" alt="Some image" />
<img src="assets/images/Projects/Minecraft/999083_10201577723473221_1653632199_n.jpg" alt="Some image" />
</div>
</article>
<button class="content__back unbutton">
<svg>
<path d="M82 10H9" stroke="#fff" stroke-width="2" />
<path
d="M10.474 0C7.988 4 4.118 7.422 0 10c4.156 2.539 7.865 6 10.474 10h2.485c-2.608-4-5.744-7.379-9.618-10C7.215 7.34 10.474 4 13 0h-2.526zm6 0C13.987 4 10.116 7.422 6 10c4.156 2.539 7.865 6 10.474 10h2.485c-2.606-4-5.745-7.379-9.617-10C13.214 7.34 16.474 4 19 0h-2.526z"
fill="#fff" />
</svg>
</button>
</section>
<section class="spacer"></section>
<!--Awards and Experience-->
<section class="slides" id="awards">
<div class="slide slide--current">
<div class="slide__img-wrap">
<div class="break"></div>
</div>
<h2 class="slide__title">
<span class="slide__title-inner" data-splitting>Awards</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting> and </span>
<span class="slide__title-inner" data-splitting>Experience</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>
Move with the arrows
</span>
</h2>
</div>
<!--GSEA Global-->
<div class="slide">
<div class="slide__img-wrap">
<img class="slide__img slide__img--1" src="assets/images/Projects/GSEA/GSEA1.jpeg" alt="Some image" />
<img class="slide__img slide__img--2" src="assets/images/Projects/GSEA/GSEA2.jpeg" alt="Some image" />
<div class="break"></div>
<img class="slide__img slide__img--3" src="assets/images/Projects/GSEA/GSEA3.JPG" alt="Some image" />
<img class="slide__img slide__img--4"
src="assets/images/Projects/GSEA/182083482_311874463835707_1428158974539628495_n.jpeg" alt="Some image" />
</div>
<h2 class="slide__title">
<span class="slide__title-inner slide__title-inner--middle" data-splitting>3rd </span>
<span class="slide__title-inner" data-splitting>World</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>
Best Student Entrepreneur
</span>
<span class="slide__title-inner" data-splitting>2021</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>By
<a href="https://gsea.org/gsea/gsea/profile.aspx?id=371577&ordinal=57">Entrepreneurs Organization</a>
</span>
</h2>
</div>
<!--GSEA Colombia-->
<div class="slide">
<div class="slide__img-wrap">
<img class="slide__img slide__img--1"
src="assets/images/Projects/GSEA/WhatsApp Image 2021-01-28 at 6.02.59 PM.jpeg" alt="Some image" />
<div class="break"></div>
<img class="slide__img slide__img--3"
src="assets/images/Projects/GSEA/151070035_3715536891867521_6737781672471853444_n.jpeg" alt="Some image" />
</div>
<h2 class="slide__title">
<span class="slide__title-inner" data-splitting>Colombian </span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>
Best Student Entrepreneur
</span>
<span class="slide__title-inner" data-splitting>2021</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>By
<a href="https://www.eonetwork.org/bogota/upcoming-events"> EO Colombia </a>
</span>
</h2>
</div>
<!--Fellowship-->
<div class="slide">
<div class="slide__img-wrap">
<img class="slide__img slide__img--1" src="assets/images/Projects/Fellowship/Fellowship1.jpeg"
alt="Some image" />
<div class="break"></div>
<img class="slide__img slide__img--3" src="assets/images/Projects/Fellowship/Fellowship3.jpeg"
alt="Some image" />
<img class="slide__img slide__img--4" src="assets/images/Projects/Fellowship/Fellowship6.png"
alt="Some image" />
</div>
<h2 class="slide__title">
<span class="slide__title-inner" data-splitting>START</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>Fellowship</span>
<span class="slide__title-inner" data-splitting>Batch 1</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting><a
href="https://startfellowship.ch"> www.startfellowship.ch </a>
</span>
</h2>
</div>
<!--ACAMICA-->
<div class="slide">
<div class="slide__img-wrap">
<img class="slide__img slide__img--1" src="assets/images/Projects/Acamica/acamica1.jpeg" alt="Acamica 1" />
<img class="slide__img slide__img--2" src="assets/images/Projects/Acamica/acamica2.jpeg" alt="Acamica 2" />
<div class="break"></div>
<img class="slide__img slide__img--3" src="assets/images/Projects/Acamica/acamica3.jpeg" alt="Acamica 3" />
<img class="slide__img slide__img--4" src="assets/images/Projects/Acamica/[email protected]" alt="Some image" />
</div>
<h2 class="slide__title">
<span class="slide__title-inner" data-splitting>Mentor</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>at</span>
<span class="slide__title-inner" data-splitting>Acamcia</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting><a
href="https://www.acamica.com/">www.acamica.com </a>
</span>
</h2>
</div>
<!--CEU-->
<div class="slide">
<div class="slide__img-wrap">
<img class="slide__img slide__img--1" src="assets/images/Projects/CEU/CEU2.jpeg" alt="Acamica 1" />
<div class="break"></div>
<img class="slide__img slide__img--3" src="assets/images/Projects/CEU/seneca1.jpg" alt="Some image" />
<img class="slide__img slide__img--4" src="assets/images/Projects/CEU/CEU3.jpg" alt="Some image" />
</div>
<h2 class="slide__title">
<span class="slide__title-inner" data-splitting>STUDENT</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>Representative Systems & Computer
Engineering</span>
<span class="slide__title-inner" data-splitting>Faculty 2019</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting><a
href="https://sistemas.uniandes.edu.co/es/nuestra-gente/estudiantes/representante#">Uniandes ISYC Website
</a>
</span>
</h2>
</div>
<!--Hackatones-->
<div class="slide">
<div class="slide__img-wrap">
<img class="slide__img slide__img--1" src="assets/images/Projects/HackatonCarvajal/Team.jpeg"
alt="Some image" />
<div class="break"></div>
<img class="slide__img slide__img--3"
src="assets/images/Projects/HackatonCarvajal/WhatsApp Image 2021-01-26 at 3.39.13 PM.jpeg"
alt="Some image" />
</div>
<h2 class="slide__title">
<span class="slide__title-inner" data-splitting>Winner</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>Hackathon Carvajal
</span>
<span class="slide__title-inner" data-splitting> Uniandes 2019 </span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>
<a href="https://sistemas.uniandes.edu.co/es/inicio/noticias/item/1148-hackaton-carvajal-uniandes-2019">See
the post here</a>
</span>
</h2>
</div>
<!--Maraton De Seguridad-->
<div class="slide">
<div class="slide__img-wrap">
<img class="slide__img slide__img--1" src="assets/images/Projects/MaratonSeguridad/mseguridad.jpg"
alt="Some image" />
</div>
<h2 class="slide__title">
<span class="slide__title-inner" data-splitting>3rd Place </span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>Security Marathon</span>
<span class="slide__title-inner" data-splitting>Uniandes 2017</span>
</h2>
</div>
<!--Learn To Transit-->
<div class="slide">
<div class="slide__img-wrap">
<img class="slide__img slide__img--1" src="assets/images/Projects/LearnToTransit/lt.png" alt="Some image" />
<img class="slide__img slide__img--2" src="assets/images/Projects/LearnToTransit/diploma.jpeg"
alt="Some image" />
<div class="break"></div>
<img class="slide__img slide__img--3" src="assets/images/Projects/LearnToTransit/LearnToTransit1.jpeg"
alt="Some image" />
<video class="slide__img slide__img--4" src="assets/images/Projects/LearnToTransit/LearnToTransit.mp4"
alt="Some image" autoplay muted loop />
</div>
<h2 class="slide__title">
<span class="slide__title-inner" data-splitting>Learn</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>To</span>
<span class="slide__title-inner" data-splitting>Transit</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>Outstanding Engineering
Project</span>
</h2>
</div>
<button class="slides__nav slides__nav--prev">
<svg>
<path
d="M10.474 0C7.988 4 4.118 7.422 0 10c4.156 2.539 7.865 6 10.474 10h2.485c-2.608-4-5.744-7.379-9.618-10C7.215 7.34 10.474 4 13 0h-2.526zm6 0C13.987 4 10.116 7.422 6 10c4.156 2.539 7.865 6 10.474 10h2.485c-2.606-4-5.745-7.379-9.617-10C13.214 7.34 16.474 4 19 0h-2.526z"
fill="#fff" />
</svg>
</button>
<button class="slides__nav slides__nav--next">
<svg>
<path
d="M71.526 0C74.012 4 77.882 7.422 82 10c-4.156 2.539-7.865 6-10.474 10h-2.485c2.608-4 5.744-7.379 9.618-10C74.785 7.34 71.526 4 69 0h2.526zm-6 0C68.013 4 71.884 7.422 76 10c-4.156 2.539-7.865 6-10.474 10H63.04c2.606-4 5.745-7.379 9.617-10C68.786 7.34 65.526 4 63 0h2.526z"
fill="#fff" />
</svg>
</button>
</section>
<iframe class="audio-experience" src="./audioplayer/index.html" frameborder="0" id="likes"></iframe>
</div>
<section class="slides" id="awards">
<div class="slide slide--current">
<div class="slide__img-wrap">
<div class="break"></div>
</div>
<h2 class="slide__title">
<span class="slide__title-inner" data-splitting>Hobbies</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting> and </span>
<span class="slide__title-inner" data-splitting>Likes</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>
Move with the arrows
</span>
</h2>
</div>
<!--Cooking-->
<div class="slide">
<div class="slide__img-wrap">
<img class="slide__img slide__img--1" src="assets/images/Hobbies/Cocina2.jpeg" alt="Some image" />
<img class="slide__img slide__img--2" src="assets/images/Hobbies/Cocina3.jpeg" alt="Some image" />
<div class="break"></div>
<img class="slide__img slide__img--3" src="assets/images/Hobbies/Cocina4.jpeg" alt="Some image" />
<video class="slide__img slide__img--4" src="assets/images/Hobbies/Cocina.mp4" alt="Some image" muted autoplay
loop />
</div>
<h2 class="slide__title">
<span class="slide__title-inner slide__title-inner--middle" data-splitting>I</span>
<span class="slide__title-inner" data-splitting>Love</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>
Cooking
</span>
</h2>
</div>
<!--Developer Events-->
<div class="slide">
<div class="slide__img-wrap">
<img class="slide__img slide__img--1" src="assets/images/Hobbies/fbdevcircles.jpg" alt="Some image" />
<div class="break"></div>
<img class="slide__img slide__img--3" src="assets/images/Hobbies/node1.jpeg" alt="Some image" />
<img class="slide__img slide__img--4" src="assets/images/Hobbies/node2.jpeg" alt="Some image" />
</div>
<h2 class="slide__title">
<span class="slide__title-inner" data-splitting>I</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>
Love to learn about
</span>
<span class="slide__title-inner" data-splitting>Technology</span>
</h2>
</div>
<!--Playing Videogames-->
<div class="slide">
<div class="slide__img-wrap">
<img class="slide__img slide__img--1" src="assets/images/Hobbies/Videogames1.jpeg" alt="Some image" />
<div class="break"></div>
<img class="slide__img slide__img--4" src="assets/images/Hobbies/Videogames2.jpeg" alt="Some image" />
</div>
<h2 class="slide__title">
<span class="slide__title-inner" data-splitting>I'm</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>Obsessed with</span>
<span class="slide__title-inner" data-splitting>Videogames</span>
</h2>
</div>
<!--Playing Videogames-->
<div class="slide">
<div class="slide__img-wrap">
<img class="slide__img slide__img--1" src="assets/images/Hobbies/Socks1.jpeg" alt="Some image" />
<div class="break"></div>
<img class="slide__img slide__img--4" src="assets/images/Hobbies/Socks2.jpeg" alt="Some image" />
<video class="slide__img slide__img--4" src="assets/images/Hobbies/Socks.mp4" alt="Some image" muted autoplay
loop />
</div>
<h2 class="slide__title">
<span class="slide__title-inner" data-splitting>I'm Always</span>
<span class="slide__title-inner slide__title-inner--middle" data-splitting>Using a weird pair of</span>
<span class="slide__title-inner" data-splitting>Socks</span>
</h2>
</div>
<button class="slides__nav slides__nav--prev">
<svg>
<path
d="M10.474 0C7.988 4 4.118 7.422 0 10c4.156 2.539 7.865 6 10.474 10h2.485c-2.608-4-5.744-7.379-9.618-10C7.215 7.34 10.474 4 13 0h-2.526zm6 0C13.987 4 10.116 7.422 6 10c4.156 2.539 7.865 6 10.474 10h2.485c-2.606-4-5.745-7.379-9.617-10C13.214 7.34 16.474 4 19 0h-2.526z"
fill="#fff" />
</svg>
</button>
<button class="slides__nav slides__nav--next">
<svg>
<path
d="M71.526 0C74.012 4 77.882 7.422 82 10c-4.156 2.539-7.865 6-10.474 10h-2.485c2.608-4 5.744-7.379 9.618-10C74.785 7.34 71.526 4 69 0h2.526zm-6 0C68.013 4 71.884 7.422 76 10c-4.156 2.539-7.865 6-10.474 10H63.04c2.606-4 5.745-7.379 9.617-10C68.786 7.34 65.526 4 63 0h2.526z"
fill="#fff" />
</svg>
</button>
</section>
<!--About me-->
<section class="academia" id="academia">
<h2 class="content-title">
Academia
</h2>
<div class="academia__item">
<h4 class="academia__item-title"> <a href="https://uniandes.edu.co/"> Universidad de los Andes </a> - Systems &
Computing Engineering</h4>
<p class="academia__item-dates">Jan 2017 - Dec 2023</p>
<p class="academia__item-excrept">
<ul>
<li>
Minor on Chinese Language and Culture
</li>
<li>
Full Goverment Scholarship.
</li>
</ul>
</p>
</div>
<div class="academia__item">
<h4 class="academia__item-title"> <a href="https://www.unisg.ch/en">St. Gallen University (HSG) </a> -
Entrepeneurial Studies</h4>
<p class="academia__item-dates">Sept 2020 - Mar 2021</p>
<p class="academia__item-excrept">
<ul>
<li>
START Fellowship full scolarship
</li>
</ul>
</p>
</div>
<div class="academia__item">
<h4 class="academia__item-title"> <a href="https://en.nankai.edu.cn/">Nankai University (南开大学)</a> - Chinese
Language & Culture</h4>
<p class="academia__item-dates">Summer 2016</p>
<p class="academia__item-excrept">
<ul>
<li>
Confucius institute scholarship
</li>
</ul>
</p>
</div>
<div class="academia__item">
<h4 class="academia__item-title"> <a href="https://www.poli.edu.co/"> Politécnico Grancolombiano </a> - Technical
program on software implementation</h4>
<p class="academia__item-dates">Jan 2015 - Dec 2016</p>
<p class="academia__item-excrept">
<ul>
<li>
finished subjects not graduated
</li>
</ul>
</p>
</div>
</section>
<div class="spacer"></div>
<footer class="footer" id="footer">
<div>
<h2 class="footer__logo content__title no-select">
<span>Camilo</span>
<span class="content__title-sub">Salinas</span>
</h2>
</div>
<div class="footer__contact">
<h4>Contact info:</h4>
<ul>
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Facebook: <a href="https://www.facebook.com/rembrandtsx2">Rembrandtsx2</a></li>
<li>Linkedin: <a href="https://www.linkedin.com/in/rembrandtsx/">@Rembrandtsx</a></li>
<li>Instagram: <a href="https://www.instagram.com/rembrandtsx/">@Rembrandtsx</a></li>
<li>Twitter: <a href="https://twitter.com/rembrandtsx">@Rembrandtsx</a></li>
</ul>
</div>
<div></div>
</footer>
<svg class="cursor" width="60" height="60" viewBox="0 0 60 60">
<circle class="cursor__inner" cx="30" cy="30" r="15" />
</svg>
<script src="https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
<script src="https://unpkg.com/splitting/dist/splitting.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js"></script>
<script src="lib/utils.js"></script>
<script src="lib/cursor.js"></script>
<script src="lib/index.js"></script>
</body>
</html>