How to convert mp4 to mp3 using python

In this tutorial, I am going to be showing you how to convert mp4 files to mp3, using python. In order to do this, we鈥檙e going to be using the MoviePy library in python, and it鈥檚 only going to take about three lines of code. Yes! Three lines of code. That鈥檚 the beauty of python for a lazy programmer馃榿. Let鈥檚 begin. What is MoviePy MoviePy is a Python library for video editing, manipulation, and processing....

January 15, 2023聽路聽3 min聽路聽Jima Victor

How to Create a Flip Card with CSS

In this tutorial, we鈥檙e going to be learning how to build out a flip card using html and CSS. Prerequisites This tutorial assumes basic knowledge of HTML and CSS: including topics such as flexbox, CSS pseudo selectors and how to properly layout elements using CSS. This tutorial is not for absolute beginners, and as such, will not explain every basic concept. Before we start, I will like to explain the step-by-step process we鈥檙e going to follow in order to build out this flip card....

November 27, 2022聽路聽6 min聽路聽Jima Victor

Beginner Practice Project: Building a Figma Logo Clone with HTML and CSS

In this tutorial, we鈥檙e going to be stretching our html and css skills by building out a figma logo clone. Why are we building a figma logo clone? Two reasons: It is very easy to build. Anybody can follow along. It is not a very common thing to build. Plus, it sounds like fun to be building out the logo of a really popular UI design tool, so that鈥檚 what we are going to be doing....

October 24, 2022聽路聽5 min聽路聽Jima Victor

How to make a simple calculator in python

Building out a calculator app in python is one of those beginner projects that is really going to help you improve your skills. As a beginner, building out projects is the best way to learn. It doesn鈥檛 matter how much you have read or studied in programming if you don鈥檛 build out projects. Building projects helps you reinforce and better retain and understand whatever you have read. So in this tutorial, we are going to be building out a simple calculator app in python - nothing complex....

August 23, 2022聽路聽5 min聽路聽Jima Victor

How to addEventListener to a list of html Elements in JavaScript

Have you ever tried to add an event listener to a group of html elements all at once? if you had, you may had probably done something like this: const buttons = document.getElementsByTagName("button"); buttons.forEach((item) => { item.addEventListener("click", function () { console.log("click"); }); }); The problem with the above code is that, when you finally check your browser console, you are going to encounter an error. Why? This is because we are treating our list of buttons as an array while it is not....

July 11, 2022聽路聽2 min聽路聽Jima Victor