Useful tips for everyday
Does bootstrap use BEM methodology? Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web. Spotify,…
What is Unicode 11? Unicode is a universal character encoding standard that assigns a code to every character and symbol in every language in the…
How is restful authentication used in the real world? A truly RESTful authentication with real world user agents (a.k.a. “browsers”) consists of a cookie containing…
What are some of the benefits of source control? Source control is important for maintaining a single source of truth for development teams. Plus, using…
What is granularity in API? Granularity is the extent to which an API divides information among individual resources. With a fine-grained API, a consumer might…
What does an entity contain? An entity is an object that exists. It doesn’t have to do anything; it just has to exist. In database…
How do I create a SKU on Shopify? There is no feature put in place for Shopify to generate SKUS, it is a code (ex.…
Are puts idempotent? The difference between PUT and POST is that PUT is idempotent: calling it once or several times successively has the same effect…
Is code reuse good? Code reuse is the practice of using existing code for a new function or software. But in order to reuse code,…
What is Factory in domain driven design? A Factory is an object that has the sole responsibility to create other objects. Factories are definitely not…