I usually use utf8_general_ci by default in my projects, however recently I came across that other developers usually use utf8_unicode_ci
utf8_general_ci : Unicode (multi-language), case insensitive
utf8_unicode_ci...
I understand the basic concept of Docker and its advantages but I have doubts of how it is used in the development process, these questions are:
Technically Docker generates a "machine snapshot" then all
developers pull the same hub to not h...
For deletion of records you may not have, but for Insertion and Amendment I believe there should already be something discussed.
The best recommended practice on Insertion and Change is ViewModel's , where you create a view that is appropri...
Web programming recently (4 months) and went straight to JSF , that is, I did not study anything about JSP . I started to take a course and my teacher kind of belittles JSF saying that he has many limitations, that JSP...
I have a list:
List<int> lista1 = new List<int>();
lista1.Add(1);
lista1.Add(2);
lista1.Add(3);
List<int> lista2 = new List<int>();
lista2.Add(1);
lista2.Add(2);
To get from lista1 elements that also exist in...
What are metadata in C # / .NET? What are they good for, and how can I use them?
I was looking at a template of Visual Studio, and browsing through the files, I came across them.
In java and other languages I have seen in some projects things like:
saldo -= 100 and sometimes saldo =- 100 , but I could never understand the difference between these two types, if there is any difference.
After all,...