-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
257 lines (226 loc) · 12.6 KB
/
index.html
File metadata and controls
257 lines (226 loc) · 12.6 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css"/>
<link href="https://fonts.googleapis.com/css2?family=Courgette&family=Noto+Sans&family=Playfair+Display:wght@800&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>Joseph Libasora</title>
</head>
<body id="top">
<section class="head">
<h1>Joseph Libasora</h1>
</section>
<div class="nav-span">
<span class="navbtn" onclick="openNav()">☰</span>
</div>
<div class="light-dark"><!-- freepink asset -->
<img id="chBtn" onclick="chLight()" src="images/light.png" alt="Light mode icon" title="Dark mode" width="32" height="32">
</div>
<nav id="nav" class="nav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<ul>
<li>
<a href="#top" onclick="closeNav()">Home</a>
</li>
<li>
<a href="#about" onclick="closeNav()">About me</a>
</li>
<li>
<a href="#languages" onclick="closeNav()">Languages</a>
</li>
<li>
<a href="#projects" onclick="closeNav()">Projects</a>
</li>
<li>
<a href="#contact" onclick="closeNav()">Contact me</a>
</li>
</ul>
</nav>
<main>
<br>
<section id="about">
<div class="content-container">
<h2>About me</h2>
<div class="content">
<p>I’m a 3rd year Computer Applications and Software Engineering student at Dublin City University. I have general overall interests in both computing and aviation.</p>
</div>
</div>
</section>
<br>
<section id="languages">
<div class="content-container">
<h2>Programming Languages/Technologies</h2>
<div class="content">
<p>
Python, Java, C, HTML/CSS, JavaScript, Shell, SQL,
Git, Docker, R, Prolog, Express.js, React, Django,
DiscordPy, Pygame
</p>
</div>
</div>
</section>
<br>
<section id="projects">
<div class="content-container">
<h2>Notable Projects</h2>
<div class="content">
<h3>Python</h3>
<div class="container">
<div class="row">
<div class="col grid-item">
<div class="slide-container">
<div class="slide0">
<img src="images/chess/chess_1.png" alt="Chess game start" width="550" height="300">
</div>
<div class="slide0">
<img src="images/chess/chess_2.png" alt="Checkmate" width="550" height="300">
</div>
<div class="slide0">
<img src="images/chess/chess_3.png" alt="Check" width="550" height="300">
</div>
<div class="slide0">
<img src="images/chess/chess_4.png" alt="Bishop move highlighting" width="550" height="300">
</div>
<div class="slide0">
<img src="images/chess/chess_5.png" alt="Pawn promotion" width="550" height="300">
</div>
<a class="prev" onclick="chSlide(-1, 0)">❮</a>
<a class="next" onclick="chSlide(1, 0)">❯</a>
</div>
<h4><a href="https://github.com/ianlibasora/Chess-Game">Chess</a></h4>
<h6>Python (Pygame)</h6>
<p>
Developed the chess board game using Python’s Pygame library.
Allows for 2 user's to play a virtual game of chess.
Implements movement highlight assist, and all piece movements, including Castling, En passant, and Promotion.
</p>
</div>
<div class="col grid-item">
<div class="slide-container">
<div class="slide1">
<img src="images/homebot/homebot-1.png" alt="HomeBot help page" width="550" height="300">
</div>
<div class="slide1">
<img src="images/homebot/homebot-2.png" alt="HomeBot F1 World Constructors Championship Standings" width="550" height="300">
</div>
<div class="slide1">
<img src="images/homebot/homebot-3.png" alt="HomeBot airport METAR/TAF request" width="550" height="300">
</div>
<a class="prev" onclick="chSlide(-1, 1)">❮</a>
<a class="next" onclick="chSlide(1, 1)">❯</a>
</div>
<h4><a href="https://github.com/ianlibasora/HomeBot">HomeBot</a></h4>
<h6>Python (Discordpy)</h6>
<p>
Developed a personal utility bot for Discord using DiscordPy.
Implements weather reports, timetable information, F1 standings request.
</p>
</div>
</div>
</div>
<br>
<h3>C</h3>
<div class="container">
<div class="row">
<div class="col grid-item-solo">
<div class="slide-container">
<div class="slide2">
<img src="images/cshell/cshell-1.png" alt="Cshell compilation" width="550" height="300">
</div>
<div class="slide2">
<img src="images/cshell/cshell-2.png" alt="Cshell dir cmd" width="550" height="300">
</div>
<div class="slide2">
<img src="images/cshell/cshell-3.png" alt="Cshell environ cmd" width="550" height="300">
</div>
<div class="slide2">
<img src="images/cshell/cshell-4.png" alt="Cshell redirection and background execution" width="550" height="300">
</div>
<a class="prev" onclick="chSlide(-1, 2)">❮</a>
<a class="next" onclick="chSlide(1, 2)">❯</a>
</div>
<h4><a href="https://github.com/ianlibasora/Cshell">Cshell</a></h4>
<h6>C</h6>
<p>
Developed a linux command line shell in C.
Implements custom basic internal commands such as (cd, dir, clr, etc..).
Facilitates program background execution, full STDIN/STDOUT IO redirection, and basic SIGINT handling.
</p>
</div>
</div>
</div>
<br>
<h3>JavaScript</h3>
<div class="container">
<div class="row">
<div class="col grid-item-solo">
<div class="slide-container">
<div class="slide3">
<img src="images/reactplayer/reactplayer-1.png" alt="ReactPlayer main page" width="550" height="300">
</div>
<a class="prev" onclick="chSlide(-1, 3)">❮</a>
<a class="next" onclick="chSlide(1, 3)">❯</a>
</div>
<h4><a href="https://github.com/ianlibasora/ReactPlayer">ReactPlayer</a></h4>
<h6>JavaScript (React, MaterialUI)</h6>
<p>
ReactPlayer is a simple audio media player.
Developed using React and MaterialUI, it allows for audio playback of local files through a browser.
Implements simple media controls such as play/pause, volume controls and skip controls.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<br>
<section id="contact">
<div id="form-container">
<h2>Contact me</h2>
<form action="https://formspree.io/xrgykaod" method="POST">
<label for="contact-name">Name</label>
<input id="contact-name" type="text" name="contact-name" placeholder="Full name"/>
<label for="contact-email">Email address</label>
<input id="contact-email" type="email" name="contact-email" placeholder="john.doe@example.com"/>
<label for="contact-message">Your message</label>
<textarea id="contact-message" name="contact-message" rows="5"></textarea>
<input type="submit" value="Send"/>
</form>
</div>
<br>
<div class="content-container">
<h4>Follow me</h4>
<div class="social-grid-container">
<div class="social-grid-item"><!-- github asset -->
<a href="https://github.com/ianlibasora"><img src="images/GitHub-Mark-32px.png" alt="Github link" width="32" height="32"></a>
</div>
<div class="social-grid-item"><!-- linkedin asset -->
<a href="https://www.linkedin.com/in/josephlibasora/"><img src="images/linkedin_bug.png" alt="Linkedin link" width="32" height="32"></a>
</div>
<!-- template -->
<!-- <div class="social-grid-item">
<a href="">img src=""" alt="" width="32" height="32"></a>
</div> -->
<!-- end template -->
</div>
</div>
</section>
</main>
<br>
<!-- google asset -->
<button onclick="r_top()" id="topBtn" title="Return to top"><img src="images/up-chevron.png" title="Return to top" alt="Return to top" width="15" height="15"></button>
<footer>
<div class="foot-content">
<span>Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Light/Dark buttons">Freepik</a>, <a href="https://www.flaticon.com/authors/google" title="Up chevron">Google</a>, <a href="https://www.flaticon.com/" title="Flaticon">flaticon.com.</a></span>
<span>Github mark by <a href="https://github.com/" title="Github mark">Github, </a><a href="https://github.com/logos" title="Github logos">Github.com.</a></span>
<span>Linkedin bug by <a href="https://brand.linkedin.com/policies">LinkedIn. </a></span>
<span><a href="https://github.com/ianlibasora/ianlibasora.github.io/blob/master/README.md" title="Attribution details">Attribution details.</a></span>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>