Object-Oriented Ruby: Polymorphism

posted in: OOAD, Ruby | 0

What is Polymorphism? Polymorphism is the ability to represent different sets of data and different behaviors with a common interface. Typically, this means two classes that have the same methods but different implementations of those methods. A good analogy is … Continued

JavaScript: Handlebars API Example

posted in: JavaScript | 0

This example uses the Handlebars API to display data. I’ll use a Web API (created by Daniel Schmitz, full database here) to get data from Microsoft’s venerable Northwind sample database, and Handlebars to display the data. Specifically, I’ll display a … Continued