-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
272 lines (272 loc) · 13.9 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
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<!doctype html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
crossorigin="anonymous">
</script>
<link href="index.css" rel="stylesheet">
<link href="background.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300&display=swap" rel="stylesheet">
<title>m-byte918.github.io</title>
</head>
<body>
<div id="navbar">
<a title="Github profile" href="https://github.com/m-byte918">
<img id="logo" src="img/logo_transparent1.png" alt="[<#> Christian Rodriguez]"></img>
</a>
<a title="Search this site" href="#">
<img id="srch" src="img/search.png" alt="[Search...]"></img>
</a>
<div id="pages">
<div class="dropdown">
<a class="location" title="My projects with demos" href="#">Projects</a>
<div class="dropdown-content">
<a href="#sims" title="Physics Simulations">Simulations</a>
<a href="#games" title="Games I created/contributed to">Video Games</a>
<a href="#utils" title="Useful Utilities">Useful Utilities</a>
<a href="#competitions" title="Code for competitions">Competitions</a>
</div>
</div>
<area>
<div class="dropdown">
<a title="Programming tutorials, tips/tricks, and flowcharts" href="#">Programming</a>
<div class="dropdown-content">
<a href="#" title="Programming tutorials">Tutorials</a>
<a href="#" title="Programming tips and tricks">Tips/Tricks</a>
<a href="#" title="Useful flowcharts for programmers">Flowcharts</a>
</div>
</div>
<area>
<div class="dropdown">
<a title="Blogs" href="#">Blog</a>
</div>
<area>
<div class="dropdown">
<a title="My story, education, achievements and skills" href="aboutme/index.html">About me</a>
<div class="dropdown-content">
<a href="aboutme/index.html#whoami" title="Autobiography">Who I am</a>
<a href="aboutme/index.html#education" title="Where I got my education">Education</a>
<a href="aboutme/index.html#achievements" title="My achievements">Achievements</a>
<a href="aboutme/index.html#skills" title="My skills">Skills</a>
</div>
</div>
<area>
<div class="dropdown">
<a title="Where to contact me" href="contact/index.html">Contact</a>
</div>
</div>
</div>
<div id="stars"></div>
<div id="stars2"></div>
<div id="stars3"></div>
<br id="sims">
<br>
<div class="card-section">
<h1>Physics Simulations</h1>
<br>
<div class="card-holder">
<a class="card" href="https://github.com/m-byte918/MultiOgarII">
<img alt="[Image of MultiOgar]" src="img/multiogar.png"></img>
<div class="card-description">
<h2>MultiOgarII</h2>
<p>An Agar.io open source server implementation written with Node.js</p>
</div>
</a>
<a class="card" href="https://github.com/m-byte918/QuadTree-Cpp">
<img alt="[Image of QuadTree]" src="img/qtdemo.png"></img>
<div class="card-description">
<h2>QuadTree-Cpp</h2>
<p>Simple Recursive QuadTree written in C++ with an SFML demo</p>
</div>
</a>
<a class="card" href="https://github.com/m-byte918/SpeculativeContacts">
<img alt="[Image of Speculative Contacts Demo]" src="img/scdemo.png"></img>
<div class="card-description">
<h2>Speculative Contacts</h2>
<p>Javascript demo of speculative contacts used to solve basic circle-circle collisions</p>
</div>
</a>
</div>
</div>
<br id="games">
<div class="card-section">
<h1>Video Games</h1>
<br>
<div class="card-holder">
<a class="card" href="https://tricksplit.io">
<img alt="[Image of Tricksplit.io menu]" src="img/tricksplit.png"></img>
<div class="card-description">
<h2>Tricksplit.io</h2>
<p>Freelance game programmer for the tricksplit.io web game. Programmed game servers in Javascript using Node.JS</p>
</div>
</a>
<a class="card" href="https://senpa.io/">
<img alt="[Image of Senpa.io]" src="img/senpa.png"></img>
<div class="card-description">
<h2>Senpa.io</h2>
<p>Freelance game programmer for the Senpa.io web game. Programmed back-end game physics in Javascript using Node.JS</p>
</div>
</a>
<a class="card" href="https://jumpscare.io">
<img alt="[Image of Jumpscare.io UI]" src="img/jumpscare.png"></img>
<div class="card-description">
<h2>Jumpscare.io</h2>
<p>Full-stack developer for the jumpscare.io web game. Programmed front-end clients in HTML, CSS, JS, and programmed back-end servers using Node.JS</p>
</div>
</a>
</div>
<br>
<br>
<div class="card-holder">
<a class="card" href="https://github.com/m-byte918/Bobs-Fortress-2-Tank-Warfare">
<img alt="[Image of BF2 - Tank Warfare]" src="img/bf2tw.png"></img>
<div class="card-description">
<h2>BF2 - Tank Warfare</h2>
<p>Source code for the Bob's Fortress 2 - Tank Warfare game. Made with GameMaker Studio 2</p>
</div>
</a>
<a class="card" href="https://balz.io">
<img alt="[Image of Balz.io]" src="img/balz2.png"></img>
<div class="card-description">
<h2>Balz.io</h2>
<p>Backend developer for the Balz.io game. Wrote servers in Javascript using Node.JS</p>
</div>
</a>
<a class="card" href="https://github.com/m-byte918/Yasuo-The-Exiled">
<img alt="[Image of Yasuo: The Exiled]" src="img/yte.jpg"></img>
<div class="card-description">
<h2>Yasuo: The Exiled</h2>
<p>Source code for the Yasuo: The Exiled game. Made with Unity and C#</p>
</div>
</a>
</div>
</div>
<div class="card-section">
<br>
<br>
<div class="card-holder">
<a class="card" href="https://github.com/m-byte918/Spinny-Disc-Man-Epic-Adventure">
<img alt="[Image of Spinny Disc Man Epic Adventure]" src="img/sdmea.png"></img>
<div class="card-description">
<h2>Spinny Disc Man Epic Adventure</h2>
<p>You're a UFO going around and destroying green, virus like enemies by shooting them.</p>
</div>
</a>
<a class="card" href="https://github.com/m-byte918/Tank-War">
<img alt="[Image of Tank War]" src="img/tankwar.png"></img>
<div class="card-description">
<h2>Tank War</h2>
<p>Two player game. Each player must destroy the other by shooting projectiles and using one of the various powerups spawned around the map.</p>
</div>
</a>
<a class="card" href="https://github.com/m-byte918/Brick-Breaker">
<img alt="[Image of Brick Breaker]" src="img/briccbreaker.png"></img>
<div class="card-description">
<h2>Brick Breaker</h2>
<p>The player must smash a wall of bricks by deflecting a bouncing ball with a paddle. Collect all the stars to advance to the next level.</p>
</div>
</a>
</div>
</div>
<br id="utils">
<div class="card-section">
<h1>Utilities</h1>
<br>
<div class="card-holder">
<a class="card" href="https://github.com/m-byte918/Logger-Cpp">
<img alt="[Image of Logger-Cpp]" src="img/logger2.png"></img>
<div class="card-description">
<h2>Logger-Cpp</h2>
<p>Simple Logger written in C++</p>
</div>
</a>
<a class="card" href="https://github.com/m-byte918/PCT-Coursework/tree/master/CIT360/SortingAlgorithms">
<img alt="[Image of Sorting Algorithms]" src="img/algorithm.png"></img>
<div class="card-description">
<h2>Sorting Algorithms</h2>
<p>Java implementations of selection sort, bubble sort, insertion sort, quick sort, merge sort, and radix sort</p>
</div>
</a>
<a class="card" href="https://github.com/m-byte918/Binary-Reader-Writer">
<img alt="[Image of Binary Reader/Writer]" src="img/binrw2.png"></img>
<div class="card-description">
<h2>Binary Reader/Writer</h2>
<p>C++ binary reader & writer implementation for reading + writing binary data</p>
</div>
</a>
</div>
</div>
<div class="card-section">
<br>
<br>
<div class="card-holder">
<a class="card" href="https://github.com/m-byte918/MK8-Memory-Notes">
<img alt="[Image of MK8 Memory Notes]" src="img/mk8mem.png"></img>
<div class="card-description">
<h2>MK8 Memory Notes</h2>
<p>Miscellaneous information about the memory Mario Kart 8 (v4.1 USA) uses</p>
</div>
</a>
<a class="card" href="https://github.com/m-byte918/sqrt-algorithms">
<img alt="[Image of Sqrt Algorithms]" src="img/sqrt2.png"></img>
<div class="card-description">
<h2>Sqrt Algorithms</h2>
<p>C++ program for testing performance and accuracy of various sqrt() algorithms</p>
</div>
</a>
<a class="card" href="https://github.com/m-byte918/BotW-Memory-Notes">
<img alt="[Image of BotW Memory Notes]" src="img/botwmem.png"></img>
<div class="card-description">
<h2>BotW Memory Notes</h2>
<p>Miscellaneous information about the memory Breath of the Wild (WiiU) uses</p>
</div>
</a>
</div>
</div>
<div class="card-section">
<br>
<br>
<div class="card-holder">
<a class="card" href="https://github.com/m-byte918/PCT-Coursework/tree/master/CIT360/Maze">
<img alt="[Image of Maze Solver]" src="img/maze.png"></img>
<div class="card-description">
<h2>Maze Generator & Solver</h2>
<p>Java maze generator & solver using a custom DFS, BFS, Queue, Stack, and LinkedList implementation.</p>
</div>
</a>
</div>
</div>
<br id="competitions">
<div class="card-section">
<h1>Competitions</h1>
<br>
<div class="card-holder">
<a class="card" href="https://github.com/m-byte918/ftc-2017">
<img alt="[Image of FTC-2017]" src="img/ftc.jpg"></img>
<div class="card-description">
<h2>FTC 2017</h2>
<p>Code for the TCHS Pickering Decepticons team in the FTC 2017-18 Competition (Relic Recovery)</p>
</div>
</a>
<a class="card" href="https://github.com/m-byte918/STEM">
<img alt="[Image of STEM Competition Demo]" src="img/stem.png"></img>
<div class="card-description">
<h2>STEM</h2>
<p>Code for the TCHS Pickering team in the 2018-19 PA Governor’s STEM Competition</p>
</div>
</a>
</div>
</div>
<h1><a href="https://github.com/m-byte918">(And many more here!)</a></h1>
<br>
<br>
<br>
<br>
<div id="author">
Website by Christian Rodriguez (@m-byte918)
</div>
</body>
<script src="index.js"></script>
</html>