-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
911 lines (802 loc) · 43.9 KB
/
blog.html
File metadata and controls
911 lines (802 loc) · 43.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cupertino CoderDojo | Blog</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,700,900|Display+Playfair:200,300,400,700">
<link rel="stylesheet" href="fonts/icomoon/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/jquery-ui.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body data-spy="scroll" data-target=".site-navbar-target" data-offset="200">
<!-- <div class="site-wrap"> -->
<div class="site-mobile-menu site-navbar-target">
<div class="site-mobile-menu-header">
<div class="site-mobile-menu-close mt-3">
<span class="icon-close2 js-menu-toggle"></span>
</div>
</div>
<div class="site-mobile-menu-body"></div>
</div>
<header class="site-navbar py-3 js-site-navbar site-navbar-target" role="banner" id="site-navbar">
<div class="container">
<div class="row align-items-center">
<div class="col-11 col-xl-2 site-logo">
<h1 class="mb-0"><a href="index.html" class="text-white h2 mb-0">Cupertino CoderDojo</a></h1>
</div>
<div class="col-12 col-md-10 d-none d-xl-block">
<nav class="site-navigation position-relative text-right" role="navigation">
<ul class="site-menu js-clone-nav mx-auto d-none d-lg-block">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="index.html#section-about" class="nav-link">About Us</a></li>
<li><a href="videos.html" class="nav-link">Our Videos</a></li>
<li><a href="index.html#section-our-team" class="nav-link">Our Team</a></li>
<li><a href="blog.html" class="nav-link">Blog</a></li>
<!--
<li class="has-children">
<a href="#section-about" class="nav-link">About Us</a>
<ul class="dropdown">
<li><a href="#section-how-it-works" class="nav-link">How It Works</a></li>
<li><a href="#section-our-team" class="nav-link">Our Team</a></li>
</ul>
</li>
-->
<!-- <li><a href="#section-services" class="nav-link">Services</a></li>-->
<!-- <li><a href="#section-industries" class="nav-link">Industries</a></li>-->
<!-- <li><a href="#section-blog" class="nav-link">Blog</a></li>-->
<li><a href="index.html#section-contact" class="nav-link">Contact</a></li>
</ul>
</nav>
</div>
<div class="d-inline-block d-xl-none ml-md-0 mr-auto py-3" style="position: relative; top: 3px;"><a href="#" class="site-menu-toggle js-menu-toggle"><span class="icon-menu h3"></span></a></div>
</div>
</div>
</div>
</header>
<div class="site-blocks-cover overlay" style="background-image: url(images/code.jpg);" data-aos="fade" data-stellar-background-ratio="0.5" id="section-home">
<div class="container">
<div class="row align-items-center justify-content-center text-center">
<div class="col-md-8" data-aos="fade-up" data-aos-delay="400">
<h1 class="text-white font-weight-light text-uppercase font-weight-bold" data-aos="fade-up">Blog</h1>
<!-- <p class="mb-5" data-aos="fade-up" data-aos-delay="100">A Student-Led Nonprofit</p>-->
<!-- <p data-aos="fade-up" data-aos-delay="200"><a href="#section-about" class="btn btn-primary py-3 px-5 text-white">Learn More</a></p>-->
</div>
</div>
</div>
</div>
<div class="site-section" id="section-about" style="background-color: #f7f7f7;">
<div class="container">
<div class="row mb-5" style="margin-bottom: 0px !important;">
<!--
<div class="col-md-5 ml-auto mb-5 order-md-2" data-aos="fade-up" data-aos-delay="100">
<img src="images/coderdojologo.png" alt="Image" class="img-fluid rounded" width="350px">
</div>
-->
<div class="order-md-1" data-aos="fade-up">
<div class="text-left pb-1 border-primary mb-4">
<h2 class="text-primary">Classifying Malware</h2>
</div>
<p>This summmer, one major project Gavin and I took on was creating models that would classify malware. We experimented with numerous models and architectures and nelow is our process and the results we obtained.</p>
<p>Step 1: Data<br>
The dataset we are using for our experiments is a VirusShare dataset. VirusShare is a collection of malware datasets and is commonly used for training malware classification and recognization models. In our dataset, we decided to find the most common ~20 or so families(families are types of malware such as zbot, winwebsec, adload, etc.) and create a dataset out of their operation codes(opcodes for short). After some data processing, we quickly realized that some families were much more frequent than others and decided to create an unbalanced dataset becuase that would give us the most data to work with. In the end, we took the 21 most common families and extracted all their operational codes using Radare2, a disassembler, and created a .csv file out of data. We have obtained 9000+ samples.</p>
<p>Step 2: Classic Models<br>
With out data ready, we began experimenting with models. For our experiments, we decided to use both classic machine learning models, deep learning models, and ensemble methods. Our classic models comprised of a Random Forest model, a K-Neareset-Neighbors model, hidden markov models, a multilayer perceptron model, and a support vector machine. We also used Adaboost and Xgboost and labeled them as classic models although they can be also categorized as ensemble models. With these classic models, we found that Xgboost and Random forest not only performed the best with highest accuracy and balanced accuracy, but also were the most efficient and ran the fastest. To obtain the best model, we ran hyperparamter optimization using sklearn's randomized search algorithm. Here are a few pictures of our results.</p>
<p>Step 3: Deep Learning<br>
With the classic models finished, we moved onto the deep learning portion of the experiments. We decided to use a CNN and LSTM model and find out which performed better. Below are pictures of the architectures of our CNN and LSTM. Our CNN was a 1-D CNN, unlike the standard 2-D CNN, since our data was in the form of consecutive opcodes and did not possess any higher dimensionality. Our LSTM was a bidirectional LSTM, which meant that it took into account both future and past data in order to make current predictions. In the end, while we found that the LSTM did have a higher accuracy and balanced accuracy compared to the CNN, the LSTM runtime was exteremely slow even while using Kaggle's GPU. However, both deep learning models performed considerably better compared to our classic models, which shows the power of neural networks.</p>
<p>Step 4: Ensemble methods<br>
For our ensemble methods, we took the classic route of bagging, boosting, and stacking. However, our definition of stacking is mostly limited to voting, where we obtain multiple models and create a voting system out of them all with the majority being the prediction we use. We found that all ensemble methods greatly boosted our model metrics, especially the voting method, and you can see the results of our ensemble methods below.</p>
<!--
<ul class="ul-check list-unstyled success">
<li>Error minus sint nobis dolor</li>
<li>Voluptatum porro expedita labore esse</li>
<li>Voluptas unde sit pariatur earum</li>
</ul>
-->
</div>
</div>
</div>
</div>
<!--
<div class="site-section bg-image overlay" style="background-image: url('images/code.jpg'); background-repeat: repeat-y" data-aos="fade" data-stellar-background-ratio="0.5" id="section-our-videos">
<div class="container">
<div class="row justify-content-center mb-5">
<div class="col-md-7 text-center border-primary">
<h2 class="font-weight-light text-primary" data-aos="fade">Our Videos</h2>
</div>
</div>
<div class="row">
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="100">
<div class="how-it-work-item">
<span class="number">1</span>
<div class="how-it-work-body">
<iframe width="350" height="250" src="https://www.youtube.com/embed/4npXqcJ0zCo" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" style="display: block; margin-left: auto; margin-right: auto;" allowfullscreen></iframe>
-->
<!--
<h2>Make An Order</h2>
<p class="mb-5">Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt praesentium dicta consectetur fuga neque fugit a at. Cum quod vero assumenda iusto.</p>
<ul class="ul-check list-unstyled success">
<li class="text-white">Error minus sint nobis dolor</li>
<li class="text-white">Voluptatum porro expedita labore esse</li>
<li class="text-white">Voluptas unde sit pariatur earum</li>
</ul>
-->
<!--
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="200">
<div class="how-it-work-item" style="align-items: center">
<span class="number">2</span>
<div class="how-it-work-body" >
<iframe width="350" height="250" src="https://www.youtube.com/embed/JEi6eH5vNKM" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" style="display: block; margin-left: auto; margin-right: auto;" allowfullscreen></iframe>
-->
<!--
<h2>Make A Payment</h2>
<p class="mb-5">Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt praesentium dicta consectetur fuga neque fugit a at. Cum quod vero assumenda iusto.</p>
<ul class="ul-check list-unstyled success">
<li class="text-white">Error minus sint nobis dolor</li>
<li class="text-white">Voluptatum porro expedita labore esse</li>
<li class="text-white">Voluptas unde sit pariatur earum</li>
</ul>
-->
<!--
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="300">
<div class="how-it-work-item">
<span class="number">3</span>
<div class="how-it-work-body">
<iframe width="350" height="250" src="https://www.youtube.com/embed/w4ZRMZjOkL0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" style="display: block; margin-left: auto; margin-right: auto;" allowfullscreen></iframe>
-->
<!--
<h2>Track Your Order</h2>
<p class="mb-5">Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt praesentium dicta consectetur fuga neque fugit a at. Cum quod vero assumenda iusto.</p>
<ul class="ul-check list-unstyled success">
<li class="text-white">Error minus sint nobis dolor</li>
<li class="text-white">Voluptatum porro expedita labore esse</li>
<li class="text-white">Voluptas unde sit pariatur earum</li>
</ul>
-->
<!--
</div>
</div>
</div>
</div>
<div class="row" style="margin-top: 30px;">
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="100">
<div class="how-it-work-item">
<span class="number">1</span>
<div class="how-it-work-body">
<iframe width="350" height="250" src="https://www.youtube.com/embed/t2VkPY38Uos" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
-->
<!--
<h2>Make An Order</h2>
<p class="mb-5">Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt praesentium dicta consectetur fuga neque fugit a at. Cum quod vero assumenda iusto.</p>
<ul class="ul-check list-unstyled success">
<li class="text-white">Error minus sint nobis dolor</li>
<li class="text-white">Voluptatum porro expedita labore esse</li>
<li class="text-white">Voluptas unde sit pariatur earum</li>
</ul>
-->
<!--
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="200">
<div class="how-it-work-item" style="align-items: center">
<span class="number">2</span>
<div class="how-it-work-body" >
<iframe width="350" height="250" src="https://www.youtube.com/embed/tC7GE4G7gJU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
-->
<!--
<h2>Make A Payment</h2>
<p class="mb-5">Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt praesentium dicta consectetur fuga neque fugit a at. Cum quod vero assumenda iusto.</p>
<ul class="ul-check list-unstyled success">
<li class="text-white">Error minus sint nobis dolor</li>
<li class="text-white">Voluptatum porro expedita labore esse</li>
<li class="text-white">Voluptas unde sit pariatur earum</li>
</ul>
-->
<!--
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="300">
<div class="how-it-work-item">
<span class="number">3</span>
<div class="how-it-work-body">
<iframe width="350" height="250" src="https://www.youtube.com/embed/zxrRqykFfOM" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
-->
<!--
<h2>Track Your Order</h2>
<p class="mb-5">Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt praesentium dicta consectetur fuga neque fugit a at. Cum quod vero assumenda iusto.</p>
<ul class="ul-check list-unstyled success">
<li class="text-white">Error minus sint nobis dolor</li>
<li class="text-white">Voluptatum porro expedita labore esse</li>
<li class="text-white">Voluptas unde sit pariatur earum</li>
</ul>
-->
<!--
</div>
</div>
</div>
</div>
<div class="row" style="margin-top: 30px;">
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="100">
<div class="how-it-work-item">
<span class="number">1</span>
<div class="how-it-work-body">
<iframe width="350" height="250" src="https://www.youtube.com/embed/LT5N9wdkRiE" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
-->
<!--
<h2>Make An Order</h2>
<p class="mb-5">Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt praesentium dicta consectetur fuga neque fugit a at. Cum quod vero assumenda iusto.</p>
<ul class="ul-check list-unstyled success">
<li class="text-white">Error minus sint nobis dolor</li>
<li class="text-white">Voluptatum porro expedita labore esse</li>
<li class="text-white">Voluptas unde sit pariatur earum</li>
</ul>
-->
<!--
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="200">
<div class="how-it-work-item" style="align-items: center">
<span class="number">2</span>
<div class="how-it-work-body" >
<iframe width="350" height="250" src="https://www.youtube.com/embed/ivy8_1FhmLY" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
-->
<!--
<h2>Make A Payment</h2>
<p class="mb-5">Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt praesentium dicta consectetur fuga neque fugit a at. Cum quod vero assumenda iusto.</p>
<ul class="ul-check list-unstyled success">
<li class="text-white">Error minus sint nobis dolor</li>
<li class="text-white">Voluptatum porro expedita labore esse</li>
<li class="text-white">Voluptas unde sit pariatur earum</li>
</ul>
-->
<!--
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="300">
<div class="how-it-work-item">
<span class="number">3</span>
<div class="how-it-work-body">
<iframe width="350" height="250" src="https://www.youtube.com/embed/PlGANOv_H4c" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
-->
<!--
<h2>Track Your Order</h2>
<p class="mb-5">Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt praesentium dicta consectetur fuga neque fugit a at. Cum quod vero assumenda iusto.</p>
<ul class="ul-check list-unstyled success">
<li class="text-white">Error minus sint nobis dolor</li>
<li class="text-white">Voluptatum porro expedita labore esse</li>
<li class="text-white">Voluptas unde sit pariatur earum</li>
</ul>
-->
<!--
</div>
</div>
</div>
</div>
-->
<!--
<div class="row" style="margin-top: 30px;">
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="100">
<div class="how-it-work-item">
<span class="number">1</span>
<div class="how-it-work-body">
<iframe width="350" height="250" src="https://www.youtube.com/embed/B_A3dMG6zNw" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
-->
<!--
<h2>Make An Order</h2>
<p class="mb-5">Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt praesentium dicta consectetur fuga neque fugit a at. Cum quod vero assumenda iusto.</p>
<ul class="ul-check list-unstyled success">
<li class="text-white">Error minus sint nobis dolor</li>
<li class="text-white">Voluptatum porro expedita labore esse</li>
<li class="text-white">Voluptas unde sit pariatur earum</li>
</ul>
-->
<!--
</div>
</div>
</div>
-->
<!--
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="200">
<div class="how-it-work-item" style="align-items: center">
<span class="number">2</span>
<div class="how-it-work-body" >
<iframe width="350" height="250" src="https://www.youtube.com/embed/He3JHLYEVME" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
-->
<!--
<h2>Make A Payment</h2>
<p class="mb-5">Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt praesentium dicta consectetur fuga neque fugit a at. Cum quod vero assumenda iusto.</p>
<ul class="ul-check list-unstyled success">
<li class="text-white">Error minus sint nobis dolor</li>
<li class="text-white">Voluptatum porro expedita labore esse</li>
<li class="text-white">Voluptas unde sit pariatur earum</li>
</ul>
-->
<!--
</div>
</div>
</div>
-->
<!--
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="300">
<div class="how-it-work-item">
<span class="number">3</span>
<div class="how-it-work-body">
<iframe width="350" height="250" src="https://www.youtube.com/embed/NCi_YY-x3lE" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
-->
<!--
<h2>Track Your Order</h2>
<p class="mb-5">Lorem ipsum dolor sit amet consectetur adipisicing elit. Incidunt praesentium dicta consectetur fuga neque fugit a at. Cum quod vero assumenda iusto.</p>
<ul class="ul-check list-unstyled success">
<li class="text-white">Error minus sint nobis dolor</li>
<li class="text-white">Voluptatum porro expedita labore esse</li>
<li class="text-white">Voluptas unde sit pariatur earum</li>
</ul>
-->
<!--
</div>
</div>
</div>
</div>
</div>
</div>
-->
<!--
<div class="site-section border-bottom" id="section-our-team" style="padding-top: 30px !important;">
<div class="container">
<div class="row justify-content-center mb-5">
<div class="col-md-7 text-center border-primary">
<h2 class="font-weight-light text-primary" data-aos="fade">Our Team</h2>
</div>
</div>
<div class="row">
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="100">
<div class="person">
<img src="images/allen.png" alt="Image" class="img-fluid rounded mb-5 w-75 rounded-circle">
<h3>Allen Ye</h3>
<p class="position text-muted" style="color: black!important;">Founder</p>
<p class="mb-4">Allen is a current junior at Lynbrook High School and has many years of coding experience. He is very passionate about computer science, and is specifically interested in web design, machine learning, and cybersecurity.</p>
-->
<!--
<ul class="ul-social-circle">
<li><a href="#"><span class="icon-facebook"></span></a></li>
<li><a href="#"><span class="icon-twitter"></span></a></li>
<li><a href="#"><span class="icon-linkedin"></span></a></li>
<li><a href="#"><span class="icon-instagram"></span></a></li>
</ul>
-->
<!--
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="200">
<div class="person">
<img src="images/gavin.jpg" alt="Image" class="img-fluid rounded mb-5 w-75 rounded-circle">
<h3>Gavin Wong</h3>
<p class="position text-muted" style="color: black!important;">Founder</p>
<p class="mb-4">Gavin is a current senior at Lynbrook High School, and enjoys programming in Java, Python, and Swift. He is passionate in both computer science and entrepreneurship and aims to pursue a career involving combining these two topics.</p>
-->
<!--
<ul class="ul-social-circle">
<li><a href="#"><span class="icon-facebook"></span></a></li>
<li><a href="#"><span class="icon-twitter"></span></a></li>
<li><a href="#"><span class="icon-linkedin"></span></a></li>
<li><a href="#"><span class="icon-instagram"></span></a></li>
</ul>
-->
<!--
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5 mb-lg-0" data-aos="fade" data-aos-delay="300">
<div class="person">
<img src="images/richard.jpg" alt="Image" class="img-fluid rounded mb-5 w-75 rounded-circle ">
<h3>Richard Cao</h3>
<p class="position text-muted" style="color: black!important;">Founder</p>
<p class="mb-4">Richard is currently a senior in high school. He is passionate about inspiring and educating the youth, and is interested in pursuing an education in computer science. He is experienced in video game design, web development, and app design. </p>
-->
<!--
<ul class="ul-social-circle">
<li><a href="#"><span class="icon-facebook"></span></a></li>
<li><a href="#"><span class="icon-twitter"></span></a></li>
<li><a href="#"><span class="icon-linkedin"></span></a></li>
<li><a href="#"><span class="icon-instagram"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
-->
<!--
<div class="site-section bg-light" id="section-services">
<div class="container">
<div class="row justify-content-center mb-5" data-aos="fade-up">
<div class="col-md-7 text-center border-primary">
<h2 class="mb-0 text-primary">Our Services</h2>
<p class="color-black-opacity-5">Lorem ipsum dolor sit amet.</p>
</div>
</div>
<div class="row align-items-stretch">
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up">
<div class="unit-4 d-flex">
<div class="unit-4-icon mr-4"><span class="text-primary flaticon-plane"></span></div>
<div>
<h3>Air Freight</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Perferendis quis molestiae vitae eligendi at.</p>
<p><a href="#">Learn More</a></p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up" data-aos-delay="100">
<div class="unit-4 d-flex">
<div class="unit-4-icon mr-4"><span class="text-primary flaticon-boat-ship"></span></div>
<div>
<h3>Ocean Freight</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Perferendis quis molestiae vitae eligendi at.</p>
<p><a href="#">Learn More</a></p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up" data-aos-delay="200">
<div class="unit-4 d-flex">
<div class="unit-4-icon mr-4"><span class="text-primary flaticon-truck"></span></div>
<div>
<h3>Land Transportation</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Perferendis quis molestiae vitae eligendi at.</p>
<p><a href="#">Learn More</a></p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up" data-aos-delay="300">
<div class="unit-4 d-flex">
<div class="unit-4-icon mr-4"><span class="text-primary flaticon-warehouse"></span></div>
<div>
<h3>Warehousing</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Perferendis quis molestiae vitae eligendi at.</p>
<p><a href="#">Learn More</a></p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up" data-aos-delay="400">
<div class="unit-4 d-flex">
<div class="unit-4-icon mr-4"><span class="text-primary flaticon-wooden"></span></div>
<div>
<h3>Storage</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Perferendis quis molestiae vitae eligendi at.</p>
<p><a href="#">Learn More</a></p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up" data-aos-delay="500">
<div class="unit-4 d-flex">
<div class="unit-4-icon mr-4"><span class="text-primary flaticon-worldwide"></span></div>
<div>
<h3>Worldwide Delivery</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Perferendis quis molestiae vitae eligendi at.</p>
<p><a href="#">Learn More</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
-->
<!--
<div class="site-section block-13" id="section-industries">
<div class="container">
<div class="row justify-content-center mb-5">
<div class="col-md-7 text-center border-primary">
<h2 class="mb-0 text-primary">Industries</h2>
<p class="color-black-opacity-5">Lorem ipsum dolor sit amet.</p>
</div>
</div>
</div>
<div class="owl-carousel nonloop-block-13">
<div>
<a href="#" class="unit-1 text-center">
<img src="images/img_1.jpg" alt="Image" class="img-fluid">
<div class="unit-1-text">
<h3 class="unit-1-heading">Storage</h3>
</div>
</a>
</div>
<div>
<a href="#" class="unit-1 text-center">
<img src="images/img_2.jpg" alt="Image" class="img-fluid">
<div class="unit-1-text">
<h3 class="unit-1-heading">Air Transports</h3>
</div>
</a>
</div>
<div>
<a href="#" class="unit-1 text-center">
<img src="images/img_3.jpg" alt="Image" class="img-fluid">
<div class="unit-1-text">
<h3 class="unit-1-heading">Cargo Transports</h3>
</div>
</a>
</div>
<div>
<a href="#" class="unit-1 text-center">
<img src="images/img_4.jpg" alt="Image" class="img-fluid">
<div class="unit-1-text">
<h3 class="unit-1-heading">Cargo Ship</h3>
</div>
</a>
</div>
<div>
<a href="#" class="unit-1 text-center">
<img src="images/img_5.jpg" alt="Image" class="img-fluid">
<div class="unit-1-text">
<h3 class="unit-1-heading">Ware Housing</h3>
</div>
</a>
</div>
</div>
</div>
-->
<!--
<div class="site-blocks-cover overlay inner-page-cover" style="background-image: url(images/hero_bg_2.jpg); background-attachment: fixed;">
<div class="container">
<div class="row align-items-center justify-content-center text-center">
<div class="col-md-7" data-aos="fade-up">
<a href="https://vimeo.com/channels/staffpicks/93951774" class="play-single-big mb-4 d-inline-block popup-vimeo"><span class="icon-play"></span></a>
<h2 class="text-white font-weight-light mb-5 h1">Watch The Video</h2>
</div>
</div>
</div>
</div>
-->
<!-- testimonials
<div class="site-section border-bottom">
<div class="container">
<div class="row justify-content-center mb-5">
<div class="col-md-7 text-center border-primary">
<h2 class="font-weight-light text-primary">Testimonials</h2>
</div>
</div>
<div class="slide-one-item home-slider owl-carousel">
<div>
<div class="testimonial">
<figure class="mb-4">
<img src="images/person_1.jpg" alt="Image" class="img-fluid mb-3">
</figure>
<blockquote>
<p>“Lorem ipsum dolor sit amet consectetur adipisicing elit. Consectetur unde reprehenderit aperiam quaerat fugiat repudiandae explicabo animi minima fuga beatae illum eligendi incidunt consequatur. Amet dolores excepturi earum unde iusto.”</p>
<p class="author"> — John Trump</p>
</blockquote>
</div>
</div>
<div>
<div class="testimonial">
<figure class="mb-4">
<img src="images/person_2.jpg" alt="Image" class="img-fluid mb-3">
</figure>
<blockquote>
<p>“Lorem ipsum dolor sit amet consectetur adipisicing elit. Consectetur unde reprehenderit aperiam quaerat fugiat repudiandae explicabo animi minima fuga beatae illum eligendi incidunt consequatur. Amet dolores excepturi earum unde iusto.”</p>
<p class="author"> — Roger Moore</p>
</blockquote>
</div>
</div>
<div>
<div class="testimonial">
<figure class="mb-4">
<img src="images/person_4.jpg" alt="Image" class="img-fluid mb-3">
</figure>
<blockquote>
<p>“Lorem ipsum dolor sit amet consectetur adipisicing elit. Consectetur unde reprehenderit aperiam quaerat fugiat repudiandae explicabo animi minima fuga beatae illum eligendi incidunt consequatur. Amet dolores excepturi earum unde iusto.”</p>
<p class="author"> — Ben Carson</p>
</blockquote>
</div>
</div>
<div>
<div class="testimonial">
<figure class="mb-4">
<img src="images/person_5.jpg" alt="Image" class="img-fluid mb-3">
</figure>
<blockquote>
<p>“Lorem ipsum dolor sit amet consectetur adipisicing elit. Consectetur unde reprehenderit aperiam quaerat fugiat repudiandae explicabo animi minima fuga beatae illum eligendi incidunt consequatur. Amet dolores excepturi earum unde iusto.”</p>
<p class="author"> — Jed Smith</p>
</blockquote>
</div>
</div>
</div>
</div>
</div>
-->
<!--
<div class="site-section" id="section-blog">
<div class="container">
<div class="row justify-content-center mb-5">
<div class="col-md-7 text-center border-primary">
<h2 class="font-weight-light text-primary">Our Blog</h2>
<p class="color-black-opacity-5">See Our Daily News & Updates</p>
</div>
</div>
<div class="row mb-5 align-items-stretch">
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up">
<div class="h-entry">
<a href="single.html"><img src="images/blog_1.jpg" alt="Image" class="img-fluid"></a>
<h2 class="font-size-regular"><a href="single.html">How Logistics Company Improve Spendings</a></h2>
<div class="meta mb-4">by Jed Wilson <span class="mx-2">•</span> Jan 18, 2019 <span class="mx-2">•</span> <a href="#">News</a></div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus eligendi nobis ea maiores sapiente veritatis reprehenderit suscipit quaerat rerum voluptatibus a eius.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up" data-aos-delay="100">
<div class="h-entry">
<a href="single.html"><img src="images/blog_2.jpg" alt="Image" class="img-fluid"></a>
<h2 class="font-size-regular"><a href="single.html">How Logistics Company Improve Spendings</a></h2>
<div class="meta mb-4">by Jed Wilson <span class="mx-2">•</span> Jan 18, 2019 <span class="mx-2">•</span> <a href="#">News</a></div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus eligendi nobis ea maiores sapiente veritatis reprehenderit suscipit quaerat rerum voluptatibus a eius.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-4 mb-lg-4" data-aos="fade-up" data-aos-delay="200">
<div class="h-entry">
<a href="single.html"><img src="images/blog_3.jpg" alt="Image" class="img-fluid"></a>
<h2 class="font-size-regular"><a href="single.html">How Logistics Company Improve Spendings</a></h2>
<div class="meta mb-4">by Jed Wilson <span class="mx-2">•</span> Jan 18, 2019 <span class="mx-2">•</span> <a href="#">News</a></div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus eligendi nobis ea maiores sapiente veritatis reprehenderit suscipit quaerat rerum voluptatibus a eius.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-12 text-center" data-aos="fade-up" data-aos-delay="300">
<p class="mb-0"><a href="https://free-template.co" class="btn btn-primary py-3 px-5 text-white">View All Blog Posts</a></p>
</div>
</div>
</div>
</div>
-->
<!--
<div class="site-section bg-light" id="section-contact">
<div class="container">
<div class="row justify-content-center mb-5">
<div class="col-md-7 text-center border-primary">
<h2 class="font-weight-light text-primary">Contact Us</h2>
<p class="color-black-opacity-5">Questions & Comments?</p>
</div>
</div>
<div class="row">
<div class="col-md-7 mb-5">
<form name="contact" method="post" data-netlify="true" class="p-5 bg-white">
<div class="row form-group">
<div class="col-md-6 mb-3 mb-md-0">
<label class="text-black" for="fname">First Name</label>
<input type="text" name="fname" class="form-control">
</div>
<div class="col-md-6">
<label class="text-black" for="lname">Last Name</label>
<input type="text" name="lname" class="form-control">
</div>
</div>
<div class="row form-group">
<div class="col-md-12">
<label class="text-black" for="email">Email</label>
<input type="email" name="email" class="form-control">
</div>
</div>
<div class="row form-group">
<div class="col-md-12">
<label class="text-black" for="subject">Subject</label>
<input type="subject" name="subject" class="form-control">
</div>
</div>
<div class="row form-group">
<div class="col-md-12">
<label class="text-black" for="message">Message</label>
<textarea name="message" name="message" cols="30" rows="7" class="form-control"></textarea>
</div>
</div>
<div class="row form-group">
<div class="col-md-12">
<input type="submit" value="Send Message" class="btn btn-primary py-2 px-4 text-white">
</div>
</div>
</form>
</div>
<div class="col-md-5">
<div class="p-4 mb-3 bg-white">
<p class="mb-0 font-weight-bold">Address</p>
<p class="mb-4">Cupertino, California</p>
<p class="mb-0 font-weight-bold">Phone</p>
<p class="mb-4"><a href="#">+1 232 3235 324</a></p>
<p class="mb-0 font-weight-bold">Email Address</p>
<p class="mb-0"><a href="mailto:cupertinocoderdojo@gmail.com">cupertinocoderdojo@gmail.com</a></p>
</div>
<div class="p-4 mb-3 bg-white">
<h3 class="h5 text-black mb-3">More Info</h3>
<p>CoderDojo is a global volunteer-led community of free programming workshops for young people between 7 and 17. The movement is a grassroots organisation with individual clubs (called "Dojos") acting independently. A charity called the CoderDojo Foundation operates out of Dublin and supports the various clubs by providing a central website and some other support services.</p>
<p><a href="https://coderdojo.com/" class="btn btn-primary px-4 py-2 text-white" target="_blank">Learn More</a></p>
</div>
</div>
</div>
</div>
</div>
-->
<footer class="site-footer" style="height: 160px; padding-top: 0; padding-bottom: 0;">
<div class="container">
<!-- <div class="row">-->
<!-- <div class="col-md-9">-->
<!-- <div class="row">-->
<!-- <div class="col-md-5 mr-auto">-->
<!-- <h2 class="footer-heading mb-4">About Us</h2>-->
<!-- <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Aperiam iure deserunt ut architecto dolores quo beatae laborum aliquam ipsam rem impedit obcaecati ea consequatur.</p>-->
<!-- </div>-->
<!--
<div class="col-md-3">
<h2 class="footer-heading mb-4">Quick Links</h2>
<ul class="list-unstyled">
<li><a href="#">About Us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Testimonials</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
<div class="col-md-3">
<h2 class="footer-heading mb-4">Follow Us</h2>
<a href="#" class="pl-0 pr-3"><span class="icon-facebook"></span></a>
<a href="#" class="pl-3 pr-3"><span class="icon-twitter"></span></a>
<a href="#" class="pl-3 pr-3"><span class="icon-instagram"></span></a>
<a href="#" class="pl-3 pr-3"><span class="icon-linkedin"></span></a>
</div>
</div>
-->
<!-- </div>-->
<!--
<div class="col-md-3">
<h2 class="footer-heading mb-4">Subscribe Newsletter</h2>
<form action="#" method="post">
<div class="input-group mb-3">
<input type="text" class="form-control border-secondary text-white bg-transparent" placeholder="Enter Email" aria-label="Enter Email" aria-describedby="button-addon2">
<div class="input-group-append">
<button class="btn btn-primary text-white" type="button" id="button-addon2">Send</button>
</div>
</div>
</form>
</div>
</div>
-->
<div class="row pt-5 mt-5 text-center" style="margin-top: 0px !important;">
<div class="col-md-12">
<div class="border-top pt-5">
<p>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
©<script>document.write(new Date().getFullYear());</script> by Cupertino CoderDojo | <a href="https://colorlib.com" target="_blank" >Colorlib</a>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
</p>
</div>
</div>
</div>
</div>
</footer>
<!-- </div> -->
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/jquery-migrate-3.0.1.min.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.stellar.min.js"></script>
<script src="js/jquery.countdown.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/bootstrap-datepicker.min.js"></script>
<script src="js/aos.js"></script>
<script src="js/main.js"></script>
</body>
</html>