-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
197 lines (183 loc) · 8.91 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Sam Cutler's software development portfolio">
<title>Sam Cutler - Portfolio</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" rel="stylesheet" type="text/css" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;600&display=swap" rel="stylesheet">
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png?">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png?">
<link rel="icon" type="image/png" sizes="192x192" href="android-chrome-192x192.png?">
<link rel="icon" type="image/png" sizes="512x512" href="android-chrome-512x192.png?">
<script src="https://kit.fontawesome.com/714ccfffbd.js" crossorigin="anonymous"></script>
</head>
<body>
<nav>
<div class='nav-container'>
<div class='title-container'>
<a href="#">S<span class='small-caps'>AM</span> C<span class='small-caps'>UTLER</span></a>
</div>
<div class='nav-links-container'>
<ul class='nav-contact-links-container'>
<li>
<a href='mailto:[email protected]' target='_blank' class='nav-contact-link'>
<i class="far fa-envelope"></i>
</a>
</li>
<li>
<a href='https://github.com/sam1cutler' target='_blank' class='nav-contact-link'>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a href='https://www.linkedin.com/in/samcutler159/' target='_blank' class='nav-contact-link'>
<i class="fab fa-linkedin"></i>
</a>
</li>
</ul>
<div class='burger-wrapper'>
<input type="checkbox" class="toggler">
<div class="burger">
<div></div>
</div>
<div class="nav-menu">
<ul>
<li><a href='#'>Home</a></li>
<li><a href='#about'>About</a></li>
<li><a href='#projects'>Projects</a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
<main>
<header>
<div class='header-container'>
<div class='header-welcome-message'>
<h1>SAM CUTLER</h1>
<p>Full-stack developer<br>with a PhD in biology.</p>
</div>
</div>
</header>
<section class='about-section' id='about'>
<h2>ABOUT</h2>
<div class='about-container'>
<div class='portrait-container'>
<img src='images/Sam_headshot.png' alt='Sam headshot' class='portrait'>
</div>
<div class='about-content'>
<p>I'm a Seattle-based Javascript developer with experience building beautiful, intuitive apps using React, Node.js, Express, and PostgreSQL.
I've also spent time as a <a href='https://www.genetics.org/content/210/4/1543.long' target='_blank'>biology</a> <a href='https://www.nature.com/articles/nm.3229' target='_blank'>researcher</a> and teacher, primarily at the college level.
While conducting my PhD research, I used a lot of Python, Bash, and R, and found that I loved programming, creating highly functional digital tools to improve life for myself and my colleagues in lab.</p>
<p>With my background, I've developed great skills in problem-solving, troubleshooting, team collaboration, and communicating technical material to any audience.
I am quick to learn and have great attention to detail, and I love to take on complex challenges.</p>
<p>Outside of coding, my main passions all take advantage of the Pacific Northwest outdoors, especially rock climbing, backpacking, and skiing.</p>
</div>
</div>
</section>
<section class='projects-section' id='projects'>
<h2>PROJECTS</h2>
<div class='projects-section-container'>
<div class='project-container'>
<h3>What's Next?</h3>
<div class='project-screenshot-container'>
<img class='project-screenshot' src='images/screenshot_whats-next.png' alt='whats-next-app'>
</div>
<ul class='project-tech-list emphasized'>
<li>React</li>
<li>Node.js</li>
<li>Express</li>
<li>PostgreSQL</li>
<li>Mocha / Chai</li>
<li>Jest / Enzyme</li>
<li>JSON Web Token Authentication</li>
</ul>
<div class='project-description'>
<p>Track shows that you want to watch in the future and log shows that you've already watched.
Identify the streaming service on which each show is available, as well as
the genre and (for watched shows) the date completed and your rating.
You can also make connections with other users to see their
To-Watch List and Watched Log.</p>
</div>
<div class='project-links-container'>
<a href='https://whats-next-five.vercel.app/' target='_blank' class='project-button'>View the app</a>
<a href='https://github.com/sam1cutler/WhatsNext' target='_blank' class='project-button'>Client code</a>
<a href='https://github.com/sam1cutler/WhatsNextAPI' target='_blank' class='project-button'>Server Code</a>
</div>
</div>
<div class='project-container'>
<h3>HikeTracker</h3>
<div class='project-screenshot-container'>
<img class='project-screenshot' src='images/screenshot_hike-tracker.png' alt='hike-tracker-app'>
</div>
<ul class='project-tech-list emphasized'>
<li>React</li>
<li>Node.js</li>
<li>Express</li>
<li>PostgreSQL</li>
<li>Mocha / Chai</li>
<li>Jest / Enzyme</li>
<li>JSON Web Token Authentication</li>
</ul>
<div class='project-description'>
<p>Create a concise record of hiking activity, logging the
date, mileage, time, and elevation change of individual hikes,
as well as the weather, overall rating, and personal notes.</p>
</div>
<div class='project-links-container'>
<a href='https://hike-tracker.vercel.app/' target='_blank' class='project-button'>View the app</a>
<a href='https://github.com/sam1cutler/HikeTracker' target='_blank' class='project-button'>Client code</a>
<a href='https://github.com/sam1cutler/HikeTrackerAPI' target='_blank' class='project-button'>Server Code</a>
</div>
</div>
<div class='project-container'>
<h3>BookFinder</h3>
<div class='project-screenshot-container'>
<img class='project-screenshot' src='images/screenshot_book-finder.png' alt='book-finder-app'>
</div>
<ul class='project-tech-list emphasized'>
<li>Javascript</li>
<li>jQuery</li>
<li>HTML</li>
<li>CSS</li>
</ul>
<div class='project-description'>
<p>Get book and author recommendations, with your choices informed by
New York Times book reviews and Wikipedia entries, and then
buy used or locally-available copies of books.</p>
</div>
<div class='project-links-container'>
<a href='https://sam1cutler.github.io/BookFinder' target='_blank' class='project-button'>View the app</a>
<a href='https://github.com/sam1cutler/BookFinder' target='_blank' class='project-button'>Client code</a>
</div>
</div>
</div>
</section>
</main>
<footer>
<ul class='footer-contacts-list'>
<li>
<a href='mailto:[email protected]' target='_blank' class='footer-contact-link'>
<i class="far fa-envelope"></i> <span class='footer-link-label'>Email</span>
</a>
</li>
<li>
<a href='https://github.com/sam1cutler' target='_blank' class='footer-contact-link'>
<i class="fab fa-github"></i> <span class='footer-link-label'>GitHub</span>
</a>
</li>
<li>
<a href='https://www.linkedin.com/in/samcutler159/' target='_blank' class='footer-contact-link'>
<i class="fab fa-linkedin"></i> <span class='footer-link-label'>LinkedIn</span>
</a>
</li>
</ul>
</footer>
</body>
</html>