こんにちは! (ノ^∇^)
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: 。☾ ゚⋆。 (◐ω◑) 。 ゚☁︎。 ⋆。 ゚
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;
}
