Site Tools


nih-syndrome

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
nih-syndrome [February 18, 2026 at 02:32] – created yanevskivnih-syndrome [May 14, 2026 at 11:38] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +# NIH syndrome
 +**NIH syndrome** stands for "Not invented here" syndrome. It's when you deliberately avoid using a premade solution in favor of your own.
  
 +For example, you might prefer to implement your own dynamic array even though `std::vector<int>` already exist. The commonly given rationale is that you'll probably find the implementation you made easier to understand (you wrote it!) and you'll be able easily make it fit your needs.