Recent content by 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; }- levadny
- Post #4,895
- Forum: General Discussion
-
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/- levadny
- Post #11
- Forum: Programming and Computer Science
-
Today I Learned
Hi for all! Tonight I learn Python but without classes. Python's classes and inheritance I will learn tomorrow. :)- levadny
- Post #3,036
- Forum: General Discussion
-
News Stephen Hawking has Died - March 14th, 2018
Rest In Peace. We were lucky live at the same time with him.- levadny
- Post #24
- Forum: General Discussion
-
What should be the rules to write excellent code?
KISS - it means: let's do all very simple and reliable. Yes?- levadny
- Post #22
- Forum: Programming and Computer Science
-
C/C++ C++ Builder / RAD Studio Embarcadero
Good. Thanks a lot!- levadny
- Post #8
- Forum: Programming and Computer Science
-
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.- levadny
- Post #6
- Forum: Programming and Computer Science
-
What should be the rules to write excellent code?
What is KISS?- levadny
- Post #15
- Forum: Programming and Computer Science
-
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- levadny
- Post #9
- Forum: Programming and Computer Science
-
What should be the rules to write excellent code?
Ok. Then design patterns and software requirements.- levadny
- Post #7
- Forum: Programming and Computer Science
-
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- levadny
- Post #77
- Forum: Programming and Computer Science
-
What should be the rules to write excellent code?
I think subject independent from programming language. Minimum, functional and structured programming.- levadny
- Post #2
- Forum: Programming and Computer Science
-
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.- levadny
- Post #4
- Forum: Programming and Computer Science
-
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.- levadny
- Post #3
- Forum: Programming and Computer Science
-
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.- levadny
- Thread
- C++
- Replies: 7
- Forum: Programming and Computer Science