-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
195 lines (166 loc) · 4.96 KB
/
index.html
File metadata and controls
195 lines (166 loc) · 4.96 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
<!DOCTYPE html>
<html>
<body>
<header>
<h1>Lorraine Chan</h1>
<h2>Front-end Developer</h2>
<a href="mailto:lchan912@gmail.com">lchan912@gmail.com</a>
<address>San Francisco, California</address>
<hr />
</header>
<main>
<section>
<h2>Career Goals</h2>
<p>
To make an impact. I aspire to better the community and live a life
of learning and meaning.
</p>
<dl>
<dt>Goals: </dt>
<dd>
Meet like-minded individuals who enjoy diving into problems and
exploring technical solutions
</dd>
<dd>
Tackle puzzles and build toys everyday while continuously learning
and absorbing knowledge from people around the world
</dd>
<dd>
Breath life into beautiful web designs and see them live in production
</dd>
</dl>
</section>
<section>
<h2>Skills</h2>
<dl>
<dt>Programming Languages</dt>
<dd>Ruby</dd>
<dd>JavaScript</dd>
<dd>HTML</dd>
<dd>CSS</dd>
</dl>
<dl>
<dt>Databases</dt>
<dd>SQL</dd>
</dl>
<dl>
<dt>Frameworks</dt>
<dd>Ruby on Rails</dd>
<dd>React</dd>
</dl>
<dl>
<dt>Version Control</dt>
<dd>Git</dd>
</dl>
<dl>
<dt>Soft Skills</dt>
<dd>Project Management</dd>
<dd>Product Development Lead</dd>
<dd>IT Security Consulting</dd>
</dl>
</section>
<section>
<h2>Work Experience</h2>
<table>
<thead>
<tr>
<td>Time</td>
<td>Company</td>
<td>Position</td>
<td>Responsibilies</td>
</tr>
</thead>
<tbody>
<tr>
<td>2015 - Present</td>
<td>EdgiLife</td>
<td>Software Engineer</td>
<td>
<ul>
<li>
Develop customer-facing features and internal tools for
e-commerce platform and admin panel
</li>
<li>
Heavily utilized TDD, peer code review, linting tools, and
Git for feature-building and bug-fixes
</li>
<li>
Setup error handling, email infrastructure, image rendering
and storing for green-field applications.
</li>
<li>
Managed, supported, and refactored Rails upgrade and
migration from Rails 3 to Rails 4 codebases.
</li>
<li>
Led product development in a team of 5 backend and
1 frontend engineer.
</li>
<li>
Interviewwed, onboarded, and code reviewed new junior
engineers.
</li>
</ul>
</td>
</tr>
<tr>
<td>2011 - 2015</td>
<td>Senior IT Security Consultant</td>
<td>PricewaterhouseCoopers</td>
<td>
<ul>
<li>
Provided project management oversight and led an
enterprisewide testing workstream worth upwards of
$300,000 for an Active Directory upgrade of a Fortune 10 company
</li>
<li>
Created flow diagrams depicting endtoend processing and
storage of credit card data for a Fortune 50 company
</li>
<li>
Conducted assessments for PCI compliancy,
firewall configurations, and technical security standards
</li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Recognitions</h2>
<ul>
<li>
3x Sponsor Prize Winner(1st place, 2nd place, and 2nd place) -
Integrate 2015 Hackathon
</li>
<li>
Ranked Top 5% for Employee Performance - PricewaterhouseCoopers,
Associates of 2011
</li>
</ul>
</section>
<section>
<h2>Education</h2>
<table>
<thead>
<tr>
<td>Time</td>
<td>School</td>
<td>Degree</td>
</tr>
</thead>
<tbody>
<tr>
<td>2007 - 2011</td>
<td>University of Georgia</td>
<td>B.B.A. Management Information Systems + Finance</td>
</tr>
</tbody>
</table>
</section>
</main>
</body>
</html>