Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I am compiling a rules of programming mindset for my team: What are yours? [closed]

Tags:

rules

Always leave the code a little better than when you found it.


Code does not exist until entered into a versioning control system.


Don't be afraid to admit "I don't know" and ask.

10 minutes asking someone could save a day pulling your hair out!


KISS - Keep it simple, stupid.
Pick the simplest solution that works.
Don't make things (too) complicated before they need to be.
Just because everyone else is using some complicated framework to solve their problem, doesn't mean you have to.


Don't reinvent the wheel

If there ought to be a function for it in the core library - there probably is.