Posts

Showing posts from 2022

Featured Post

How To Use While Loops In Python

Image
How To Use While Loops In Python Overview  This beginners Python guide will explain the steps for working with 'while' loops in Python for beginners. Introduction  The Python while loops help to execute a set of statements in Python functions,  as long as a particular specified condition is True. Let us understand the while loop with a simple python example exercise, of a while loop usage, where we are trying to count numbers from 1 to 10, with a condition of the number being less than 10. We create a variable called num, and initiate it with a initial value of 1 and we carry out iteration of this num variable, whereby, it is incrementing every time it loops, by incrementing by 1.  Code num = 1 while num < 10 :       print(num)       num += 1 # output   1 2 3 4 5 6 7   8  9 In the above case, we performed iteration of the while loop where every time the loop iterates, the num variable gets incremented by 1 a...

Build A Random Quote Machine in React

Image
  Build A Random Quote Machine in React  This ReactJS Tutorial will teach you how to create a random quote generator using React hooks. This is a challenge for testing your frontend libraries in the freeCodeCamp frontend libraries certification projects and in this challenge, I will walk you through the steps so that you can pass all the ten tests in this challenge. This React Project is part of the freeCodeCamp frontend Libraries Certification Challenges and here, I am going to walk you through the challenge and also break down the challenge into smaller, more understandable steps, to demonstrate how to build this App in a simple way. The Random Quote Machine App is a very unique app that will allow the users to interact with the app , whereby by clicking on a button, you will be able to see random new quotes with their authors' names and you will also be able to share these quotes on Twitter.  Code editors required for this challenge :   We will be coding in HTML, ...

Top Free Online Websites to Learn Coding

Image
Top Free Online Websites to Learn Coding This guide will help you to find  online sites to learn Coding for free.                   Photo by Antonio Batinić: Finding free sites online to learn Programming is a big task when you search online, as there are millions of resources that are available for free. Sometimes, it can be a time killer and really tiring and tedious and simultaneously, also lead to confused minds and make you demotivated to focus on your goals. You may also select the wrong resources and end up getting totally demotivated after wasting few months or years on the wrong resources. I have made your search easy and convenient by presenting below, the top ten sites that offer free online programming. Here are the names of the online sites that offer Programming courses, completely free of cost. While, you may have across several blogs talking about of free courses, please note that some of the sites mentioned online ar...

Guide to Learn Coding Efficiently and Effectively

Image
Guide to Learn Coding Efficiently  This guide will teach you how to learn to code more efficiently and effectively in order to learn programming without a major burnout. Start with core concepts:  The main thing that you need to remember is to pay attention to your core fundamentals, which is about all your programming language concepts, methods and basics. Once you understand and master the basics well, you are free to go ahead further to explore some more in your coding journey. Every language has its core concepts, hence, grasp the fundamentals such as conditional loops and statements, objects, functions, algorithms and database structures etc., before proceeding to start building projects.   Have a Goal in mind: Figure out your goals even before you decide to study coding. F irstly, you need to ask yourself, why you want to learn programming. Is it to get a higher salary than what you are getting now or is it because you love coding or is there some other re...