-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (87 loc) · 4.54 KB
/
index.html
File metadata and controls
88 lines (87 loc) · 4.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sina Pahlavan</title>
<!-- Tailwind CSS (CDN) -->
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="py-6 bg-[#00ccff]">
<div
class="flex items-center space-x-8 max-w-7xl justify-center px-2 sm:px-6 lg:px-8"
>
<p class="text-black text-2xl font-bold">Sina Pahlavan</p>
<a
href="https://www.linkedin.com/in/sina-pahlavan/"
class="text-gray-300 hover:text-white"
target="_blank"
><i class="fab fa-linkedin mr-2"></i>LinkedIn</a
>
<a
href="https://github.com/sinapah"
class="text-gray-300 hover:text-white"
target="_blank"
><i class="fab fa-github mr-2"></i>GitHub</a
>
<a
href="mailto:pahlavan.sina.w@gmail.com"
class="text-gray-300 hover:text-white"
><i class="fas fa-envelope mr-2"></i>Email</a
>
</div>
</nav>
<div class="flex flex-col space-y-4 justify-center items-center mt-8 mx-8 text-black">
<h1 class="text-2xl font-bold">Hello World!</h1>
<p class="text-md font-bold">
I'm Sina Pahlavan, a software engineer from Toronto, Canada. Currently,
I'm a software engineer at
<a
href="https://www.canonical.com/"
target="_blank"
class="text-[#FFA500] hover:text-white"
>Canonical</a
>, the company behind the Ubuntu Linux distribution and a number of other open source products such as MAAS, Juju, and Charmed Kubernetes.
</p>
</div>
<div class="flex flex-col space-y-4 justify-center items-center mt-8">
<h1 class="text-2xl font-bold text-center">
Here is what I'm currently up to and some of the things I've done!
</h1>
</div>
<div class="max-w-4xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-8 items-center py-8">
<div class="text-center font-semibold text-lg">
<a href="https://charmhub.io/topics/canonical-observability-stack" class="text-[#FFA500]">Canonical Observability Stack (COS)</a>
</div>
<div class="text-left text-gray-700 bg-[#d5efee] p-4">
My role at Canonical is software engineer on the Observability team, where we engineer and maintain observability solutions for enterprise use.
I contribute and maintain software operators which drive Prometheus, Mimir, Loki, Tempo, Grafana, Opentelemetry Collector, Alertmanager and some other observability related solutions on Kubernetes.
The stack is deployable on Kubernetes using Juju, an open-source application modeling tool that automates the deployment, configuration, and management of complex software systems across clouds and machines.
Juju deploys charms, which are software operators handling the operations of a workload such as Prometheus.
My job invovles writing and maintaining these software operators and enabling integrations between different observability applications in the stack.
</div>
</div>
<div class="max-w-4xl mx-auto flex justify-center items-center gap-8 py-4">
<img src="logos/grafana.png" alt="Grafana" class="h-10">
<img src="logos/prometheus.png" alt="Prometheus" class="h-10">
<img src="logos/loki.png" alt="Loki" class="h-10">
<img src="logos/tempo.jpeg" alt="Tempo" class="h-10">
</div>
<div class="max-w-4xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-8 items-center py-8">
<div class="text-center font-semibold text-lg">
<a href="https://charmhub.io/topics/canonical-observability-stack" class="text-[#FFA500]">Bloorsoft</a>
</div>
<div class="text-left text-gray-700 bg-[#d5efee] p-4">
I was previously a founding engineer at Bloorsoft, a startup which specializes in delivering fast, user focused solutions for startups.
I worked on Engager, I engineered a social media marketing management tool for integrations with Linkedin, Medium, Reddit, and X.
I created a full app for tracking and calculating carbon emissions for civil engineering companies using React in less than 30 days.
Later, I developed a React-based AI add-in for MS Word to streamline grant writing (25-day delivery).
</div>
</div>
<div class="max-w-4xl mx-auto flex justify-center items-center gap-8 py-4">
<img src="logos/bloorsoft.png" alt="Grafana" class="h-10">
</div>
</body>
</html>