Recent content by levadny

  1. levadny

    Today I Learned

    Hi there! Structured binding in C++17 structured binding in C++ // before 17 std::map<int, double> tmp; for(const auto& i : tmp){ i.first; i.second: } // structured binding in C++ 17 for(const auto& [key, value] : tmp) { key; value; }
  2. levadny

    C/C++ Best resources to learn C++ (free)

    For Russian in Coursera https://www.coursera.org/specializations/c-plus-plus-modern-development is best course. Many practice but only STL. https://www.physicsforums.com/insights/guide-to-c-programming-for-beginners/
  3. levadny

    Today I Learned

    Hi for all! Tonight I learn Python but without classes. Python's classes and inheritance I will learn tomorrow. :)
  4. levadny

    News Stephen Hawking has Died - March 14th, 2018

    Rest In Peace. We were lucky live at the same time with him.
  5. levadny

    What should be the rules to write excellent code?

    KISS - it means: let's do all very simple and reliable. Yes?
  6. levadny

    C/C++ C++ Builder / RAD Studio Embarcadero

    Ok. Thanks. But Builder not follow full standart. I cannot use lambda expression and auto keyword in XE5.
  7. levadny

    What should be the rules to write excellent code?

    More information. It's best book for software development. For any OOP language. I read only some parts of this book. https://www.amazon.com/dp/0201633612/?tag=pfamazon01-20 And best book for requirements. It's actually for any activity. https://www.amazon.com/dp/0735679665/?tag=pfamazon01-20
  8. levadny

    What should be the rules to write excellent code?

    Ok. Then design patterns and software requirements.
  9. levadny

    Programming and Computer Science Resources

    For Russian. 1. Stepic.org - russian education resources, equal coursera. 2. Russian language course C++ White Belt (for c++ beginners) - https://www.coursera.org/learn/c-plus-plus-white
  10. levadny

    What should be the rules to write excellent code?

    I think subject independent from programming language. Minimum, functional and structured programming.
  11. levadny

    C/C++ C++ Builder / RAD Studio Embarcadero

    What C++ standart use in Embarcadero C++ XE5-XE10? I don't find this in official web site.
  12. levadny

    C/C++ C++ Builder / RAD Studio Embarcadero

    Thanks. I work in little russian company (120 employees). We use official version RAD XE5. It's expensive for us.
  13. levadny

    C/C++ C++ Builder / RAD Studio Embarcadero

    Hello All! Anybody uses C++ Builder / RAD Studio Embarcadero? For me I used Embarcadero products on work for all project. For me interesting information of used Embarcadero in other countries. Thanks.
Back
Top