-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
184 lines (175 loc) · 7.17 KB
/
about.html
File metadata and controls
184 lines (175 loc) · 7.17 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The Analytical Stack | About</title>
<link rel="shortcut icon" href="media/favicon-v2.png" />
<meta
name="description"
content="Profile, workflow, and technical stack of a student developer."
/>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<main class="container page-content about-page">
<section class="section about-hero">
<div class="about-hero-grid">
<div class="about-copy">
<p class="eyebrow">About Me</p>
<h1>Giacomo Tarmati</h1>
<p class="about-lead">
I design backend-first products, study computer science with a
systems mindset, and turn ideas into practical software with clean
architecture and measurable results.
</p>
<div class="about-actions">
<a class="btn btn-primary" href="projects.html">
<i data-lucide="rocket" class="icon icon-inline" aria-hidden="true"></i>
<span>View Projects</span>
</a>
<a class="btn btn-ghost" href="contact.html">
<i data-lucide="send" class="icon icon-inline" aria-hidden="true"></i>
<span>Get in Touch</span>
</a>
</div>
<div class="about-metrics">
<article class="metric-card">
<p class="metric-value">15+</p>
<p class="metric-label">Personal builds</p>
</article>
<article class="metric-card">
<p class="metric-value">3</p>
<p class="metric-label">Core domains</p>
</article>
<article class="metric-card">
<p class="metric-value">∞</p>
<p class="metric-label">Learning mode</p>
</article>
</div>
<br />
<a
href="https://ko-fi.com/thefoxy23"
target="_blank"
rel="noopener noreferrer"
class="btn-support-hero"
>
<span class="support-icon">☕</span>
<span>Buy me a second breakfast <br>(hobbit necessities) </span>
</a>
</div>
<figure class="about-photo-wrap">
<img
class="about-photo"
src="media/jake.jpeg"
alt="Portrait of the developer"
/>
<figcaption class="about-photo-caption">
<i data-lucide="sparkles" class="icon icon-inline" aria-hidden="true"></i>
<span>Building in public with intent and consistency</span>
</figcaption>
</figure>
</div>
</section>
<section class="section about-panels">
<article class="card about-panel">
<h2>How I Work</h2>
<br />
<ul class="feature-list">
<li>
<i data-lucide="target" class="icon icon-inline icon-accent" aria-hidden="true"></i>
<span>Define constraints before writing code</span>
</li>
<li>
<i data-lucide="layers-3" class="icon icon-inline icon-accent" aria-hidden="true"></i>
<span>Build in layers: domain, services, interfaces</span>
</li>
<li>
<i data-lucide="flask-conical" class="icon icon-inline icon-accent" aria-hidden="true"></i>
<span>Test often and iterate with small improvements</span>
</li>
</ul>
</article>
<article class="card about-panel">
<h2>What I Care About</h2>
<br />
<ul class="feature-list">
<li>
<i data-lucide="shield-check" class="icon icon-inline icon-accent" aria-hidden="true"></i>
<span>Reliability and maintainability</span>
</li>
<li>
<i data-lucide="database" class="icon icon-inline icon-accent" aria-hidden="true"></i>
<span>Data-driven engineering decisions</span>
</li>
<li>
<i data-lucide="git-branch" class="icon icon-inline icon-accent" aria-hidden="true"></i>
<span>Solid versioning and collaboration flow</span>
</li>
</ul>
</article>
</section>
<section class="section">
<div class="section-head">
<h2>Core Stack</h2>
<a class="inline-link" href="projects.html">
<i data-lucide="arrow-right" class="icon icon-inline" aria-hidden="true"></i>
<span>See some projects</span>
</a>
</div>
<div class="stack-grid">
<article class="stack-item">
<i data-lucide="coffee" class="icon stack-icon" aria-hidden="true"></i>
<h3>Java & OOP</h3>
<p class="muted">Robust backend logic and scalable architecture.</p>
</article>
<article class="stack-item">
<i data-lucide="server" class="icon stack-icon" aria-hidden="true"></i>
<h3>REST APIs</h3>
<p class="muted">Service design focused on clarity and consistency.</p>
</article>
<article class="stack-item">
<i data-lucide="database-zap" class="icon stack-icon" aria-hidden="true"></i>
<h3>SQL Modeling</h3>
<p class="muted">Clean schemas, useful queries, predictable data flows.</p>
</article>
<article class="stack-item">
<i data-lucide="workflow" class="icon stack-icon" aria-hidden="true"></i>
<h3>Git Workflow</h3>
<p class="muted">Version control habits that support teamwork.</p>
</article>
<article class="stack-item">
<i data-lucide="bug" class="icon stack-icon" aria-hidden="true"></i>
<h3>Debugging</h3>
<p class="muted">Root-cause driven troubleshooting under pressure.</p>
</article>
<article class="stack-item">
<i data-lucide="brain" class="icon stack-icon" aria-hidden="true"></i>
<h3>Study Systems</h3>
<p class="muted">Structured routines for technical depth over time.</p>
</article>
</div>
</section>
<section class="section">
<article class="card now-card">
<div class="now-head">
<p class="eyebrow">Current Focus</p>
<h2>What I'm studying right now</h2>
</div>
<p>
Advanced data structures, backend service architecture, and software
design principles for resilient and maintainable applications.
</p>
<div class="pill-row">
<span class="about-pill">System Design</span>
<span class="about-pill">Algorithmic Thinking</span>
<span class="about-pill">Clean Architecture</span>
<span class="about-pill">Performance Mindset</span>
</div>
</article>
</section>
</main>
<script src="https://unpkg.com/lucide@latest"></script>
<script src="js/components.js"></script>
</body>
</html>