-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (75 loc) · 4.27 KB
/
index.html
File metadata and controls
84 lines (75 loc) · 4.27 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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-146144147-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-146144147-2');
</script>
<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="indexCSS.css" />
<script src="https://kit.fontawesome.com/568a02d900.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css">
</head>
<body>
<div class="jumbotron jumbotron-fluid text-center">
<div class="container">
<h1 class="display-2">Jack Heuberger</h1>
<h3>Computer Science @ WashU</h3>
<div class="container contact">
<a href="https://www.github.com/jackheuberger"><i class="fab fa-github"></i></a>
<a href="mailto:jackheuberger5@gmail.com"><i class="fas fa-mail-bulk"></i></a>
<a href="./Jack_Heuberger_Resume.pdf"><i class="fas fa-file-alt"></i></a>
<a href="https://linkedin.com/in/jackheuberger"><i class="fab fa-linkedin"></i></a>
</div>
<img src="20190830_133631.jpg" width="200px" />
</div>
</div>
<div class="container container-fluid">
<strong class="h1">Hey! I'm Jack,</strong>
<p class="h4">I'm a sophomore studying <strong id="CS">Computer Science</strong> at <strong id="WashU">Washington
University in St.
Louis</strong> (expected 2024). </p>
<p class="h4">I'm currently looking for internships for <strong id="JS">Summer 2022</strong>.</p>
<p class="h4">My favorite tools and languages include <em id="lang0.">Javascript, C++, Java, Docker, and Linux</em>.
</p>
<p class="h4">Some notable projects of mine include:</p>
<dl>
<dt class="h5"><strong id="CS">STS Printer Status Report</strong> <a
href="https://sts.wustl.edu/services/printing/check-printer-status/"> <i class="bi bi-folder-symlink"></i></a>
</dt>
<dd class="h5 tab">A system for monitoring the status of residential and on-campus printers. I took over this
project in 2020, and am currently modernizing it as a full-stack Node.JS application using Express and MongoDB.
Goals include Microsoft Teams integration and deployment to a cloud service provider.
</dd>
<dt class="h5"><strong id="WashU">BHS Job Board</strong> <a href="https://bhsjobs.herokuapp.com/"> <i
class="bi bi-folder-symlink"></i></a> <a href="https://github.com/jackheuberger/blinejobboard"> <i
class="bi bi-github"></i></a>
</dt>
<dd class="h5 tab">A web app designed to help high school students find relevant local opportunities. Written
(again) in Node.JS with Express and MongoDB. I'm proud of this project as to how I was able to authenticate
users with Google accounts and filter accounts based on the domain of their email, therefore only letting
certain domains access certain views of the app.
</dd>
<dt class="h5"><strong id="JS">BHSSchedule.app</strong> <a href="https://jackheuberger.com/bhsschedule.app/
"> <i class="bi bi-folder-symlink"></i></a> <a href="https://github.com/jackheuberger/bhsschedule.app"> <i
class="bi bi-github"></i></a>
</dt>
<dd class="h5 tab">A static site that tracked the 2019/2020 Brookline High School class schedule. This was written
in regular vanilla HTML/CSS/Javascript and was hosted for free on Github Pages. This project recieved 30,000
pageviews per month during that school year.</dd>
</dl>
<p class="h4">That's pretty much it! Here are some links if you'd like to contact me. Thanks for reading!</p>
<div class="container contact text-center">
<a href="https://www.github.com/jackheuberger"><i class="fab fa-github"></i></a>
<a href="mailto:jackheuberger5@gmail.com"><i class="fas fa-mail-bulk"></i></a>
<a href="https://linkedin.com/in/jackheuberger"><i class="fab fa-linkedin"></i></a>
</div>
</body>
</html>