In programming, a coding standard where all variables are tagged so you can tell their datatype by looking at the name. Microsoft likes hungarian notation, I do not. It is useful when naming GUI objects though.
nonhungarian notation:
int number;
string name;
double value;
-------------------------
hungariannotation int nNumber;
string strName;
double dValue;
A summer spent without a vacation. Naycations have become increasingly popular since the 2000s, due to the economic recession. Naycations are usually confused with staycations, but they are different due to with staycations one usually just does things in their own town, and during naycations you just stay inside your home.
Comes from 'nay' meaning no, and 'cation' as in va'cation', thus: Naycation.
Person 1: Hey! Where are you going this summer?
Person 2: My mom says money's tight right now, so we're just gonna have a naycation.
Person 1: Aw, man. That sucks! Me and the fam are going to Paris.
Refers to the programming habit of naming variables so that the variable's intended use is clear from it's name.
The original hungarian notation was first described and used by Charles Simonyi, a hungarian programmer who worked for Microsoft.
Using hungarian notation, a variable called a_crszkvc30LastNameCol would imply a constant reference function argument, holding the contents of a database column of type VARCHAR(30) called LastName that was part of the table's primary key