class PixTillz : public Programmer {
public:
typedef Programmer inherited;
typedef std::list<std::string> strlist;
std::string name;
std::string nationality;
std::string intro;
strlist languages;
strlist hobbies;
virtual ~PixTillz() {}
PixTillz(PixTillz const &cpy) : inherited(static_cast<inherited const &>(cpy)),
name(cpy.name), nationality(cpy.nationality),
intro(cpy.intro), languages(cpy.languages),
hobbies(cpy.hobbies) {}
PixTillz &operator=(PixTillz const &cpy) {
static_cast<inherited &>(*this) = static_cast<inherited const &>(cpy);
name = cpy.name;
nationality = cpy.nationality;
intro = cpy.intro;
languages = cpy.languages;
hobbies = cpy.hobbies;
return *this;
}
PixTillz() : inherited("42 Paris"), name("PixTillz"), nationality("French"),
intro("I'm a creative person who loves to explore new skill "
"fields. Motivated to become an active member of WEB3 development"
", I am currently working on a DeFi bot with my friends ! I like "
"to write (sexy-looking) code that scales well !"),
languages{ "C", "C++", "python", "Brainf_ck", "Solidity" },
hobbies{ "Basket Ball", "Crypto trading", "Mechanics & Handiwork",\
"Astronomy & Rockets", "Competitive video games",\
"Terminal game development with ncurses"} {
}
};
g++ -std=c++11 description.cpp
My Pseudo is 'PixTillz' and I'm a French developer from '42 Paris' !
I'm a creative person who loves to explore new skill fields.
Motivated to become an active member of WEB3 development,
I am currently working on a DeFi bot with my friends !
I like to write (sexy-looking) code that scales !
I can currently build projects with :
- C
- C++
- python
- Brainf_ck
- Solidity
My hobbies and things I do in my spare time are:
- Basket Ball
- Crypto trading
- Mechanics & Handiwork
- Astronomy & Rockets
- Competitive video games
- Terminal game development with ncurses