-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1250 lines (1034 loc) · 62.3 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 class="no-js" lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-110978195-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-110978195-1');
</script>
<meta charset="utf-8">
<title>Pedro Pachuca</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap-responsive.css">
<link rel="stylesheet" href="js/fancybox/jquery.fancybox-1.3.4.css">
<link rel="stylesheet" href="css/responsive.css">
<link href='http://fonts.googleapis.com/css?family=Lato:700' rel='stylesheet' type='text/css'>
<script src="js/modernizr-2.5.3.min.js"></script>
</head>
<body id="top-section" data-spy="scroll" data-target="#topnav" data-offset="70" >
<div class="container">
<header>
<!-- navbar -->
<div id="topnav" class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<div class="nav-collapse">
<!-- Main nav -->
<ul class="nav">
<li class="active"><a href="#top-section">Top</a></li>
<li><a href="#info-section">About Me</a></li>
<li><a href="phil.html">Philosophy</a></li>
<li><a href="#chess-section">Chess Widgets</a><li>
<li><a href="gallery.html">Photo Gallery</a><li>
<li><a href="#contact-section">Contact</a></li>
</ul><!-- ENDS main nav -->
<!-- social -->
<ul class="nav pull-right ">
<li class="divider-vertical"></li>
<li class="dropdown">
<a href="#"
class="dropdown-toggle"
data-toggle="dropdown">
Quick Links
<b class="caret"></b>
</a>
<ul class="dropdown-menu social-menu">
<li><a href="https://www.github.com/PedroPachuca" ><i class="social-icon github"></i> Github</a></li>
<li><a href="https://github.com/PedroPachuca/LaTeXCV" ><i class="social-icon github"></i> Curriculum Vitae</a></li>
<li><a href="https://twitter.com/theVinUd" ><i class="social-icon twitter"></i> Programming Twitter</a></li>
<li><a href="https://www.facebook.com/profile.php?id=100013559431884" ><i class="social-icon facebook"></i> Facebook</a></li>
<li><a href="https://www.linkedin.com/in/pedropachuca" ><i class="social-icon linkedin"></i> LinkedIn</a></li>
</ul>
</li>
</ul><!-- ENDS Social -->
</div><!-- ENDS Collapse -->
</div>
</div>
</div><!-- ENDS navbar -->
</header>
<!-- MAIN -->
<div id="main" role="main">
<!-- Hero -->
<div class="hero-unit">
<h1>Hello, I am Pedro Pachuca Rodriguez!</h1>
<p>I am an avid coder, computer enthusiast, teacher, quizbowler, soccer player, and chess fan.</p>
</div><!-- ENDS hero -->
<!-- Work -->
<section id="work-section">
<div class="page-header">
<h1 class="headers">Featured Pictures <small>Some pictures of my work and competitions. <a class="btn" href="gallery.html" >Photo Gallery</a></small> <</h1>
</div>
<ul class="thumbnails">
<li class="span4">
<a href="img/AVBotzSoftware.jpeg" class="thumbnail">
<img src="img/AVBotzSoftware.jpeg" alt="">
</a>
<span class="thumb-caption">AVBotz Software Division: International finalists</span>
</li>
<li class="span4">
<a href="img/CCCALL.jpg" class="thumbnail">
<img src="img/CCCALL.jpg" alt="">
</a>
<span class="thumb-caption">2nd at Cisco Cyber Cup 2017</span>
</li>
<li class="span4">
<a href="img/CCIC/CCICP.jpg" class="thumbnail">
<img src="img/CCIC/CCICP.jpg" alt="">
</a>
<span class="thumb-caption">2nd at the California Cyber Innovation Challenge Invitational 2017</span>
</li>
</ul>
<ul class="thumbnails">
<li class="span4">
<a href="img/ACD2018.png" class="thumbnail">
<img src="img/ACD2018.png" alt="">
</a>
<span class="thumb-caption">Teaching Computer Hardware Construction at ACE Code Day 2018</span>
</li>
<li class="span4">
<a href="img/FBLABaySection.jpg" class="thumbnail">
<img src="img/FBLABaySection.jpg" alt="">
</a>
<span class="thumb-caption">Winning Top 5 in Bay Area in Computer Problem Solving and CyberSecurity</span>
</li>
<li class="span4">
<a href="img/LPCITDay.jpg" class="thumbnail">
<img src="img/LPCITDay.jpg" alt="">
</a>
<span class="thumb-caption">1st at Las Positas College All IT Day 2017</span>
</li>
</ul>
<ul class="thumbnails">
<li class="span4">
<a href="img/FBLAStates.png" class="thumbnail">
<img src="img/FBLAStates.png" alt="">
</a>
<span class="thumb-caption">2nd in California in Computer Problem Solving at the State Leadership Conference FBLA-PBL 2018</span>
</li>
<li class="span4">
<a href="img/Teaching/TeachingHTMLCSS.PNG" class="thumbnail">
<img src="img/Teaching/TeachingHTMLCSS.PNG" alt="">
</a>
<span class="thumb-caption">Teaching HTML/CSS to ~50 students at the local library during the summer</span>
</li>
<li class="span4">
<a href="img/BARCFront.png" class="thumbnail">
<img src="img/BARCFront.png" alt="">
</a>
</a>
<span class="thumb-caption">#1 in Bay Area Regional CyberSecurity Championships 2018</span>
</li>
</ul>
</section><!-- ENDS work -->
<!-- info -->
<section id="info-section" class="information" >
<div class="page-header"><h1 class="headers">Information <small>Learn about me</small></h1></div>
<ul id="information-tabs" class="nav nav-pills ">
<li class= "active"><a href="#summary" data-toggle="tab">Summary</a></li>
<li><a href="#skills" data-toggle="tab">Skills</a></li>
<li><a href="#experience" data-toggle="tab">Experience</a></li>
<li><a href="#education" data-toggle="tab">Education</a></li>
<li><a href="#awards" data-toggle="tab">Awards</a></li>
<li><a href="#projects" data-toggle="tab">Projects</a></li>
<li><a href="#events" data-toggle="tab">Events</a></li>
<li><a href="#clubs" data-toggle="tab">Clubs/Extracurriculars</a></li>
<li><a href="#software" data-toggle="tab">Software, APIs, and Languages</a></li>
<li><a href="#goals" data-toggle="tab">Goals</a></li>
<!-- <li><a href="#interests" data-toggle="tab">Interests</a></li>-->
<li><a href="#summers" data-toggle="tab">Summers</a></li>
</ul>
<!-- tab content -->
<div class="tab-content">
<!-- Summary -->
<div class="summary-section tab-pane active" id="summary">
<p><strong>Avid Coder:</strong> I am proficient in Swift, Java, Objective-C, HTML, and CSS with about 4 years of experience. I am very familiar with JavaScript, PHP, Python, (my/no)SQL, C/C++, Go, Batch script, and Shell script.</p>
<p><strong>Computer Enthusiast:</strong> I am immensely interested in computer building, modding, maintenance, and security. Through exploring these interests I’ve developed a wealth of knowledge about hardware, communication protocols, and cyber security. </p>
<p><strong>Teacher:</strong> I enjoy teaching others about anything Information Technology. I teach free and open coding classes every Thursday during the school year at my local Middle School and Summer Workshops on 4 different languages. I am employed to teach CyberSecurity at several colleges. I've taught over 2300 unique students, some of which have won international awards.</p>
<p><strong>Quizbowler:</strong> I enjoy participating in quizbowl events to broaden my academic knowledge in a wealth of fields as well as compete with others. My area of expertise is Science with an emphasis on Physics particularily Quantum Mechanics. </p>
<p><strong>Chess Fan:</strong> I am very interested in chess. As more of a hobby, I study and play chess whenever I have the time. I look up to <a href = "http://www.magnuscarlsen.com/">Magnus Carlsen</a> and hope to improve my skill in the future.</p>
<p><a href="https://github.com/PedroPachuca/LaTeXCV" > My Curriculum Vitae</a></p>
</div><!-- ENDS Summary -->
<!-- Skills -->
<div class="tab-pane listing" id="skills">
<div class="entry">
<div class="clearfix">
<div class="rating p">
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
</div>
<h3 class="heading pull-leasft">iOS Development</h3>
</div>
<p>Very proficient in Swift coupled with extensive experience with Objective-C.</p>
</div>
<div class="entry">
<div class="clearfix">
<div class="rating p">
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
</div>
<h3 class="heading pull-leasft">Cyber Security</h3>
</div>
<p>Proficient in Computer/Web/Application security including cryptography, network traffic analysis, log analysis, OSI, and program analysis. I am strongest in CTF and CyberPatriot style competition (W10 and below, WServer2016 and below, various flavors of Linux. </p>
</div>
<div class="entry">
<div class="clearfix">
<div class="rating p">
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
</div>
<h3 class="heading pull-leasft">Web Development</h3>
</div>
<p>Adept in HTML, CSS, JS, PHP, and (my/no)SQL.</p>
</div>
<div class="entry">
<div class="clearfix">
<div class="rating p">
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
</div>
<h3 class="heading pull-leasft"> Computer Hardware Construction</h3>
</div>
<p>Expansive knowledge about Desktop/Laptop Computer Hardware including full construction (with or without full watercooling), logical optimization (RAID, Optane), and processor architecture. </p>
</div>
<div class="entry">
<div class="clearfix">
<div class="rating p">
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star-empty"></i>
</div>
<h3 class="heading pull-leasft">Java, Python, and Embedded Development</h3>
</div>
<p>Competent with high level languages such as Java, Python, C, and C++.</p>
</div>
<div class="entry">
<div class="clearfix">
<div class="rating p">
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star-empty"></i>
</div>
<h3 class="heading pull-leasft">Woodworking</h3>
</div>
<p>Very experienced in several areas of woodworking. Very familiar with a wide array of tools such as lathes, routers, buffers, and tablesaws.</p>
</div>
</div><!-- ENDS Skills -->
<!-- Experience -->
<div class="tab-pane" id="experience">
<table class="table experience-table">
<tbody>
<tr>
<td><h3 class="position">Intro and Advanced CyberSecurity Teacher</h3> <span class="date">Summer 2018</span><small><a class="btn" href="noneyet">CyberCamp</a></small></td>
<td>
<p> Employed as teacher of Introductory and Advanced Computer/Web/Application security at 3 different colleges. Recruited due to very high CyberPatriots ranking. Taught hundreds of students.</p>
</td>
</tr>
<tr>
<td><h3 class="position">AVHS Competitive Computer Science Club President</h3> <span class="date">2018 - Present</span><small><a class="btn" href="noneyet">CCSC</a></small></td>
<td>
<p>President of the Competitive Computer Science Club at Amador Valley High School. We compete actively in several Computer Science competitions including CyberPatriot, NCL, CSAW, and USACO. We also have a female empowerment branch through which we teach interested girls to code. </p>
</td>
</tr>
<tr>
<td><h3 class="position">System Designs Director and System Administrator at Pixure LLC</h3> <span class="date">2018 - Present</span><small><a class="btn" href="https://pixure.co/">Pixure</a></small></td>
<td>
<p> Designed interface and architecture of codebase, website, and applications for Pixure LLC. Also oversaw system security and administration.</p>
</td>
</tr>
<!--<tr>
<td><h3 class="position">System Designs Director and System Administrator at Pixure LLC</h3> <span class="date">2018 - Present</span><small><a class="btn" href="https://pixure.co/">Pixure</a></small></td>
<td>
<p> Designed interface and architecture of codebase, website, and applications for Pixure LLC. Also oversaw system security and administration.</p>
</td>
</tr>-->
<tr>
<td><h3 class="position">AVHS Competitive Computer Science Club Treasurer</h3> <span class="date">2017 - 2018</span><small><a class="btn" href="noneyet">CCSC</a></small></td>
<td>
<p>Handled all the monetary funds and sponsorships for Amador's Competitive Computer Science Club in addition to actively participating in club competitions.</p>
</td>
</tr>
<tr>
<td><h3 class="position">FBLA VP Of Competitions</h3> <span class="date">2018-2019</span><small><a class="btn" href="noneyet">FBLA</a></small></td>
<td>
<p> Held preparation sessions and informational meetings for upcoming competitions. I helped others choose and study for events as well as arranged competition attendance and details.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Secretary for AVHS Aviation</h3> <span class="date">2018-2019</span><small><a class="btn" href="noneyet">Aviation</a></small></td>
<td>
<p> Took on managerial role for club competitions and billing of parts. Guided other members in desining, building, and launching rockets and drones.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Ace Coding Pleasanton Middle School Branch Director</h3> <span class="date">2017 - 2019</span><small><a class="btn" href="https://www.acecoding.org/">Ace Coding</a></small></td>
<td>
<p> Directed the Pleasanton Middle School branch for AceCoding. Taught one hour sessions for about 30 middle schoolers once a week for 20 weeks during the school year.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Ace Coding Summer Workshop Lead Teacher</h3> <span class="date">Summer 2017 - 2019</span><small><a class="btn" href="http://acecoding.org/registration/summerWorkshops/">Ace Coding Summer Workshops</a></small></td>
<td>
<p>Taught various workshops throughout the summer each focusing on a different language such as HTML/CSS, Python, and Java. Taught up to 100 people per session including children and adults.</p>
</td>
</tr>
<tr>
<td><h3 class="position">AVBotz Software Engineer</h3> <span class="date">2017-2019</span><small><a class="btn" href="noneyet">CyberCamp</a></small></td>
<td>
<p> Wrote software stack for an autonomous submarine to perform a variety of tasks for the AUVSI RoboSub competition.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Woodworking</h3> <span class="date">2009-2014</span></td>
<td>
<p>Over 720 hours of active woodworking experience. Turned pens, built furniture, and made boxes and bowls.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Pedro's Computers CEO</h3> <span class="date">Summer 2016</span><small><a class="btn" href="noneyet">Pedro's Computers</a></small></td>
<td>
<p>Company that provides free computer hardware advice, partslists, and troubleshooting. Paid full computer builds also available.</p>
</td>
</tr>
</tbody>
</table>
</div><!-- ENDS Experience -->
<!-- Education -->
<div class="tab-pane listing" id="education">
<div class="entry">
<h3 class="heading">Las Positas College <i> GPA: 4.0 </i> </h3>
<span class="date">2017</span>
<p><strong> Computer Information Systems 50: </strong> Passed with 99.6% Grade</p>
</div>
<div class="entry">
<h3 class="heading"> Extracurricular Online Courses <i> GPA: 4.0 </i> </h3>
<span class="date">2016-2019</span>
<p><strong> Computation Structures 1: Digital Circuits by MIT on EdX: </strong> Passed with A Grade</p>
<p><strong> Introduction to Real-Time Systems by IEEE on EdX: </strong> Passed with 100% Grade</p>
<p><strong> Mechanics: Kinematics and Dynamics by MIT on EdX: </strong> Passed with A+ Grade</p>
<p><strong> Cyberwar, Surveillance, and Security by University of Adelaide on EdX: </strong> Passed with 100% Grade</p>
<p><strong> Introduction to Linux by LinuxFoundation on EdX: </strong> Passed with 97% Grade</p>
</div>
<div class="entry">
<h3 class="heading">Courseload</h3>
<span class="date">2016-2019</span>
<p><strong> 5/5 on 8 APs as of end of Junior Year</strong></p>
<p><strong> Freshman: </strong> Computer Science, Honors Algebra 2, Honors Global Studies, Health Education, French 1, Freshman English, PE.
<p><strong> Sophomore: </strong> AP World History, AP Computer Science, Honors Precalculus, French 2, PE 2, Sophomore English. </p>
<p><strong> Junior: </strong> AP Physics: C, AP Calculus BC, AP Statistics, AP US History, AP Language and Composition, French 3. </p>
<p><strong> PROJECTED Senior: </strong> Multivariable Calculus, AP Chemistry, AP Comparative Government, AP Literature and Composition, AP Macroeconomics, AP Environmental Science </p>
<p><strong> PROJECTED Weighted GPA: </strong> 4.4 </p>
<p><strong> PROJECTED Unweighted GPA: </strong> 3.9 </p>
</div>
<div class="entry">
<h3 class="heading">Major Test Scores</h3>
<span class="date">2016-2019</span>
<p><strong> ACT: </strong> 36/36 (11th grade) </p>
<p><strong> SAT: </strong> 1930/2400 (8th Grade), 1540/1600 (11th grade) </p>
<p><strong> AP Tests: </strong> 5/5 on 8 AP Exams </p>
<p><strong> PSAT: </strong> 1390/1520 (9th Grade), 1450/1520 (10th Grade) </p>
<p><strong> SAT Subject Tests: </strong> World History: 760 </p>
</div>
<div class="entry">
<h3 class="heading">Amador Valley High School</h3>
<span class="date">2015 - Present</span>
<p>High School Education in Pleasanton, California</p>
</div>
<div class="entry">
<h3 class="heading">Pleasanton Middle School</h3>
<span class="date">2013 – 2015</span>
<p>Middle School Education after moving to Pleasanton, California</p>
</div>
<div class="entry">
<h3 class="heading">Kealing Magnet Middle School</h3>
<span class="date">2012-2013</span>
<p>Magnet Middle School education in Austin, Texas</p>
</div>
<div class="entry">
<h3 class="heading">Cowan Elementary School</h3>
<span class="date">2010-2012</span>
<p>Elementary Education after switching schools in Austin, Texas</p>
</div>
<div class="entry">
<h3 class="heading">Kocurek Elementary School</h3>
<span class="date">2007-2010</span>
<p>Elementary Education in Austin, Texas</p>
</div>
<div class="entry">
<h3 class="heading">Jardin de Ninos</h3>
<span class="date">2005-2007</span>
<p>Kindergarten Education in Juarez, Chihuahua, Mexico</p>
</div>
</div><!-- ENDS Education -->
<!-- Awards -->
<div class="tab-pane" id="awards">
<ul class="awards-list">
<li>
<h3 class="heading">Most distinguished CyberPatriots Individual in Bay Area</h3>
<p class="desc"> 5 First Place finishes, 2-time national semifinalist, 4-time Regional Champion, consistent top 5% in the world. I was part of the first Bay Area team to reach Platinum quarterfinals and Platinum semifinals.</p>
<a class="btn" href="https://www.uscyberpatriot.org/" >Link</a>
</li>
<li>
<h3 class="heading">#2 in the State of California in Computer Problem Solving</h3>
<p class="desc">I competed in the California State Leadership Conference and I ranked #2 in California in Computer Problem Solving. I qualified to represent California in the National Leadership Conference in Baltimore, Maryland. </p>
<a class="btn" href=" http://www.cafbla.org/pages/CAFBLA/Conferences/State_Leadership_Conference_20" >Link</a>
</li>
<li>
<h3 class="heading">USACO Platinum</h3>
<p class="desc"> I achieved Platinum in the United States of America Computing Olympiad.</p>
<a class="btn" href=" http://usaco.org/" >Link</a>
</li>
<li>
<h3 class="heading">#1 Bay Area Regional CyberSecurity Championship</h3>
<p class="desc">My team, consisting of 5 members, placed #1 in the Bay Area Regional CyberSecurity Championship. We swept all 4 categories including CyberPatriots, Capture the Flag, Security Audit Report, and Security Audit Presentation. </p>
<a class="btn" href="https://www.baycyber.net/bay-area-regionals-competition" >Link</a>
</li>
<li>
<h3 class="heading">#1 CyberPatriot Team in the Bay Area 2016-2017 and 2017-2018</h3>
<p class="desc">My team, consisting of 5 members, placed #1 in the Bay Area during the 2016-2018 CyberPatriot International Competition. We reached the national semifinals. Top < 5% internationally. </p>
<a class="btn" href="https://www.uscyberpatriot.org/" >Link</a>
</li>
<li>
<h3 class="heading">8th highest score in California in Le Grand Concours French National Contest</h3>
<p class="desc">I earned a Gold Medal and the 8th highest score in California in Le Grand Concours French National Contest 2018. </p>
<a class="btn" href="http://www.frenchteachers.org/concours/" >Link</a>
</li>
<li>
<h3 class="heading">#1 Team during Las Positas College's All IT Day</h3>
<p class="desc">My team, consisting of 3 members, placed #1 of 14 in Las Positas College's All Information Technology Day consisting of a computer build, cybersecurity event, and IT trivia.</p>
<a class="btn" href="http://www.laspositascollege.edu/" >Link</a>
</li>
<li>
<h3 class="heading">#2 in California Cyber Innovation Challenge Foreniscs Event</h3>
<p class="desc">My team, consisting of 6 members, placed #2 of 16 in California during the invitational California Cyber Innovation Challenge Forensics Event at CalPoly SLO and the National Guard's California Cyber Training Complex. We were one of eight teams to be invited due to excellent perfomance during the CyberPatriot 2016-2017 competition from different areas of California.</p>
<a class="btn" href=" https://youtu.be/Z_zNP9jze0w" >Link</a>
</li>
<li>
<h3 class="heading">#2 in Cisco Cyber Cup 2017</h3>
<p class="desc">My team, consisting of 5 members, placed #2 of 15 in California during the Cisco Cyber Cup Competition 2017 at Cisco's Palo Alto Headquarters. We competed in Capture The Flag and Ubuntu 14 CyberPatriot.</p>
<a class="btn" href="https://www.cvent.com/c/express/07c690dd-2d25-4520-8b93-efe6c00f7e50" >Link</a>
</li>
<li>
<h3 class="heading">#4 in Computer Problem Solving in Bay Area (individual)</h3>
<p class="desc">Along with 1000+ others, I competed in the 2018 Bay Section FBLA conference. I earned 4th in Computer Problem Solving and qualified to represent the Bay Area in the California State conference. </p>
<a class="btn" href="http://www.cafbla.org/pages/CAFBLA/Classes/Bay_Section" >Link</a>
</li>
<li>
<h3 class="heading">#5 in CyberSecurity in Bay Area (individual)</h3>
<p class="desc">Along with 1000+ others, I competed in the 2018 Bay Section FBLA conference. I earned 5th in CyberSecurity and qualified to represent the Bay Area in the California State conference. </p>
<a class="btn" href="http://www.cafbla.org/pages/CAFBLA/Classes/Bay_Section" >Link</a>
</li>
<li>
<h3 class="heading">Top 50 in NYU CSAW HSF Competition 2017</h3>
<p class="desc">My team, consisting of 3 members, placed in the top 50 teams in NYU's Tandon School of Engineering CSAW Computer Forensics competition.</p>
<a class="btn" href="https://csaw.engineering.nyu.edu/" >Link</a>
</li>
<li>
<h3 class="heading"> Elite Cyber Defender </h3>
<p class="desc"> Awarded by the California Army National Guard for excellence during the California Cyber Innovation Challenge.</p>
<a class="btn" href=" https://youtu.be/Z_zNP9jze0w" >Link</a>
</li>
</ul>
</div><!-- ENDS Awards -->
<!-- begins Projects -->
<div class="tab-pane" id="projects">
<table class="table experience-table">
<tbody>
<tr>
<td><h3 class="position">Synergy</h3> <span class="date">Spring 2016</span><a class="btn" href="https://www.renesas.com/en-us/">Synergy</a></small></td>
<td>
<p>Created iOS app that keeps track of and organizes various attributes of different microprocessors in multiple product lines for Synergy at Renesas Electronics.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Pixure</h3> <span class="date">2018</span><a class="btn" href="https://pixure.co/">Pixure</a></small></td>
<td>
<p>Backend and mobile Developer for Pixure, a social network for current and aspiring photographers. </p>
</td>
</tr>
<tr>
<td><h3 class="position">First Desktop Build</h3> <span class="date">Summer 2016</span><a class="btn" href="https://pcpartpicker.com/b/hqxYcf">First Build</a></small></td>
<td>
<p>Built Desktop computer from parts for the first time. Used build as daily driver for years. This sparked my passion for computer hardware which evolved into a small business.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Multiple CyberPatriot training Virtual Machines</h3> <span class="date">2017 - 2018</span><a class="btn" href="https://github.com/PedroPachuca/CPVM">First Build</a></small></td>
<td>
<p>Created tens of CyberPatriot-oriented Virtual Machiens for students to practice on.</p>
</td>
</tr>
<tr>
<td><h3 class="position">MS-DOS and Windows compatible Batch Scripts</h3> <span class="date">Summer 2017</span><a class="btn" href="https://github.com/PedroPachuca/MyScripts">MS-DOS Scripts</a></small></td>
<td>
<p>Created 400+ line MS-DOS and Windows Batch script aimed to secure Windows 7+ Machines and generate reports on hacking tools, media, and unwanted content.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Amazon Echo Alexa Tech RSS Skill</h3> <span class="date">July 2017</span><small><a class="btn" href="https://github.com/PedroPachuca/AmazonEchoAlexaTechRSSPublic">TechRSS</a></small></td>
<td>
<p>Created a Skill for the Amazon Echo Alexa platform that allows users to listen to a variety of Technology News Sources of their choosing. Allows the blind to keep track of new developments in Technology. </p>
</td>
</tr>
<tr>
<td><h3 class="position">Amazon Echo Alexa Chess RSS Skill</h3> <span class="date">July 2017</span><small><a class="btn" href="https://github.com/PedroPachuca/AmazonEchoChessRSSPublic">ChessRSS</a></small></td>
<td>
<p>Created a Skill for the Amazon Echo Alexa platform that allows users to listen to current Chess standings, ratings, and news from a variety of sources of their choosing. Allows the blind to keep track of Chess standings and Tournaments. </p>
</td>
</tr>
<tr>
<td><h3 class="position">Automated Sprinkler System using Embedded System Development</h3> <span class="date">Summer 2017</span><small><a class="btn" href="noneyet">Automated Sprinkler System</a></small></td>
<td>
<p>Created a programmable automated sprinkler system using Renesas DK-S7G2 and Renesas e^2 studio with display for input.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Pedro's Website</h3> <span class="date">Summer 2016 - 2017</span><small><a class="btn" href="https://github.com/PedroPachuca/Website">This Site!</a></small></td>
<td>
<p>Created personal website from scratch and heavily expanded my skillset in Web Development. </p>
</td>
</tr>
<tr>
<td><h3 class="position">Curriculum Vitae</h3> <span class="date">Winter Break 2017</span><small><a class="btn" href="https://github.com/PedroPachuca/LaTeXCV">LaTeXCV</a></small></td>
<td>
<p>Created CV in LaTex, largely to practice skillset in LaTeX. </p>
</td>
</tr>
<tr>
<td><h3 class="position">Binary Genetic Algorithm</h3> <span class="date">Spring 2017</span><a class="btn" href="https://github.com/PedroPachuca/BinaryGeneticAlgorithm">BGA</a></small></td>
<td>
<p>Created Binary Genetic Algorithm Machine Learning implementation in Java for Ace Code Day presentation on Machine Learning.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Super Smash AI</h3> <span class="date">Spring 2017</span><a class="btn" href="https://github.com/PedroPachuca/SSAI">SSAI</a></small></td>
<td>
<p>Improved Machine Learning implementation based on the popular franchise Super Smash Brothers that uses both Genetic Algorithms and Neural Networks. Used for exhibition at Ace Code Day 2017.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Portable Media Library Raspi</h3> <span class="date">Summer 2016</span><a class="btn" href="https://www.raspberrypi.org/">Raspi</a></small></td>
<td>
<p>Created a Portable Media Library that includes close to all modern movies and TV shows. All media is streamable from anywhere with an internet connection for free. Created using a Raspberry Pi 3, OSMC, and Kodi. </p>
</td>
</tr>
<tr>
<td><h3 class="position">Father Desktop Build</h3> <span class="date">Summer 2017</span><a class="btn" href="inprogress">First Build</a></small></td>
<td>
<p>Built Desktop computer from parts for my father.</p>
</td>
</tr>
<tr>
<td><h3 class="position">VoiceTweak</h3> <span class="date">Spring 2016</span><a class="btn" href="https://github.com/PedroPachuca/VoiceTweak">VoiceTweak</a></small></td>
<td>
<p>Created Voice Tweaking app using Swift for iOS. Updated to Swift 3.0 and used for teaching Advanced Swift Workshop at Ace Code Day 2017.</p>
</td>
</tr>
<tr>
<td><h3 class="position">TravelPlanner</h3> <span class="date">Spring 2015</span><a class="btn" href="https://github.com/PedroPachuca/TravelPlanner">TravelPlanner</a></small></td>
<td>
<p>Created Travel Planner app to experiment with UI elements in Swift for iOS. Updated to Swift 3.0 and used for teaching Introduction to Swift Workshop at Ace Code Day 2017</p>
</td>
</tr>
<tr>
<td><h3 class="position">Knights Tour</h3> <span class="date">Spring 2016</span><a class="btn" href="https://github.com/PedroPachuca/KnightsTour">Knights Tour</a></small></td>
<td>
<p>Created Java implementation of Warnsdorf's rule for the infamous Knight's Tour puzzle that works for any starting position and board size. Includes both random and educated move options. </p>
</td>
</tr>
<tr>
<td><h3 class="position">Cicada 2.0</h3> <span class="date">Summer 2017</span><a class="btn" href="https://dc9d4ef30hez9.cloudfront.net/">Cicada 2.0</a></small></td>
<td>
<p>Created elaborate web-based puzzle based off the infamous Cicada Puzzle. Used for AVHS CCSC Recruitment.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Colorful</h3> <span class="date">Spring 2015</span><a class="btn" href="https://github.com/PedroPachuca/Colorful">Colorful</a></small></td>
<td>
<p>Created Swift Interactive App to teach and learn colors in both English and Spanish. </p>
</td>
</tr>
<tr>
<td><h3 class="position">Split</h3> <span class="date">Spring 2016</span><a class="btn" href="https://github.com/PedroPachuca/CraigslistSlackBot">CraigslistSlackBot</a></small></td>
<td>
<p> Created mobile Java game.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Slackbots</h3> <span class="date">2018</span><a class="btn" href="https://github.com/PedroPachuca/GameOfLife">Game of Life</a></small></td>
<td>
<p>Created a few slackbots to serve several purposes from stocks to craigslist crawling. </p>
</td>
</tr>
<tr>
<td><h3 class="position">Game of Life</h3> <span class="date">Fall 2016</span><a class="btn" href="https://github.com/PedroPachuca/GameOfLife">Game of Life</a></small></td>
<td>
<p>Created Java implementation of Conway's Game of Life.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Centipede</h3> <span class="date">Fall 2016</span><a class="btn" href="https://github.com/PedroPachuca/Centipede">Centipede</a></small></td>
<td>
<p>Created Java implementation of classical game Centipede.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Plinko</h3> <span class="date">Winter 2015</span><a class="btn" href="https://github.com/PedroPachuca/Plinko">Plinko</a></small></td>
<td>
<p>Created Swift implementation for popular Plinko arcade game.</p>
</td>
</tr>
<tr>
<td><h3 class="position">BlueEyes</h3> <span class="date">Spring 2016</span><a class="btn" href="https://github.com/PedroPachuca/BlueEyes">BleuEyes</a></small></td>
<td>
<p>Created Bluetooth sniffing tool to learn about Bluetooth communications using Swift for iOS.</p>
</td>
</tr>
<tr>
<td><h3 class="position">Woodworking Projects</h3> <span class="date">2009-2014</span></small></td>
<td>
<p>Undertook many large projects such as cabinetmaking and tablemaking along with countless smaller projects such as penturning and bowl/box making.</p>
</td>
</tr>
</tbody>
</table>
</div><!-- ends projects content-->
<div class="tab-pane" id="events">
<ul class="awards-list">
<li>
<h3 class="heading">California Cyber Innovation Challenge Invitational 2017</h3>
<a class="btn" href="http://www.cctc.calpoly.edu/ccic" >Link</a>
</li>
<li>
<h3 class="heading">National Leadership Conference Invitational</h3>
<a class="btn" href="http://www.fbla-pbl.org/conferences/nlc/" >Link</a>
</li>
<li>
<h3 class="heading">California State Leadership Conference Invitational</h3>
<a class="btn" href="http://www.cafbla.org/pages/CAFBLA/Conferences/State_Leadership_Conference_20" >Link</a>
</li>
<li>
<h3 class="heading">Bay Area Regional CyberSecurity Championship</h3>
<a class="btn" href="https://www.baycyber.net/bay-area-regionals-competition" >Link</a>
</li>
<li>
<h3 class="heading">Cisco Cyber Cup 2017</h3>
<a class="btn" href="https://www.cvent.com/c/express/07c690dd-2d25-4520-8b93-efe6c00f7e50" >Link</a>
</li>
<li>
<h3 class="heading">FBLA Bay Section 2018</h3>
<a class="btn" href="http://www.cafbla.org/pages/CAFBLA/Classes/Bay_Section" >Link</a>
</li>
<li>
<h3 class="heading">ACE Code Days 2017/2018</h3>
<a class="btn" href="http://acecoding.org/" >Link</a>
</li>
<li>
<h3 class="heading">Las Positas College All IT Day 2017</h3>
<a class="btn" href="http://www.laspositascollege.edu/" >Link</a>
</li>
<li>
<h3 class="heading">NYU's Tandon School of Engineering CSAW HSF Competition 2017</h3>
<a class="btn" href="https://csaw.engineering.nyu.edu/" >Link</a>
</li>
<li>
<h3 class="heading">Cyber Patriot 2016-2017 and 2017-2018 semifinalist</h3>
<a class="btn" href="https://www.uscyberpatriot.org/" >Link</a>
</li>
<li>
<h3 class="heading">Quizbowl NAQT Northern California Championships at Stanford</h3>
<a class="btn" href="http://hsquizbowl.org/forums/viewtopic.php?f=1&t=21124" >Link</a>
</li>
<li>
<h3 class="heading">Quizbowl CalCup 2017-2018 Tournament Competitions #1-#4</h3>
<a class="btn" href="http://www.norcalquizbowl.org/?page_id=463" >Link</a>
</li>
<li>
<h3 class="heading">Many other Quizbowl tournmanets all around California</h3>
<a class="btn" href="http://www.norcalquizbowl.org/?page_id=463" >Link</a>
</li>
<li>
<h3 class="heading">Many woodworking association meetings</h3>
<a class="btn" href="https://www.facebook.com/AustinWoodworkers/" >Link</a>
</li>
</ul>
</div><!-- ENDS EVENTS -->
<div class="tab-pane" id="clubs">
<ul class="awards-list">
<li>
<h3 class="heading">Personal Projects</h3>
<p class="desc"> The vast majority of my time goes into personal projects. I've created many large projects including websites, iOS apps, and other applications. I've also created countless smaller projects to learn languages. Everything I make solves a problem, many of my larger projects are available on my Github.</p>
<a class="btn" href="https://github.com/PedroPachuca/" >Link</a>
</li>
<li>
<h3 class="heading">ACE Coding</h3>
<p class="desc"> A group of High School students dedicated to spreading the knowledge of programming to people of all ages. We teach at 2 local middle schools, host a large ACE Code Day involving ~15 workshops and a large hackathon that attracts ~300 students, and teach summer workshops at our library. Through this club, I've taught 1000+ students.</p>
<a class="btn" href="http://www.acecoding.org" >Link</a>
</li>
<li>
<h3 class="heading">Competitive Computer Science Club</h3>
<p class="desc"> Extensive 3-branch club that focuses on competitive cybersecurity, competitive coding, and female empowerment in the IT scene. We participate in large competitions such as CyberPatriot, NLC, CSAW, and USACO. I am an internationally recognized competitor and teacher; top 1% in the world.</p>
<!-- <a class="btn" href="http://www.http://hsquizbowl.org/db/" >Link</a>-->
</li>
<li>
<h3 class="heading"> AVBotz</h3>
<p class="desc"> Group of High School programmers, engineers, and businessmen who participate in the annual RoboSub collegiate competition. We design, program, and finance an Autonomous Underwater Vehicle currently named Marlin. Our website won the global web design competition from F3 Space for the month of February 2018. We are internationally recognized as international finalists in the collegiate competition. </p>
<a class="btn" href="http://www.avbotz.com/" >Link</a>
</li>
<li>
<h3 class="heading"> Future Business Leaders of America </h3>
<p class="desc"> I compete in FBLA CyberSecurity and Computer Problem Solving. I am recognized as #2 in Computer Problem Solving in California and regionally recognized as Top 5 in Computer Problem Solving and CyberSecurity. </p>
<a class="btn" href="http://www.fbla-pbl.org/competitive-event/computer-problem-solving/" >Link</a>
</li>
<li>
<h3 class="heading">Quizbowl</h3>
<p class="desc"> Club focused on quizbowl that participates in the CalCup Tournaments, PACE, and NAQT as well as all local competitions. </p>
<a class="btn" href="https://www.http://hsquizbowl.org/db/" >Link</a>
</li>
<li>
<h3 class="heading"> Aviation </h3>
<p class="desc"> Group of High School engineers who participate in the Team America Rocketry Challenge. As members of NAR, we design and build rockets to compete in TARC. We received recognition for our design and flights. </p>
<a class="btn" href="http://rocketcontest.org/" >Link</a>
</li>
<li>
<h3 class="heading"> Math Team </h3>
<p class="desc"> Group of High School mathematicians who explore interesting math topics and participate in competitions such as the AMC(10, 12) and above. </p>
<a class="btn" href="https://www.maa.org/math-competitions/invitational-competitions" >Link</a>
</li>
<li>
<h3 class="heading">Ballistic United Soccer Club for 4 years </h3>
<p class="desc"> Soccer team that competes in U19 BUSC TriValley soccer as well as various tournaments including the California Founder's Cup. We won the 2017 season for U19 NorCal soccer. </p>
<a class="btn" href="https://busc.org/" >Link</a>
</li>
<li>
<h3 class="heading">Woodworking</h3>
<p class="desc"> I make many things out of wood and acrylic. Pictures available at the photo gallery.</p>
<a class="btn" href="https://www.facebook.com/AustinWoodworkers/" >Link</a>
</li>
</ul>
</div><!-- ENDS EVENTS -->
<div class="tab-pane listing" id="software">
<div class="entry">
<h3 class="heading">Languages</h3>
<p><strong> Web Development Languages: </strong> Competent in HTML, CSS, PHP, (my/no)SQL, and JavaScript. </p>
<p><strong> Embedded Development Languages: </strong> Competent in C and C++. </p>
<p><strong> iOS Development Languages: </strong> Competent in Swift and Objective-C. </p>
<p><strong> Scripting Languages: </strong> Competent in Bash and PowerShell. </p>
<p><strong> General Use Languages: </strong> Competent in Java, Python, and Go. </p>
</div>
<div class="entry">
<h3 class="heading">APIs, Protocols, and Frameworks</h3>
<p><strong> Large Assortment of Apple Development Frameworks: </strong> Have used IOBluetooth(UI), AppKit, Foundation, SSL, WatchKit, Objective-C, GameKit, MapKit, CoreData, EventKit, MediaPlayer, AVKit, and AVFoundation. </p>
<p><strong> AWS Management and Development Console: </strong> Very familiar with AWS Family (Lambda, S3, IAM, DynamoDB, CloudWatch) </p>
<p><strong> Synergy Software Package API Layer: </strong> Very familiar with SSP API Layer (ThreadX, GUIX) </p>
<p><strong> Communication Protocols/Systems: </strong> Very familiar with Bleutooth (RFCOMM, L2CAP, ATT), Internet Protocol Suite, and Onion Routing. </p>
<p><strong> Syndication Standards: </strong> Very familiar with Really Simple Syndication and Atom Syndication Format. </p>
<p><strong> OpenCV: </strong> Familiar with OpenCV for C++. </p>
</div>
<div class="entry">
<h3 class="heading">Development Software and IDEs</h3>
<p><strong> Web Development: </strong> Very familiar with Atom (Preferred), VisualStudio Code, and DreamWeaver. </p>
<p><strong> iOS Development: </strong> Very Familiar with XCode. </p>
<p><strong> Java Development: </strong> Very Familiar with Eclipse and BlueJ. </p>
<p><strong> Python Development </strong> Very Familiar with Python 2.7/3.1 IDLEs. </p>
<p><strong> Embedded Development: </strong> Very Familiar with Renesas e^2 Studio, GUIX Studio, and Renesas IAR EW. </p>
</div>
<div class="entry">
<h3 class="heading">Operating Systems</h3>
<p><strong> Windows OS: </strong> Fluent in Windows 7, 8, 8.1, and 10.</p>
<p><strong> Windows Server OS: </strong> Fluent in Windows Server 2003, 2008, 2012, and 2016. (R2 included)</p>
<p><strong> Linux: </strong> Fluent in Ubuntu, Qubes, Kali, and Raspbian.</p>
<p><strong> ThreadX: </strong> Fleunt in Renesas Synergy ThreadX RTOS. </p>
</div>
<div class="entry">
<h3 class="heading">Other Software</h3>
<p><strong> VMWare: </strong> Very familiar with VMWare as well as Virtual Machine use. </p>
<p><strong> Text Editors/Standards: </strong> Adept in vi/vim, LaTeX, and Markdown. </p>
<p><strong> Other: </strong> Proficient in git/Github, OBS, and Unity.</p>
<p><strong> Electrical Schematics: </strong> Proficient in Electrical Schematics. </p>
<p><strong> Woodworking:</strong> Very familiar with many different types of Woodworking from penturning to furniture building. Over 720 active hours of experience in woodworking.</p>
</div>
</div><!-- ENDS Education -->
<div class="tab-pane lisitng" id="goals">
<ul class="awards-list">
<li>
<h3 class="heading">Long-Term Goals</h3>
<p class="desc"> <strong> Overarching Goal: </strong> I want to make a meaningful contribution to Computer Science, Mathematics, and/or Physics. My ultimate goal is to leave the world saying "There was Euclid, Euler, Erdos, then Einstein. There was Tesla, Turing, Thrun, then Torvalds. And there was Poincare, Planck, Perelman, then Pachuca." </p>
<p class="desc"><strong> College Goal: </strong> I want to graduate from the Massachusetts Institute of Technology or the California Institute of Technology with a degree in Computer Science. </p>
</li>
</ul>
<ul class="awards-list">
<li>
<h3 class="heading">Short-Term Goals</h3>
<p class="desc"> <strong> Teaching Goal: </strong> I want to make a major impact on <strike>2500</strike> 5000+ unique students through my teaching and lecturing before I leave Amador Valley High School. </p>
<p class="desc"> <strong> Creating Goal: </strong> I want to create as many projects as possible that benefit the world in one way or another. </p>
<p class="desc"> <strong> SAT Goal: </strong> <strike>I want to earn a 1570+ on the new SAT through self-study alone.</strike> DONE! Gained equivalent on the ACT (36)! </p>
<p class="desc"> <strong> AP Exam Goal: </strong> I want to earn 5/5 on 13 AP Exams before I leave Amador Valley High School. </p>
<p class="desc"> <strong> GPA Goal: </strong> I want to earn a 4.4 GPA at Amador Valley High School. </p>
</li>
</ul>
</div>
<div class="tab-pane listing" id="summers">
<div class="entry">
<h3 class="heading">Rising Senior Summer</h3>
<span class="date">2018</span>
<p><strong> College Applications: </strong> Began essays</p>
<p><strong> Pixure LLC: </strong> System Administrator and Systems Design Director</p>
<p><strong> California Cyber Innovation Challenge Invitational: </strong> Computer Security and Forensics</p>
<p><strong> FBLA National Leadership Conference: </strong> Computer Problem Solving</p>
<p><strong> AUVSI RoboSub International Collegiate Competition: </strong> Autonomous Submarine Software Engineering</p>
<p><strong> Bay Area Institute: </strong> Accepted to leadership institute</p>
<p><strong> Computer/Web/App Security Teacher: </strong> Las Positas College Camps </p>
<p><strong> ACE Coding Summer Workshops: </strong> Lead Lecturer </p>
<p><strong> Visiting Colleges: </strong> CalTech and USC</p>
<p><strong> AVBotz: </strong> Software Engineer</p>
</div>
<div class="entry">
<h3 class="heading">Rising Junior Summer</h3>
<span class="date">2017</span>
<p><strong> Community College Course: </strong>A in CIS 50</p>
<p><strong> Web Development: </strong>This Website</p>
<p><strong> California Cyber Innovation Challenge Invitational: </strong> Computer Security and Forensics</p>