To those joining EDE, welcome. The firs thing you need to know is that a strict code style is imposed on this project so that everyone can understand your work. The style is as follows:
Always place open braces at the end of a line of code and close braces on their own line, like so:
if(true){
foo.bar();
}
Always version and date your code and keep some sort of change log as well as your name.
Example:
/**
* Foo
* Changelog:
* 0.2.5 - Optimized Foo
* 0.2.4 - Added Bar()
* @author M. Damian Mulligan
* @version 0.2.5 - November 9, 2011
*/