-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
80 lines (70 loc) · 2.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Simon Tian's Resume</title>
<link rel="stylesheet" href="styles/normalize.css" />
<link rel="stylesheet" href="styles/main.css" />
<link rel="icon" href="images/favicon.png" />
</head>
<body id="resume">
<header>
<h1>Simon Tian</h1>
</header>
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
</ul>
</nav>
<main class="resume">
<h1>Resume</h1>
<h2>Objective</h2>
<p>
Apply to become a software developer for Epic Systems Corporation and contribute to writing software for its
health system.
</p>
<h2>Education</h2>
<h3>Rose-Hulman Institute of Technology<p>- Terre Haute, IN</p>
</h3>
<p>
Bachelor of Science, Computer Science
</p>
<p>
Minor in Japanese
</p>
<h3>GPA: <p>3.66/4.0</p></h3>
<h3>Relevant Courses:</h3>
<p>
Operating Systems, Database Systems, Data Structure & Algorithm Analysis, Object-Oriented Software
Development, Computer Architecture, Web Programming.
</p>
<h2>Skills</h2>
<h3>Web Development: <p>HTML, JavaScript, Bootstrap, CSS</p></h3>
<h3>Web Services: <p>Firebase</p></h3>
<h3>Programming: <p>C#, Python, Java, SQL</p></h3>
<h3>Microsoft Office: <p>Proficient in Word, PowerPoint, Excel, and Outlook</p></h3>
<h3>Languages: <p>English, Simplified Chinese, Japanese</p></h3>
<h2>Experience</h2>
<h3>Computer Science Dept. at Rose-Hulman<p>– Terre Haute, IN Sep. – Nov. 2019</p></h3>
<p>Team Project</p>
<li>Designed and implemented an arcade game using Java</li>
<li>Learned how to let game respond by receiving keyboard actions and how to deal with the overlap of multiple frames</li>
<li>Assisted to create and insert hand-drawn character patterns and background</li>
<li>Deployed game points system and reward levels</li>
<h3>Computer Science Dept. at Rose-Hulman<p>– Terre Haute, IN Sep. – Mar. 2021</p></h3>
<p>Team Project</p>
<li>Designed and implemented a software using SQL and Java</li>
<li>Learned how to build successful ER-diagram and related schema</li>
<li>Assisted to manage database by connecting front end to back end</li>
<li>Deployed an account system and established an interactive and concise user interface.</li>
</main>
<footer>
You can email me at tianr@rose-hulman.edu
</footer>
<script src="scripts/main.js"></script>
</body>
</html>