-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (104 loc) · 5.63 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="assets/style.css">
<title>James Gasek</title>
</head>
<body>
<div class="grid">
<div class="left">
<div class="profile">
<img class = "headshot" src="assets/Headshot.png" alt="">
<p class = "name" id="matrix">~/</p>
<div class="links">
<a href="https://github.com/jamesgasek" class="socialLink">
<img class = "socialImg" src="assets/git.png" alt="">
</a>
<a href="https://www.linkedin.com/in/devjamesgasek" class="socialLink">
<img class = "socialImg" src="assets/in.png" alt="">
</a>
<a href="https://www.instagram.com/jamesgasek/?hl=en" class="socialLink">
<img class = "socialImg" src="assets/gram.png" alt="">
<a href="mailto:[email protected]" class="socialLink">
<img class = "socialImg" src="assets/mail.png" alt="">
</a>
</div>
</div>
</div>
<div class = "right">
<h1 class = "header">Who am I?</h1>
<p class = "content">
I grew up in a small town in Central Massachusetts, Hudson. For as long as I can remember, I have loved
taking things apart and learning how they worked. In middle school, I began to
experiment with single-board computers, such as the Raspberry Pi, and developed a love for creating things with
programming and hardware, and eventually found a passion for software development.
</p>
<h1 class = "header">What do I do?</h1>
<p class = "content">
I am wrapping up my final semester at Lehigh University in Bethlehem, Pennsylvania, studying
Computer Science and Business with a minor in Data Science. I currently have a 3.7 cumulative GPA.
</p>
<p class = "content">
Lehigh's program in Computer Science and Business (CSB) is an extremely competitive program
offered through both the College of Business and Economics and the Department of Computer Science and
Engineering in the P.C. Rossin College of Engineering and Applied Science. Students completing this
demanding program are awarded a unique joint degree from both colleges. It equips students with
the high-tech and business skills they need at a time when the boundaries between the two
fields are becoming increasingly blurred.
</p>
<p class = "content">
Prior to attending Lehigh University, I was fortunate to be accepted to the Advanced Math and Science Academy in Marlborough,
Massachusetts, and took rigourous classes throughout middle and high school.
</p>
<p class = "content">
Outside of class, you might find me playing with one of my many electronic experiments, coding,
studying, hiking, skiing, mountain biking, or working on my car. Other interests
include cryptocurrencies, finance, physics, and music.
</p>
<h1 class = "header">What do I know?</h1>
<p class = "content">
I have experience in Java, C, C++, Typescript, Python, HTML, SQL and Swift, as well as Linux/Unix and Windows CLI environments.
Currently, I am practicing C++ development, but have experience with full-stack web development with React, Typescript, Node,
and PostgreSQL. This summer, I joined Amazon Robotics as a software deevlopment intern. I also enjoy experimenting with UI/UX design and implementation.
</p>
<p class = "content">
More recently, I have taken an interest in the financial services industry, and the ways in which technology can be used to
reduce inneficiencies and process massive amounts of historical data. I have experience trading personally, as well as API-based
trading of cryptocurrencies and basic securities. I am also interested in the ways in which blockchain technology can be used to
improve the financial services industry, particularly in countries lacking the economic freedoms enjoyed in the west.
</p>
<h1 class = "header">What do I want to do?</h1>
<p class = "content">
I am passionate about applying my hands-on experience with computers to solve problems creatively in the business world.
</p>
<p class = "content">
I am currently seeking full-time employment oppurtunitites beginning in the summer of 2024, but I am also open to exploring oppurtunities during the
academic year.
</p>
<h1 class = "header">How can I be contacted?</h1>
<p class = "content">
To send me an email, click the mail button on the left side of the page. Also linked are my
GitHub and LinkedIn accounts, as well as my Instagram. Connect with me if you would like to chat!
Click <a href="assets/resume.pdf" class = "intextlink">here</a> to download a copy of my resume.
</p>
</div>
</div>
<script>
function main() {
var counter = 0
const myname = "James Gasek"
for (var i = 0; i < 11; i++) {
setTimeout(function () {
console.log(counter)
var text = document.getElementById("matrix");
text.innerHTML = text.innerHTML + myname.charAt(counter)
counter = (counter+1);
}, i * 60)
}
}
window.onload = main;
</script>
<script data-goatcounter="https://jamesgasekpage.goatcounter.com/count"
async src="//gc.zgo.at/count.js"></script>
</body>
</html>