Containers: what is containerization and container orchestration?Containers are formally huge iron boxes to ship items to another location. In computing, containers are virtual "boxes." This time, you use them to package applications with all their needs and ship them to your audience or users. This pattern of pac...Apr 23, 2023·5 min read
What is destructuring in JavaScript?Destructuring in JavaScript means copying the values of an array or the properties of an object to a variable. Destructuring does not imply destruction. It is not the case because the array or object you could copy the values from is not modified. Th...Jan 7, 2023·6 min read
What is a cookie, and what are they used for?If you are reading this, you are probably wondering what a cookie is. First, this cookie is not edible. It is a programming word, and it was derived from the actual name of the “edible cookie.” It is popularly known as “internet cookies” or “computer...Dec 26, 2022·4 min read
What are classes in python?Python is an object-oriented programming language. In Python, everything is an object. All this time that you have been writing code, you have used objects. Either when you used built-in functions or the variables you created. An object is any data ...Dec 15, 2022·9 min read
What is a function in programming?Programming is a set of instructions that you give to a computer to perform a specific task. With functions, you could simplify the instructions you give computers. Functions make programming more fun because of the benefits they provide. In this art...Dec 9, 2022·3 min read
What are functions in Python ?Functions are one of the core concepts of the Python programming language. We use them in everyday Python programming. A function is a code block that you can use in your program as many times as you want. You can do that by "calling" it. While learn...Dec 7, 2022·9 min read
AppWrite: How To Use AppWriteWhen managing databases became too complex, developers built cloud solutions that could make databases easier to manage and handle. The same thing is happening with the backend as backend development becomes more complex. Companies are building serv...Nov 18, 2022·7 min read