-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
845 lines (791 loc) · 53 KB
/
index.html
File metadata and controls
845 lines (791 loc) · 53 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
<!DOCTYPE html>
<html lang="en">
<!-- contributors: Harit Talwar, Nipun Batra-->
<head>
<meta charset="utf-8">
<!-- REDIRECTS TO NEW WEBSITE -->
<meta http-equiv="refresh" content="0; URL=https://arcadia-coding-club.github.io/">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="AHS Coding Club single page bootstrap website">
<meta name="author" content="Coding Club Officers and Members Alex Liu, Sandra Tang, Samuel Berkun, and Badruddin Mahamed">
<title>AHS Coding Club</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/themify-icons.css" rel="stylesheet">
<link href="css/dosis-font.css" rel="stylesheet" type="text/css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style>
table,
th,
td {
border: 3px solid black;
border-collapse: collapse;
}
th,
td {
padding: 15px;
}
table#leaderboard_table {
width: 100%;
background-color: #BFFABC;
}
.officer-img {
height: 120px;
width: 120px;
}
</style>
</head>
<body id="page-top" data-spy="scroll" data-target=".side-menu">
<nav class="side-menu">
<ul>
<li class="hidden active">
<a class="page-scroll" href="#page-top"></a>
</li>
<li>
<a href="#home" class="page-scroll">
<span class="menu-title">Home</span>
<span class="dot"></span>
</a>
</li>
<li>
<a href="#information" class="page-scroll">
<span class="menu-title">Information</span>
<span class="dot"></span>
</a>
</li>
<li>
<a href="#officers" class="page-scroll">
<span class="menu-title">Officers</span>
<span class="dot"></span>
</a>
</li>
</ul>
</nav>
<canvas id="coderain"></canvas>
<div class="container-fluid">
<!-- Start: Header -->
<div class="row hero-header" id="home">
<div class="container">
<div class="col-md-7">
<h1 id="logo">Arcadia HS<br><coding/club></h1>
<h1>Get smart with code</h1>
<h3>and let's unite our common interests</h3>
<h4>Every Thursday at 1 pm</h4>
</div>
<!-- Right side icon -->
<!--
<div class="col-md-5 hidden-xs">
<img src="file.png">
</div>
-->
</div>
<!-- End: Header -->
</div>
</div>
<div class="container" id="maincontent">
<!-- Start: Information -->
<div class="row me-row content-ct" id="information">
<h2 class="row-title">Information</h2>
<!-- Nav tabs -->
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active"><a href="#featured" aria-controls="home" role="tab" data-toggle="tab">Featured</a></li>
<li role="presentation"><a href="#news" aria-controls="profile" role="tab" data-toggle="tab">News</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content" id="information-tabs">
<div role="tabpanel" class="tab-pane fade" id="about-us">
</div>
<div role="tabpanel" class="tab-pane fade in active" id="featured">
<div class="col-md-12">
<div class="row">
<h2>Purpose:</h2>
<h3>The club is dedicated to serving Arcadia by sharing our love for computer science, as well as unifying students who have a common interest in programming. Officers teach beginner and intermediate students how to code and give
advanced students the opportunity to delve deeper into the subject. Coding Club informs members about special coding opportunities, such as competitions and hackathons in the community. The club focuses on developing critical
computational thinking skills and integrating them into everyday life.
</h3>
<br><br>
<br><br>
<h3>Meetings will be every Thursday in Ms. Kuso's room (S104)</h3>
<br><br>
<br><br>
<h1>The Leaderboard</h1>
<br><br>
<table id="leaderboard_table">
<tr>
<th>Ranking</th>
<th>Member</th>
<th>Total Points</th>
</tr>
<tr>
<td><b style="color: #195e16">1.</b></td>
<td><b style="color: #195e16">Aryan Ramaswamy</b></td>
<td><b style="color: #195e16">5</b></td>
</tr>
<tr>
<td><b style="color: #195e16">2.</b></td>
<td><b style="color: #195e16">Pranav Aratikatla</b></td>
<td><b style="color: #195e16">5</b></td>
</tr>
<tr>
<td>3.</td>
<td style="color: #6e0f0f">Sebastian Farrington</td>
<td>3</td>
</tr>
<tr>
<td>4.</td>
<td>Allen Qiu</td>
<td>3</td>
</tr>
<tr>
<td>5.</td>
<td>Andy Seymour</td>
<td>3</td>
</tr>
</table>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="news">
<div class="col-md-12">
<div class="row">
<!-- Start: 11/09/2017 -->
<h3>9/10/2021</h3>
<h1> CLUBS DAY 2021
</h1> <br>
<p> Come visit the coding club desk in the quad area on September 10th! Meet fellow programmers and gain a better prespective of the club. Meetings will be held every Thursday during lunch in Ms. Kuso's room (S104).</p><br> <br>
<br><br><br>
<h3>4/12/2021</h3>
<h1>Spring Preview Informational Meeting</h1>
<br>
<p>Thank you to everyone who came to our Spring Preview Informational Meeting. If you were not able to attend, <a href="https://drive.google.com/file/d/1HAqQp34KLa4gth1fB9Wu0eQYXtF3pGal/view?usp=sharing">here</a> is the recording.
<a href="https://forms.gle/Eg1r9LkncDx552A99">Sign up</a> for Coding Club now!</p>
<br>
<br>
<br>
<h3>1/29/2021</h3>
<h1>STEAM NIGHT 2021</h1>
<br>
<br>
<br>
<h3>11/30/2020</h3>
<h1>Computer Science and Engineering College Q&A</h1>
<br>
<br>
<br>
<p>Computer Science and Engineering College Q&A with Sandra Tang, Samuel Berkun, Stella Saw, and Aditya Bhawal!</p>
<img src="Images/codingclub.jpg" alt="Coding Club" />
<h3>6/15/2019-6/16/2019</h3>
<br>
<br>
<br>
<p>Sandra Tang (2018-2019 Coding Club President), Rachel Loh (2019-2020 Coding Club Vice President), Cammie Wei (Coding Club member), and Samantha Rivera attended AI Hacks this past weekend. This was southern California's first
all-female high school hackathon. The four AHS students teamed up to create an AI chatbot that helps people properly dispose of hazardous waste.</p>
<h3>4/25/2019</h3>
<h1>2019-2020 Officer Reveal</h1>
<br><br>
<p>Congratulations to our new 2019-2020 officers!</p>
<br><br>
<h3>4/11/2019</h3>
<h1>Spring Preview 2019</h1>
<br><br>
<p>Coding Club recruited about 50 students at Spring Preview 2019! Thank you to everyone who visited our booth.</p>
<h3>3/21/2019</h3>
<h1>Tech Career Seminar</h1>
<br>
<br><br>
<p>Coding Club hosted Tech Career Seminar on March 21st! Four professionals from the CS field talked about their paths to success and gave valuable career advice. About 100 students attended!</p>
<h3>2/16/2019-2/17/2019</h3>
<h1>CodeDay LA</h1>
<br><br>
<p>CodeDay LA was held on February 16th and 17th for FREE, when the code "CDLAFREE" was used to register.</p>
<h3>12/14/2018-12/17/2018</h3>
<h1>USA Computing Olympiad</h1>
<br><br>
<p>USACO was held and Coding Club members had a chance to show off their skills in Java, Python, C, C++, and Pascal! </p>
<h3>11/15/18</h3>
<h1>Cryptology Meeting with Guest Speaker</h1>
<br><br>
<p>At this meeting, Mr. Mynster was our guest speaker. He formerly worked in CS Security and is currently an AP Statistics teacher at AHS. Mr. Mynster introduced cryptology to Coding Club members. </p>
<h3>11/13/2018-11/16/2018</h3>
<h1>Lychee Jelly Fundraiser</h1>
<br>
<br><br>
<p>We hosted our lychee jelly fundraiser to raise funds for Coding Club and to help members buy club T-shirts. The image above shows how our fundraiser worked!</p>
<h3>10/4/18</h3>
<h1>First Meeting</h1>
<br><br>
<p>The first Coding Club meeting of the school year was held on October 4th, in Ms. Kuso's room. The officers gave members an overview of how the club will work this coming year. There was food, music, and a crowd-pleasing Kahoot!</p>
<h3>9/19/18</h3>
<h1>Clubs Day</h1>
<br><br>
<p>Clubs Day was held on September 19 and over 90 students signed up for Coding Club! Thank you to everyone who visited our booth!</p>
<h3>4/30/2018-5/4/2018</h3>
<h1>Lychee Fundraiser and Arduinos</h1>
<br>
<br><br>
<p>As you may know, we hosted the lychee fundraiser not only to raise funds for the club but also to help people who wanted to buy Arduinos fund their purchase. The little infographic I made above explained how the process worked
and how it helped us save money.
<br><br> Anyway, tax included, the Arduino Uno Rev3 came to about $24. Our awesome treasurer, Stella Saw, collected money for the lychee, but not the Arduino, so if you planned to buy one, you messaged Stella on Facebook
to let her know that you were interested in being part of the group order, and she told you how much money to bring to the meeting on Thursday, April 19.</p>
<h3>4/19/2018</h3>
<h1>New 2018-2019 Officers</h1>
<br><br>
<p>Thanks to everyone who applied! The new officer team for the 2018-2019 year was announced. </p>
<hr>
<h1>AP Computer Science AP Test Review Kahoots</h1>
<br>
<center><img src="https://media.nationalgeographic.org/assets/photos/220/301/a5bc8ebe-f0bb-44cd-bf0c-c12bc44c8260.jpg" width="40%"></center>
<br><br>
<p>Coding Club hosted a complete review of all topics taught in AP Computer Science through Kahoots. The officer team created one giant Kahoot containing all the topics for a rapid-fire review as well as many other smaller Kahoots
containing the same questions but separated by topic to help those who struggled in one certain topic. The links to all of the quizzes were posted on this website and the Facebook page after this day's meeting.</p>
<br>
<br>
<h3>11/09/2017</h3>
<p>The Kahoot and Bandit winners recieved candy and chocolate prizes! Also, the officers taught the basics of CSS and challenged club members to recreate a GIF using CSS and also create the worst website possible. Presentation
<a href="https://docs.google.com/presentation/d/18TqqC8yRCHhIzjQse9zmEVKCAccTbZAWt4LBPM__pzQ/edit?usp=sharing">here</a>.
<br>
<br>
<h3>11/2/17</h3>
Learning about creating websites with HTML and reading source code to find a passwords. Presentation <a href="https://docs.google.com/presentation/d/1li2IDCvs2Y_f8Ogu6ljsizJVaXN1EfkMHLtArg3y6ww/edit?usp=sharing">here.</a>
<br>
<br>
<h3>10/26/17</h3>
No meeting on 10/26 due to Common Core!
<br>
<br>
<h3>10/19/17</h3>
Students poured into the classroom as the officers set up the presentation, music and sign-in station for the first meeting. With a packed room of at least 80 people, the officers introduced themselves, announced plans for the upcoming year and gave away
free snacks. Afterwards, they hosted a coding-themed Kahoot to start off the year!
<br> Thank you to everyone who joined us at the first meeting! Come back next time to learn how to use HTML to code a website.
<br> Check out the first meeting's presentation <a href="https://docs.google.com/presentation/d/1Bdlm1jWz-6N1jjkUbPBg9g3qwOtq4uKq5aFSUaXmnXI/edit?usp=sharing">here</a>.
<br>
<br>
<h3>10/11/17</h3>
During Club Day, well over a hundred students visited Coding Club's booth and signed up for the mailing list. Thanks for dropping by! The officer team looks forward to an amazing year with you all!
<br>
<br>
<h3>10/10/17</h3>
Arcadia High School's Club Day will be held on October 10 and 11 at Lunch in the Rally Court! Coding Club will have a booth up on Wednesday, October 11. Stop by and say hi! Officers will be giving handouts and managing sign ups for the coming school year.
If you aren't able to make it, feel free to come to our weekly lunch meetings, beginning on Thursday, October 26 in C108 at lunch.
<br>
<br>
<h3>4/25/17</h3>
For the last Coding Club meeting of the 2016-2017 school year, the officers threw a party complete with great food and Kahoots.
<br>
<br>
<h3>4/18/17</h3>
Four officers, Patrick Liu, Sandra Tang, Stella Saw and Samuel Berkun, volunteered at Field Elementary School's Science Night in Pasadena. They taught kids how to code through Hour of Code, Scratch, and HTML. Students also experienced playing Minecraft
with a keyboard and monitor hooked up to a Raspberry Pi. Other organizations at the event include Cal Tech, JPL, Pasadena Audubon Society and USC.
<br>
<br>
<h3>4/18/17</h3>
The new officers held their first meeting, introducing new additions including the new feedback form, this website, Raspberry Pi fundraising, volunteering, competitions and Code Day LA. There are also special plans for the last meeting next week! See
the presentation <a href="https://docs.google.com/presentation/d/1-uLy4OLA2iG72mwMB3KRc8Qr8AEq3mTPl78aSyRH2XI/edit?usp=sharing">here</a>.
<br>
<br>
<h3>4/13/17</h3>
Microsoft Educator Todd Beard and Senior Business Development Manager Brooke Haag visited Coding Club to introduce Micro:bits, programmable microcomputers. They taught students how to code simple programs and passed around more hardware examples like
Raspberry Pis. Many thanks to them for coming all the way from the UK to Arcadia to spread their love of coding! Click <a href="https://www.facebook.com/pg/ArcadiaUnified/photos/?tab=album&album_id=1444332782307978">here</a> to see Arcadia Unified School District's Facebook albumn!
<br>
<br>
<h3>3/30/17</h3>
The new Coding Club 2017-2018 Officers have been announced! See the updated list in the "2017-2018 Officers" section to the left.
</p>
<!-- End: 11/09/2017 -->
<hr>
</div>
</div>
</div>
</div>
</div>
<!-- End: Information -->
<!-- Start: Officers -->
<div class="row me-row content-ct officer" id="officers">
<h2 class="row-title">Meet the Officers</h2>
<!-- Nav tabs -->
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active"> <a href="2022" aria-controls="home" role="tab" data-toggle="tab">Officers <small class="hidden-xs">(2021-2022)</small></a></li>
<li role="presentation"><a href="2021" aria-controls="profile" role="tab" data-toggle="tab">Officers <small class="hidden-xs">(2020-2021)</small></a></li>
<li role="presentation"><a href="2020" aria-controls="profile" role="tab" data-toggle="tab">Officers <small class="hidden-xs">(2019-2020)</small></a></li>
<li role="presentation"><a href="2019" aria-controls="profile" role="tab" data-toggle="tab">Officers <small class="hidden-xs">(2018-2019)</small></a></li>
<li role="presentation"><a href="2018" aria-controls="profile" role="tab" data-toggle="tab">Officers <small class="hidden-xs">(2017-2018)</small></a></li>
<li role="presentation"><a href="2017" aria-controls="profile" role="tab" data-toggle="tab">Founders <small class="hidden-xs">(2015-2017)</small></a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane fade active in" id="2022">
<div class="row">
<div class="col-md-4 col-sm-6 feature">
<img src="https://cdn.discordapp.com/attachments/876527731557404712/885761199302668358/IMG_8652.jpg" class="officer-img">
<h2>Branden Leong</h2>
<h3>President</h3>
<h4>Hi! My name is Branden Leong, and I'm the president of Coding Club. I have done a lot of work in web development, Java, Python, and most recently, C++. Some of my favourite projects include a cryptographic hash function, an
AI (although it doesn't work), and a background subtraction algorithm for LiDAR's</h4>
<ul class="officer-social">
<li><a href=""><span class="ti-facebook"></span></a></li>
<!-- <li><a href="#"><span class="ti-twitter-alt"></span></a></li> -->
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://cdn.discordapp.com/attachments/876527731557404712/880242132714160239/edited_Nipun_Batra.jpg" class="officer-img">
<h2>Nipun Batra</h2>
<h3>Vice-President</h3>
<h4>Hi, my name is Nipun! I'm currently the Vice-President of Coding Club and a junior at Arcadia High School. My passion for coding stems from my first Scratch class in middle school. I'm experienced in the languages C, Python,
Flask, SQL, HTML/CSS, and React/React Native, also I have completed online courses such as Harvard's CS50 and taking AP Computer Science.</h4>
<ul class="officer-social">
<li><a href=""><span class="ti-facebook"></span></a></li>
<!-- <li><a href="#"><span class="ti-twitter-alt"></span></a></li> -->
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://cdn.discordapp.com/attachments/876527731557404712/885758923573973022/WIN_20210811_20_02_30_Pro_2.jpg" class="officer-img">
<h2>Harit Talwar</h2>
<h3>Inter Club Council Representative</h3>
<h5>Hello! My name is Harit Talwar and I am the ICC Representative here at Coding Club! I am a senior at Arcadia High School and the ICC Representative at Coding Club! I am confidently experienced with Java, Python, C, C++, C#,
PHP, Django, HTML/CSS/JS, Assembly, Ruby (and Ruby on Rails), LaTeX, MiKTeX, and LUA! I love backend development and have recently picked up an interest in cybersecurity. I have utilized Python, C/C#/C++, and Java to create
keyloggers, program bug bounties, develop programs for packet and file sniffing, develop program botnet detection systems, and utilizing Linux distributions, such as Kali Linux and Ubuntu, to understand and participate
in small server hacks. I am also familiar with Raspberry Pi and Arduino production! I am incredibly excited for this upcoming school year and cannot wait to meet everyone!
</h5>
<ul class="officer-social">
<li><a href=""><span class="ti-facebook"></span></a></li>
<!-- <li><a href="#"><span class="ti-twitter-alt"></span></a></li> -->
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://cdn.discordapp.com/attachments/876527731557404712/885761459269795862/image0.jpg" class="officer-img">
<h2>Ashley Loh</h2>
<h3>Public Relations</h3>
<h4>Hi! I'm Ashley and I'm the 2021-2022 Public Relations officer for Coding Club. I am a Junior and I took APCSP during my sophomore year. I am most familiar with coding in JavaScript. I also participated in 2 summer camps with
ID TECH where I learned how to code games and app design. I am a determined and organized person. My graphic design/public relations experience includes being the Public Relations Intern for a chamber orchestra nonprofit
organization called Crescendo Young Musicians Guild, being the ASB Freshman, Sophomore, and Junior class historian, and designing posters for fun on my own time. I am passionate and so excited to be a part of Coding Club!
</h4>
<ul class="officer-social">
<li><a href=""><span class="ti-facebook"></span></a></li>
<!-- <li><a href="#"><span class="ti-twitter-alt"></span></a></li> -->
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://cdn.discordapp.com/attachments/876527731557404712/885763269648867388/125140426_282808723057245_7713872365302248845_n.jpg" class="officer-img">
<h2>Richard Wei</h2>
<h3>Secretary</h3>
<h4>Hello! I am Richard. I am the secretary of Coding Club. I have programming experience in a multitude of language including (but not limited to): C++, Swift, Java, Python, and C. I mainly participate in competitive programming
competitions using C++ and make apps like the Arcadia High Mobile app or the Applied Engineering app with Swift. I’ve also had a bit of experience programming micro-controllers like Raspberry Pis, messing around in the
Windows Kernel, and some experience with local network communication (specifically with the library ZeroMQ) using protocols like TCP and UDP.</h4>
<ul class="officer-social">
<li><a href=""><span class="ti-facebook"></span></a></li>
<!-- <li><a href="#"><span class="ti-twitter-alt"></span></a></li> -->
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://cdn.discordapp.com/attachments/889229310131589150/894071963994161192/Profile_Picture_New.png" class="officer-img">
<h2>Jeffrey Aaron</h2>
<h3>Treasurer</h3>
<h4>Hi, I am Jeffrey. I have started learning programming from a young age, first starting out with HTML/CSS. From there, I have learned JS, Java, and C# Java was the first real language that I learned and it has always been
my favorite language with its OOP. From there, I learned C# (as it is quite similar) and was introduced to ASP.NET. ASP.NET made a difference for me because of it rapid development allowing me to make multiple projects
with limited time. During this time, I also got interested by Ray Tracing and Neural Networks. I joined the App Development Team where I learned Android programming.
</h4>
<ul class="officer-social">
<li><a href=""><span class="ti-facebook"></span></a></li>
<!-- <li><a href="#"><span class="ti-twitter-alt"></span></a></li> -->
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="2021">
<div class="row">
<div class="col-md-4 col-sm-6 feature">
<img src="https://i.ibb.co/D5tkhjm/safe-image.png" class="officer-img">
<h3>Rachel Loh</h3>
<h5>President</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/rachel.loh.351"><span class="ti-facebook"></span></a></li>
<!-- <li><a href="#"><span class="ti-twitter-alt"></span></a></li> -->
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://i.ibb.co/cLjYWTy/121093009-376291766737477-3227556221935184770-n.png" class="officer-img">
<h3>Emily Yu</h3>
<h5>Vice President</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/emily.yu.5667"><span class="ti-facebook"></span></a></li>
<!-- <li><a href="#"><span class="ti-twitter-alt"></span></a></li> -->
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://i.ibb.co/SfmVbnw/IMG-20200905-112823-934.jpg" class="officer-img">
<h3>Sri Aditya Devaguptapu</h3>
<h5>Secretary</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/aditya.decaguptapu"><span class="ti-facebook"></span></a></li>
<!-- <li><a href="#"><span class="ti-twitter-alt"></span></a></li> -->
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://i.ibb.co/Ns4NvDq/121060843-745501785999121-7440311486304818486-n-1.jpg" class="officer-img">
<h3>Kimberly Yu</h3>
<h5>Treasurer</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/kimberly.yu.982"><span class="ti-facebook"></span></a></li>
<!-- <li><a href="#"><span class="ti-twitter-alt"></span></a></li> -->
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://i.ibb.co/28y4H9g/IMG-20201015-182405-805.jpg" class="officer-img">
<h3>Preston Fan</h3>
<h5>ICC Representative</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/prest.fan/"><span class="ti-facebook"></span></a></li>
<!-- <li><a href="#"><span class="ti-twitter-alt"></span></a></li> -->
<!-- <li><a href="#"><span class="ti-linkedin"></span></a></li> -->
</ul>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="2020">
<div class="row">
<div class="col-md-4 col-sm-6 feature">
<img src="https://image.ibb.co/k7Obao/Screenshot_2017_12_03_at_4_09_40_PM.png" class="officer-img">
<h3>Samuel Berkun</h3>
<h5>President</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/profile.php?id=100010648336616"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://i.ibb.co/D5tkhjm/safe-image.png" class="officer-img">
<h3>Rachel Loh</h3>
<h5>Vice President</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/rachel.loh.351"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://i.ibb.co/Ns4NvDq/121060843-745501785999121-7440311486304818486-n-1.jpg" class="officer-img">
<h3>Kimberly Yu</h3>
<h5>Secretary</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/kimberly.yu.982"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="/Coding-Club/Images/andrewluo.jpg" class="officer-img">
<h3>Andrew Luo</h3>
<h5>Treasurer</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/profile.php?id=100005065666159"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://i.ibb.co/cLjYWTy/121093009-376291766737477-3227556221935184770-n.png" class="officer-img">
<h3>Emily Yu</h3>
<h5>ICC Representative</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/emily.yu.5667"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="2019">
<div class="row">
<div class="col-md-4 col-sm-6 feature">
<img src="https://image.ibb.co/iPsKPb/Screenshot_2017_12_03_at_6_40_57_PM.png" class="officer-img">
<h3>Sandra Tang</h3>
<h5>President</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/sndrtng"><span class="ti-facebook"></span></a></li>
<li><a href="https://twitter.com/_sandratang_"><span class="ti-twitter-alt"></span></a></li>
<li><a href="https://www.linkedin.com/in/sandra-tang/"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://image.ibb.co/k7Obao/Screenshot_2017_12_03_at_4_09_40_PM.png" class="officer-img">
<h3>Samuel Berkun</h3>
<h5>Vice President</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/profile.php?id=100010648336616"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://image.ibb.co/jKP2gT/Screenshot_2018_05_21_at_9_02_22_PM.png" class="officer-img">
<h3>Rachel Loh</h3>
<h5>Secretary</h5>
<ul class="officer-social">
<li><a href="#"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://image.ibb.co/jWd4qG/Screenshot_2017_12_03_at_4_14_35_PM.png" class="officer-img">
<h3>Stella Saw</h3>
<h5>Treasurer</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/profile.php?id=100011240868880"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://image.ibb.co/h7SNgT/Screenshot_2018_05_21_at_9_00_48_PM.png" class="officer-img">
<h3>Aditya Bhawal</h3>
<h5>ICC Representative</h5>
<ul class="officer-social">
<li><a href="#"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="2018">
<div class="row">
<div class="col-md-4 col-sm-6 feature">
<img src="https://image.ibb.co/iPsKPb/Screenshot_2017_12_03_at_6_40_57_PM.png" class="officer-img">
<h3>Sandra Tang</h3>
<h5>President</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/sndrtng"><span class="ti-facebook"></span></a></li>
<li><a href="https://twitter.com/_sandratang_"><span class="ti-twitter-alt"></span></a></li>
<li><a href="https://www.linkedin.com/in/sandra-tang/"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://ibin.co/3jYlHLOiCh0q.png" class="officer-img">
<h3>Patrick Liu</h3>
<h5>Vice President</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/patrick.liu.39948"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://ibin.co/3jYpMYLTK0Sh.png" class="officer-img">
<h3>Ryan Wang</h3>
<h5>Secretary</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/ryan.wang.33821189"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://image.ibb.co/jWd4qG/Screenshot_2017_12_03_at_4_14_35_PM.png" class="officer-img">
<h3>Stella Saw</h3>
<h5>Treasurer</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/profile.php?id=100011240868880"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://image.ibb.co/hLEzPb/Screenshot_2017_12_03_at_4_09_40_PM.png" class="officer-img">
<h3>Samuel Berkun</h3>
<h5>ICC Representative</h5>
<ul class="officer-social">
<li><a href="https://www.facebook.com/profile.php?id=100010648336616"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="2017">
<div class="row">
<div class="col-md-4 col-sm-6 feature">
<img src="https://image.ibb.co/hsYGqG/24829217_10212988712805722_2058674841_n.jpg" class="officer-img">
<h3>Stanley Yu</h3>
<h5>President</h5>
<ul class="officer-social">
<li><a href="#"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://image.ibb.co/dwSbqG/Screenshot_2017_12_06_at_9_26_04_PM.png" class="officer-img">
<h3>Justin Tay</h3>
<h5>Vice President</h5>
<ul class="officer-social">
<li><a href="#"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://preview.ibb.co/gCRrPb/24882801_10212988715645793_309767940_o_1.jpg" class="officer-img">
<h3>Jacky Chin</h3>
<h5>Secretary</h5>
<ul class="officer-social">
<li><a href="#"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://preview.ibb.co/hQyhVG/24891612_10212988717845848_1035144608_n.jpg" class="officer-img">
<h3>Derina Chou</h3>
<h5>Treasurer</h5>
<ul class="officer-social">
<li><a href="#"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
<div class="col-md-4 col-sm-6 feature">
<img src="https://image.ibb.co/bvsgPb/24957007_10212988715965801_79408372_o_1.jpg" class="officer-img">
<h3>Siddharth Rao</h3>
<h5>ICC Representative</h5>
<ul class="officer-social">
<li><a href="#"><span class="ti-facebook"></span></a></li>
<li><a href="#"><span class="ti-twitter-alt"></span></a></li>
<li><a href="#"><span class="ti-linkedin"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- End: Officers -->
</div>
<!-- Start: Footer -->
<footer class="footer1">
<div class="container">
<div class="row">
<!-- row -->
<div class="col-md-2 col-md-offset-1">
<!-- widgets column left -->
<ul class="list-unstyled clear-margins">
<!-- widgets -->
<li class="widget-container widget_nav_menu">
<!-- widgets list -->
<h1 class="title-widget">Useful links</h1>
</li>
</ul>
</div>
<!-- widgets column left end -->
<div class="col-md-2">
<!-- widgets column left -->
<ul class="list-unstyled clear-margins">
<!-- widgets -->
<li class="widget-container widget_nav_menu">
<!-- widgets list -->
<ul>
<li><a href="https://github.com/SandraTang/Coding-Club"><span class="ti-github"></span> Fork us on GitHub</a></li>
</ul>
</li>
</ul>
</div>
<!-- widgets column left end -->
<div class="col-md-2">
<!-- widgets column left -->
<ul class="list-unstyled clear-margins">
<!-- widgets -->
<li class="widget-container widget_nav_menu">
<!-- widgets list -->
<ul>
<li>
<a href="https://forms.gle/Eg1r9LkncDx552A99"> Get on the mailing list</a>
</li>
</ul>
</li>
</ul>
</div>
<!-- widgets column left end -->
<div class="col-md-2">
<!-- widgets column left -->
<ul class="list-unstyled clear-margins">
<!-- widgets -->
<li class="widget-container widget_nav_menu">
<!-- widgets list -->
<ul>
<li><a href="https://www.facebook.com/groups/336404910779088/?ref=share"><span class="ti-facebook"></span> Our book of faces</a></li>
</ul>
</li>
</ul>
</div>
<!-- widgets column left end -->
<div class="col-md-2">
<!-- widgets column left -->
<ul class="list-unstyled clear-margins">
<!-- widgets -->
<li class="widget-container widget_nav_menu">
<!-- widgets list -->
<ul>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSer3745BwkZs9SbjgZ9ghKmkrUEiWn3-czVb-x9GoWkqgxKdg/viewform"><span class="ti-announcement"></span> Feedback & Song Requests</a></li>
</ul>
</li>
</ul>
</div>
<!-- widgets column left end -->
</div>
</div>
</footer>
<div class="footer-bottom">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
<div class="copyright">
© 2021 <a href="https://arcadia-coding-club.github.io/Coding-Club/">https://arcadia-coding-club.github.io/Coding-Club/</a> | All rights reserved.
</div>
</div>
</div>
</div>
</div>
<!-- End: Footer -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.easing.min.js"></script>
<script src="js/scrolling-nav.js"></script>
<script src="js/validator.js"></script>
<script src="js/coderain.js"></script>
<!-- Google Analytics -->
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-29231762-2', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>