myself

using namespace std;

class Me {
  private :
    string _Pseudo = "G1an";
    string _Name = "Noah G" + (_Pseudo ? "i" : to_string(1)) + "ancarlo Steiniger Rubiero";
    int _Age = 20;
    int _YearsAtEpitech = 2;
    vector<icons> _Languages = ...;
    vector<icons> _Competences = ...;

  public :
    void showLanguages(self) { std::cout << self._languages << std::endl; }

    void showCompetences(self) { std::cout << self._competences << std::endl; }
}

My name is Noah GianCarlo Steiniger Rubiero, i'm 20 years old and studying at EPITECH Strasbourg.

And I love... coding !

From creating little indie games, to develop heavy algorythms, or creating beautiful websites.
Development became my favorite hobby and i sincerely want to make it my full-time job.
Gaining level and experience by myselfor by the help of my friends.
Increasing my knowledge has always been a significant trait in my personality !

int main (int ac, char *av[])
{
  // creation of myself
  Me G1an;

  if (ac < 2)
    return 84;
  for (int i = 0; av[i]; i++) {
    if (!av[i].compare("--languages")) {
      std::cout << "The languages i'm confident using for a job offer :" << std::endl;
      G1an.showLanguages();
    }
    if (!av[i].compare("--competences")) {
      std::cout << "The competences i can fluidly use :" << std::endl;
      G1an.showCompetences();
    }
  }
  return 0;
}

// terminal
$--> make
$--> ./myself --competences --languages


The languages i'm confident using for a job offer :
The competences i can fluidly use :


If you want to see more about me, check my works in the dedicated page or visit my github page i regularly post some of my personal projects ! If you are interested in my profile, contact me via the contat section and send me an email !
I would be glad to start a new exciting project.