September 22, 2015 Harold Serrano C++ C++ tip 16: References are Aliases, not Pointers September 22, 2015 Harold Serrano C++ Don't confuse references for pointers. References are another name for an object which currently exist. They are not Pointers.
September 21, 2015 Harold Serrano C++ C++ tip 15: Delay construction of objects until they are needed September 21, 2015 Harold Serrano C++ Don't call an object constructor unless you are sure you will use it. Delay its construction as much as possible.
September 17, 2015 Harold Serrano C++ C++ tip 14: Don't return a reference when you must return an object September 17, 2015 Harold Serrano C++ Learn when you should you return an object itself and not a reference to an object.
September 16, 2015 Harold Serrano C++ C++ tip 13: Prefer pass-by-reference-to-const to pass-by-value September 16, 2015 Harold Serrano C++ Learn how to avoid unnecessary constructors/destructors calls and how to fix the slicing problem by passing-by-reference-to-const instead of passing-by-value.
September 15, 2015 Harold Serrano Random Stuffs How to improve your coding skills- Scribble first, code second September 15, 2015 Harold Serrano Random Stuffs This is a nice tip that can help you improve your coding skills, especially if you are a visual learner.