-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
50 lines (49 loc) · 2.48 KB
/
Copy pathabout.html
File metadata and controls
50 lines (49 loc) · 2.48 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
---
layout: home
---
<div class="h-100 d-flex flex-column align-items-center justify-content-center mt-5 pt-5">
<div class="flex-column">
<image src="./assets/images/event.png" width="150px" alt="Felix Eyetan" class="animated">
</div>
<div class="flex-column mt-4 text-center">
<h1 class="title">Felix Eyetan</h1>
</div>
<div class="flex-column mt-2 text-center description">
<span>Architecture</span> | <span>IaC</span> | <span>Team Work</span>
</div>
<div class="flex-row mt-3 text-center">
<div class="d-inline m-2"><a href="{{ site.linkedin_url }}" target="_blank" class="fa-brands fa-linkedin"></a></div>
<div class="d-inline m-2"><a href="{{ site.github_url }}" target="_blank" class="fa-brands fa-github"></a></div>
</div>
<div class="flex-column mt-4 mb-4 text-center" style="width: 65%;">
<div>
<p>
With experience in cloud architecture and platform engineering, I've led engineering teams across software development and cloud infrastructure projects —
working closely with clients and stakeholders to understand what they're trying to achieve before reaching for a technical solution.
</p>
<p>
I enjoy the discovery side of architecture as much as the implementation — requirements gathering, translating business needs into technical decisions,
and thinking about how systems fit together. I care about resilience, security posture, cost, and operability: not just whether something works,
but whether it works well for the people who depend on it.
</p>
<p>
I love working in Agile environments with collaborative teams. I appreciate all things IaC using Terraform, proper CI/CD and TDD practices,
and always make time for technical documentation and supporting junior engineers.
</p>
<p>
My core cloud platform is Microsoft Azure, with some AWS exposure. I'm actively exploring cloud security architecture, FinOps,
and the use of AI as an accelerant in both software development and cloud infrastructure delivery.
</p>
</div>
</div>
<div class="flex-column mt-2 text-center main-content">
{% if item.name != "About" %}
<span class="d-inline m-2"><a href="./index.html" class="link">Home</a></span>
{% endif %}
{% for item in site.data.navigation %}
{% if item.name != "About" %}
<span class="d-inline m-2"><a href="{{ item.link }}" class="link">{{ item.name }}</a></span>
{% endif %}
{% endfor %}
</div>
</div>