Skip to content
View GurSych's full-sized avatar
🦊
Lazy fox
🦊
Lazy fox
  • Gur-Sych Tech
  • Russia
  • 03:47 (UTC +03:00)

Block or report GurSych

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
GurSych/README.md

💫 About Me:

こんにちは! (ノ^∇^)
I'm a programmer from Russia and a student of MIET (National Research University of Electronic Technology). I learn a lot of differnt things and want to become a high-level developer ⸜(。˃ ᵕ ˂ )⸝♡

Я люблю МПСУ!

More information about me
  • 🙋‍♂️ Full name: Daniil Gurchin-Sychev (Даниил Гурчин-Сычёв)
  • 🎂 Birth date: 19th of April
    • Age: 18 years
  • 🗣️ Languages:
    • Native: Russian
    • Others: English (about B1-level) and Japanese (less than N5-level)
  • 🧑‍💻 My computers:
    • 🖥️ Desktop: GurWorkingHouse (AMD Ryzen 7 8700F / Nvidia RTX 4060 / 1tb / 32gb / Windows 11)
    • 💻 Laptops: personal MacBook Air 2020 (M1 / 8-core graphics / 512gb / 8gb / macOS 15 - Sequoia) and GurBook (Intel Core i7 / Nvidia / 512gb / 28gb / Windows 11)
    • 📟 Single-board: Raspbery Pi 4 Model B (Quad-core Cortex-A72 / / / 4gb / Ubuntu)
  • ❤️ My interests/hobbies:
    • 🎮 Games: The Legend of Zelda series, Animal Crossing: New Horisons, Zenless Zone Zero and Tetris 99
    • 📸 Photography: using tele-leans (77mm and more)
    • 🏢 Companies: Apple, DJI and Nintendo
    • 🎶 Music generes: hip-hop, phonk and j-pop
    • 🎵 Music artists: AJR and Hensonn
    • ⛩️ Cultures: Russian and Japanese
  • 💔 Relationships: In unrequited love

Let's code and listen AJR songs!

Rank Language Relation
1 C++ The world's best language ♡
2 Swift Very powerful especially with SwiftUI
3 Python Very cool but he hides a lot

Me working late at night: 。☾ ゚⋆。 (◐ω◑) 。 ゚☁︎。 ⋆。 ゚

💻 Tech Stack:

C++ Python
SQLite

📊 GitHub Stats:

GitHub Streak

😎 Some more words

Place for some more information◝(ᵔᗜᵔ)◜

About C++ My C++ code style is like code below
#include <iostream>
#include <string>

namespace gtd {
    class Speaker {
    public:
        Speaker(const std::string& name) : _name{name} {}
        Speaker(const std::string& name, const std::string& lang) : _name{name}, _lang{lang} {}
        void hello(const std::string& str) const noexcept {
            std::cout << "Hello " << str << "! Nice to meet you ^^" << std::endl;
        }
        void about() const noexcept {
            std::cout << "I'm " << _name;
            if(!_lang.empty()) std::cout << ", a " << _lang << " programmer";
            std::cout << " =)" << std::endl;
        }
    private:
        std::string _name{};
        std::string _lang{};
    };
}

int main() {
    gtd::Speaker speaker{"Dany","C++"};
    speaker.hello("GitHub");
    speaker.about();
    return 0;
}
ワイフ Purah

Pinned Loading

  1. Purah Purah Public

    Purah is my high-level programming language

    C++ 3

  2. CppFunctionDecorators CppFunctionDecorators Public

    Decorator Library is my C++ library for creating function decorators with several ready-to-use decorators

    C++ 1