In the spirit of LiveCode's move towards open source, I have been working on writing some library stacks that would be very useful to the community. I have written libraries on game scoring systems, health metrics, credit card processing, and web-API endpoint access.
Before I release these libraries to the community, I wanted to try an follow some existing best practices to make the code more readable.
Here are some standards I am using for variable naming:
tVar - temp variable (functions, handlers)
gVar - global
uVar - custom prop
pVar - parameters in function or handler declerations
Are there similar best practices for handler or function naming? General advice on best practices for live code libraries is also appreciated.