-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·161 lines (141 loc) · 7.27 KB
/
index.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
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Randall Naar</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
<!-- Plugin CSS -->
<link href="vendor/magnific-popup/magnific-popup.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/creative.min.css" rel="stylesheet">
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">Home</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#services">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<header class="masthead">
<div class="header-content">
<div class="header-content-inner">
<h1 id="homeHeading">Randall Naar</h1>
<hr>
<h2 style="margin: 25px">MSc | CS | 2018</h2>
<a class="btn btn-primary btn-xl js-scroll-trigger" href="#about">Learn More About this Man</a>
</div>
</div>
</header>
<section class="bg-primary" id="about">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<h2 class="section-heading text-white">Hi there!</h2>
<hr class="light">
<p class="text-faded">I'm a South Florida native who's currently pursuing a master's degree in computer science at the University of Miami. My interests range from skateboarding through the unique terrain of the University of Miami to making rap beats in my free time. My technical interests include projects involving Machine Learning, End to End Web Development, and social app development. Fortunately, some of these interests have turned into business projects for me, but I also have quite a few open source projects! Check them out below!</p>
<a class="btn btn-default btn-xl js-scroll-trigger" href="#projects">My Projects</a>
</div>
</div>
</div>
</section>
<section id="services">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">My Projects</h2>
<hr class="primary">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-line-chart text-primary sr-icons"></i>
<h3><a style="color: black" href="https://github.com/Randy808/Linear-Regression-and-Gradient-Descent">Polynomial Regression</a></h3>
<p class="text-muted">After learning about polynomial regression from Andrew Ng's course on Machine Learning, I knew I had to implement these ideas in a language I could understand. From that, this project was birthed! </p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-meh-o text-primary sr-icons"></i>
<h3><a style="color: black" href="https://github.com/Randy808/Mugshot-Analysis">Criminal Facial Features</a></h3>
<p class="text-muted">Have you ever wondered whether there's any correlation between facial features and getting arrested? Well I have, and the results of my curious are quite intriguing!</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-bar-chart-o text-primary sr-icons"></i>
<h3><a style="color: black" href="https://github.com/Randy808/NBAMVPs" >NBA MVPs</a></h3>
<p class="text-muted">Here lies a program that counts and graphs NBA Finals MVPs throughout the years, with the y-axis being the score:shoot ratio of that season, and the size of the player mark being related to how many shots were made</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="service-box">
<i class="fa fa-4x fa-apple text-primary sr-icons"></i>
<h3><a style="color: black" href="https://github.com/Randy808/Apple-Stock-Regression">Apple Stock Regression</a></h3>
<p class="text-muted">Linear Regression applied to the data of closing prices of apple stocks over the span of a year</p>
</div>
</div>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<h2 class="section-heading">Let's Get In Touch!</h2>
<hr class="primary">
<p>Interested in hiting me? Give me a call or send an email and I'll get back to you as soon as possible!</p>
</div>
</div>
<div class="row">
<div class="col-lg-4 ml-auto text-center">
<i class="fa fa-phone fa-3x sr-contact"></i>
<p>754-214-7793</p>
</div>
<div class="col-lg-4 mr-auto text-center">
<i class="fa fa-envelope-o fa-3x sr-contact"></i>
<p>
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
</div>
</div>
</section>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/popper/popper.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<script src="vendor/scrollreveal/scrollreveal.min.js"></script>
<script src="vendor/magnific-popup/jquery.magnific-popup.min.js"></script>
<!-- Custom scripts for this template -->
<script src="js/creative.min.js"></script>
</body>
</html>