-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
85 lines (78 loc) · 3.98 KB
/
resume.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
<!DOCTYPE html>
<html>
<head>
<title>MIOS - RESUME</title>
<!-- Need for media queries to work, no idea why though -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/main.css" rel="stylesheet">
<link href="css/resume.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Nanum+Pen+Script&display=swap" rel="stylesheet">
</head>
<body>
<ul class="section header">
<li><a href="code.html"><img src="images/app.png" class="nav-icon"> <br> Code</a></li>
<li><a href="creative.html"><img src="images/creative.png" class="nav-icon"> <br> Creative</a></li>
<div id="logo"><a href="index.html" id="logo-a">MIOS</a></div>
<li><a href="store.html"><img src="images/store.png" class="nav-icon"> <br> Store</a></li>
<li><a href="resume.html"><img src="images/resume.png" class="nav-icon"> <br> Resume</a></li>
</div>
</ul>
<div id="resume">
<a href="docs/Lim Miao Ling_Resume.pdf" target="_blank"><button>Download the one page resume</button></a>
<div id="experience">
<h2>Experience</h2>
<div>
<p>Dec 2018 - Present</p>
<h3>Software Engineer - FlexTrade Systems Pte Ltd</h3>
</div>
<div>
<p>May 2018 - Aug 2018</p>
<h3>Summer Technology Analyst - Citi</h3>
<p>Developed a plugin for the PyCharm IDE to visualise data from the debugger in a Tree and JUNG graph.
Implemented the backend with IntelliJ OpenAPI in Java and the frontend with Java Swing. Fixed bugs
in the Python codebase.</p>
</div>
<div>
<p>May 2017 - Jul 2017</p>
<h3>Software Engineering Intern - NUS-OSS</h3>
<p>Using Java 8, fixed issues and bugs, discussed architectural changes, updated documentation and did
code reviews for SE-EDU. Wrote unit tests to maintain test coverage at over 90%. The program
AddressBook-Level4 was used to teach software engineering concepts and practices in NUS.</p>
</div>
<div>
<p>Jan 2017 - Apr 2018</p>
<h3>Teaching Assistant - National University of Singapore</h3>
<p>Conducted weekly tutorial sessions and graded coding assignments for introductory programming
modules. Received excellent feedback (4.7/5) from students and won a teaching award.</p>
</div>
</div>
<div id="education">
<h2>Education</h2>
<div>
<p>2015 - 2018</p>
<h3>Bachelor's in Computer Science - NUS School of Computing</h3>
<p>Coursework includes: Algorithms & Data Structures , Software Engineering, Interaction Design for
Virtual and Augmented Reality, Machine Learning, Computer Graphics, 3D Modelling & Animation</p>
</div>
</div>
<div id="skills">
<h2>Skills</h2>
<p>Java, JUnit, HTML, CSS (3 years), C#, JavaScript (2 years), Bash, Python, C++ (1 year)</p>
<p>Adobe Premiere Pro (4 years), Adobe Photoshop, Adobe Illustrator, Adobe After Effects, Unity, Maya (1 year)</p>
<p>UI/UX, Videography & Video Editing, Game Design, Digital Art, Illustration</p>
</div>
<div id="others">
<h2>Others</h2>
<div>
<p>Technical Advisor of NUS Radio Pulze</p>
<p>ABRSM Grade 8 Piano</p>
</div>
</div>
</div>
<ul class="footer">
<li><a href="https://github.com/limmlingg"><img src="images/github icon.png"><br>GitHub</a></li>
<li><a href="mailto:[email protected]"><img src="images/email icon.png"><br>Email</a></li>
<li><a href="https://www.linkedin.com/in/miaoling/"><img src="images/linkedin icon.png"><br>LinkedIn</a></li>
</ul>
</body>
</html>