Posts

Showing posts from March, 2023

Learn javaScript : Variables (Part 2)

Image
Today's article will focus on variables in JavaScript, where we would look at the various ways or options available in creating a variable with this amazing programming language. Variable in computer programming is a container that holds data, this data can mostly be of any type which helps in developing the logic for a particular function. Variables in JavaScript can hold integers, strings, functions, classes, and boolean values. Do not worry if you do not understand these things, we will focus on them later on in this series. Kindly study the following Part in case you had skipped it. JavaScript Introduction Ways of declaring a variable in JavaScript     There are four (4) ways of declaring a variable; 1. Using the var keyword to declare a variable.     sample code     var x = 2; // output 2 2. Using the let keyword to declare a variable.        sample code      let y = 3; // output 3 3. Using the const keyword to declare a variable.          sample code      const x = 2;

What is a package manager?

Image
 Hello Devs, in today's article I am going to talk about what are package managers and how it would help make your development experience more easier. I would also talk about how you can install some of them incase you do not have them. Requirements But before we actually start looking at package managers, it is necessary you understand how to use the terminal aka command promp (CMD). This is because package managers achieve their effective performance from the light weight feature of the terminal since the terminal is not graphics extensive. And also almost all package managers operate via the terminal or command line interface. The experience is quiet fun when using the command-line especially when you know what you are doing.  Follow this link to learn more about the terminal or commad prompt.  Learn CMD . This resource over here would get you started with the terminal so that you can be able to operate on the package managers. What is a package manager ? With that being

What is a Cloud in technology?

Image
  Hello Devs, today we are going to widen our understanding on what a cloud really means in the tech world and how it is helping people. We will also look at the types of cloud services and how you can also get started with this technology. You know most at times a layman percieves a cloud servers or cloud storage as the sky or the heavens storing their data for them, very funny but people sometimes lack understanding about general tech terms. This should not be so for you as a professional in tech. What is a cloud in tech? Cloud technology is the use of computing resources (hardware and software) that are delivered over a network (typically the Internet) and accessed through web-based tools or web browsers. The cloud is a metaphor for the Internet, based on how it is depicted in computer network diagrams. Cloud computing is the delivery of computing services—including servers, storage, databases, networking, software, analytics, and intelligence—over the Internet (“the cloud”)

What is a "third party platform"?

Image
Hello devs, welcome to kodequotes , in todays article we are going to understand what is meant by 3rd party platforms in relation to technology. And also talk into how we can manage their usage. Third party as a minor role A third party is someone or a company which is not one of the main people involved in a business agreement or legal case, but who is involved in it in a minor role. Example, you can instruct your bank to allow a third party to remove money from your account. Or you can setup a third person to mange your social media account for you. From this view, we can understand 3rd party as anyone you can call upon to manage your tech platform for you. You sometimes need to assign privileges to them to operate on your behave. A third party service is something that can frequently be seen in our tech environment. In the situation of a third party as a minor role, do your best to know the person that you would like to manage your social media platforms or other platforms bef

Understanding Variables In Programming

Image
Understanding Variables In Programming "A variable is the corner stone for creating algorithms"(Mark Anthony Graham)  Hello folks, in today's article I am going to talk about variables in software engineering terms. I simply cannot just imagine a system sourcecode without a variable or how a system can be developed without including variables into the system. Unless of cause it is such a basic utility for doing a minimal dummy task. But any developer who wants to build a professional system would use variables one way or the other. Let learn more... What is a variable ? In programming, a variable is a container that holds value that can be change, depending on conditions or an information passed to the program. Typically, a program consists of instructions that tell the computer what to do and data that the program uses when it is running. And these data are stored within the variables. A variable is a named storage location used to store data in a computer progra

followers