-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (104 loc) · 4.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bruce Leung</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script src="main.js"></script>
<link rel="stylesheet" type="text/css" href="styles/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Titillium+Web|Neuton|Arvo|Vesper+Libre" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
</head>
<!--Inspiration from:
http://lbebber.github.io/public/
https://www.codesmite.com/demo/hexa-template/index.html#
http://www.creative-portfolios.com/
-->
<body>
<div id="content">
<div id="wrapper">
<div id="title">
<h1><u>Work</u></h1>
</div>
<hr>
<div class="project">
<p>Currently working as a Full-Stack Developer at <a href="https://runforstuff.com/" target="_blank">Run For Stuff</p>
<img id="RFS" src="./img/Run For Stuff.png"></a>
</div>
<hr>
<div class="project">
<div class="proj-grid">
<h2 class="proj-title">Discord Leaderboard Bot<p>August 2018</p>
</h2>
<div class="proj-desc proj-left">
<ul>
<li><a href="https://discord.js.org/">DiscordJS</a></li>
<li><a href="https://www.fflogs.com/v1/docs/">FFLogs API</a></li>
<li>Node</li>
<li>Mongoose/MongoDB</li>
</ul>
<p>
A personal project trying to get my FFXIV raiding group more motivated via a Discord
Leaderboard.
Pulls information from <a href="https://www.fflogs.com/">FFLogs</a> to give players points.
</p>
<a href="https://github.com/reallynewbie/FFXIVDiscordBot" target="_blank"><button>View on
GitHub</button></a>
</div>
<div class="proj-img proj-right">
<img src="./img/Discord_Bot1.png" height="100%" width="100%" />
</div>
</div>
</div>
<hr>
<div class="project">
<div class="proj-grid">
<h2 class="proj-title">Caraway Volunteer Tracker<p>April 2018</p>
</h2>
<div class="proj-desc proj-left">
<ul>
<li>Vue</li>
<li>Node</li>
<li>MySQL</li>
</ul>
<p>
Built as a replacement for a school's pen/paper volunteer tracking system.
Done as a group project for CMPT395 and for <a href="http://carawayschool.ca/">Caraway</a>.
</p>
<a href="https://github.com/reallynewbie/w18brown" target="_blank"><button>View on GitHub</button></a>
</div>
<div class="proj-img proj-right">
<img src="./img/Login.PNG" height="50%" width="50%" />
<img src="./img/Family Reservation Page.PNG" height="50%" width="50%" />
</div>
</div>
</div>
<!--
<hr>
<div class="project">
<h2>Project 3</h2>
</div>
<hr>
<div class="project">
<h2>Project 4</h2>
</div>
<hr>
<div class="project">
<h2>Project 5</h2>
</div>
-->
</div>
</div>
<div id="sidebar">
<div id="info">
<h1>Bruce Leung</h1>
<i>4th-year Computer Science Student at MacEwan University</i>
<p>Aspiring Full-Stack Developer</p>
<p>
<a href="https://github.com/reallynewbie/"><img src="GitHub-Mark-32px.png"></a>
<a href="https://www.linkedin.com/in/bruce-leung"><img src="In-2C-34px-R.png"></a>
</p>
</div>
</div>
</body>
</html>