Welcome to my site. I use this site as a repository to dump knowledge I come across, generally in the areas of software engineering and information technologies, but may include other miscellaneous tidbits. Most of the posts are written as notes for my personal reference.
if i.hear then
i.forget
if i.see then
i.remember
if i.do then
i.understand
Program’s memory allocation is done on the Heap and the Stack. For example if we declare a variable like below, it would be on the stack int i = 10; Objects can also be found on the stack when declared and set like so: myobject obj = null; When an object is declared but not […]
Some of my personal notes and references regarding general programming. SOLID A collection of principles that outline how software engineers can design and develop code that is easy to read, has flexibility to evolve and therefore easier to maintain. It was first defined by Robert C Martin (Uncle Bob) in his book – Design […]