-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
151 lines (139 loc) · 5.94 KB
/
about.html
File metadata and controls
151 lines (139 loc) · 5.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" name = "Generic Project" content = "width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="CSS/masterStyleSheet.css">
<link rel="stylesheet" type="text/css" href="CSS/responsive_header.css">
<link rel="stylesheet" type="text/css" href="CSS/gallery.css">
<link rel="stylesheet" type="text/css" href="CSS/about.css">
<script src="JS/image_gallery.js" type="text/javascript"></script>
<title>Aiden Stevenson Bradwell</title>
</head>
<div class="header">
<nav class="navbar">
<a href="index.html" class="nav-logo">Aiden Stevenson Bradwell</a>
<ul class="nav-menu">
<li class="nav-item">
<a href="about.html" class="nav-link">About Me</a>
</li>
<li class="nav-item">
<a href="resumes.html" class="nav-link">Resumes</a>
</li>
<li class="nav-item">
<a href="index.html#experience" class="nav-link">Work Experience</a>
</li>
<li class="nav-item">
<a href="index.html#education" class="nav-link">Education</a>
</li>
<li class="nav-item">
<a href="index.html#projects" class="nav-link">Projects</a>
</li>
<li class="nav-item">
<a href="index.html#articles" class="nav-link">Articles</a>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
<script>
const hamburger = document.querySelector(".hamburger");
const navMenu = document.querySelector(".nav-menu");
hamburger.addEventListener("click", mobileMenu);
function mobileMenu() {
hamburger.classList.toggle("active");
navMenu.classList.toggle("active");
}
const navLink = document.querySelectorAll(".nav-link");
navLink.forEach(n => n.addEventListener("click", closeMenu));
function closeMenu() {
hamburger.classList.remove("active");
navMenu.classList.remove("active");
}
</script>
</div>
<body >
<br><br>
<div class="main_layout">
<div class="about_pic_div"> <img class="about_pic" src="Resources/Images/profile.png" alt="Image located here"/></div>
<div class="name_div">
<h1>Aiden Stevenson Bradwell</h1>
</div>
<div class="degree_div" >
<h4>Bsc Major in Computer Science, Major in Psychology</h4>
<p><i>University of Ottawa, Ottawa, Ontario</i><br>September 2018 - December 2022</p>
</div>
<div class="interst_div">
<h2>Interests:</h2>
<t>
<tr>
<td>
<ul>
<li>Neural Networks</li>
<li>Simulation</li>
<li>Embedded Programming</li>
<li>Team Management</li>
</ul>
</td>
<td>
<ul>
<li>Project Planning//Management</li>
<li>Image Processing</li>
<li>Environmental Studies</li>
<li>Music</li>
</ul>
</td>
</tr>
</t>
</div>
<div class="about_div">
<h2>About Myself:</h2>
<p>Currently studying in an Honors BSc Major in Computer & Major in Psychology at the University of Ottawa, in Ottawa, Ontario, Canada.
<br>
Seeking employment both during Winter 2020 (Part-time) and in the Summer of 2022 (Full-time). <br>Mobility, remote, international, or local work is of interest.<br>
<br><br>
<b>Fields of Experience:</b><br>
<ul>
<li>Computer Vision (OpenCV, Eye-Tracking, Gaze-Estimation, Post-Processing, Edge detection)</li>
<li>Automated Testing (RobotFramework, Customized Automated Testing Platform)</li>
<li>Platform Development (Test-system development for Microchip inc.)</li>
<li>Public Speaking (Representing uOttawa @ university fairs, HS Valedictorian, Trade shows, Project presentation)</li>
<li>Entrepreneurship (Previous Founder of Sole Proprietorship "Bradwell Applications")</li>
</ul>
<br><br>
<b>Fields of Interest:</b><br>
In the modern climate I have found myself extremely interested in environmental protection. With a marginal timeframe, action and innovation is needed more than ever.<br>
<ul>
<li>Extremely interested in Neural networks</li>
<li>Extremely interested in Environmental protection</li>
<li>Extremely interested in Private sector Computer Science</li>
</ul>
<br>
<br>
<b>Known Languages:</b><br>
TCL, OCaml, Racket, Scheme, Prolog, GO, Java, HTML, CSS, PHP, JavaScript, Python 3, Python 2, RobotFramework syntax, C++, C (familiar), ruby (familiar)<br>
<br>
<br>
For employement opportunities or collaboration, feel free to call or email. I look forward to hearing from you!<br>
</p>
</div>
<div class="contact_div">
<h2>Contact Information:</h2>
<p><b>Phone:</b> (226) 345-4191</p>
<p><b>Email:</b> Aidenbradwell@gmail.com</p>
<p><b>School Email:</b> abrad060@uottawa.ca</p>
<p><b>City of Origin:</b> Windsor, Ontario, Canada</p>
<p><b>City of Residence:</b> Ottawa, Ontario, Canada</p>
<br>
<br>
</div>
</div>
</body>
<footer>
<br>
<br>
<br>
<hr>
</footer>