-
Notifications
You must be signed in to change notification settings - Fork 0
/
resumepage.html
77 lines (74 loc) · 3.3 KB
/
resumepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume - Reuben Joseph's Portfolio</title>
<link rel="stylesheet" href="rp.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="homepage.html" id="nav-homepage" class="nav-link">Homepage</a></li>
<li><a href="portfoliopage.html" id="nav-portfolio" class="nav-link">Portfolio</a></li>
<li><a href="resumepage.html" id="nav-resume" class="nav-link">Resume</a></li>
<li><a href="contactpage.html" id="nav-contact" class="nav-link">Contact</a></li>
</ul>
</nav>
</header>
<div class="resume-container">
<div class="section summary">
<h2>Summary</h2>
<p>
As a current student pursuing a degree in software engineering at The University of Queensland, I am
passionate about developing innovative and efficient software solutions. I possess a strong aptitude for
learning and applying new technologies quickly, which enables me to contribute to projects in a timely
and effective manner. With my strong academic background and enthusiasm for software engineering, I am
confident that I can thrive in any team and contribute to the success of any project.
</p>
</div>
<div class="section experience">
<h2>Experience</h2>
<h3>Intern at Robust Results Pvt Ltd</h3>
<p>
<strong>July 2021 – August 2021</strong><br>
An IIT Kanpur incubated company. Devised a project related to stock prediction and engaged in intensive
intern training.
</p>
<ul>
<li>Received an internship certificate, Project certificate, and a certificate of completion.</li>
</ul>
<h3>Intern at JP Morgan and Chase</h3>
<p>
<strong>December 2020 – January 2021</strong><br>
Interface with a stock price data feed. Used JPMorgan Chase frameworks and tools to display data
visually for traders.
</p>
</div>
<div class="section education">
<h2>Education</h2>
<p>
<strong>Bachelors in Information Technology</strong><br>
The University of Queensland<br>
Graduation 2024
</p>
</div>
<div class="section skills">
<h2>Skills</h2>
<ul>
<li>Programming languages: C++, Java, Python, JavaScript, HTML, CSS</li>
<li>Problem solving</li>
<li>GitHub VCS (<a href="https://github.com/ReubenJOJO"
target="_blank">https://github.com/ReubenJOJO</a>)</li>
<li>Command line</li>
<li>SQL</li>
<li>Data structures & algorithms</li>
</ul>
</div>
</div>
<a href="contactpage.html" class="next-page-arrow">→</a>
<a href="portfoliopage.html" class="previous-page-arrow">←</a>
<script src="script.js"></script>
</body>
</html>