Get out early with Perl statement modifiers
The way out (literally) is guard clauses: checking early if something is valid and bailing out quickly if not.
Source: Get out early with Perl statement modifiers, an article by Mark Gardner.
The way out (literally) is guard clauses: checking early if something is valid and bailing out quickly if not.
Source: Get out early with Perl statement modifiers, an article by Mark Gardner.
In the current post, I want to focus on the feature modules. Feature module provides complete functionality for a dedicated app feature. We can also call them product modules because they usually implement a particular part of the final product.
Source: Feature modules, an article by Majid Jabrayilov.
This site is letting me collect my ideas about Python and Design Patterns all in one place.
Source: Python Design Patterns, a web site by Brandon Rhodes.
The role of database indexes is similar to the index section at the back of a book. A database index stores information on where a data row is located in a table so the database doesn't have to scan the entire table for information. When the database has a query to retrieve, it goes to the index first and then uses that information to retrieve the requested data.
Source: Postgres Indexes for Newbies, an article by Elizabeth Christensen.