-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1159 lines (1092 loc) · 58.1 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zeryán Guerra - Mining Operations Engineer</title>
<link rel="stylesheet" href="path-to-dialog-polyfill/dialog-polyfill.css">
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
line-height: 1.5;
text-align: justify;
}
/* Reduce paragraph spacing */
p {
margin-bottom: 1.25rem; /* Adjust this value as needed */
}
header {
position: relative;
color: white;
padding: 1.5rem 0;
text-align: center;
background-size: 100% auto;
background-position: center;
}
header::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("https://media.licdn.com/dms/image/D4E16AQG4lFe7aChPZQ/profile-displaybackgroundimage-shrink_350_1400/0/1706283106780?e=1721865600&v=beta&t=w1y0L1nlfbrusT5-n6JKGH7Rm4pTJ1_D9I_FXR7bsak");
background-size: 100% auto;
background-position: center;
filter: grayscale(100%) brightness(50%);
z-index: -1;
}
.container {
max-width: 960px;
margin: auto;
overflow: hidden;
padding: 0 2rem;
}
h1 {
color: white;
}
h2 {
color: white;
}
h3 {
color: #35495E;
}
.lead {
font-size: 1rem;
margin-bottom: 2rem;
text-align: justify;
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
color: #2980b9;
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 0.5rem;
}
.project-link, .position-link, .employer-link, .publication-link, .study-link, .skill-link {
color: #3498db;
text-decoration: underline;
}
.position-text {
color: #333;
}
.text-container {
width: 70%;
display: inline-flex;
flex-direction: column;
align-items: flex-start;
text-align: justify;
}
.row {
display: flex;
margin-bottom: 1rem;
}
.image-container {
width: 30%;
overflow: hidden;
margin-left: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.image-container img {
width: 100%;
height: auto;
object-fit: cover;
}
#popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
background-color: white;
border: 1px solid #ddd;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
z-index: 1001;
border-radius: 8px;
max-width: 90%;
box-sizing: border-box;
text-align: left;
}
#popup-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
z-index: 1000;
}
.skill-link {
cursor: pointer;
color: #3498db;
text-decoration: underline;
}
.skill-link:hover {
color: #2980b9;
}
table {
border-collapse: collapse;
margin-bottom: 0.5rem;
}
table td {
padding: 0.2rem 0.5rem;
vertical-align: top;
text-align: justify;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Zeryán Guerra</h1>
<h2>Mining Operations Engineer</h2>
</div>
</header>
<section id="about">
<div class="container">
<h3>Contact</h3>
<div class="row">
<div class="text-container">
<ul>
<li>Phone: <a href="tel:+56954607132">+569 5460 7132</a></li>
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Location: La Serena, Chile (Available to move to any national or international location)</li>
</ul>
</div>
<div class="button-column">
<button id="download-button" class="download-button">Print PDF</button>
<button id="download-button" class="download-button"><a href="https://github.com/zeryan/jobresume/blob/main/Zery%C3%A1n%20Guerra%20-%20Mining%20Operations%20Engineer.pdf" target="_blank">See PDF Online</a></button>
</div>
</div>
<h3>Summary</h3>
<p class="lead">
Experienced Mining Engineer with 10+ years in project development and management across various industries, including mining, construction, and renewable energy. Proven ability to manage large-scale projects (US$150M/year) on time and within budget using data-driven approaches. Passionate about leveraging technology like AI and computer vision for project optimization. Seeking a challenging role in underground mining or power plant construction to contribute to project success and business growth through operational excellence and cutting-edge technology implementation.
</p>
</div>
</section>
<section id="skills">
<div class="container">
<h3>Skills</h3>
<div class="row">
<div>
<ul>
<li>
<a class="skill-link" href="#" onclick="showPopup('popup1')">Contract Management:</a>
Extensive experience in tender management, subcontractor payment management, dispute resolution, and contract closing.
</li>
<li>
<a class="skill-link" href="#" onclick="showPopup('popup2')">Cost Control:</a>
Strong understanding of project cost estimation, budgeting, and control techniques. Expertise in analyzing contractor reports to estimate daily construction costs and progress.
</li>
<li>
<a class="skill-link" href="#" onclick="showPopup('popup3')">Technical Expertise:</a>
</strong>
In-depth knowledge of underground mining and construction projects, including mining and construction methods, equipment, and safety procedures.
</li>
<li>
<a class="skill-link" href="#" onclick="showPopup('popup4')">Data Analysis:</a>
Proficient in data analysis and reporting using Python and MS Excel, utilizing data to track project progress, identify trends, and make informed decisions.
</li>
<li>
<a class="skill-link" href="#" onclick="showPopup('popup5')">Technology Integration:</a>
Actively exploring and implementing cutting-edge technologies like generative AI and computer vision to enhance project management processes.
</li>
<li>
<a class="skill-link" href="#" onclick="showPopup('popup6')">Communication and Leadership:</a>
Excellent communication and interpersonal skills, with proven ability to lead and motivate teams.
</li>
<li>
Advanced english level. Used to work with english as first language. <strong>TOEFLS 100/120</strong> (reading:29; listening:24; speaking:23; writing:24. Taken on 2020.03)
</li>
</ul>
</div>
</div>
</div>
</section>
<dialog id="dialog" style="border: none; border-radius: 8px; padding: 20px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);">
<h3>Comprehensive Job Skill Description</h3>
<p>
<strong>Skill Name:</strong> <span id="skill-name">Contract Management</span><br><br>
<strong>Description:</strong> <span id="skill-description">
Responsible for overseeing the contractual processes, ensuring compliance with terms and conditions,
and resolving disputes. This role involves managing subcontractor payments, preparing tender documents,
and closing contracts upon project completion.
</span><br><br>
<strong>Key Competencies:</strong> <span id="skill-competencies">
- Attention to Detail<br>
- Strong Communication Skills<br>
- Analytical Thinking<br>
- Problem Solving Abilities<br>
- Negotiation Skills<br>
</span>
</p>
<button onclick="closeDialog()">Close</button>
</dialog>
<section id="experience">
<div class="container">
<h3>Work Experience</h3>
<div class="row" id="pc-cost-engineer">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2024.01 to Date</td>
</tr>
<tr>
<td>Position:</td>
<td><a class="position-link">Cost Engineer</a></td>
</tr>
<tr>
<td>Company:</td>
<td><strong>Powerchina</strong> Huadong Engineering Corporation Agencia en Chile.</td>
</tr>
<tr>
<td>Project:</td>
<td>Various PV Construction Projects</td>
</tr>
<tr>
<td>Location:</td>
<td>Chile and Colombia</td>
</tr>
<tr>
<td>My Team:</td>
<td>Remote supervision on 1 engineer in Colombia, 3 jr. engineers in Chile.</td>
</tr>
<tr>
<td>Description:</td>
<td>
As part of Business Development Team,
I am conducting unit cost analyses, aligning
them with strategic planning, and developing business proposals for
tenders in Chile and <a href="https://en.powerchina.cn/2023-02/02/c_828236.htm" target="_blank">Colombia</a>. My responsibilities encompass
overseeing recruitment, machinery, procurement, and logistics,
ensuring they align with market trends and our long-term objectives.
</td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<img src="https://media.licdn.com/dms/image/D4E22AQGtoPo9fxbhFg/feedshare-shrink_800/0/1709924664534?e=1719446400&v=beta&t=r0FS3V2ACpqVG3AmiuIHvDAokz1wLJ7zmZRYXD1euWg" alt="PowerChina - Cost Engineer">
</div>
</div>
<div class="row" id="pc-subcontractor-manager">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2022.03 to Date</td>
</tr>
<tr>
<td>Position:</td>
<td><a class="position-link">Subcontractor Manager</a></td>
</tr>
<tr>
<td>Company:</td>
<td><strong>Powerchina</strong> Huadong Engineering Corporation, Agencia en Chile.</td>
</tr>
<tr>
<td>Project:</td>
<td>480MW <a href="https://en.powerchina.cn/2024-03/20/c_828676.htm" target="_blank">CEME1 PV Plant</a>, Substation and 9,2km OHL Construction Project</td>
</tr>
<tr>
<td>Location:</td>
<td>María Elena, Región de Antofagasta. Chile.</td>
</tr>
<tr>
<td>Budget:</td>
<td>~ US$ 380 millions</td>
</tr>
<tr>
<td>My Team:</td>
<td>8 administratives, 3 engineers and 1 lawyer,
overseeing up to 81 subcontracts, 380 supply contracts and 1200 subcontracted workers on site at peak,
totalizing more than 3000 historically acredited workers along 2 years.</td>
</tr>
<tr>
<td>Description:</td>
<td>I oversee the work of Subcontractors all along the Project, ensuring they fulfill
their contractual obligations and that the Contractor meets
its subcontracting duties. My responsibilities include selecting
approved Subcontractors, obtaining Owner's consent, and acting as
the main contact for Subcontractor issues. I manage, supervise,
and pay Subcontractors, ensuring their work and equipment adhere
to the Contract and HSE standards. Additionally, I handle contractual
claims, draft correspondence, and manage subcontract terminations
and closures. Currently <strong> Delivering to Client</strong></td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<img src="https://media.licdn.com/dms/image/D4E22AQFu8Ml2-gzJAA/feedshare-shrink_2048_1536/0/1709392195623?e=1719446400&v=beta&t=_srMmxeOUZZc-fWurtCeNN4sJxZkzK2W3_YWyHkiEtA" alt="PowerChina - Subcontractor Manager">
</div>
</div>
<div class="row" id="admiral-site-support-engineer">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2021.09 to 2022.02</td>
</tr>
<tr>
<td>Position:</td>
<td><a class="position-link">Site Support Engineer</a></td>
</tr>
<tr>
<td>Company:</td>
<td><strong>Admiral</strong> HR Consulting (by ENEL Green Power)</td>
</tr>
<tr>
<td>Project:</td>
<td>161MW <a href="https://www.enel.cl/es/conoce-enel/nuestras-centrales/planta-sol-de-lila.html" target="_blank">Sol de Lila</a> PV Plant, Substation and 4km Overhead Line Construction</td>
</tr>
<tr>
<td>Location:</td>
<td>Peine, Región de Antofagasta. Chile.</td>
</tr>
<tr>
<td>Budget:</td>
<td>~US$ 130 millions</td>
</tr>
<tr>
<td>Description:</td>
<td>I was in charge of analysis of incoming main contractor reports,
which I used to estimate and report upstream about daily construction cost
and progress, as of engineering, materials delivery, permitting, quality
compliance and energization progress. In practice, my tasks were a mixture
of data engineering and contract management.</td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<img src="https://www.paiscircular.cl/wp-content/uploads/2022/09/SOL-DE-LILA-2.jpg" alt="Admiral. Site Support Engineer">
</div>
</div>
<div class="row" id="besalco-technical-unit-manager">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2021.03 to 2021.08</td>
</tr>
<tr>
<td>Position:</td>
<td><a class="position-link">Technical Unit Manager</a></td>
</tr>
<tr>
<td>Company:</td>
<td><strong>BESALCO Energía</strong> Renovable S.A.</td>
</tr>
<tr>
<td>Project:</td>
<td>154/23kV <a href="https://www.cne.cl/archivos_bajar/Res_Ex_CNE_745_2018.pdf" target="_blank">Pueblo Seco Substation</a> and 2km Overhead Line Construction</td>
</tr>
<tr>
<td>Location:</td>
<td>Pueblo Seco (Chillán), Región de Ñuble. Chile.</td>
</tr>
<tr>
<td>Budget:</td>
<td>~US$ 4 million</td>
</tr>
<tr>
<td>My Team:</td>
<td>2 engineers, 4 administratives</td>
</tr>
<tr>
<td>Description:</td>
<td>Starting COVID19 period, I assumed as Technical Unit Manager during
the civil and mechanical construction phases of the Pueblo Seco
Substation, I held a multifaceted leadership role envisaging, strategic development,
collaboration with supervision and quality control, and comprehensive
progress reporting of the Construction Plan and Budget. I spearheaded
the subcontractor tender process, ensuring the selection of proficient
partners to meet project milestones. I adeptly managed commercial
contracts, overseeing negotiations, and maintaining robust relationships
with vendors and stakeholders to facilitate smooth project delivery.</td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<img src="https://www.ladiscusion.cl/wp-content/uploads/2021/05/image004-1-e1621940718970.jpg" alt="Besalco - Technical Unit Manager">
</div>
</div>
<div class="row" id="besalco-technical-unit-engineer">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2019.03 to 2021.02</td>
</tr>
<tr>
<td>Position:</td>
<td><a class="position-link">Technical Unit Engineer</a></td>
</tr>
<tr>
<td>Company:</td>
<td><strong>BESALCO Energía</strong> Renovable S.A.</td>
</tr>
<tr>
<td>Project:</td>
<td>20MW <a href="https://seia.sea.gob.cl/expediente/ficha/fichaPrincipal.php?id_expediente=2131476196" target="_blank" rel="noopener">Digua Dam Hydropower Plant</a></td>
</tr>
<tr>
<td>Location:</td>
<td>Parral, Región de Ñuble. Chile.</td>
</tr>
<tr>
<td>Budget:</td>
<td>~$US$ 24 millions</td>
</tr>
<tr>
<td>Description:</td>
<td>
In my role, I managed the execution of construction and business plans,
from selecting subcontractors to mobilizing resources and verifying
engineering drawings for technical compliance. I also handled commercial
contracts, ensuring budget adherence and project specifications. Starting
with the manual excavation in March 2019, I transformed the Digua Dam from
an old farming infrastructure into a 20MW power plant. This involved channeling
pressurized water through a 500m tunnel to 10MW Francis Turbines and installing
valves to manage water pressure and protect existing structures.
</td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<img src="http://www.besalcoenergia.cl/wp-content/uploads/2021/03/Digua-2-1024x768.jpg" alt="Besalco - Technical Unit Engineer">
</div>
</div>
<div class="row" id="same-business-development">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2017.09 to 2019.02</td>
</tr>
<tr>
<td>Position:</td>
<td><a class="position-link">Business Development Engineer</a></td>
</tr>
<tr>
<td>Company:</td>
<td><strong>SAME Ingeniería S.A.</td>
</tr>
<tr>
<td>Description:</td>
<td>
In my role, I actively participated in site reconnaissance visits,
conducted thorough problem analysis and modeling, and designed
basic solutions to address identified issues. I was responsible
for project cost estimation, proposal development,
accreditation and mobilization of resources to the site, and seamless
contract management. I attended some company flagship contractual issues.
</td>
</tr>
<tr>
<td>Projects:</td>
<td>
<ul>
<li>
- Computational simulation and engineering desing for an <a href="http://www.same.cl/?categorias=general-ventilation" target="_blank">Assisted Natural-Secondary Ventilation System</a> for Spence Electrowinning
Plant of <strong>BHP Billiton</strong>.
</li>
<li>
- Supply of <a href="http://www.same.cl/?proyectos=minera-escondida-bhp-billiton-chile" target="_blank">Acid Mist Control Systems</a> for Escondida Electrowinning Plant of <strong>BHP Billiton</strong>
</li>
<li>
- Engineering service closing, consisting in the design of a <a href="http://www.same.cl/?proyectos=molyb-codelco-chile" target="_blank">Molybdenum Blast Furnace Gases Control System</a> for <strong>Molyb - CODELCO</strong>
</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<img src="https://media.licdn.com/dms/image/C5622AQFg0H1iVVYKdQ/feedshare-shrink_1280/0/1579828613661?e=1719446400&v=beta&t=xrsq9yrq_BqqrQv3wEhLAwa0b8vQa-3_lFILu99DeJk" alt="SAME - Business Development Engineer">
</div>
</div>
<div class="row" id="ap-technical-unit-manager">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2015.03 to 2017.07</td>
</tr>
<tr>
<td>Position:</td>
<td><a class="position-link">Technical Unit Manager</a></td>
</tr>
<tr>
<td>Company:</td>
<td><strong>AP Constructiones</strong> SpA.</td>
</tr>
<tr>
<td>Projects:</td>
<td>
<ul>
<li>
- Construction of Hydropower Plant Intake: Excavation and CivilWorks, for <strong>Generadora HidroÑuble</strong>. San Fabián de Alico, Chile. (US$ ~5 million).
</li>
<li>
- Slope Stabilization in Route-5 Highway near to Angostura Tall Construction for <strong>Ferrovial</strong>. Angostura, Chile. (US$ ~1 million).
</li>
<li>
- Excavation and Stabilization of Metro Interconnection Tunnel of Metro Franklin for <strong>Ferrovial</strong>. Santiago, Chile (US$ ~2 million).
</li>
</ul>
</td>
</tr>
<tr>
<td>Description:</td>
<td>
During my tenure, I successfully expanded company sales by eightfold. My responsibilities included business development, engineering reviews, planning, costing, proposal development, client negotiations, and contract reviews. I also managed mobilization, accreditation, construction progress, payment collections, claims, and contract closures. I ensured precise and efficient execution of every stage of the project lifecycle.
</td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgNa9lKxP5bNKNfy_SRbBDVcypcuhjJHX_fVdhMhz6XKV9GE__adlCTUDZ5Gy_oyjX90n70Fddu65EkwWkUe96vqh2OncwrSgYLEGBEwWm6n9xoe0gJSkkauGEZJTuj-jZAyqYjXQ79iXFO/s1600/hidro%25C3%25B1uble_debe_replantearse.jpg" alt="AP - Project Manager">
</div>
</div>
<div class="row" id="cancan-underground-operations-chief">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2014.01 to 2014.12</td>
</tr>
<tr>
<td>Position:</td>
<td><a class="position-link"> Chief of Underground Mining Operations</a></td>
</tr>
<tr>
<td>Company:</td>
<td><strong>Can-Can</strong> Mining Company (COPEC Mining Subsidiary)</td>
</tr>
<tr>
<td>Project:</td>
<td>El Bronce de Petorca Gold Mine</td>
</tr>
<tr>
<td>Location:</td>
<td>Petorca, Región de Valparaíso. Chile.</td>
</tr>
<tr>
<td>Budget:</td>
<td>~$US$ 23 millions</td>
</tr>
<tr>
<td>My Team:</td>
<td>3 supervisors, 12 foreman, 200 direct mining workers</td>
</tr>
<tr>
<td>Description:</td>
<td>
In my most pivotal operations role, I was responsible for supervising all underground mining operations to meet a daily production goal of approximately 2,500 tonnes of high-grade gold ore. I executed short-term mining plans by overseeing drilling, blasting, loading, hauling, and unloading of ore and waste. This role provided me with extensive expertise in managing underground mining operations and a profound understanding of both worker and machinery requirements. I leveraged this knowledge to optimize operational efficiency and ensure the successful achievement of production targets.
</td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<img src="https://elamerica.cl/wp-content/uploads/2022/01/mina-can-can-780x470.jpeg" alt="cancan-chiefofmines">
</div>
</div>
<div class="row" id="trepsa-technical-unit-engineer">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2013.02 to 2013.12</td>
</tr>
<tr>
<td>Position:</td>
<td><a class="position-link">Technical Unit Engineer</a></td>
</tr>
<tr>
<td>Company:</td>
<td><strong>Trepsa - CerroAlto Consortium</strong></td>
</tr>
<tr>
<td>Project:</td>
<td>Prestripping and 1st Stage Mining of Rajo Sur, El Teniente, <strong>CODELCO</strong>.</td>
</tr>
<tr>
<td>Location:</td>
<td>Sewell (Mina El Teniente), Región de O'Higgins. Chile.</td>
</tr>
<tr>
<td>Budget:</td>
<td>~$US$ 130 millions</td>
</tr>
<tr>
<td>Description:</td>
<td>
In my role, I was responsible for analyzing machinery reports and estimating total project costs and revenues in alignment with the company's asset management-focused methodology, specifically utilizing ASARCO KPIs. Additionally, I monitored physical progress, managed costs, and assessed machinery performance for the Consortium. This project provided me with valuable insights into CODELCO's operations, particularly through the initiation of open-pit operations at the El Teniente Mine.
</td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<img src="https://media.licdn.com/dms/image/D4E22AQG840Zyg-RouQ/feedshare-shrink_800/0/1714565713188?e=2147483647&v=beta&t=ezODWq_eGeBmkDBrEP3m0hPS2a0IeW6RA-f-s7mrZD0" alt="trepsa-technical-unit-engineer">
</div>
</div>
<div class="row" id="cemin-mines-chief">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2011.12 to 2012.12</td>
</tr>
<tr>
<td>Position:</td>
<td><a class="position-link">Chief of Mines</a></td>
</tr>
<tr>
<td>Company:</td>
<td><strong>CEMIN Mining Holding</strong></td>
</tr>
<tr>
<td>Location:</td>
<td>Chañaral, Región de Atacama. Chile.</td>
</tr>
<tr>
<td>Budget:</td>
<td>~$US$ 5 millions</td>
</tr>
<tr>
<td>Description:</td>
<td>Following the closure of the mine by SERNAGEOMIN due to a severe accident, I was hired to design and implement a comprehensive Health, Safety, Environment, and Operations Management System to reactivate mining operations. Once we successfully reacquired the necessary working permits, I took charge of gold mine prospecting and mining activities. My efforts resulted in achieving a production target of 12,000 tonnes per month from 5 different mines, which was then delivered to the Falda Verde Cyanidation Plant, a company-owned processing facility located in Chañaral Bay.</td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<img src="https://www.sernageomin.cl/wp-content/uploads/2023/09/FOTITO-NEBE.jpg" alt="cemin-mines-chief">
</div>
</div>
<div class="row" id="chamu-technical-unit-engineer">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2010.04 to 2011.06</td>
</tr>
<tr>
<td>Position:</td>
<td><a class="position-link">Technical Unit Engineer</a></td>
</tr>
<tr>
<td>Company:</td>
<td><strong>Chamuscada Mining Co.</strong></td>
</tr>
<tr>
<td>Location:</td>
<td>Canela Baja, Región de Coquimbo. Chile.</td>
</tr>
<tr>
<td>Budget:</td>
<td>~$US$ 2 millions</td>
</tr>
<tr>
<td>Description:</td>
<td>
I was responsible for overseeing the ENAMI Drilling Exploration Project. Following successful discoveries, I managed the permit acquisition, mine reactivation, and mining operations, culminating in the production of high-grade gold concentrates through mineral processing.
</td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<img src="https://www.ing.uc.cl/mineria/wp-content/uploads/2016/04/img_5565.jpg" alt="chamu-technical-unit-engineer">
</div>
</div>
<div class="row" id="ac-technical-unit-engineer">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2009.02 to 2010.03</td>
</tr>
<tr>
<td>Position:</td>
<td><a class="position-link">Technical Unit Assistant</a></td>
</tr>
<tr>
<td>Company:</td>
<td><strong>Antolín Cisternas</strong> & Company</td>
</tr>
<tr>
<td>Projects:</td>
<td>
<ul>
<li>
- Tunnel stabilization with shotcrete on
<a href="https://snifa.sma.gob.cl/UnidadFiscalizable/Ficha/1735" target="_blank">
Carmen and Margarita Mines</a>,
for <a href="https://www.guiaminera.cl/minera-las-cenizas/" target="_blank">
Minera Las Cenizas</a>. Cabildo, Chile.
</li>
<li>
- Tunnel excavation and stabilization on Papomono Mine, for <strong>
Minera Vale</strong>. Illapel, Chile.
</li>
<li>
- Slope stabilization in Los Pelambres Facilities, for <strong>
Antofagasta Minerals</strong>. Salamanca, Illapel.
</li>
</ul>
</td>
</tr>
<tr>
<td>Description:</td>
<td>
Reporting directly to the Project Manager, I began by analyzing machinery and work reports to control costs and monitor progress. Over time, my responsibilities expanded to include payment processing, resolving contractual disputes, cost estimation, and general planning and contract management.
</td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<a href="https://www.youtube.com/watch?v=1DGpgh_RWFo" target="_blank">
<img src="https://img.youtube.com/vi/1DGpgh_RWFo/hqdefault.jpg" alt="Job Image">
</a>
</div>
</div>
</div>
</section>
<section id="academics">
<div class="container">
<h3>Graduate Studies</h3>
<div class="row">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2009.03 to 2011.12</td>
</tr>
<tr>
<td>Studies:</td>
<td><a class="position-link" href="http://admision.userena.cl/media/attachments/2023/09/29/25017_ingenieria_de_minas.pdf" target="_blank">Applied Mining Engineer</a></td>
</tr>
<tr>
<td>Institution:</td>
<td>University of La Serena</td>
</tr>
<tr>
<td>Location:</td>
<td>La Serena, Región de Coquimbo. Chile.</td>
</tr>
<tr>
<td>Description:</td>
<td>
I possess a strong foundation in mining and metallurgical operations management, complemented by a multidisciplinary education designed to promote a holistic understanding of mining project development and management skills. I pursued this advanced stage of studies while actively working on mining projects near my hometown, which provided invaluable insights for both my academic pursuits and professional growth.
</td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<img src="https://www.campografia.cl/wp-content/uploads/2016/06/20140528-El-Brillador_0035-Medium.jpg" alt="uls-mining-engineering">
</div>
</div>
<h3>Academic Background</h3>
<div class="row">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2023.03 to 2023.08</td>
</tr>
<tr>
<td>Programme:</td>
<td>
<strong>Data Science and Machine Learning</strong>: Making Data-Driven Decisions.
</td>
</tr>
<tr>
<td>Institution:</td>
<td><strong>MIT Schwartman Collegue of Computing</strong></td>
</tr>
<tr>
<td>Description:</td>
<td>
This comprehensive 6-month course delves into Big Data Processing, Advanced Statistical Analysis, and Machine Learning Methods. Furthermore, it explores various applications of Artificial Intelligence, including Computer Vision and Generative AI. The course also covers practical applications relevant to my job profile, such as photovoltaic (PV) fault detection, Health, Safety, and Environment (HSE) machine learning protocols, and other industry-specific use cases. These advanced skills have allowed me to enhance operational efficiency and safety standards within my professional setting.
</td>
</tr>
<tr>
<td>Certificate:</td>
<td>Can be verified here <a href="https://verify.mygreatlearning.com/verify/HAZXISXQ">https://verify.mygreatlearning.com/verify/HAZXISXQ</a></td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<img src="https://d9jmtjs5r4cgq.cloudfront.net/CertificateAndTranscript/92321/original/ZERY_C3_A1N_GUERRA_certificate20230905-582-44ifqq.jpg" alt="mit-ds">
</div>
</div>
<div class="row">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2016.03 to 2017.07</td>
</tr>
<tr>
<td>Programme:</td>
<td>
<a href="https://www.research-in-germany.org/energinno/recent-campaigns/innomine-chile0.html">
Innomine Chile - Research in Germany Programme</a>
</td>
</tr>
<tr>
<td>Institution:</td>
<td><strong>Fraunhofer Institute</strong> of Advanced Research</td>
</tr>
<tr>
<td>Location:</td>
<td>Santiago, Chile. Various locations in Germany.</td>
</tr>
<tr>
<td>Description:</td>
<td>
Alongside 24 advanced researchers and cutting-edge technology developers, I participated in a joint applied research project with collaborators in Germany. After sharing our results, we arranged a tour to visit 13 Fraunhofer Research Centres, where we met in person, exchanged ideas, and forged stronger alliances aimed at developing innovative mining technologies with the support of German researchers. I was selected for this program due to my undergraduate research, which focused on enhancing the leaching of copper-gold bearing ores using cyanide solutions and hydrogen peroxide, yielding satisfactory results.
</td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<img src="https://media.licdn.com/dms/image/C5622AQG30JOV4051aw/feedshare-shrink_2048_1536/0/1579148879606?e=1719446400&v=beta&t=KnSoDC8U0VEDzJQBZb8qdcZa1rn-EfFFS-FuRUaBWdE" alt="innomine">
</div>
</div>
<div class="row">
<div class="text-container" >
<table>
<tbody>
<tr>
<td>Period:</td>
<td>2010.07 to 2010.09</td>
</tr>
<tr>
<td>Programme:</td>
<td>
<strong>2nd International Summer School for Mining Engineers</strong>.
</td>
</tr>
<tr>
<td>Institution:</td>
<td>
<a href="https://www.agh.edu.pl/en">Akademia Gornizco Hurnitza</a><br>
a.k.a. University of Mining and Metallurgy. Krakow, Poland.
</td>
</tr>
<tr>
<td>Location:</td>
<td>Krakow, Poland</td>
</tr>
<tr>
<td>Description:</td>
<td>
For my exceptional academic performance and advanced English proficiency, I was awarded an international scholarship to travel to Krakow. During this 3-week field course, I participated in engaging lectures and hands-on laboratory sessions focused on coal, salt, quarry, and base metals mining in Poland. The program also included field visits to five operational mines, providing invaluable practical experience and insights into the mining industry.
</td>
</tr>
</tbody>
</table>
</div>
<div class="image-container">
<img src="https://study.gov.pl/sites/default/files/styles/wiz/public/foto_ucz_wiz/1/id_139_4.jpg?itok=Zj6Orch-" alt="agh">
</div>
</div>
<div class="row">
<div class="text-container" >
<table>
<tbody>
<tr>