-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojects.html
More file actions
116 lines (116 loc) · 4.38 KB
/
projects.html
File metadata and controls
116 lines (116 loc) · 4.38 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Theo K. | Project Page</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="navigator.css">
<link rel="stylesheet" type="text/css" href="canvas.css">
<link rel="stylesheet" type="text/css" href="text.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Karla|Heebo">
</head>
<section id="nav-bar">
<ul class="n">
<li class="n"><a href="index.html">Home</a></li>
<li class="n"><a class="active" href="projects.html">Projects</a></li>
<li class="n"><a href="aboutme.html">About me</a></li>
</ul>
</section>
<div class="grid-container">
<div class="grid-item-6">
<img src="images/project_6.jpg" alt="" />
<h6>Machine Learning Model
<p><br>A jupyter notebook that utilised Gaussian Mixture Modelling (GMM), using the Expectation-Maximization (EM) algorithm on iris dataset.
<br><br>• Python •
<br>• ML •
<br>• Jupyter•
</p>
<div onclick=report1() class="box6"></div>
</h6>
</div>
<div class="grid-item-2">
<img src="images/project_2.jpg" alt="" />
<h6>Meeting App
<p><br>A web application that allows attendees in a meeting or project to leave feedback. The data is analyzed, contextualized and presented in a user-friendly manner.
<br><br>• Java •
<br>• MySQL •
<br>• Back-End •
</p>
<div onclick=github2() class="box2"></div>
</h6>
</div>
<div class="grid-item-1">
<img src="images/project_1.jpg" alt="" />
<h6>Binance Trading Bot
<p><br>A set of tools created in Python that link to the Binance API to get data and perfrom automatic buy and sell orders for Bitcoin and other cryptocurrencies using the MACD index.
<br><br>• Python •
<br>• Data Science •
<br>• Data Analytics •
</p>
<div onclick=github1() class="box1"></div>
</h6>
</div>
<div class="grid-item-3">
<img src="images/project_3.jpg" alt="" />
<h6>FPGA Game
<p><br>A retro style game build for the nexys4 FPGA board. Simple graphics and game logic. Customizable levels and difficulty through the onboard input. Coded in Verilog using Vivado.
<br><br>• Verilog •
<br>• FPGA •
<br>• Vivado •
</p>
<div onclick=github3() class="box3"></div>
</h6>
</div>
<div class="grid-item-4">
<img src="images/project_4.jpg" alt="" />
<h6>Intrusion Detection
<p><br>A simple intrusion detection program written in C. It uses packet sniffing to analyze data packets and detects potential SYN flood and ARP spoofing attacks as well any blacklisted URLs.
<br><br>• C •
<br>• Networks •
<br>• Linux •
</p>
<div onclick=github4() class="box4"></div>
</h6>
</div>
<div class="grid-item-5">
<img src="images/project_5.jpg" alt="" />
<h6>Hollister Restock Alerter
<p><br>A chrome extension that uses puppeteer from Note.js to web scrape the Hollister website and check the availability of products. If the product becomes available an email is sent to the user.
<br><br>• Note.js •
<br>• Puppeteer •
<br>• Web Scraping •
</p>
<div onclick=github5() class="box5"></div>
</h6>
</div>
<div class="grid-item-7"></div>
<div class="grid-item-8"></div>
</div>
<canvas id="canvas"></canvas>
<script type="text/javascript" src="canvas2.js"></script>
<script>
function github1() {
window.open(
"https://github.com/cooltheo17/BinanceBot", "_blank");
}
function github2() {
window.open(
"https://samreilly.github.io/cs261-g33/", "_blank");
}
function github3() {
window.open(
"https://github.com/cooltheo17/FPGA-Game", "_blank");
}
function github4() {
window.open(
"https://github.com/cooltheo17/IntrusionDetection", "_blank");
}
function github5() {
window.open(
"https://github.com/cooltheo17/hollisterPlugin", "_blank");
}
function report1() {
window.open(
"https://drive.google.com/file/d/1XwfQ9OKAlNNgjnIuDBTAmK3M9mmjIKan/view?usp=sharing", "_blank");
}
</script>
</section>