Nicolas Brigodiot


var me = {
    this.firstName = "Nicolas";
    this.lastName = "Brigodiot";
    this.birthDate = "1984-07-01";

    this.currentLocation = "Lille, France";
    this.languages = ["French", "English"];

    this.linkedIn = "profile";

    this.skills = [
        ".NET", "VB", "C#",
        "WCF", "REST", "Entity Framework", "SignalR",
        "HTML5", "JavaScript", "CSS", "LESS",
        "SQL Server", "MySQL", "SQL",
        "Microsoft Azure", "Powershell"
    ];
    this.otherSkills = [
        "WPF", "WinForms", "Silverlight", "Oracle"
    ];

    function getJobs() {
        var years = [];

        for (var y = new Date().getFullYear() ; y > 2005 ; y--) {
            // current job
            if (y >= 2009) {
                years.push({
                    position: "Lead Engineer / Full Stack Developer / DevOps / ProdOps",
                    company: "ClicData"
                });
            }
            // past jobs
            if (y == 2008) {
                years.push({
                    position: "Network Engineer",
                    company: "Oney Banque Accord"
                });
            }
            if (y == 2007) {
                years.push({
                    position: "PHP/Oracle Analyst/Programmer",
                    company: "ADEO"
                });
            }
            if (y == 2006) {
                years.push({
                    position: "PHP/MySQL Analyst/Programmer",
                    company: "EOL Group"
                });
            }
        }

        return years;
    }

    function getStudies () {
        var years = [];

        for (var y = 2008 ; y > 2002 ; y--) {
            if (y >= 2005) {
                years.push({
                    school: "Polytech'Lille",
                    degree: "Ingénieur, Génie Informatique et Statistiques",
                    workReports: [
                        "Development of an inventory management system",
                        "Development of indicators of performance for Oracle Finances"
                    ]
                });
            } else {
                years.push({
                    school: "IUT A - Lille1",
                    degree: "DUT Informatique",
                    workReports: [
                        "Algorithmic & Programming Learning Game",
                        "Development of a peer-to-peer system"
                    ]
                });
            }
        }

        return years;
    }
}