-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfolio.html
95 lines (90 loc) · 4.43 KB
/
folio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Spencer Wolf</title>
<!-- Credit Coffee Logo: Freepik -->
<link rel="icon" href="folio/coffee.png">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="/folio/global.css">
</head>
<body style="font-size:14px">
<div id="announcement">
<h5>* Announcement *</h5>
Currently looking for interesting job opportunities! This includes a <b>2020 summer internship</b> or <b>part time work</b> during the school year. Reach out at <a href="mailto:[email protected]">[email protected]</a>
</div>
<div class="container w-100">
<br><br>
<div class="space">
<h1>Spencer Wolf <span class="blink">_</span></h1>
</div>
<h2>Software Engineering Student and Code Monkey</h2>
<div class="collapse-d-row">
<!-- About Me Section -->
<div class="card-column info-column">
<div class="info-card">
<h4>Education</h4>
<ul>
<li>Software Engineering</li>
<li>4.0 GPA</li>
</ul>
<p>I'm studying Software Engineering at Bowling Green State University.
Maintaining 4.0 GPA and working towards graduating with Honors. Expected
graduation December 2019.</p>
<img src="/folio/institution.svg">
</div>
<div class="sidenote">
Note: I am also experienced with growing plants if you are lacking in greenery! Here is a photo of my new jellybean plants I raised this year.
<a href="https://en.wikipedia.org/wiki/Sedum_rubrotinctum" target="_blank"><img src="folio/jellybean.jpg"></a>
</div>
<div class="info-card">
<h4>Skills</h4>
<ul>
<li>Web Development</li>
<li>Backend Experience</li>
</ul>
<p>Experienced using C++, Python, Javascript, git, Node.js/Express, and Angular
2+. Familiar using Typescript, PHP, golang, SQL (mysql/MSSQL), C#, Lisp, Unity
and Tensorflow (before 2.0 release).</p>
<img src="folio/laptop.svg">
</div>
<div class="info-card">
<h4>Experience</h4>
<ul>
<li>President of BGSU's Association for Computing Machinery</li>
<li>Working as a Resident Advisor and Tour Guide</li>
</ul>
<p>I hold many leadership positions on campus. I serve as the President of our ACM Chapter, run the weekly German speaker meetups, assist my peers academically with CS topics and work as both a Resident Adviser and Tour Guide.</p>
<img src="folio/running.svg">
</div>
</div>
<!-- Projects Section -->
<div class="card-column project-column">
<h3>Projects</h3>
<div class="info-card">
<h4>FSRC Filler</h4>
<p>This is a project I made to automate data entry within my job as a resident adviser. It has improved my data entry speed by 75%!</p>
<a href="https://github.com/spewolf/sharepoint-autotypist" target="_blank">See the code</a>
</div>
<div class="info-card">
<h4>Weather Dash</h4>
<p>Small demo displaying many of the basics of Angular 2+. Main purpose was to provide a resource for beginners and refresh my skills.</p>
<a href="https://github.com/spewolf/weather-demo" target="_blank">See the code</a>
</div>
<div class="info-card">
<h4>Portfolio Site</h4>
<p>I made this site without any frameworks to practice my basic web development skills. Check out the source below.</p>
<a href="https://github.com/spewolf/spewolf.github.io" target="_blank">See the code</a>
</div>
</div>
</div>
</div>
<br><br>
<footer>
Contact me at <a href="mailto:[email protected]">[email protected]</a><span class="right">This website was made with ❤️</span>
</footer>
</body>
</html>