Based at Aix-les-Milles (LFMA), France.
<script>
(function () {
var metarElement = document.getElementById("metar-lfml");
var fallbackMetar = "METAR LFML unavailable.";
fetch("https://metar.vatsim.net/LFML")
.then(function (response) {
if (!response.ok) {
throw new Error("HTTP " + response.status);
}
return response.text();
})
.then(function (metarText) {
var clean = metarText.trim();
metarElement.textContent = clean || fallbackMetar;
})
.catch(function () {
metarElement.textContent = fallbackMetar;
});
})();
</script>
7 years in tech industry, mainly deploying cloud infrastructures.

Helm chart for Cal.com application, using a PostgreSQL database.

Applications deployed on my Kubernetes home cluster, using ArgoCD and formerly SSO.

Redaction in progress...