-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
118 lines (118 loc) · 5.39 KB
/
portfolio.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
<!DOCTYPE HTML>
<html>
<head>
<link rel="icon" href="resources/profile.jpg">
<link rel="stylesheet" href="stylesheet.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="portfolioss.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
window.onload = function(){
$(".menu").load("menu.txt");
}
</script>
</head>
<body>
<div class="menu"></div>
<div class="bodyText">
<div class="header">
Portfolio
</div>
<div class="projects">
<div class="project">
<div class="projectHeading" id="cyberbrain">
Cyberbrain
</div>
<img src="resources/cyberbrain.png" alt="Cyberbrain Picture" title="Cyberbrain" class="projectPicture">
<div class="projectInfo">
<ul>
<li>
Collaborator of open-source project on GitHub
</li>
<li>
Python utility to view trace graph at every step with one execution (no need to debug one step at a time)
</li>
<li>
Implemented in <b>Python</b> using bytecode analysis and viewable as a VSCode extension
</li>
<li>
Take a look <a href="https://github.com/laike9m/Cyberbrain">here</a>
</li>
</ul>
</div>
</div>
<div class="project">
<div class="projectHeading" id="autosubpl">
Auto Subscription Playlist
</div>
<img src="resources/autoSubPlaylist.png" alt="Playlist Picture" title="Auto Subscription Playlist" class="projectPicture">
<div class="projectInfo">
<ul>
<li>
<b>Google Apps Script</b> that takes a list of channels and adds all recently posted videos to a playlist
</li>
<li>
Main collaborator of open-source project on GitHub. Resolved 40 issues and contributed to 28 pull requests
</li>
<li>
Looking for more colaborators!
</li>
<li>
Come see for yourself <a href="https://github.com/Elijas/auto-youtube-subscription-playlist-2">here</a>
</li>
</ul>
</div>
</div>
<div class="project">
<div class="projectHeading" id="violegacy">
VioLegacy
</div>
<img src="resources/violegacy.png" alt="VioLegacy Picture" title="VioLegacy" class="projectPicture">
<div class="projectInfo">
<ul>
<li>
Built a website to help NYU juniors connect with alumni to receive referrals for internships
</li>
<li>
Created and managed Firebase database and Cloud Functions
</li>
<li>
Created test scripts and automated ci/cd pipelines using Node.js and GitHub Actions
</li>
<li>
Check it out <a href="https://violegacy.org/">here</a>
</li>
</ul>
</div>
</div>
<div class="project">
<div class="projectHeading" id="edmYT">
EDM Promotion YouTube Channel
</div>
<img src="resources/musicChannel.png" alt="Music Channel Picture" title="Music Channel" class="projectPicture">
<div class="projectInfo">
<ul>
<li>
Started in December 2016
</li>
<li>
Find songs and upload videos daily at <a href="https://www.youtube.com/channel/UCbP17YizgHq98-Ti0-KPESg">tiny.cc/musicspies</a>
</li>
<li>
Developed <b>After Effects script</b> to expedite video-making process
</li>
</ul>
</div>
</div>
</div>
</div>
<script>
function offsetAnchor() {
if(location.hash.length !== 0) {
window.scrollTo(window.scrollX, window.scrollY - 50);
}
}
window.setTimeout(offsetAnchor, 1);
</script>
</body>
</html>