Python: Access Control(attribute and method)
Python does access control differently. Let’s discuss access control in Python in depth-
Semantic Versioning(SemVer)
Semantic Versioning(SemVer) is a method of assigning version numbers to each released version of software that indicates the scope of the changes made in that release.
Laravel: Installation and Directory Structure
Let’s see how can we install or setup a Laravel application. And what files and directories do we get after the installation is complete.
PHP: Type Casting
Let’s see how we can cast/convert one data type to another data type in PHP. We can as one data type to another using one of the following- Casting operator and Functions.
Python: Getter, Setter, and Deleter
Getters and setters work as the entry point for managing and manipulating data for an object of a class. In this article, we are discussing the getter, setter, and deleter for the property of a Python class.
PHP: Variable
Variables are identifiers for some data storage in the programming. We can save some data in memory using a variable, and the variable works as a named identifier of that data storage memory address. PHP variable naming starts with a dollar sign($) and then there is an identifier(variable name). The identifier/name of the variable should … Read more
Docker: Configure Xdebug and Debug using IDE(VSCode, PHPStorm, etc.)
It is really easy to configure Xdebug for a PHP application in Docker. Let’s see how we can configure Xdebug and start debugging using VSCode, PHPStorm, and other IDE.
Python: Float [Data Type] (includes Decimal and Complex Numbers)
We can use a floating point number to represent a decimal number. In Python we can represent 3 types of floating values- NOTES All these 3 types are immutable. That means when any of the above types of data is created in memory, it is never changed. Reassigning a new value to any of the … Read more
Linux Command: Wildcards [Globbing]
We can create a shortcut or alias of any command. This is useful when we have some complex command that we use frequently, and we want an easy way to run that command, instead of copying and pasting it over and over again.