package mt.fcm.about;

public class Application {

    public static void main(String[] args) {
        // static call
        // there is only 1 Franco!
        Franco.printInfo();

        // todo - blog
    }

    private static void seeBlog() {
        Franco.redirect(Destinations.BLOG);
    }
}
                
            

X

                
{
    "iss": "https://fcm.mt",
    "sub": "franco",
    "aud": "*",
    "exp": future_expiry,
    "iat": now,
    "name": "Franco Cassar Manghi",
    "given_name": "Franco",
    "family_name": "Cassar Manghi",
    "gender": "male",
    "birthdate": "1992-09-30",
    "email": email,
    "picture": "https://fcm.mt/me.jpg",
    "pronoun": "him/he",
    "current_location": "London, UK",
    "socials": {
        "linkedin": "https://www.linkedin.com/in/francocm/"
    },
    "top_sectors": [
        "telecoms",
        "banking"
    ],
    "tech_skills_and_interests": [
        "technical_architecture",
        "software_engineering",
        "cybersecurity",
        "devops",
        "automation"
    ],
    "dev_skills": [
        {
            "skill": "java",
            "confidence": 0.9
        },
        {
            "skill": "spring-boot",
            "confidence": 0.8
        },
        {
            "skill": "mysql",
            "confidence": 0.8
        },
        {
            "skill": "oracle_sql",
            "confidence": 0.7
        },
        {
            "skill": "postgres",
            "confidence": 0.6
        },
        {
            "skill": "python",
            "confidence": 0.5
        },
        {
            "skill": "mongodb",
            "confidence": 0.4
        },
        {
            "skill": "golang",
            "confidence": 0.2
        }
    ],
    "top_tools": [
        "nginx",
        "rabbitmq",
        "docker",
        "git",
        "gitlab",
        "gitlab_ci",
        "sonatype_nexus",
        "sonarqube",
        "elk"
    ],
    "operating_systems": [
        "ubuntu_linux"
    ]
    "human_languages": {
        "mlt": {
            "english_name": "Maltese",
            "level": "NATIVE"
        },
        "eng": {
            "english_name": "English",
            "level": "NATIVE"
        },
        "ita": {
            "english_name": "Italian",
            "level": "ADVANCED"
        },
        "fra": {
            "english_name": "French",
            "level": "NOVICE"
        }
    }
}
                
            

X

                
Exception in thread "main" java.lang.UnsupportedOperationException: Blog not yet implemented.
at mt.fcm.about.Franco.redirect(Franco.java:10)
at mt.fcm.about.Application.seeBlog(Application.java:15)
at mt.fcm.about.Application.main(Application.java:11)