-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (72 loc) · 3 KB
/
index.html
File metadata and controls
83 lines (72 loc) · 3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>brushnit.github.io</title>
<meta name="author" content="brushnit">
<link rel="icon" href="/resources/pfp.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Syne:wght@400;700;800&display=swap">
<link rel="stylesheet" href="resources/index.css">
</head>
<body>
<div class="main">
<div class="center-column">
<section class="hero">
<div class="hero-content">
<h1>brushnit</h1>
<p class="lead">Technology Enjoyer, Data Scientist</p>
<div class="contact-line">
<span class="lbl">GitHub</span>
<a href="https://github.com/brushnit" target="_blank" rel="noopener">github.com/brushnit</a>
</div>
<div class="contact-line">
<span class="lbl">Resume</span>
<a href="/resources/resume.pdf" target="_blank" rel="noopener">resume.pdf</a>
</div>
</div>
</section>
<section id="about">
<div>
<h2>Hello!</h2>
<p>Just a dude who loves gaming, air & space craft, public transit,<br>and music. Dabbles with data; attempts to appease machine spirits</p>
</div>
</section>
<section id="projects">
<div class="projects-content">
<h2>Projects</h2>
<div class="projects-cards">
<div class="project-card">
<a class="project-btn" href="adtk_outlier_detection.html" target="_blank" rel="noopener">Anomaly Detection</a>
<div class="project-extra">
Uneven seasonal data
<a href="https://github.com/brushnit/anomaly-detection" target="_blank" rel="noopener">GitHub Repo</a>
</div>
</div>
<div class="project-card">
<a class="project-btn">Match Outcome Analysis</a>
<div class="project-extra">
Squad invasion statistics
<a href="https://github.com/brushnit/Squad-Invasion-Statistics" target="_blank" rel="noopener">GitHub Repo</a>
</div>
</div>
<div class="project-card">
<a class="project-btn" href="https://steeldivisionmod.github.io/" target="_blank" rel="noopener">Video Game Modding</a>
<div class="project-extra">
Steel Division - Squad
<a href="https://github.com/SteelDivisionMod" target="_blank" rel="noopener">GitHub</a>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<footer>
<small><span id="year"></span> brushnit</small>
</footer>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>