Tag Archives: Software Sagacity

Magento – Additional Properties in the Product Listing

MagentoThe Magento E-commerce platform is a highly customizable online store, with the full source code provided for advanced manipulation and coding.  With the flexibility, however, often comes the challenge of performance optimization.  For example, the default product listing screens only select a subset of the fields from the database that are directly necessary to render the listing.  In the event that the product listing needs to be customized to pull additional information from the database, the underlying PHP code needs to be updated as well.
Continue reading

RSS Twitter LinkedIn Facebook Email

Implementing Object-level Inheritance in Node.js

Flow ChartPrototype-based classes in JavaScript and Node.js bring a high level of flexibility to the software architecture.  Since objects and classes are fully editable at any point in program operation, the functionality can be extended to implement object-level inheritance at runtime.
Continue reading

RSS Twitter LinkedIn Facebook Email