Published a year ago
What Are Namespaces?Namespaces refer to the act of creating a scope within which a set of code operates. Without namespaces, every part of your source code will have access to other unrelated parts. This means there is a chance for conflict within your codebase. For example, if you have the same variable na...
Published a year ago
What Is Hashing?Hashing is the process of altering or changing a piece of data into another form in an attempt to obfuscate it. A good example is hashing user passwords before storing them in the database. By hashing the password anyone with access to the database can only see the hashed version and no...
Published a year ago
What Is A Constant Variable?A constant variable is a variable that once defined cannot be changed throughout the execution of the source code. ...
Published a year ago
What Is Exception Handling?Exception handling is any piece of code you add to your software application to catch possible errors (expected or unexpected) within your software application. Most often a software application will come to a halt or break if it encounters an error. For this reason ...
Published a year ago
What Is An Environment In Programming?An environment in programming is a term used to describe everything from software to hardware needed to run a software system. This includes the state and specific configurations in which all these components need to be in to run the software. For example, say we wanted to make our web ...
Published a year ago
What Is Upstream In Git?Whenever you manage code collaboration using Git , you typically have the source code hosted using an online tool like ...