Posts

Showing posts from May, 2023

What is the storage capacity of sqlite3

Image
  Introduction What is SQLite3 SQLite3 is a type of software that helps manage databases. It doesn't need a separate server and is easy to set up. You can think of it as a small, efficient, and independent tool that allows applications to store and retrieve data in an organized way. It's commonly used in different types of programs, from mobile apps to web browsers, because it's simple to use and doesn't require a lot of resources. With SQLite3, developers can create, modify, and search for information in a structured manner, ensuring that the data remains reliable and secure. General Uses SQLite3 is a versatile tool used in many different types of applications like mobile apps, computer programs, and even web browsers. It's a lightweight and reliable way to manage data in a structured manner. Developers like it because it works on different devices and programming languages, making it easy to use. With SQLite3, they can add a database to their applicati

Learn JavaScript : Switch statement (Part 7)

Image
  Introduction Hello dev, welcome to our next tutorial on JavaScript. We will be learning how to use the switch keyword in this awesome programming language. Kindly note that; it is very important you learn the previous parts if you want to fully understand how to code in JavaScript. If you are just looking forward to revising the switch statement, then it is okay to follow this tutorial. The switch keyword is similar to if...else if...  statement as we had previously looked at. But it is more convenient than if..else if.. statement because it can be used with characters and numbers amongst other types.  Just like a condition function, the block of code associated with the case keyword will be executed if the case's value satisfies the result of the main condition or expression . If none of the cases satisfy the main expression then the block of code associated with the default keyword is executed. There is also the break keyword at the end of every case which in

Python Tips on packaging an App

Image

Learn JavaScript : if..else Statement (Part 6)

Image
"If..else if..else statements help to program a hard-wired Ai (Artificial Intelligence) with a barbaric learning ability" ( Mark Anthony Graham ) In this section of the JavaScript tutorials, we will be looking at if..else statements in JavaScript. I recommend you learn our previous tutorial on JavaScript Operators (link) .  Remember each concept in JavaScript builds upon the other. With that being settled, let's look at the general understanding of an if..else statement .  What could first come to your mind is a condition.  That's correct✅. When you use the if..else statement as a coder, it means you are defining a case and that if the condition of the case is satisfied then the block of code set to that condition would be executed by the machine. Illustration of a condition From, the diagram, the condition must return a value of either true or false. If it returns true,  it means that the little girl must take the left turn and in case the condition retu

What does psychology say about coding?

Image
  " The mind of the coder is written in the mind of the computer, developers have a connection with what they create " (Mark Anthony Graham) Introduction Hello Devs, am super excited to share with you what psychology says about coding, you would be glad to know more, kindly stick with me on this one, as we journey through psychology and codes😀. It feels great to learn psychology and coding, the feeling may be subjective as I had the chance to read both worlds. Psychology offers a good understanding of people, their minds (mental processes) and their behavior. Coding offers a good understanding of communicating with a machine through computer programming languages. The blend between psychology and coding is wonderful. If I'm being bizarre as a psychologist. "Feels like coding gives you the opportunity to create an Ai (artificial intelligence) that would run on a mental process specifically designed by you." This is not new development though, as Go

Learn JavaScript : Operators (Part 5)

Image
"Operators are the starting point in creating a suitable logic for a situation, make sure to understand them very well." (Mark Anthony Graham) Good to see you here on "Part 5" of learning JavaScript (Operators). Please I recommend you go back to the previous tutorials on Learning JavaScript in case you have skipped them. What we are learning builds upon each other, else you may not understand the general concept well enough. Kindly study the following Parts in case you skipped them. JavaScript Introduction JavaScript Variables   JavaScript global and local scope In computer programming, operators are special symbols or keywords that are used to perform various operations on data or variables. In the case of having a task to build software that helps an NGO to know the number of food items that could feed a certain village or community. Such software will rely heavily on operators for its functions. What is an operand? In computer programming, an operan

How to study coding

Image
Hello devs, am always super excited to share with you some coding tips. Today we will be looking at how to study coding or computer programming. Remember, what actually makes us coders or developers is our rich understanding and experience with the computer languages and frameworks we use. It would be bad if you do not take notice of the little things and details faced during development. For example, I was very particular about all the stages I went through when launching my first website. What I mean is, do not do anything out of sight and out of mind as a coder, be very much aware of details. That is the first approach to becoming a good coder. Even forgetting to add a full stop ( . ) in a line of code can cause you days and weeks of debugging. " Do not do anything out of sight and out of mind as a coder, be very much aware of details. " (Mark Anthony Graham) Introduction The ability to learn is one of the most fundamental and important aspects of human intelli

Learn JavaScript : Data Types (Part 4)

Image
" Data is one of the most powerful resources in the world. So it is important to understand the data types and their creation in computer programming. " (Mark Anthony Graham) Introduction In programming, a data type is a classification of data that defines the type of value a variable can hold. It determines the operations that can be performed on the variable, the amount of memory it occupies, and the way it is represented in the computer's memory. Kindly study the following Parts in case you had skipped them. JavaScript Introduction JavaScript Variables Global and local scope JavaScript is a dynamically typed language, which means that the data type of a variable is determined at runtime, not at compile-time. Data types play a crucial role in computer programming as they allow the programmer to define and manipulate different types of data. Data types are essential in programming as they provide a way to define and manage different types of data, enforce typ

followers