-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
707 lines (653 loc) · 26.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
<!DOCTYPE html>
<!--[if lt IE 8]><html class="no-js ie ie7" lang="en"> <![endif]-->
<!--[if IE 8]><html class="no-js ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 8)|!(IE)]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<!--- Basic Page Needs
================================================== -->
<meta charset="utf-8" />
<title>Michael Cao</title>
<meta name="author" content="Michael Cao" />
<meta
name="description"
content="I am a student studying at Penn State with a passion and interest in information systems and the evolution of technology in the world around us. With a drive to innovate and create, I hope to work with companies to develop and inspire new technologies."
/>
<meta name="theme-color" content="#002366" />
<meta
name="og:image"
content="https://raw.githubusercontent.com/mcao/mikecao.me/master/images/profilepic.jpg"
/>
<meta property="og:image:width" content="200" />
<meta property="og:image:height" content="200" />
<meta name="twitter:url" content="https://michaelcao.tech" />
<meta name="twitter:title" content="Michael Cao" />
<meta
name="twitter:description"
content="I am a student studying at Penn State with a passion and interest in information systems and the evolution of technology in the world around us. With a drive to innovate and create, I hope to work with companies to develop and inspire new technologies."
/>
<meta
name="twitter:image"
content="https://raw.githubusercontent.com/mcao/mikecao.me/master/images/profilepic.jpg"
/>
<!-- Mobile Specific Metas
================================================== -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/default.css" />
<link rel="stylesheet" href="css/layout.css" />
<link rel="stylesheet" href="css/media-queries.css" />
<link rel="stylesheet" href="css/magnific-popup.css" />
<!-- Script
================================================== -->
<script src="js/modernizr.js"></script>
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="favicon.png" />
</head>
<body>
<!-- Header
================================================== -->
<header id="home">
<nav id="nav-wrap">
<a class="mobile-btn" href="#nav-wrap" title="Show navigation"
>Show navigation</a
>
<a class="mobile-btn" href="#" title="Hide navigation"
>Hide navigation</a
>
<ul id="nav" class="nav">
<li class="current"><a class="smoothscroll" href="#home">Home</a></li>
<li><a class="smoothscroll" href="#about">About</a></li>
<li><a class="smoothscroll" href="#resume">Resume</a></li>
<li><a class="smoothscroll" href="#portfolio">Works</a></li>
<li><a class="smoothscroll" href="#testimonials">Testimonials</a></li>
</ul>
<!-- end #nav -->
</nav>
<!-- end #nav-wrap -->
<div class="row banner">
<div class="banner-text">
<h1 class="responsive-headline">I'm Michael Cao.</h1>
<h3>
I'm a student studying
<span>Information Sciences and Technology</span> at
<span>Penn State University</span>, with a focus in
<span>software development</span> and
<span>project management</span> so I can create amazing applications
and programs to better the world around me. Let's start scrolling
and learn more <a class="smoothscroll" href="#about">about me</a>.
</h3>
<hr />
<ul class="social">
<li>
<a href="/MichaelCaoResume.pdf"><i class="fa fa-file-o"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/michaelcao18/"
><i class="fa fa-linkedin"></i
></a>
</li>
<li>
<a href="https://www.github.com/mcao"
><i class="fa fa-github"></i
></a>
</li>
</ul>
</div>
</div>
<p class="scrolldown">
<a class="smoothscroll" href="#about"
><i class="icon-down-circle"></i
></a>
</p>
</header>
<!-- Header End -->
<!-- About Section
================================================== -->
<section id="about">
<div class="columns">
<img class="profile-pic" src="images/profilepic.jpg" alt="" />
</div>
<div class="columns contact-details">
<h2>About Me</h2>
<p class="address">
<span
>I am a junior at Penn State majoring in Information Sciences and
Technology. Since I was a kid, I have had a passion and interest in
computing technology and information systems and their impact on the
world around us. With a drive to innovate and create, I hope to work
to expand and inspire new technologies in the world around us.</span
><br />
</p>
</div>
<div class="download">
<p>
<a href="mailto:hi@michaelcao.tech" class="button"
><i class="fa fa-envelope"></i>hi@michaelcao.tech</a
><br />
<a href="MichaelCaoResume.pdf" class="button"
><i class="fa fa-download"></i>Download My Resume</a
>
</p>
</div>
<!-- end row -->
<!-- end .main-col -->
</section>
<!-- About Section End-->
<!-- Resume Section
================================================== -->
<section id="resume">
<!-- Education
----------------------------------------------- -->
<div class="row education">
<div class="three columns header-col">
<h1><span>Education</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>The Pennyslvania State University</h3>
<p class="info">
B.S. - Information Sciences and Technology<span>•</span>
<em class="date">June 2018 - May 2022</em>
</p>
<!--
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean
commodo ligula eget dolor. Aenean massa. Cum sociis natoque
penatibus et magnis dis parturient montes, nascetur ridiculus
mus. Donec quam felis, ultricies nec, pellentesque eu, pretium
quis, sem. Nulla consequat massa quis enim. Donec pede justo,
fringilla vel, aliquet nec, vulputate eget, arcu. Nullam dictum
felis eu pede mollis pretium.
</p>
-->
<br />
</div>
</div>
<!-- item end -->
</div>
<!-- main-col end -->
</div>
<!-- End Education -->
<!-- Work
----------------------------------------------- -->
<div class="row work">
<div class="three columns header-col">
<h1><span>Work</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>
<a href="https://orgcentral.psu.edu/organization/dscpsu"
>Developer Student Club: Penn State University</a
>
</h3>
<p class="info">
Co-Founder and President <span>•</span>
<em class="date">Jul 2020 - Present</em>
</p>
<p>
As President of Penn State's Developer Student Club, my duties
include:
</p>
<ul>
<li>
- Leading and facilitating all club activities and initiatives
alongside our leadership team
</li>
<li>
- Exploring and building up new initiatives to assist in the
club's growth and development
</li>
<li>
- Serving as the public face of the club to students who may
wish to get involved
</li>
<li>
- Interacting with partners at Google to assist in the
expansion of our initiatives
</li>
<li>
- Cooperating with leaders of various student organizations to
co-host and lead events
</li>
</ul>
</div>
</div>
<!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3><a href="https://hackguild.io">HackGuild</a></h3>
<p class="info">
Executive Director <span>•</span>
<em class="date">May 2020 - Present</em>
</p>
<p>
HackGuild is an up and coming event incubator that aims to make
organizing technology-related events such as hackathons and
workshops accessible to all. Launching in late 2020, we expect
to revolutionize the field of technology event mentorship and
lower the entry barrier to event organization for all.
</p>
</div>
</div>
<!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3><a href="https://hackguild.io">Penn State University</a></h3>
<p class="info">
Resident Assistant <span>•</span>
<em class="date">Aug 2020 - Present</em>
</p>
<p>
As a Resident Assistant at Penn State University, my duties
include:
</p>
<ul>
<li>
- Ensuring that residents on my floor have a smooth and
comfortable transition to college,
</li>
<li>
- Facilitating community builders and events to build a sense
of community and unity,
</li>
<li>
- Assisting underclassmen students through providing resources
and guidance where needed,
</li>
<li>
- Providing academic and personal assistance to residents to
assist in their personal growth.
</li>
</ul>
<p class="info">
Commons Desk Student Manager<span>•</span>
<em class="date">Aug 2020 - Present</em>
</p>
<p>
As a Commons Desk Manager at Penn State Housing and Food
Services, my duties include:
</p>
<ul>
<li>
- Facilitating the smooth and efficient processing of mail and
packages for university students,
</li>
<li>
- Assisting students with the issues they face throughout the
process of living on campus,
</li>
<li>
- Supervising and training desk clerks and ensuring they
complete tasks assigned to them,
</li>
<li>
- Completing rounds around the desks to ensure all desks are
operating at full capacity, and
</li>
<li>
- Ensuring outstanding customer service with under 10 minute
turnarounds for customers at all times.
</li>
</ul>
</div>
</div>
<!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>
<a href="http://pike.psu.edu/index.html"
>PIKE (PSU Information, Knowledge, and wEb) Research Lab</a
>
</h3>
<p class="info">
Undergraduate Research Assistant <span>•</span>
<em class="date">May 2019 - Aug 2019</em>
</p>
<p>
Participated in a REU (Research Experience for Undergraduates)
in the Summer of 2019 with the goal of assisting in the research
and development of Sysfake, a system intended to accurately
investigate, analyze, and detect fake news articles.
</p>
</div>
</div>
<!-- item end -->
</div>
<!-- main-col end -->
</div>
<!-- End Work -->
<!-- Skills
----------------------------------------------- -->
<div class="row skill">
<div class="three columns header-col">
<h1><span>Skills</span></h1>
</div>
<div class="nine columns main-col">
<p>
Throughout my high school and college undergraduate educations, I
have had the opportunity to develop my skills in and learn more
about many different computer languages and technologies.
</p>
<div class="bars">
<ul class="skills">
<li><span class="bar-expand nodejs"></span><em>Node.JS</em></li>
<li>
<span class="bar-expand javascript"></span><em>Javascript</em>
</li>
<li><span class="bar-expand java"></span><em>Java</em></li>
<li><span class="bar-expand python"></span><em>Python</em></li>
<li><span class="bar-expand sql"></span><em>SQL</em></li>
<li>
<span class="bar-expand nosql"></span
><em>NoSQL - MongoDB / RethinkDB</em>
</li>
</ul>
</div>
<!-- end skill-bars -->
</div>
<!-- main-col end -->
</div>
<!-- End skills -->
</section>
<!-- Resume Section End-->
<!-- Portfolio Section
================================================== -->
<section id="portfolio">
<div class="row">
<div class="twelve columns collapsed">
<h1>Check out some of my work!</h1>
<!-- portfolio-wrapper -->
<div id="portfolio-wrapper" class="bgrid-quarters s-bgrid-thirds cf">
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-01" title="">
<img alt="" src="images/portfolio/hax.jpg" />
<div class="overlay">
<div class="portfolio-item-meta">
<h5>HAX Organization</h5>
<p>Computer Science Education</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div>
<!-- item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-02" title="">
<img alt="" src="images/portfolio/vertex.png" />
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Vertex Labs</h5>
<p>Development Company</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div>
<!-- item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-03" title="">
<img alt="" src="images/portfolio/hackpsu.jpg" />
<div class="overlay">
<div class="portfolio-item-meta">
<h5>HackPSU</h5>
<p>Collegiate Hackathon</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div>
<!-- item end -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-04" title="">
<img alt="" src="images/portfolio/acm.jpg" />
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Penn State ACM</h5>
<p>Collegiate Association</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
</div>
<!-- item end -->
</div>
<!-- portfolio-wrapper end -->
</div>
<!-- twelve columns end -->
<!-- Modal Popup
--------------------------------------------------------------- -->
<div id="modal-01" class="popup-modal mfp-hide">
<img
class="scale-with-grid"
src="images/portfolio/modals/m-hax.png"
alt=""
/>
<div class="description-box">
<h4>HAX</h4>
<p>
HAX is a nonprofit organization whose purpose is to expand and
improve computer science education for women and underprivileged
minorities. As the Assistant Executive Director, my
responsibilities include ensuring that the organization's
operations and events run well.
</p>
<span class="categories"
><i class="fa fa-tag"></i>Computer Science, Advocacy</span
>
</div>
<div class="link-box">
<a href="http://www.haxorg.io">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div>
<!-- modal-01 End -->
<div id="modal-02" class="popup-modal mfp-hide">
<img
class="scale-with-grid"
src="images/portfolio/modals/m-vertex.png"
alt=""
/>
<div class="description-box">
<h4>Vertex Development</h4>
<p>
Vertex Development is an innovative, forward-thinking web
development company that has completed web applications and
websites serving well over 10,000 people. Specializing in
TypeScript and Node.JS, the company employs over 6 developers and
is completing new projects and commission projects frequently,
while also honing their skills in the latest and greatest
frameworks and programming languages.
</p>
<span class="categories"
><i class="fa fa-tag"></i>Programming, Web Development</span
>
</div>
<div class="link-box">
<a href="https://discord.gg/8QebTbk">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div>
<!-- modal-02 End -->
<div id="modal-03" class="popup-modal mfp-hide">
<img
class="scale-with-grid"
src="images/portfolio/modals/m-hackpsu.jpg"
alt=""
/>
<div class="description-box">
<h4>HackPSU</h4>
<p>
I am a member of HackPSU's Technology Team, which is responsible
for designing, creating, and maintaining the extensive technology
stack that runs HackPSU's event, registration, participant
tracking, and website. With over 1000 participants yearly, the
hackathon's stack must be created to be both scalable and
versatile to a large-scale hackathon, as well as open sourced for
the use of other similar events.
</p>
<span class="categories"
><i class="fa fa-tag"></i>Hackathon, Computer Science</span
>
</div>
<div class="link-box">
<a href="http://hackpsu.org">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div>
<!-- modal-03 End -->
<div id="modal-04" class="popup-modal mfp-hide">
<img
class="scale-with-grid"
src="images/portfolio/modals/m-acm.gif"
alt=""
/>
<div class="description-box">
<h4>Penn State ACM</h4>
<p>
As the Corporate Relations Officer of the Penn State ACM, I am
responsible for interfacing and liasing with various large
companies that have an interest in recruiting Penn State's top
computer science students. By making connections while doing so, I
am able to hone and improve my diplomacy and business skills as
well as make valuable connections for my future careers.
</p>
<span class="categories"
><i class="fa fa-tag"></i>Computer Science, Associations</span
>
</div>
<div class="link-box">
<a href="http://www.acm.psu.edu">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div>
<!-- modal-04 End -->
</div>
<!-- row End -->
</section>
<!-- Portfolio Section End-->
<!-- Testimonials Section
================================================== -->
<section id="testimonials">
<div class="text-container">
<div class="row">
<div class="two columns header-col">
<h1><span>Client Testimonials</span></h1>
</div>
<div class="ten columns flex-container">
<div class="flexslider">
<ul class="slides">
<li>
<blockquote>
<p>
Michael Cao has been both my friend and mentor for the
past several years. Not only has he spent countless hours
helping me learn Javascript, but he's also introduced me
to several of my current hobbies, including coding! I've
been able to continually rely on his responsibility and
technical expertise to further my knowledge, and I would
not have discovered my interest in computer science
without his guidance.
</p>
<cite>Jared Lyon</cite>
</blockquote>
</li>
<!-- slide ends -->
<li>
<blockquote>
<p>
As the Assistant Executive Director of HAX and a close
friend and mentor, Michael has supported me in both my
professional and personal endeavors. He has helped me
build HAX since day one, whether that be through screening
executive team applications, doing outreach and 501(c)(3)
paperwork, or leading onboarding meetings for potential
hackathon organizers. I've learned a lot from him
regarding both technical and soft skills, like various
aspects of programming and becoming a thoughtful,
responsible director. With his help, I've been able to
launch HAX and grow as an individual, leader, and aspiring
computer scientist.
</p>
<cite>Justina Chua</cite>
</blockquote>
</li>
<!-- slide ends -->
</ul>
</div>
<!-- div.flexslider ends -->
</div>
<!-- div.flex-container ends -->
</div>
<!-- row ends -->
</div>
<!-- text-container ends -->
</section>
<!-- Testimonials Section End-->
<!-- footer
================================================== -->
<footer>
<div class="row">
<div class="twelve columns">
<ul class="social-links">
<li>
<a href="/MichaelCaoResume.pdf"><i class="fa fa-file-o"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/michaelcao18/"
><i class="fa fa-linkedin"></i
></a>
</li>
<li>
<a href="https://www.github.com/mcao"
><i class="fa fa-github"></i
></a>
</li>
</ul>
<ul class="copyright">
<li>© Copyright 2019 Michael Cao</li>
</ul>
</div>
<div id="go-top">
<a class="smoothscroll" title="Back to Top" href="#home"
><i class="icon-up-open"></i
></a>
</div>
</div>
</footer>
<!-- Footer End-->
<!-- Java Script
================================================== -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
window.jQuery ||
document.write('<script src="js/jquery-1.10.2.min.js"><\/script>');
</script>
<script
type="text/javascript"
src="js/jquery-migrate-1.2.1.min.js"
></script>
<script src="js/jquery.flexslider.js"></script>
<script src="js/waypoints.js"></script>
<script src="js/jquery.fittext.js"></script>
<script src="js/magnific-popup.js"></script>
<script src="js/init.js"></script>
</body>
</html>