Skip to content
View jeanjmichel's full-sized avatar

Block or report jeanjmichel

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
jeanjmichel/README.md

👋 Hi, I’m Jean J. Michel
👀 I'm curious about software design and development, agile methods and leadership skills for IT teams
🌱 I'm pursuing my learning journey about .NET, Javascript and Python languages, patterns, AI, Microsoft Powerplat and other related topics that I can store here in GitHub
💞️ I want to work with the community and share my knowledge
📫 How to reach me... in LinkedIn, X (before Twitter), Instagram, YouTube and more searching by "jeanjmichel"

My career began in 2002, and since then...

🎓 I was graduated in

➾ Software Analysis and Development from Estácio de Sá

💼 I acquired experience working in different kinds of businesses and industries

➾ International IT Services and IT Consulting
󠁝󠀠󠀠󠀠󠀠󠀠󠀠󠀠󠀠‍➾ International Education
➾ Telecommunications
➾ Banking
➾ Factoring
➾ Health
➾ Wellness, welfare and fitness
➾ Food and Drink industry
➾ Energy (petroleum) and chemical industry

🏆 I obtained certifications in these fields

➾ Certified in cloud computing (as an Microsoft Azure Fundamentals and AWS Certified Cloud Practitioner)
➾ Certified in agile methodologies (certified as Scrum Master and Product Owner by Scrum Alliance)
➾ Certified in IT Service Management (ITIL and ISO 20.000)

🧑🏻‍💻 And I have been in touch with this technologies

Cloud providers


Program languages or Plataforms


Databases


IDEs


Source control


Package management


DevOps and agile work control

Containers


Frameworks


Others


And more!



Anurag's GitHub stats Top Langs

Pinned Loading

  1. A JavaScript code to test the Monty ... A JavaScript code to test the Monty Hall Problem.
    1
    var myBet = Math.floor(Math.random() * 3) + 1;
    2
    var acceptChangeInitialBet = Math.floor(Math.random() * 2) + 1;
    3
    
                  
    4
    function game(initialBet, changeInitialBet) {
    5
    	var portsAndPrizes = [];
  2. Currying em JavaScript é uma forma d... Currying em JavaScript é uma forma de fazer uma função receber parâmetros (que não necessariamente são todos os essenciais para a imediata execução da função) e retornar uma outra função.
    1
    const saudarPessoa = (saudacaoNoIdiomaX) => (nomePessoa) => console.log(`${saudacaoNoIdiomaX} ${nomePessoa}`);
    2
    const saudarEmIngles = saudarPessoa('Good morning');
    3
    const saudarEmEspanhol = saudarPessoa('Buen día');
    4
    const saudarEmAlemao = saudarPessoa('Guten Morgen');
    5
    
                  
  3. Of course this is just an example. A... Of course this is just an example. And the goal here is to show how you can create a factory of objects (even if each object has an unique relevant set of information).
    1
    /**
    2
     * In this folder (creational.patterns/factory.pattern/) you will find an 
    3
     * example implementation of the Factory design pattern. This means that 
    4
     * you will see that things were created without using the word 'new'.
    5
     * 
  4. Talk_Dependency_Injection_Examples Talk_Dependency_Injection_Examples Public

    Codes used in my talk

    C#

  5. F1API F1API Public

    This repo is a single study about REST APIs in .Net Core and usage of AI

    C#

  6. PostAboutMagicNumbersEnumsAndRecords PostAboutMagicNumbersEnumsAndRecords Public

    C#