It would be nice for us to realize that if we adopt an approach such the one I presented earlier in one of the posts,
Read more
An Idea Log
It would be nice for us to realize that if we adopt an approach such the one I presented earlier in one of the posts,
Read moreConceiving ideas has never been a big deal. Especially in our times, with the advent of computers and the things that have been made possible
Read moreI reflected on how object-oriented design can be translated to skeleton code in my previous post. I concluded my discourse with the idea that once
Read moreI was delivering a lecture on design patterns the other day. A student inquired whether design patterns were libraries. I had to spare some time to explain that this wasn’t the case. A library is a compiled code (of an application) that you can use in any program. By using I mean that you can call its objects, their functions, and properties in another program. This is a great utility of libraries. Consider that you have created an application that has a lot of functions to compute simple mathematical formulae. These could be anything like addition, multiplication, logarithmic, exponential or sinusoidal functions. One thing you can do is to compile it to create an executable program. The other thing you can do is to compile it to create a library. An example of the former is any executable program that a compiler creates. An example of the latter is a “jar” file created using the java compiler. Jar is an acronym for java archive(s). It is called an archive because it is a library that contains a compiled version of your application (your mathematics library).
Read more