-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
171 lines (161 loc) · 8.48 KB
/
Copy pathindex.html
File metadata and controls
171 lines (161 loc) · 8.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Steve Dearstyne - Portfolio</title>
<link rel="stylesheet" href="styles.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
</head>
<body>
<nav class="navbar">
<div class="nav-container">
<div class="nav-logo">
<img src="assets/images/linkedin profile picture.jpg" alt="Steve Dearstyne" class="nav-logo-img">
</div>
<ul class="nav-menu">
<li><a href="#home" class="nav-link decrypt-text" data-text="Home">Home</a></li>
<li><a href="#about" class="nav-link decrypt-text" data-text="About">About</a></li>
<li><a href="#music" class="nav-link decrypt-text" data-text="Music">Music</a></li>
<li><a href="#projects" class="nav-link decrypt-text" data-text="Projects">Projects</a></li>
<li><a href="#contact" class="nav-link decrypt-text" data-text="Contact">Contact</a></li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<main>
<section id="home" class="hero">
<div class="hero-content">
<h1 class="hero-title decrypt-text" id="hero-title" data-text="Steve Dearstyne">Steve Dearstyne</h1>
<p class="hero-subtitle decrypt-text" data-text="Cybersecurity Professional & Musician">Cybersecurity Professional & Musician</p>
<div class="hero-buttons">
<a href="#about" class="btn btn-primary decrypt-text" data-text="About Me">About Me</a>
<a href="assets/documents/Dearstyne_resume.pdf" target="_blank" class="btn btn-secondary decrypt-text" data-text="Resume">
<i class="fas fa-download"></i> Resume
</a>
</div>
</div>
<div class="scroll-indicator">
<div class="scroll-arrow"></div>
</div>
</section>
<section id="about" class="about">
<div class="container">
<h2 class="section-title">About Me</h2>
<div class="about-content">
<div class="about-image">
<img src="assets/images/linkedin profile picture.jpg" alt="Steve Dearstyne" class="profile-picture">
</div>
<div class="about-text">
<p>Hi! I'm a cybersecurity professional with extensive experience in identity and access management, and industrial control system security.</p>
<div class="certifications">
<h3>Certifications</h3>
<div class="cert-item">
<span class="cert-name">Certified Information Systems Security Professional (CISSP)</span>
</div>
</div>
<div class="publications-inline">
<h3>Publications</h3>
<div class="publication-item-inline">
<h4 class="publication-title-inline"><a href="https://scholar.google.com/scholar?hl=en&as_sdt=0%2C39&q=Steven+Dearstyne&btnG=" target="_blank">Leveraging public posts and comments as covert channels</a></h4>
<span class="publication-venue-inline">IEEE IWSSP 2014 Proceedings</span>
<p class="publication-description-inline">
Research on using public social media posts and comments as covert communication channels.
</p>
</div>
</div>
<div class="skills">
<h3>Core Expertise</h3>
<div class="skill-tags">
<span class="skill-tag">Cybersecurity</span>
<span class="skill-tag">Identity & Access Management</span>
<span class="skill-tag">SIEM</span>
<span class="skill-tag">PowerShell</span>
<span class="skill-tag">Python</span>
<span class="skill-tag">.NET</span>
<span class="skill-tag">Industrial Control Systems</span>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="music" class="music">
<div class="container">
<h2 class="section-title">Musical Performances</h2>
<div class="music-content">
<div class="audio-player">
<div class="player-info">
<h3>Chopin Nocturne Op. 9 No. 2</h3>
<p>One of Chopin's most beloved nocturnes, performed with personal interpretation and emotional depth.</p>
</div>
<div class="player-controls">
<audio controls preload="metadata">
<source src="assets/audio/Chopin Nocturne Op 9 No 2.WAV" type="audio/wav">
Your browser does not support the audio element.
</audio>
</div>
</div>
<div class="audio-player">
<div class="player-info">
<h3>Trombone Ballad</h3>
<p>A heartfelt ballad performed on trombone at the Rochester International Jazz Festival in 2009.</p>
</div>
<div class="player-controls">
<audio controls preload="metadata">
<source src="assets/audio/trombone_ballad_Rochester_international_jazz_festival.m4a" type="audio/mp4">
Your browser does not support the audio element.
</audio>
</div>
</div>
</div>
</div>
</section>
<section id="projects" class="projects">
<div class="container">
<h2 class="section-title">GitHub Projects</h2>
<div class="projects-grid" id="projects-grid">
<div class="loading">Loading repositories...</div>
</div>
<div class="github-link">
<a href="https://github.com/secgit" target="_blank" class="btn btn-outline">
<i class="fab fa-github"></i> View All Repositories
</a>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2 class="section-title">Get In Touch</h2>
<div class="contact-content">
<p>Let's connect and discuss opportunities, collaborations, or just chat about code and music.</p>
<div class="contact-links">
<a href="https://github.com/secgit" target="_blank" class="contact-link">
<i class="fab fa-github"></i>
<span>GitHub</span>
</a>
<a href="mailto:steven.dearstyne@gmail.com" class="contact-link">
<i class="fas fa-envelope"></i>
<span>Email</span>
</a>
<a href="https://www.linkedin.com/in/stevendearstyne/" target="_blank" class="contact-link">
<i class="fab fa-linkedin"></i>
<span>LinkedIn</span>
</a>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<p>© <span id="current-year"></span> Steve Dearstyne. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>