For example how do you name your functions
like this myFunctionName as in QT ?
i'm not the world's best typist so i prefer lowercase and underscores function_name

I prefer to layout my braces like this
Qt Code:
  1. {
  2. stuff ...
  3. {
  4. stuff...
  5. }
  6. }
To copy to clipboard, switch view to plain text mode 

I don't like this
Qt Code:
  1. some code {
  2. stuff here }
To copy to clipboard, switch view to plain text mode 

I prefer m_variablename for member functions


What about you?