Some common standards in the PB world surrounding variable naming...
-The first letter of the variable name is determined by the variable's scope.
-Global -- g -Instance -- i -Local -- l
-The second letter of the variable name is determined by the variable's type. Some of the common types:
-Boolean -- b -DataStore -- ds -DataWindow -- dw -DataWindowChild -- dwc -Date -- d -DateTime -- dt -Decimal -- d -Integer -- i -Long -- l -String -- s -Window -- w
-Always followed by and underscore, and then the descriptive portion of the name.