-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
301 lines (249 loc) · 11.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
<!DOCTYPE html>
<html>
<head>
<!-- Load the JS file -->
<script src="https://cdn.jsdelivr.net/npm/@gitgraph/js"></script>
</head>
<body>
<!-- DOM element in which we'll mount our graph -->
<div id="graph-container"></div>
<!-- Use the `GitgraphJS` global variable to create your graph -->
<script>
// Good Documentation: https://github.com/nicoespeon/gitgraph.js/blob/master/packages/gitgraph-js/MIGRATE_FROM_GITGRAPH.JS.md
// Get the graph container HTML element.
const graphContainer = document.getElementById("graph-container");
// Instantiate the graph.
let gitgraph = GitgraphJS.createGitgraph(graphContainer, {
orientation: 'vertical-reverse',
template: GitgraphJS.templateExtend("metro", {
branch:{
spacing:40
},
commit: {
message: {
displayAuthor: false,
displayHash: false
}
}
})
}
);
let master, coop, career, career2, skills1, skills2
// Simulate git commands with Gitgraph API.
master = gitgraph.branch("Most Recent Professional Development");
master.commit({subject:"Started Studying Chemical Engineering at Purdue University"}).tag("Professional Development Branch");
master.commit("Finished Freshman Year (Year 1)");
coop = master.branch('College Internships Complete');
coop.commit("Process Development Engineer (Polymer Resin Pilot Plant) - Eastman Chemical Co-op in Chicago, IL").tag("College Internship Branch");
skills1 = coop.branch("Data Collection and Statistical Design of Experiments");
coop.commit("Process Improvement Engineer (Polymer Resin Production) - Eastman Chemical Co-op in Chicago, IL");
skills1.commit("Visualizations and Dashboards");
master.commit("Finished Second Year of College");
coop.commit("Process Improvement Engineer (Ketones and Diketene Derivatives) - Eastman Chemical Co-op in Kingsport, TN");
skills1.commit("Six Sigma, Data Mining, and Process Alarms")
master.commit("Finished Third Year of College");
coop.commit("Process Improvement Engineer (PET)- Eastman Chemical Co-op in Kingsport, TN");
coop.commit("Process Design Engineering - Eastman Chemical Co-op in Kingsport, TN");
skills1.commit("Simulations");
master.commit("Finished Fourth Year of College");
coop.commit("Chicago Patent Lawyer Internship");
coop.commit("Operations Engineer - National Corn-to-Ethanol Research Center Intern in Edwardsville, IL");
skills1.commit("Standard Operating Procedures and Client Scoping")
master.merge(skills1)
master.merge(coop)
master.commit("Graduated from Purdue University").tag("Completed Bachelors Degree: Chemical Engineering");
career = master.branch({
name: "Final Chemical Systems Role",
style: {
color: "orange",
label: {
color: "orange",
strokeColor: "orange"
}
},
commitDefaultOptions: {
style: {
message: {
color: "orange"
},
dot: {
color: "orange"
}
}
}
}
);
career.commit({subject:"Operations Engineeer (Polyurethanes) - BASF Corp (Geismar, LA)"}).tag({
name: "Engineering Career Begins: Chemical Industry",
style: {
bgColor: "orange"
},
});
career.commit("Promoted to Operations Engineer - Start-up Activities - BASF");
skills2 = career.branch("Test")
skills2.commit("Process Schedules and Continuous Simulations")
career.commit("Promoted to Operations Engineer - Lead of Start-up Activities - BASF");
skills2.commit("Programming and Design of Logic")
career.commit("Promoted to Operations Engineer - Start-up Activities Consultant - BASF");
career.commit("Systems Engineer - Control System Development and Integration - Innovative Controls (Knoxville, TN)");
skills2.commit("Consultant, Process Design, and Complex UI Design");
career.merge(skills2)
master.merge({
branch: career,
commitOptions: {
subject: "Completed Chemicals Industry Experience and Returning to Academia"
}
});
master.commit({
subject:"Started Studying Education Theory at University of Tennessee",
onClick(commit){
alert('Hello')
}
});
startup = master.branch({
name: "EdTech Interests",
style: {
color: "purple",
label: {
color: "purple",
strokeColor: "purple"
}
},
commitDefaultOptions: {
style: {
message: {
color: "purple"
},
dot: {
color: "purple"
}
}
}
}
);
startup.commit("Research EdTech Companies: Found Limited US Opportunities for Groundbreaking Concepts")
career2 = master.branch({
name: "Final Higher Education Role",
style: {
color: "blue",
label: {
color: "blue",
strokeColor: "blue"
}
},
commitDefaultOptions: {
style: {
message: {
color: "blue"
},
dot: {
color: "blue"
}
}
}
}
);
startup.commit("Performed K-12 Learning Theory Research - Realized Limited Research Being Applied in Real World Scenarios")
master.commit("Graduated from University of Tennessee").tag("Completed Master's Degree: Education Theory & Practice");
startup.commit("Reformed Interests Upon Determining EdTech is a High Risk, Low Success Market Requiring Significant Funding")
startup.commit("Turned Career Interests into Personal Hobby That Focuses on Data Science Technology Opportunities")
career2.commit("Education Coordinator - University of Tennessee, Deptartment of Electrical Engineering (Power Engineering)");
career2.commit("Senior Program Administrator - Northwestern University, Chemistry of Life Processes Institute");
master.commit("Started Post-Graduate Data and Visualization Program at Northwestern University");
master.commit("Issued by Northwestern University").tag("Completed Data Science and Visualization Certificate");
career3 = startup.branch({
name: "Most Recent EdTech Role",
style: {
color: "purple",
label: {
color: "purple",
strokeColor: "purple"
}
},
commitDefaultOptions: {
style: {
message: {
color: "purple"
},
dot: {
color: "purple"
}
}
}
}
);
career3.commit("Started Instructional Specialist Role - Data and Visualization Program - EdX")
career2.commit("Primary Role Shifted to IT Support and Building Management (during Pandemic) - Northwestern University, Chemistry of Life Processes Institute");
master.merge({
branch: career2,
commitOptions: {
subject: "Left Higher Education Role to Focus on Data Career and Personal Obligations"
}
});
career3.commit("Lead Instructional Specialist - Data and Visualization Program - EdX")
career3.commit("Substitute Instructor - Data and Visualization Program - EdX")
career4 = master.branch({
name: "Personal Obligations",
style: {
color: "aqua",
label: {
color: "aqua",
strokeColor: "aqua"
}
},
commitDefaultOptions: {
style: {
message: {
color: "aqua"
},
dot: {
color: "aqua"
}
}
}
}
);
career4.commit('Personal Obligations (Family Needs, Orthopedic Treatment, Short-term Project Consultant)')
career4.commit("Obligations Allocated am Insignificant Amount of Time (September 2022)")
master.commit("Created Data Science Curriculum and Portfolio")
career5 = master.branch({
name: "Digital Systems Experience",
style: {
color: "green",
label: {
color: "green",
strokeColor: "green"
}
},
commitDefaultOptions: {
style: {
message: {
color: "green"
},
dot: {
color: "green"
}
}
}
}
);
career5.commit("Operations Analyst Engineer II - Systems Monitoring, External Clients - ExpediaGroup")
master.merge({
branch: career5,
commitOptions: {
subject: "Left Expedia After Role, Scheduling, and Future Oportunities Did Not Match Expectations Set During Interviews"
}
});
master.commit("Independent Data Curriculum Development")
career3.commit("Instructional Specialist Mentor")
career4.commit("Projects Complete and Family Obligations Return to Pre-Pandemic Status (July 2023)")
master.merge({
branch: career4,
commitOptions: {
subject: "Developing Skills in Advanced Applications of Machine Learning with Emphasis on Established Industries"
}
});
startup.commit("Personal Hobby")
</script>
</body>
</html>