-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
145 lines (145 loc) · 4.88 KB
/
index.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
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>edscamera</title>
<link rel="stylesheet" href="./styles.css" />
<script defer src="./script.js"></script>
</head>
<body>
<canvas></canvas>
<div id="container">
<div class="box pink">
<h1>edscamera</h1>
<p>
Hey! I'm Ed, an engineer with an excitement for developing robust
applications and systems. As a Computer Science student at Stony Brook
University, I've balanced my studies with hands-on experience in
various roles. From designing and building applications to mentoring
other learners, I love diving into new challenges and expanding my
skill set. I thrive in both team settings and remote environments,
always aiming to create impactful and user-friendly solutions.
</p>
</div>
<div class="grid">
<div class="box">
<h3>Experience</h3>
<div>
<span class="bold"
>North Atlantic Industries - Full-Stack Engineer Intern</span
>:
<p>
Designed and developed applications for internal use, providing
organization and efficiency.
</p>
</div>
<div>
<span class="bold">KidOYO - Student Mentor</span>:
<p>
Taught kids aged 8-18 general programming & game development
skills, including visual block programming with Scratch, game
engine development with GameMaker Studio 2, and other languages
such as JavaScript and Python.
</p>
</div>
<div>
<span class="bold">Freelance Full-Stack Engineer</span>:
<p>
Dealt with a multitude of technologies while developing websites
and applications for clients, including but not limited to VB.NET,
C#, SQL, PHP, and WordPress
</p>
</div>
<h3>Education</h3>
<ul>
<li>Stony Brook University: BS in Computer Science (2023 - )</li>
<li>AP Computer Science A (2020)</li>
<li>AP Computer Science Principles (2021)</li>
</ul>
</div>
<div class="box">
<h3>Projects</h3>
<div>
<a href="infinisweeper/" target="_blank" rel="noopener noreferrer"
><span class="bold">Infinisweeper (2022)</span></a
>
<p>
A Minesweeper clone with an infinite board size, 2 game modes, and
a scoring system. Built with HTML5 and Google Firebase.
</p>
</div>
<div>
<a
href="array-map-creator/"
target="_blank"
rel="noopener noreferrer"
><span class="bold">Array Map Creator (2018)</span></a
>
<p>
A web-based pixel art tool that can export drawings into matrices
for easy game development.
</p>
</div>
<div>
<a href="stick-together/" target="_blank" rel="noopener noreferrer"
><span class="bold">Stick Together (2021)</span></a
>
<p>
A simple web-based runner minigame made for a game jam in 1 week.
</p>
</div>
</div>
<div class="box">
<h3>Find Me</h3>
<ul>
<li>
<a
href="https://linkedin.com/in/edscamera"
target="_blank"
rel="noopener noreferrer"
>LinkedIn</a
>
</li>
<li>
<a
href="https://instagram.com/edscamera29"
target="_blank"
rel="noopener noreferrer"
>Instagram</a
>
</li>
<li>
<a
href="https://github.com/edscamera"
target="_blank"
rel="noopener noreferrer"
>GitHub</a
>
</li>
<li>
<a
href="https://last.fm/user/edscamera"
target="_blank"
rel="noopener noreferrer"
>last.fm</a
>
</li>
</ul>
<h3 class="track-display">What I'm Listening To</h3>
<div class="track-display track">
<div>
<img id="track-image" />
<div>
<span id="track-title" class="bold"></span><br />
<span id="track-artist"></span>
</div>
</div>
<span class="track-timestamp"></span>
</div>
</div>
</div>
<div id="btn_launch">Launch</div>
</div>
</body>
</html>