-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrhett.html
More file actions
136 lines (121 loc) · 6.13 KB
/
Copy pathrhett.html
File metadata and controls
136 lines (121 loc) · 6.13 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
<!DOCTYPE html>
<html lang = en>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Welcome page
</title>
<link rel="stylesheet" href="style3.css">
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.14.0/css/all.css"
integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc"
crossorigin="anonymous"/>
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap" rel="stylesheet">
</style>
</head>
<body>
<h1>
Welcome to my page!
</h1>
<img src="/img/me.jpg" alt="myself" srcset="" class="myimg">
<div class = "boxpadding"> Photo of yours, truly. </div>
<p class="indent">
My name is Rhett Marcelo, a student from the University of Houston - Downtown. I have always wondered how things work, even with the simplest ones. My parents had
enlightened me that was inquisitive enough to be a scientist, a trait of a scientist that questions
everything. They decided for me to be one. Before going to college, I mentioned to my parents
that I am going to be an Engineer, and not a scientist like they wanted me to be. I explained that
my goal is to apply everything I know to improve a certain entity that will make something more
useful in the future. I continued that a Scientist is the one who discovers the laws, and the
Engineer will create something based on the laws the scientist has discovered, by developing
technology, which makes him an Application Scientist. I ended that they should still be happy
since I will still be the scientist, they dreamed me to be, just a different title. After 7 years in the
making, I found myself fascinated with computers as I work with them daily and finally decided
to be part of the Computer Science field for the cardinal reasons: I am not contented with what I
know and desire to improve my understanding in computers to a whole academic level. <br><br>
I wanted to improve and apply the methodological processes I have learned from school
while aiming to contribute to the field of artificial intelligence. My junior experience is
advantageous, as I am easily moldable according to the right type of intern the laboratory needs.
I would like to participate in full data analyses, and algorithm modifications will be part of my
routine to be confident in handling large datasets as this would be beneficial in being an efficient
computer scientist. Using what I learned from school in algorithms and mathematics, in addition
with this internship, a goal of mine would be to develop, apply, and improve an unsupervised
machine learning model that predicts and identifies early diseases, using the supercomputers in
collaboration of experts within the medical field. This current pandemic has claimed the lives of
people who are close to me, mostly due to the negligence that they are carrying the disease
without their knowledge. I plan to deploy the project in an affordable manner to third world and
impoverished countries with hopes to abate the mortality rates of current and future diseases. <br><br>
Learning is a lifetime process, and I want to append my current computer science and
engineering knowledge with a goal to familiarize myself with the applications of parallel
computing for machine learning. Therefore, a long-term objective of mine is to pursue graduate
school, obtain the necessary experience to conduct proper research, co-publish high-impact
papers that can contribute to improve our quality of life, and learn how to teach future students
what the applications of machine learning is all about in the simplest manner possible. <br><br>
</p>
<p>
Here are the programming languages I am familiar with:
<ul class = customIndent>
<li>C++</li>
<li>Java</li>
<li>Python</li>
<li>R</li>
</ul>
<br>
<table border = "1" class ="table-center">
<!-- the <caption> tag summarizes the table's -->
<!-- contents (this helps visually impaired people) -->
<caption><strong>Research I am currently active with</strong></caption>
<!-- the <thead> section appears first in the table -->
<!-- it formats the table header area -->
<thead>
<tr> <!-- <tr> inserts a table row -->
<th>Topic</th> <!-- insert a heading cell -->
<th>Principal Investigator</th>
</tr>
</thead>
<!-- the <tfoot> section appears last in the table -->
<!-- it formats the table footer -->
<!-- all table content is enclosed -->
<!-- within the <tbody> -->
<tbody>
<tr>
<td>Algorithmic Trading</td> <!-- insert a data cell -->
<td>Professor Cyril Harris</td>
</tr>
<tr>
<td>Location Privacy for Trajectory Sharing</td>
<td>Professor Emre Yilmaz</td>
</tr>
<tr>
<td>Data Science for Energy Transition</td>
<td>Professor Mikyoung Jung</td>
</tr>
</tbody>
</table>
<br>
</p>
<p>
If you have questions, kindly reach out to me!
</p>
<form action="/form/submit" method="post">
<div>
<label for="name">Name</label>
<input type="text" id="name" placeholder="Enter your name" />
</div>
<div>
<label for="age">Your Profession</label>
<input type="text" id="age" name="age" placeholder="Enter your profession" />
</div>
<div>
<label for="country">Enter your question: </label>
<input type="text" id="country" name="country" placeholder="Question" />
</div>
<input type="submit" value="Submit" />
<input type = "reset" value = "Clear">
</form>
<p><br>
<a href="contact.html">Contact Me</a>
</p>
</body>
</html>