-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathindex.html
More file actions
179 lines (156 loc) · 3.63 KB
/
index.html
File metadata and controls
179 lines (156 loc) · 3.63 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ryan Barnett's HTML5 Resume</title>
</head>
<body>
<!-- Contact Info -->
<header>
<h1>Ryan Barnett | Software Engineer</h1>
<address>
1967 Lakeshore Road
<br>
Camden, SC 29020
</address>
<a href="mailto:ryan@localimpact.co">
ryan@localimpact.co
</a>
</header>
<hr>
<!-- Goals -->
<section>
<h2>Goals</h2>
<p>My main objective is to become the best software engineer in South Carolina!</p>
</section>
<!-- Skills -->
<section>
<h2>Skills</h2>
<h3>Programming Languages</h3>
<ol>
<li>HTML5</li>
<li>CSS3</li>
<li>SASS</li>
<li>Javascript</li>
<li>Ruby</li>
</ol>
<h3>Databases</h3>
<ol>
<li>SQLite3</li>
<li>PostgreSQL</li>
<li>MySQL</li>
<li>MongoDB</li>
<li>Redis</li>
</ol>
<h3>Platforms</h3>
<ol>
<li>Heroku</li>
<li>AWS</li>
</ol>
<h3>Version Control</h3>
<ol>
<li>Git</li>
<li>Github</li>
</ol>
<h3>Operating Systems</h3>
<ol>
<li>Windows</li>
<li>Unix</li>
<li>Mac OS X</li>
</ol>
<h3>Other Tools</h3>
<ol>
<li>Sublime Text</li>
<li>Wordpress</li>
</ol>
<h3>Soft Skills</h3>
<ol>
<li>Adaptable</li>
<li>Team Player</li>
<li>Trustworthy</li>
</ol>
</section>
<!-- Education -->
<section>
<h2>Education</h2>
<table>
<thead>
<tr>
<th>Time</th>
<th>School</th>
<th>Location</th>
<th>Certificate</th>
</tr>
</thead>
<tbody>
<tr>
<td>2 Years</td>
<td>Harvard</td>
<td>Online</td>
<td>Web Technologies</td>
</tr>
</tbody>
</table>
</section>
<!-- Work Experience -->
<section>
<h2>Work Experience</h2>
<table>
<thead>
<tr>
<th>Time</th>
<th>Name</th>
<th>Location</th>
<th>Position Title</th>
<th>Responsibilities</th>
<th>Contact Info</th>
</tr>
</thead>
<tbody>
<tr>
<td>2 Years</td>
<td>Local Impact</td>
<td>Camden, SC</td>
<td>Developer</td>
<td>Problem Solver</td>
<td>803-412-2840</td>
</tr>
</tbody>
</table>
</section>
<!-- Acheivements -->
<section>
<h2>Achievements</h2>
<ol>
<li>Honorably Served in US Marine Corps</li>
<li>Sole Web Developer for Marketing Firm</li>
</ol>
</section>
<!-- Hobbies and Interests -->
<section>
<h2>Hobbies and Interests</h2>
<ol>
<li>Learning</li>
<li>Fostering Kittens</li>
<li>Raising Ducks</li>
</ol>
</section>
<!-- References -->
<section>
<h2>References</h2>
<p><em>Available upon request</em></p>
</section>
<!-- Footer -->
<footer>
<strong>
Ryan Barnett | Software Engineer * 1967 Lakeshore Road
Camden, SC 29020 * <a href="mailto:ryan@localimpact.co">ryan@localimpact.co</a>
</strong>
</footer>
<br>
<br>
<br>
<br>
</body>
</html>