-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
150 lines (136 loc) · 4.28 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto:ital,wght@0,400;0,700;0,900;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="Style/general.css">
<link rel="stylesheet" href="Style/navbar.css">
<link rel="stylesheet" href="Style/resume.css">
<title>Resume</title>
</head>
<body>
<nav class="navbar">
<a class="navbar-link top" href="index.html">
<img src="Img/side-Icons/home.png" alt="Home-logo">
<div>Home</div>
</a>
<a class="navbar-link" id="current">
<img src="Img/side-Icons/Resume.png" alt="Resume-logo">
<div>Resume</div>
</a>
<a class="navbar-link" href="projects.html">
<img src="Img/side-Icons/project.png" alt="Projects-logo">
<div>Projects</div>
</a>
<a class="navbar-link" href="contacts.html">
<img src="Img/side-Icons/contact.png" alt="Contacts-logo">
<div>Contacts</div>
</a>
<a class="navbar-link" href="social.html">
<img src="Img/side-Icons/Social.png" alt="Social-logo">
<div>Social</div>
</a>
<a class="navbar-link bottom" href="admin.html">
<img src="Img/side-Icons/admin.png" alt="Admin-logo">
<div>Project</div>
</a>
</nav>
<header class="title-container">
<div class="title">Resume</div>
<hr>
</header>
<main>
<div class="subtitle-container">
<div class="subtitle">Education and Qualification(s)</div>
<hr>
</div>
<dl>
<dt>
Bachelor of Science – Computer Science Co-op –
Concordia Univerity 2022-2023 (Expected)
</dt>
<dt>
Bachelor of Engineering – Computer Engineering Co-op
– Concordia Univerity 2021-2022
</dt>
<dd>- Member of the Institute for Co-operative Education</dd>
<dd>- CGPA 3.80/4.30</dd>
<dd>- Transfered to Computer Science</dd>
<dd>- Relevant Courses: Programming methodology I & II, OBJ-Oriented programming I,
Data Structures and Algorithms (will take 2nd half of summer 2022), Discrete
Math, App Advance Calculus, App Ordinary Diff. Equations
</dd>
<dt>
Pure and applied science – Tav college 2019-2021
</dt>
<dd>- Calculus II, programming, linear algebra, waves and optics,
electromagnetism, General Biology, Chemistry of solution.
</dd>
</dl>
<div class="subtitle-container">
<div class="subtitle">Professional and technical skills</div>
<hr>
</div>
<dl>
<dt>Computer programming languages</dt>
<dd>- C/C++</dd>
<dd>- Java</dd>
<dd>- Python
<dd>- Prolog
<dd>- SQL
<dt>Operating systems</dt>
<dd>- Windows</dd>
<dd>- Ubuntu linux</dd>
<dt>Computer Vision</dt>
<dd>- MIL library</dd>
<dd>- Yolo library</dd>
<dt>Other</dt>
<dd>- Html/Css</dd>
<dd>- Visual Studio</dd>
<dd>- Anaconda</dd>
</dl>
<div class="subtitle-container">
<div class="subtitle">Awards and Recognition</div>
<hr>
</div>
<ol>
<li>The Royal Conservatory of Music level 7 Piano With first class Honours March 2017</li>
<li>TAV College Dean's list (2020, 2021)</li>
</ol>
<div class="subtitle-container">
<div class="subtitle">Work Experience</div>
<hr>
</div>
<ol>
<li>
Computer vision software developer Intern – Zebra Technologies/Matrox Imaging
<ul>
<li>Contribute to the Classification Team which designs and maintain the deep learning module</li>
<li>Collaborated in a Jira, confluence and SVN environment</li>
<li>Developed Quality Assurance Software for the Matrox Imaging library (MIL)</li>
<li>Designed UML diagrams to build object-oriented programs</li>
</ul>
</li>
<li>
Line Worker - Distribution Department – Aux Vivres Cuisine
<ul>
<li>
Collaborate with the administration team to fulfill orders
of around 500 salad bowls and wraps per day. Moreover,
cookies, pizzas, and brownies where packaged and quality
checked for shipping
</li>
<li>
Special attention to food quality, cleanliness, and safety around machines
</li>
</ul>
</li>
</ol>
</main>
<button>Download Full CV</button>
<div class="bottom-line"></div>
</body>
</html>