-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (84 loc) · 3.84 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Alex Tuley | Software Developer</title>
<link rel="stylesheet" type="text/css" href="index.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400&display=swap">
</head>
<body>
<nav class="nav">
<a class="nav__link" target="_blank" href="https://github.com/atuley">Work</a>
<a class="nav__link" href="mailto:[email protected]?subject=Resume">Resume</a>
<a class="nav__link" href="mailto:[email protected]">Contact</a>
</nav>
<div class="profile">
<div class="u-ml-2x">
<div class="profile__portrait"></div>
<div class="u-flex">
<p class="profile__location">
<img src="images/location.svg" />
<span class="u-ml">Cincinnati, OH</span>
</p>
<p class="profile__location">
<img class="u-ml" src="images/briefcase.svg" />
<span class="u-ml">Clarus R+D</span>
</p>
</div>
</div>
<div class="profile__about">
<h1 class="about__name">
<span class="name__span">Alex Tuley</span>Software Developer
</h1>
<div class="about__contact-info">
<a class="social__link" href="mailto:[email protected]">
<img class="social__img" src="images/mail.svg" />
Email
</a>
<a class="social__link" target="_blank" href="https://github.com/atuley">
<img class="social__img" src="images/mark-github.svg" />
GitHub</a>
<a class="social__link" target="_blank" href="https://www.linkedin.com/in/alextuley/">
<img class="social__img" src="images/linkedin.svg" />
LinkedIn
</a>
</div>
<p>
Software Engineer with 8 years of experience specializing in Elixir, JavaScript, and mobile development.
I have a strong background in building scalable applications, leading feature development, breaking down
complex problems, and mentoring engineers. My experience spans backend and full-stack development, with a
focus on Elixir, Phoenix, LiveView, and React. I've worked across industries—from fintech to e-commerce—and
love building reliable, user-friendly software while continuously optimizing performance.
</p>
<p><strong>Experienced in:</strong> Elixir/Phoenix/LiveView, Javascript, React, Swift, Ruby on Rails, Java</p>
</div>
</div>
<div class="projects">
<h1 class="projects__name">
<span class="projects__name-span">Most Recent Side Project</span>
<a class="projects__link" target="_blank" href="https://github.com/atuley">View Full Portfolio</a>
</h1>
<div class="projects__content">
<div class="projects__description">
<h3 class="projects__title">Compound Interest Calculator</h3>
<p class="projects__text">
A web application built with Elixir and Phoenix LiveView that helps users understand and visualize compound interest.
The calculator allows users to input different parameters like initial investment, interest rate, and time period to
see how their money grows over time.
</p>
<a class="projects__link" target="_blank" href="https://github.com/atuley/compoundexr">View on GitHub</a>
</div>
<div class="projects__video">
<iframe
width="560"
height="200"
src="https://www.youtube.com/embed/Ytot10UHN4E"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
</div>
</div>
</body>
</html>