-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpatchRule.html
79 lines (70 loc) · 2.9 KB
/
patchRule.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
<!DOCTYPE html>
<html>
<head>
<title> PV - Home</title>
<link rel="stylesheet" href="style.css" >
</head>
<body>
<div id = "particles-js"></div>
<script type = "text/javascript" src = "particles.js"></script>
<script type = "text/javascript" src = "app.js"></script>
<div class="navbar">
<a href = "index.html"><img class = "logo"></a>
<a href = "portfolio.html">PORTFOLIO</a>
<a href = "about.html">ABOUT</a>
</div>
<script>
function myFunction() {
document.getElementById("myDropdown").classList.toggle("show");
}
window.onclick = function(e) {
if (!e.target.matches('.dropbtn')) {
var myDropdown = document.getElementById("myDropdown");
if (myDropdown.classList.contains('show')) {
myDropdown.classList.remove('show');
}
}
}
</script>
<div class="icon-bar">
<a href="Phillip%20Vanderlaat%20Resume.pdf"><img src="Resume.png"></a>
</div>
<script data-cfasync="false" type="text/javascript" src="form-submission-handler.js"></script>
<div class="projectDisplay">
<div class="title">
<h1>Patch Rule Tool</h1>
</div>
<div class="rando-image-holder">
<img src="PatchRule1.png">
<img src="PatchRule3.png">
<img src="PatchRule2.png">
</div>
<br/>
<br/>
<div class = "links">
<h10>Python - SQL - Snowflake Database</h10>
</div>
<div class = "main">
<div class="main-title">
<h4>
This was the main project I worked on during my internship with Western Union in the summer of 2021.
It is a GUI that helps automate one of their many processes for capturing and stopping fraudlent transactions from going
through their systems.
</h4>
<br>
<h4>
I had to learn Python and SQL for this project and it was my first time working on software for a large corporation.
The GUI takes user input regarding what type of transactions to analyze. Then a Snowflake query is created, using SQL, which returns
a large chunk of data. The data is analyzed using a Python algorithm, which produces the desired result for the user.
</h4>
</div>
<br>
</div>
<br>
<div class="title">
<h1>Further details available upon request</h1>
</div>
</div>
</div>
</body>
</html>