Programming

How #100DaysOfCode has changed my life?

It was April 22, Friday, 2022. It seems that it will be the next typical day of my life. When I was scrolling on my Twitter account, I came across people who actually coded every day, just by tweeting about…

25 Project Ideas to Practice Your Programming Skills (PART I)

Are you bored with diving into more tutorials and courses? Wanna try something new? I have an idea for building lots of applications which you can implement right away or just to be more ambitious and try to build the…

How To Build a Web Scraper?

Before we dive into building a Web Scraper that allows us to find the right jobs, first we need to understand that not every website can do something like this. Now, we can ask: Is web scraping legal? And now…

How to return a list of numbers of the power of 2 in Python?

Today is the day when I should solve the next problem of the Project Euler Challenge, but I decided to change my plan and consider the problem how to search a number in a list of numbers of the power…

QUICK GUIDE: HOW A PROGRAMMING LANGUAGE WORKS?

Have you ever wondered how actually a programming language works? How it is possible to write a code and gets a result on your screen instantly?  Today, we’re answering these crucial questions. It doesn’t matter if you are a beginner,…

HOW TO FIND THE SUM OF EVEN FIBONACCI NUMBERS USING PYTHON (#2 PROJECT EULER)

Today, we are considering the second problem in Project Euler using Python where we find the sum of even Fibonacci numbers whose values do not exceed 4 million. First of all, let’s define a problem below: PROBLEM 2        Each new…