📜 ⬆️ ⬇️

Types of programmer knowledge and how to improve them

Let's describe the types of knowledge and how they develop in the brain of a programmer. There are three types of knowledge:




For example, design patterns are an interesting example of a combination of all three types of knowledge: practical examples, the concepts behind them and real experience in applying them. Only such an organic combination and allows you to successfully use them.


')
The value of practical knowledge in your head decreases more and more as the number of examples on the Internet increases. There is no need to keep them in mind. Solutions for the vast majority of everyday problems are easy to find. However, the knowledge of a master programmer must go beyond simple examples or where to look for them. He must offer his solutions, make the best choice and implement them in the best way. In addition, it is often simply impossible to find information on complex, highly specialized or very new problems.

That is why conceptual and experienced knowledge is of great value in software development. In the process of finding practical information, you must constantly try to expand all types of knowledge. This will strengthen your problem solving abilities and make you more efficient.



So:

A. Look for

1. Criteria - understand what your problem is and in what terms to define it. The Internet is so huge and interesting that it can absorb a lot of time with inadequate search criteria.
2. Search - learn to effectively use the capabilities of specific search engines.
3. Run by results - learn to quickly determine the quality of the content, the level of trust in the source, as well as the qualifications of the author.
4. Read selected
5. Evaluate - determine the conditions, tools, and time required for this option.

B. Use

1. Copy the code and learn how to test it (especially you will be helped by unit tests).
2. Clean the code - leave only minimal, clean and efficient code.
3. Add code to your applications.

C. Learn

1. Understanding what and why you did. Learn from code and running programs.
2. Expand knowledge:
* practical: techniques, examples and best practices in what you do;
* conceptual: learn new concepts, consider already familiar ones and create your own;
* Experienced: experience will grow over time if you make an effort to find the best solutions and learn from them.
3. Collect (links, reviews, reading lists) - any interesting information for your further research and training.

From myself: There are a lot of Truisms, but I think that the information will help to become more conceptual and identify their weak points. :) Thanks to the author of the original text.

Source: https://habr.com/ru/post/31676/


All Articles