-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
2103 lines (2024 loc) · 92.1 KB
/
about.html
File metadata and controls
2103 lines (2024 loc) · 92.1 KB
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">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>MVRT | About</title>
<meta
name="description"
content="Learn about the Monta Vista Robotics Team from Cupertino, California. Participating in the FIRST Robotics Competition as Team 115!"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="keywords"
content="MVRT, Monta Vista, Robotics, FRC, 115, robot, FIRST,
Dean Kamen, Science, technology, math, engineering, young people,
Interest and participation in science and technology,
education opportunities, Gracious professionalism, STEM learning, sistem, el toro, omgrobots"
/>
<meta name="og:title" content="MVRT | About" />
<meta name="og:image" content="./assets/images/bull.png" />
<meta name="og:site_name" content="MVRT" />
<meta
name="og:description"
content="Home of the Monta Vista Robotics Team from Cupertino, California. Participating in the FIRST Robotics Competition as Team 115!"
/>
<meta name="language" content="ES" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://fonts.googleapis.com/css?family=Droid+Serif:400i|Source+Sans+Pro:300,400,600,700"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,600,700"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css"
integrity="sha384-AysaV+vQoT3kOAXZkl02PThvDr8HYKPZhNT5h/CXfBThSRXQ6jW5DO2ekP5ViFdi"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="assets/css/owl.carousel.css" />
<link rel="stylesheet" href="assets/css/magnific-popup.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/responsive.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/favicons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/favicons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/favicons/favicon-16x16.png"
/>
<link rel="manifest" href="assets/favicons/site.webmanifest" />
<link
rel="mask-icon"
href="assets/favicons/safari-pinned-tab.svg"
color="#5bbad5"
/>
<link rel="shortcut icon" href="assets/favicons/favicon.ico" />
<meta name="msapplication-TileColor" content="#662d91" />
<meta
name="msapplication-config"
content="assets/favicons/browserconfig.xml"
/>
<meta name="theme-color" content="#ffffff" />
</head>
<body id="body">
<div id="preloader-wrapper">
<div class="pre-loader"></div>
</div>
<!--
Header start
==================== -->
<div class="container nav-container">
<div class="nav-box">
<svg
id="menubtn"
viewBox="0 0 100 100"
onclick="this.classList.toggle('opened'); document.getElementById('top-nav').classList.toggle('opened'); document.documentElement.classList.toggle('noscroll');"
>
<path
class="line line1"
d="M 20 29 H 82 C 91 29 107 91 77 75 l -52 -50"
/>
<path class="line line2" d="M 20 50 H 80 " />
<path
class="line line3"
d="M 20 71 H 82 C 91 71 107 9 77 25 L 25 75 "
/>
</svg>
<a class="logo" style="" href="index.html">
<h1>MVRT</h1>
</a>
<nav style="margin-top: 0%">
<div class="" style="margin: 0%">
<ul
class="nav navbar-nav menu float-lg-right"
id="top-nav"
style="columns: 1"
>
<li class="">
<a href="index.html"><b>HOME</b></a>
</li>
<li class="active">
<a href="about.html"><b>ABOUT</b></a>
</li>
<li class="">
<a href="outreach.html"><b>OUTREACH</b></a>
</li>
<li class="">
<a href="calendar.html"><b>CALENDAR</b></a>
</li>
<li class="">
<a href="resources.html">RESOURCES</a>
</li>
<li class="">
<a href="contact.html"><b>CONTACT</b></a>
</li>
<li class="">
<a href="sponsors.html"><b>SPONSORS</b></a>
</li>
<li class="">
<a href="newsletters.html"><b>NEWSLETTERS</b></a>
</li>
<li class="">
<a
href="join.html"
class="btn-main-nav btn-main-nav-sm"
style="color: #fff"
>Join <i class="far fa-arrow-alt-circle-right"></i
></a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<div class="header-secondary">
<span class="title">About</span>
</div>
<hr />
<br />
<section class="information">
<div class="container">
<div class="tabs">
<a class="tab tab-1 active" href="#/" data-tab="1">Overview</a>
<a class="tab tab-2" href="#/" data-tab="2">About FIRST</a>
<a class="tab tab-3" href="#/" data-tab="3">Team History</a>
<a class="tab tab-4" href="#/" data-tab="4">Leadership</a>
<a class="tab tab-5" href="#/" data-tab="5">Members</a>
<a class="tab tab-6" href="#/" data-tab="6">Mentors</a>
<!-- <span class="highlighter"></span> -->
</div>
<div class="content">
<div class="content__section visible" data-tab="1" id="overview">
<h1>Team Overview</h1>
<br>
<h2>History</h2>
<p>
Founded in 1997, the Monta Vista Robotics FIRST Team #115 was
established by a few friends looking for a way to venture into the
the technological world through creative innovation. Over the last
twenty years, MVRT has taken great strides in technology and
leadership by encouraging its members to further pursue their
imaginations beyond the mundane world and into the extraordinary
realm. However, none of the achievements and advancements in
technology would have been gained without the continuous and
unfailing support of our community, parents, and the more than
valuable guidance of our advisors and alumni. They have assisted
us in overcoming obstacles along the path for original and unique
ideas. MVRT continues to fulfill its mission in creating the
“visionaries of tomorrow” today by participating in FIRST and
inspiring young students through mentoring and community outreach.
We stand together as a diverse group of people ready to face
hardships and difficulties and combine our ingenuity to attain a
common goal: building a masterpiece and inspiring the next
generation of engineers and leaders.
</p>
<br />
<h2>Mission Statement</h2>
<p>
Dedicated to fostering a passion in science and technology within
our community, the Monta Vista Robotics Team inspires students and
develops interpersonal skills through team-based engineering
challenges.
</p>
<br />
<h2>Team Goals</h2>
<ul>
<p>
To create an environment that promotes sharing of knowledge,
skills and experience.
</p>
<p>
To respect opinions of others as well as ourselves despite
differences.
</p>
<p>To create a friendly and professional environment.</p>
<p>
To work towards an operating structure to ensure a solid team.
</p>
<p>
To promote the vision of <i class="first">FIRST</i> in the
community.
</p>
<p>To ensure equal opportunity for all.</p>
</ul>
</div>
<div class="content__section" data-tab="2" id="aboutfirst">
<h1>About FIRST</h1>
<br />
<h2>What is FIRST?</h2>
<p>
Founded in 1989, FIRST (For Inspiration and Recognition in Science
and Technology) prides itself on its leadership in the scientific
arena and its commitment to building a strong foundation for the
country’s future workforce. Founder Dean Kamen, the recipient of
the 2000 National Medal of Technology, has “awakened the
innovative and imaginative leadership in America’s youth to the
excitement of science and technology.” FIRST has competitions for
several different age groups, from JFLL (Junior FIRST LEGO League)
for elementary school students, FLL (FIRST LEGO League) for middle
school students, to FRC (FIRST Robotics Competition) and FTC
(FIRST Tech Challenge) for high school students.
</p>
<br />
<h2>FIRST Robotics Competition (FRC)</h2>
<p>
One of FIRST’s main goals is promoting scientific innovation
through the annual FIRST Robotics Competition (FRC), designed to
immerse high school students in real-life engineering in the
spirit of “Gracious Professionalism” to others. FIRST has
experienced exponential growth since its creation, and amazing
success, as indicated by the hundreds of colleges offering
scholarships to team members and the dozens of media networks that
publicize the organization and its achievements. Each year FIRST
develops the competition by supplying an objective to teams of
students, who have six weeks to conceptualize, design, build, and
test their robotic solution. Each year the objective is different;
details are kept secret until early January, when they are
simultaneously revealed to all teams during the Kick-Off. Once the
six weeks have passed, robots are transported to the competition
site where teams will compete in March. Teams go head-to-head in a
series of two-minute qualification and elimination rounds during a
three-day competition. This format requires that teams strategize
and build into their design both offensively and defensively. The
robot that scores the most points during the two minutes wins each
round, and the one that earns the most points in these rounds is
declared champion.
</p>
<br />
<h2>FIRST Values</h2>
<p>
FIRST strives to teach not just engineering skills, but also life
skills. FIRST pushes for teams to exemplify gracious
professionalism and coopertition. Gracious professionalism is “the
way of doing things that encourages high-quality work, emphasizes
the values of others, and respects individuals and the community.”
FIRST teams can demonstrate this ideal by promoting good
sportsmanship and maintaining the integrity of our members and
team. While teams are happy to receive awards and do well in
competitions, teams never put other down. Coopertition, a theme
that’s especially prevalent in competitions, is “to display
unqualified kindness and respect for other teams, even in the face
of fierce competition.” FIRST teams cooperate with others even
while competing, so teams can teach each other, promoting mutual
learning. To learn more about gracious professionalism and
coopertition, refer to
<a href="https://www.firstinspires.org">FIRST's website.</a>
</p>
</div>
<div class="content__section" data-tab="3" id="teamhistory">
<h1>Team History</h1>
<br />
<p>
We pride ourselves in our long and successful history as a team.
Here is a glimpse of our past.
</p>
<section class="cd-horizontal-timeline">
<div class="timeline">
<div class="events-wrapper">
<div class="events">
<ul>
<li>
<a href="#0" data-date="01/05/2026" class="selected"
>2026</a
>
</li>
<li><a href="#0" data-date="01/05/2025">2025</a></li>
<li><a href="#0" data-date="01/05/2024">2024</a></li>
<li><a href="#0" data-date="01/05/2023">2023</a></li>
<li><a href="#0" data-date="01/05/2022">2022</a></li>
<li><a href="#0" data-date="01/05/2021">2021</a></li>
<li><a href="#0" data-date="01/05/2020">2020</a></li>
<li><a href="#0" data-date="01/05/2019">2019</a></li>
<li><a href="#0" data-date="01/05/2018">2018</a></li>
<li><a href="#0" data-date="01/05/2017">2017</a></li>
<li><a href="#0" data-date="01/05/2016">2016</a></li>
<li><a href="#0" data-date="01/05/2015">2015</a></li>
<li><a href="#0" data-date="01/05/2014">2014</a></li>
<li><a href="#0" data-date="01/05/2013">2013</a></li>
<li><a href="#0" data-date="01/05/2012">2012</a></li>
<li><a href="#0" data-date="01/05/2011">2011</a></li>
<li><a href="#0" data-date="01/05/2010">2010</a></li>
<li><a href="#0" data-date="01/05/2009">2009</a></li>
<li><a href="#0" data-date="01/05/2008">2008</a></li>
<li><a href="#0" data-date="01/05/2007">2007</a></li>
<li><a href="#0" data-date="01/05/2006">2006</a></li>
<li><a href="#0" data-date="01/05/2005">2005</a></li>
<li><a href="#0" data-date="01/05/2004">2004</a></li>
<li><a href="#0" data-date="01/05/2003">2003</a></li>
<li><a href="#0" data-date="01/05/2002">2002</a></li>
<li><a href="#0" data-date="01/05/2001">2001</a></li>
<li><a href="#0" data-date="01/05/2000">2000</a></li>
<li><a href="#0" data-date="01/05/1999">1999</a></li>
</ul>
<span class="filling-line" aria-hidden="true"></span>
</div>
<!-- .events -->
</div>
<!-- .events-wrapper -->
<ul class="cd-timeline-navigation">
<li><a href="#0" class="prev inactive">Prev</a></li>
<li><a href="#0" class="next">Next</a></li>
</ul>
<!-- .cd-timeline-navigation -->
</div>
<!-- .timeline -->
<div class="events-content">
<ul>
<li class="selected" data-date="01/05/2026">
<div>
<img src="assets/images/team/team-2026-temp.png"/>
<h2>2026</h2>
<em>REBUILT (Presented by Haas)</em>
<br />
<h3>Awards</h3>
<p>District Semifinalists at Orange County Event</p>
<p>District Impact Award at Orange County Event</p>
<p>District Quarterfinalists at Silicon Valley Event</p>
<p>District Innovation in Control Award at Silicon Valley Event</p>
<br />
<h3>Leadership</h3>
<p>Sean Foo - <i>President</i></p>
<p>Anna Zhang - <i>VP of Engineering</i></p>
<p>Sreevatsa Pervela - <i>Co-Director of Electrical</i></p>
<p>Rohan Saxena - <i>Co-Director of Electrical</i></p>
<p>Chloe He - <i>Co-Director of Mechanical</i></p>
<p>Neel Kansara - <i>Co-Director of Mechanical</i></p>
<p>Ronav Dholakia - <i>Co-Director of Software</i></p>
<p>Pranav Gupta - <i>Co-Director of Software</i></p>
<p>Sara Chhabra - <i>VP of Operations</i></p>
<p>Advaith Anand - <i>Co-Director of Marketing</i></p>
<p>Yash Guruprakash - <i>Co-Director of Marketing</i></p>
<p>Jyothish Talari - <i>Director of Finance</i></p>
<p>Lisa Fan - <i>Co-Director of Outreach</i></p>
<p>Tanya Bandodkar - <i>Co-Director of Outreach</i></p>
</div>
</li>
<li data-date="01/05/2025">
<div>
<img src="assets/images/team/team-2025-temp.png"/>
<h2>2025</h2>
<em>REEFSCAPE (Presented by Haas)</em>
<br />
<h3>Awards</h3>
<p>Regional Semifinalists at Idaho Regional</p>
<p>Regional Quarterfinalists at Pinnacles Regional</p>
<br />
<h3>Leadership</h3>
<p>Lilja Kiiski - <i>President</i></p>
<p>Chloe Hung - <i>VP of Engineering</i></p>
<p>Arunabh Thakuria - <i>Director of Electrical</i></p>
<p>Orion Yap - <i>Co-Director of Mechanical</i></p>
<p>Rohin Garg - <i>Co-Director of Mechanical</i></p>
<p>Siran Gao - <i>Co-Director of Software</i></p>
<p>Justin Chen - <i>Co-Director of Software</i></p>
<p>Dylan Canoglu - <i>VP of Operations</i></p>
<p>Yash Guruprakash - <i>Director of Marketing</i></p>
<p>Jaden Bae - <i>Director of Finance</i></p>
<p>Tanya Bandodkar - <i>Director of Outreach</i></p>
</div>
</li>
<li data-date="01/05/2024">
<div>
<img src="assets/images/team/team-2024.JPG"/>
<h2>2024</h2>
<em>CRESCENDO (Presented by Haas)</em>
<br />
<h3>Awards</h3>
<p>Regional Quality Award at Ventura County Regional</p>
<p>Rank 3 and 2nd Alliance Captain at Ventura County Regional</p>
<p>Rank 4 at Monterey Bay Regional</p>
<p>FIRST Dean's List Finalist - Lilja Kiiski</p>
<br />
<h3>Leadership</h3>
<p>Paarth Mishra - <i>President</i></p>
<p>Naveen Karun - <i>VP of Engineering</i></p>
<p>Saketh Korada - <i>Director of Electrical</i></p>
<p>Anish Bayyapu- <i>Director of Mechanical</i></p>
<p>Tanisha Kholiya - <i>Director of Software</i></p>
<p>Sohni Tagirisa - <i>VP of Operations</i></p>
<p>Nithya Appannagaari - <i>Director of Marketing</i></p>
<p>Kathryn Foo - <i>Director of Finance</i></p>
<p>Jahnavi Kumar - <i>Director of Outreach</i></p>
</div>
</li>
<li data-date="01/05/2023">
<div>
<img src="assets/images/team/team-2023.JPG"/>
<h2>2023</h2>
<em>CHARGED UP (Presented by Haas)</em>
<br />
<h3>Awards</h3>
<p>Regional Impact Award at San Francisco Regional</p>
<p>Regional Finalist at San Francisco Regional</p>
<p>Regional Judges' Award at Idaho Regional</p>
<br />
<h3>Leadership</h3>
<p>Sohan Shingade - <i>President</i></p>
<p>Lara Vaidya - <i>VP of Engineering</i></p>
<p>Rohit Iyer - <i>Co-Director of Electrical</i></p>
<p>Aan Yadav - <i>Co-Director of Electrical</i></p>
<p>Jacob Gino - <i>Co-Director of Mechanical</i></p>
<p>Jai Gupta- <i>Co-Director of Mechanical</i></p>
<p>Insiah Kizilbash - <i>Co-Director of Software</i></p>
<p>Vincent Zhao - <i>Co-Director of Software</i></p>
<p>Darpan Singh - <i>VP of Operations</i></p>
<p>Nithya Appannagaari - <i>Director of Marketing</i></p>
<p>Ryan Tan - <i>Director of Finance</i></p>
<p>Sohni Tagirisa - <i>Director of Outreach</i></p>
</div>
</li>
<li data-date="01/05/2022">
<div>
<img src="assets/images/team/team-2022.png"/>
<h2>2022</h2>
<em>RAPID REACT (Presented by the Boeing Company)</em>
<br />
<h3>Awards</h3>
<p>Regional Engineering Inspiration Award at Central Valley Regional</p>
<p>Spirit Award at Houston World Championship</p>
<br />
<h3>Leadership</h3>
<p>Arnav Dalal - <i>President</i></p>
<p>Vidhya Kalimani - <i>VP of Engineering</i></p>
<p>Samantha Au - <i>Co-Director of Electrical</i></p>
<p>Sanya Garg - <i>Co-Director of Electrical</i></p>
<p>Ishaan Gupta - <i>Co-Director of Mechanical</i></p>
<p>Malavika Vutukuru- <i>Co-Director of Mechanical</i></p>
<p>Sohan Shingade - <i>Co-Director of Software</i></p>
<p>Vincent Zhao - <i>Co-Director of Software</i></p>
<p>Jasmita Yechuri - <i>VP of Operations</i></p>
<p>Yaseen Sadaat - <i>Director of Marketing</i></p>
<p>Minsoo Kim - <i>Director of Finance</i></p>
<p>Sidhant Malik - <i>Director of Outreach</i></p>
</div>
</li>
<li data-date="01/05/2021">
<div>
<img src="assets/images/team/lan.webp"/>
<h2>2021</h2>
<em>INFINITE RECHARGE (Presented by Lucasfilm)</em>
<br />
<h3>Awards</h3>
<p>Innovation Challenge Semifinalist</p>
<p>Game Design Challenge Engineering Design Award</p>
<p>INFINITE RECHARGE at Home Autonomous Award</p>
<p>FIRST Dean's List Finalist - Arnav Dalal</p>
<br />
<h3>Leadership</h3>
<p>Akash Palla - <i>President</i></p>
<p>Jatin Soni - <i>VP of Engineering</i></p>
<p>Jainam Doshi - <i>Co-Director of Electrical</i></p>
<p>Samantha Au - <i>Co-Director of Electrical</i></p>
<p>Ritvik Dutta - <i>Co-Director of Mechanical</i></p>
<p>Aditya Patil - <i>Co-Director of Mechanical</i></p>
<p>Gavin Hung - <i>Director of Software</i></p>
<p>Harshitha Pandian - <i>VP of Operations</i></p>
<p>Benjamin Tang - <i>Director of Marketing</i></p>
<p>Soumil Gupta - <i>Director of Finance</i></p>
<p>Riya Ranjan - <i>Co-Director of Outreach</i></p>
<p>Naimisha Adira - <i>Co-Director of Outreach</i></p>
</div>
</li>
<li data-date="01/05/2020">
<div>
<img src="assets/images/team/lan.webp"/>
<h2>2020</h2>
<em>INFINITE RECHARGE (Presented by Lucasfilm)</em>
<br />
<h3>Awards</h3>
<p>Regional Finalist at Los Angeles North Regional</p>
<p>Quality Award at Los Angeles North Regional</p>
<p>Houston Championships qualification by Wild Card</p>
<br />
<h3>Leadership</h3>
<p>Divya Satrawada - <i>President</i></p>
<p>Veronica Hui - <i>VP of Engineering</i></p>
<p>Matthew Sheh - <i>Director of Electrical</i></p>
<p>Sreyas Dhulipala - <i>Director of Mechanical</i></p>
<p>Steven Long - <i>Director of Software</i></p>
<p>Sophie Ye - <i>VP of Operations</i></p>
<p>Benjamin Tang - <i>Director of Marketing</i></p>
<p>Seung-Ah Choi - <i>Director of Finance</i></p>
<p>Ranya Pendyala - <i>Director of Outreach</i></p>
</div>
</li>
<li data-date="01/05/2019">
<div>
<img src="assets/images/team/team-2019.webp"/>
<h2>2019</h2>
<em
>DESTINATION: DEEP SPACE (Presented by the Boeing
Company)</em
>
<br />
<h3>Awards</h3>
<p>Entrepreneurship Award at San Francisco Regional</p>
<p>Team Spirit Award at Ventura Regional</p>
<p>
FIRST Dean's List Finalist at San Francisco Regional -
Divya Satrawada
</p>
<p>
FIRST Dean's List Award at Einstein Field (Houston) -
Divya Satrawada
</p>
<br />
<h3>Leadership</h3>
<p>Andy Ding - <i>President</i></p>
<p>Pavan Kalla - <i>VP of Engineering</i></p>
<p>Divya Satrawada - <i>Director of Electrical</i></p>
<p>Veronica Hui - <i>Director of Mechanical</i></p>
<p>Steven Long - <i>Director of Software</i></p>
<p>Isha Chakraborty - <i>VP of Operations</i></p>
<p>Sophie Ye - <i>Director of Marketing</i></p>
<p>Seung-Ah Choi - <i>Director of Finance</i></p>
<p>Ranya Pendyala - <i>Director of Outreach</i></p>
</div>
</li>
<li data-date="01/05/2018">
<div>
<img src="assets/images/team/team-2018.webp"/>
<h2>2018</h2>
<em>FIRST POWER UP</em>
<br />
<h3>Awards</h3>
<p>Entrepreneurship Award at Utah Regional</p>
<br />
<h3>Leadership</h3>
<p>Ishan Mitra - <i>President</i></p>
<p>Ninaad Sridharan - <i>VP of Engineering</i></p>
<p>Michael Wan - <i>Director of Electrical</i></p>
<p>Gautham Gujjula - <i>Director of Mechanical</i></p>
<p>Saurav Pahadia - <i>VP of Operations</i></p>
<p>Sophie Ye - <i>Director of Marketing</i></p>
<p>Isha Chakraborty - <i>Director of Finance</i></p>
<p>Ranya Pendyala - <i>Director of Outreach</i></p>
</div>
</li>
<li data-date="01/05/2017">
<div>
<img src="assets/images/team/team-2017.webp"/>
<h2>2017</h2>
<em>FIRST STEAMWORKS</em>
<br />
<h3>Awards</h3>
<p>Winner at Arizona North Regional</p>
<p>Semi-Finalist at Sillicon Valley Regional</p>
<p>Roebling Division Finalist at Houston Championships</p>
<p>
FIRST Dean's List Finalist at Silicon Valley Regional -
Saurav Pahadia
</p>
<br />
<h3>Leadership</h3>
<p>Akhil Palla - <i>President</i></p>
<p>Ninaad Sridharan - <i>VP of Engineering</i></p>
<p>Ishan Mitra - <i>Director of Electrical</i></p>
<p>Rithin Venkatesh - <i>Director of Mechanical</i></p>
<p>Aditya Kalari - <i>VP of Operations</i></p>
<p>Benjamin Danek - <i>Director of Marketing</i></p>
<p>Saurav Pahadia - <i>Director of Finance</i></p>
<p>Sameer Kapur - <i>Director of Outreach</i></p>
</div>
</li>
<li data-date="01/05/2016">
<div>
<img src="assets/images/team/team-2016.webp"/>
<h2>2016</h2>
<em>FIRST STRONGHOLD</em>
<br />
<h3>Awards</h3>
<p>FIRST Dean's List Finalist - Akhil Palla</p>
<p>Semi-Finalist at Utah Regional</p>
<br />
<h3>Leadership</h3>
<p>Praxis Bays - <i>President</i></p>
<p>Nihil Muthaiah - <i>VP of Engineering</i></p>
<p>Marcus Plutowski - <i>Director of Electrical</i></p>
<p>Anand Rajamani - <i>Director of Mechanical</i></p>
<p>Akhil Palla - <i>Director of Engineering Data</i></p>
<p>Namrata Subramanian- <i>VP of Operations</i></p>
<p>Sophie Cao - <i>Director of Media</i></p>
<p>Sameer Kapur - <i>Director of Public Relations</i></p>
<p>Arushi Rai - <i>Director of Outreach</i></p>
<p>
Saurav Pahadia/Kingsley Wang -
<i>Co-Director of Finance</i>
</p>
<p>Aditya Kalari - <i>Director of Technology</i></p>
</div>
</li>
<li data-date="01/05/2015">
<div>
<img src="assets/images/team/team-2015.webp"/>
<h2>2015</h2>
<em>RECYCLE RUSH</em>
<br />
<h3>Awards</h3>
<p>Entrepreneurship Award at Utah Regional</p>
<p>Quarter-Finalist at the Sillicon Valley Regional</p>
<br />
<h3>Leadership</h3>
<p>Archana Kikla - <i>President</i></p>
<p>Andrew He - <i>VP of Engineering</i></p>
<p>Lee Mracek - <i>Director of Electrical</i></p>
<p>Chirag Toprani - <i>Director of Mechanical</i></p>
<p>RJ Cunningham - <i>Director of Engineering Data</i></p>
<p>Divek Toprani - <i>VP of Operations</i></p>
<p>Sophie Cao - <i>Director of Media</i></p>
<p>
Michelle Danese - <i>Director of Public Relations</i>
</p>
<p>Jeremy Chen - <i>Director of Finance</i></p>
<p>Praxis Bays - <i>Director of Outreach</i></p>
<p>Sydney Howard - <i>Director of Documentation</i></p>
<p>Shovik Guha - <i>Webmaster</i></p>
</div>
</li>
<li data-date="01/05/2014">
<div>
<img src="assets/images/team/team-2014.webp"/>
<h2>2014</h2>
<em>AERIAL ASSIST</em>
<br />
<h3>Awards</h3>
<p>Quarter-Finalist at Sacramento Regional</p>
<br />
<h3>Leadership</h3>
<p>Karen Feng - <i>President</i></p>
<p>Jimin Park - <i>VP of Engineering</i></p>
<p>Andrew He - <i>Director of Electrical</i></p>
<p>Chirag Toprani - <i>Director of Mechanical</i></p>
<p>RJ Cunningham - <i>Director of Engineering Data</i></p>
<p>Archana Kikla - <i>VP of Operations</i></p>
<p>Emma Lewis - <i>Director of Media</i></p>
<p>
Sachin Makaram - <i>Director of Public Relations</i>
</p>
<p>Namrata Ramani - <i>Director of Finance</i></p>
<p>Praxis Bays - <i>Director of Outreach</i></p>
<p>Nikita Sankar - <i>Director of Documentation</i></p>
<p>Shovik Guha - <i>Webmaster</i></p>
</div>
</li>
<li data-date="01/05/2013">
<div>
<img src="assets/images/team/team-2013.webp"/>
<h2>2013</h2>
<em>ULTIMATE ASCENT</em>
<br />
<h3>Awards</h3>
<p>
Team Spirit Award sponsored by Chrysler at Sillicon
Valley Regional
</p>
<br />
<h3>Leadership</h3>
<p>Evelyn Ding - <i>President</i></p>
<p>Kumar Veeravel - <i>VP of Engineering</i></p>
<p>Karen Feng - <i>Director of Electrical</i></p>
<p>Mark Sinks - <i>Director of Mechanical</i></p>
<p>Joyce Yan - <i>VP of Operations</i></p>
<p>Emma Lewis - <i>Director of Media</i></p>
<p>
Sachin Makaram - <i>Director of Public Relations</i>
</p>
<p>Namrata Ramani - <i>Director of Finance</i></p>
<p>Jessica Chen - <i>Director of Documentation</i></p>
</div>
</li>
<li data-date="01/05/2012">
<div>
<img src="assets/images/team/team-2012.webp"/>
<h2>2012</h2>
<em>REBOUND RUMBLE</em>
<br />
<h3>Awards</h3>
<p>Best Website Award at Championships</p>
<p>
Johnson & Johnson Gracious Professionalism Award at
the Sillicon Valley Regional
</p>
<p>Best Website Award at Sacramento Regional</p>
<br />
<h3>Leadership</h3>
<p>Anant Singhania - <i>President</i></p>
<p>Nupur Garg - <i>VP of Engineering</i></p>
<p>Karen Feng - <i>Director of Electrical</i></p>
<p>Kumar Veeravel - <i>Director of Mechanical</i></p>
<p>Evelyn Ding - <i>VP of Operations</i></p>
<p>Daniel Tan - <i>Director of Media</i></p>
<p>Jessica Chen - <i>Director of Documentation</i></p>
<p>Dahyoung Yoon - <i>Director of Public Relations</i></p>
</div>
</li>
<li data-date="01/05/2011">
<div>
<img src="assets/images/team/team-2011.webp"/>
<h2>2011</h2>
<em>LOGO MOTION</em>
<br />
<h3>Awards</h3>
<p>Judges’ Award at Silicon Velley Regional</p>
<p>Best Website Award at Silicon Valley Regional</p>
<p>
Excellence in Design Award at Seattle Cascade Regional
</p>
<p>Best Website Award at Seattle Cascade Regional</p>
<br />
<h3>Leadership</h3>
<p>Helena Qin - <i>President</i></p>
<p>Karthik Kumaravel - <i>VP of Engineering</i></p>
<p>Nupur Garg - <i>Director of Electrical</i></p>
<p>Abhijaat Kelkar - <i>Director of Mechanical</i></p>
<p>Rohan Gupta - <i>VP of Operations</i></p>
<p>Daniel Tan - <i>Director of Media</i></p>
<p>
Anant Singhania - <i>Director of Public Relations</i>
</p>
<p>Evelyn Ding - <i>Director of Finance</i></p>
</div>
</li>
<li data-date="01/05/2010">
<div>
<img src="assets/images/team/team-2010.webp"/>
<h2>2010</h2>
<em>BREAKAWAY</em>
<br />
<h3>Awards</h3>
<p>
Regional Chairman’s Award at Silicon Valley Regional
</p>
<p>Best Website Award at San Diego Regional</p>
<p>Second Place at San Diego Regional</p>
<br />
<h3>Leadership</h3>
<p>Parag Kikla - <i>President</i></p>
<p>Karthik Kumaravel - <i>VP of Engineering</i></p>
<p>Make He - <i>Director of Electrical</i></p>
<p>Abhijaat Kelkar - <i>Director of Mechanical</i></p>
<p>Arun Kuchibhotla - <i>VP of Operations</i></p>
<p>Rohan Gupta - <i>Director of Media</i></p>
<p>
Vinay Venkatesh - <i>Director of Public Relations</i>
</p>
<p>Helena Qin - <i>Director of Finance</i></p>
</div>
</li>
<li data-date="01/05/2009">
<div>
<img src="assets/images/team/team-2009.webp"/>
<h2>2009</h2>
<em>LUNACY</em>
<br />
<h3>Awards</h3>
<p>Best Website Award at Davis Regional</p>
<p>Engineering Inspiration Award at Davis Regional</p>
<br />
<h3>Leadership</h3>
<p>Jean Feng - <i>President</i></p>
<p>Ashwin Mathur - <i>VP of Engineering</i></p>
<p>Make He - <i>Director of Electrical</i></p>
<p>Karthik Kumaravel - <i>Director of Mechanical</i></p>
<p>Prashanth Vijay - <i>VP of Operations</i></p>
<p>Arun Kuchibhotla - <i>Director of Media</i></p>
<p>
Aravindh Dorai - <i>Director of Public Relations</i>
</p>
<p>Parag Kikla - <i>Director of Finance</i></p>
</div>
</li>
<li data-date="01/05/2008">
<div>
<img src="assets/images/team/team-2008.webp"/>
<h2>2008</h2>
<em>FIRST Overdrive</em>
<br />
<h3>Awards</h3>
<p>Champion at Davis Regional</p>
<p>Best Website Award at Davis Regional</p>
<p>Champion at Silicon Valley Regional</p>
<p>Website Award at Nationals</p>
<p>
Johnson & Johnson Gracious Professionalism at
Silicon Valley Regional
</p>
<p>Best Website Award at Silicon Valley Regional</p>
<br />
<h3>Leadership</h3>
<p>Brij Datta - <i>President</i></p>
<p>Humphrey Hu - <i>VP of Engineering</i></p>
<p>Christine Chen - <i>Director of Electrical</i></p>
<p>Ashwin Mathur - <i>Director of Mechanical</i></p>
<p>Schott Chen - <i>VP of Operations</i></p>
<p>Jeremy Le - <i>Director of Media</i></p>
<p>
Rijuta Ravichandran -
<i>Director of Public Relations</i>
</p>
<p>Rosalind Lee - <i>Director of Finance</i></p>
</div>
</li>
<li data-date="01/05/2007">
<div>
<img src="assets/images/team/team-2007.webp"/>
<h2>2007</h2>
<em>Rack "N" Roll</em>
<br />
<h3>Awards</h3>
<p>Quarter-Finalist at Davis Sacramento Regional</p>
<p>
Kleiner Perkins Caufield & Byers Entrepreneurship
Award at Davis Sacramento Regional
</p>
<p>Best Website Award at Davis Sacramental Regional</p>
<p>WRRF Volunteer Award</p>
<br />
<h3>Leadership</h3>
<p>Pavan Dutta - <i>President</i></p>
<p>Danica Chang - <i>VP of Engineering</i></p>
<p>Christine Chen - <i>Director of Electrical</i></p>
<p>Humphrey Hu - <i>Director of Mechanical</i></p>
<p>Brij Datta - <i>VP of Operations</i></p>
<p>Jerry Chen - <i>Director of Media</i></p>
<p>
Rijuta Ravichandran -
<i>Director of Public Relations</i>
</p>
<p>Rosalind Lee - <i>Director of Finance</i></p>
</div>
</li>
<li data-date="01/05/2006">
<div>
<img src="assets/images/team/team-2006.webp"/>
<h2>2006</h2>
<em>Aim High</em>
<br />
<h3>Awards</h3>
<p>Semi-Finalist at Sacramento Regional</p>
<p>Best Website Award at Silicon Valley Regional</p>
<br />
<h3>Leadership</h3>
<p>Pavan Dutta - <i>President</i></p>
<p>Danica Chang - <i>VP of Engineering</i></p>
<p>Christine Chen - <i>Director of Electrical</i></p>
<p>Humphrey Hu - <i>Director of Mechanical</i></p>
<p>Brij Datta - <i>VP of Operations</i></p>
<p>Eileen Laitinen - <i>Director of Media</i></p>
<p>Vannett Li - <i>Director of Public Relations</i></p>
<p>Rosalind Lee - <i>Director of Finance</i></p>
</div>
</li>
<li data-date="01/05/2005">
<div>
<img src="assets/images/team/team-2005.webp"/>
<h2>2005</h2>
<em>Triple Play</em>
<br />
<h3>Awards</h3>
<p>Quarter-Finalist at Sacramento Regional</p>
<p>Quarter-Finalist at Silicon Valley Regional</p>
<p>Judges’ Award at Silicon Valley Regional</p>
<p>
Coached a FIRST Lego League Team which Qualified for the
State Tournament
</p>
<p>Programming Award to the FIRST Lego Team</p>
<p>
Outstanding Mentor Award at Northern California State
Tournament, for Shrenik Shah
</p>
<br />
<h3>Leadership</h3>
<p>Shrenik Shah - <i>President</i></p>
<p>Eric Zhou - <i>VP of Engineering</i></p>
<p>Stephanie Lin - <i>Director of Electrical</i></p>
<p>Tom Clegg - <i>Director of Mechanical</i></p>
<p>Siyu Song - <i>VP of Operations</i></p>
<p>Jeffrey Lee - <i>Director of Media</i></p>
<p>Uta Gou - <i>Director of Public Relations</i></p>
<p>Irem Mertol - <i>Director of Finance</i></p>
</div>
</li>
<li data-date="01/05/2004">
<div>
<img src="assets/images/team/team-2004.webp"/>
<h2>2004</h2>
<em>FIRST Frenzy</em>
<br />
<h3>Awards</h3>
<p>
Engineering Inspiration Award at Silicon Valley Regional
</p>
<p>Woodie Flowers Award to Ted Shinta</p>
<p>Quarter-Finalist at Silicon Valley Regionals</p>
<br />
<h3>Leadership</h3>
<p>Akshay Dodeja - <i>President</i></p>
<p>Shrenik Shah - <i>VP of Engineering</i></p>
<p>Rebecca Illowsky - <i>Director of Electrical</i></p>
<p>Eric Zhou - <i>Director of Mechanical</i></p>
<p>Jennifer Tse - <i>VP of Operations</i></p>
<p>Siyu Song - <i>Director of Media</i></p>
<p>Uta Gou - <i>Director of Public Relations</i></p>
<p>Irem Mertol - <i>Director of Finance</i></p>
</div>
</li>
<li data-date="01/05/2003">
<div>
<img src="assets/images/team/team-2003.webp"/>
<h2>2003</h2>
<em>Stack Attack</em>
<br />
<h3>Awards</h3>
<p>Semi-Finalist at Sacramento Regional</p>
<p>Website Design Award at Sacramento Regional</p>
<p>
General Motor’s Industrial Design Award at Sacramento
Regional
</p>
<p>Champion at Silicon Valley Regional</p>
<p>Website Design Award at Silicon Valley Regional</p>
<p>Xerox Creativity Award at Silicon Valley Regional</p>
<br />
<h3>Leadership</h3>
<p>Patrick Wang - <i>President</i></p>