-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
137 lines (132 loc) ยท 5.17 KB
/
about.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Scott Gordon - About Me</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="css/style.css" />
<link
href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400i,700|Montserrat:400,500,700,800"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/9c1549859f.js"
crossorigin="anonymous"
></script>
<script src="/scripts/greeting.js"></script>
</head>
<body onload="greetVisitor()">
<div class="header">
<h1>Scott Gordon - About Me</h1>
</div>
<!-- Navigation Bar -->
<div class="navbar">
<a href="index.html">Home</a>
<a href="skills.html">Skills</a>
<a href="certificates.html">Certificates</a>
<a href="projects.html">Projects</a>
<a href="blog.html">Blog</a>
<a href="about.html">About Me</a>
</div>
<!-- Main -->
<div class="main">
<h1>About Me</h1>
<div class="portrait-container">
<img class="portrait2" src="images/scott-profile2185955.jpg" alt="Scott's Portrait" />
</div>
<p>
Hey there! I'm Scott, your friendly neighborhood platform engineer with
a passion for unraveling the mysteries of technology and a dream to dive
deep into the realm of Artificial Intelligence. Currently on an exciting
journey to merge the worlds of code and intelligence, I reside in the
tech-savvy hub of Massachusetts.
</p>
<p>
<strong>Here's a snapshot of who I am: </strong>
</p>
<p>
<strong>๐ The Tech Maestro: </strong> As a seasoned platform engineer,
I thrive in the dynamic world of DevOps. Unraveling complex systems and
turning chaos into organized brilliance is my forte. I believe in the
power of breaking down colossal tasks into bite-sized victories, a
philosophy that has proven to be my secret sauce for success.
</p>
<p>
<strong>๐ฑ The Pool Prodigy: </strong> When I'm not immersed in lines of
code, you'll likely find me by the pool table, aiming for that perfect
shot. The strategic dance of balls on the green felt is my escape and a
reminder that precision and focus are keys to success, whether in coding
or aiming for the corner pocket.
</p>
<p>
<strong>โ๏ธ Chess Strategist: </strong> Chess isn't just a game; it's a
battlefield where intellect reigns supreme. I love the cerebral
challenge it offers, a sentiment that resonates with my big-picture
thinking. Every move is a carefully calculated step towards victory,
mirroring my approach to problem-solving in the tech world.
</p>
<p>
<strong>๐ค AI Dreamer: </strong> Peering into the future, I'm fueled by
a passion to become an AI specialist. The allure of creating intelligent
systems that can learn and adapt captivates me. In a world driven by
data, I'm eager to harness the power of AI to solve complex problems and
push the boundaries of what's possible.
</p>
<p>
<strong>๐ฎ The Gaming Enthusiast: </strong>A true connoisseur of pixels
and polygons, I have a soft spot for both vintage and current video
games. Whether reliving the nostalgia of classic titles or diving into
the latest gaming adventures, I find joy in the immersive worlds that
gaming creates. It's not just a pastime; it's a celebration of
storytelling and interactive art.
</p>
<p>
<strong>๐ Detail-Oriented Explorer: </strong>Navigating through the
intricacies of both code and life, I bring a keen eye for detail. While
my internal world might harbor a touch of OCD, it's the invisible thread
that weaves precision into every project I undertake.
</p>
<p>
Join me on this adventure of tech, strategy, and dreams. Whether it's
discussing the latest breakthroughs in AI or sharing a laugh over a
witty remark, let's embark on this journey together.
</p>
<p>
<strong
>Cheers to coding, conquering, checkmates, and high-score victories!
๐๐ค๐ฑ๐ฎ</strong
>
</p>
</div>
<!-- Footer -->
<div class="footer">
<h2>Connect With Me</h2>
<a
href="https://www.linkedin.com/in/sagordon-dev"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-linkedin fa-2x"></i
></a>
<a
href="https://github.com/sagordon-dev"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-github-square fa-2x"></i
></a>
<a
href="https://dev.to/sagordondev"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-dev fa-2x"></i
></a>
<a
href="mailto:[email protected]"
target="_blank"
rel="noopener noreferrer"
><i class="fas fa-envelope-square fa-2x"></i
></a>
<br /><br />
<p>© 2024 https://sagordon-dev.github.io/</p>
</div>
</body>
</html>