Skip to content
View PixTillzcorp's full-sized avatar
๐Ÿ’ญ
Currently an Embedded Developer for Viveris Technologies !
๐Ÿ’ญ
Currently an Embedded Developer for Viveris Technologies !

Highlights

  • Pro

Block or report PixTillzcorp

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
PixTillzcorp/README.md

Hi ๐Ÿ‘‹, I'm

As a programmer i'm the 'architecture guy' !

How I describe myself through a C++ class ...

  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"} {
    }
  };

... inside 'description.cpp' that you can compile with the following command ...

  g++ -std=c++11 description.cpp

... and get my description as an output ๐ŸŒฑ

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

Pinned Loading

  1. ft_ircpp ft_ircpp Public

    ft_irc in C++

    C++

  2. ft_malloc ft_malloc Public

    My own malloc.

    C