Large Audio to Text? Here’s My Speech Recognition Solution in Python

Project Idea A good friend and his wife recently founded an AI startup in the lifestyle niche that uses machine learning to discover specific real-world patterns from videos. For their business system, they need a pipeline that takes a video file, converts it to audio, and transcribes the audio to standard text that is then … Read more

TryHackMe – My Hackpark Solution (No Metasploit!)

CHALLENGE OVERVIEW BACKGROUND In this walkthrough, we will continue to build on our work in Hackpark I, but this time we will solve the box again without Metasploit. The general approach will be to use winpeas to automate local enumeration of the server. We’ll review the results of winpeas and continue our privilege escalation by … Read more

I Use These Free Open-Source Tools to Make Professional Tutorial Videos in 2023

Do you want to record and produce stunning videos using a free and open-source software stack? You’re in the right place! This tutorial shows you not only which tools to use to record and edit videos on an open-source operating system but also presents multiple virtual machine environments to run your recording activities! Let’s get … Read more

How I Built an Amazon Price Tracker

Project Description I wanted to gift myself a new mobile phone for all the hard work I have done so far. πŸ˜‰ So, I checked Amazon and decided to buy Samsung Galaxy S22 5G. However, the price displayed was beyond my budget and I was eager to wait for the price to drop below a … Read more

How I Built a Readability and Grammar Checker App Using Streamlit

I will show you the steps I took to create a readability and grammar checker app using Streamlit. You can use it to improve your programming skills and add to your portfolio. πŸ’‘ Info: Streamlit is a popular open-source app framework among data scientists as it’s used for developing and deploying Machine Learning and Data … Read more

How I Use Python to Automate My Cover Letters

Project Description I was recently thinking of applying for a job change. Many of my friends have already acquired numerous offer letters of late with lucrative salary packages. I was itching to try my luck out in the industry as well. But time and tide wait for none, and I didn’t have much time left … Read more

How I Generate Invoices For My Clients Using Python

Project Description Being self-employed personnel means I regularly need to generate Invoices for my clients to receive the payments. Now, this is a manual task that I have to perform using excel sheets and then convert them into PDFs. That is why I came up with a script that would automate the entire task for … Read more

I Created a React Decentralized App to Sell eBooks – Here’s How (4/4)

We completed a transaction in the last part, but the transaction data had yet to be seen. In this part, we will drive the smart contract data to the user interface. The user’s data and the transaction time will be displayed on the user interface. This is part 4 of our four-tutorial series on creating … Read more

I Created a React Decentralized App to Sell eBooks – Here’s How (3/4)

This is part 3 of our four-tutorial series on creating a decentralized web app to sell ebooks: πŸ‘‡ We will connect the front end with the smart contract in this part of the series. The interaction with the smart contract will be done using ether.js. Move to the app.js file inside the source folder. We … Read more

I Created a React Decentralized App to Sell eBooks – Here’s How (2/4)

This is part 2 of our four-tutorial series on creating a decentralized web app to sell ebooks: πŸ‘‡ In the previous part, we built the smart contract and deployed it on the hardhat node for testing. Now it’s time to deploy the contract on the testnet. But before that, let’s install the react app first. … Read more

I Created a React Decentralized App to Sell eBooks – Here’s How (1/4)

Welcome to another project of a decentralized dapp with React and ether.js. This is part 1 of our four-tutorial series on creating a decentralized web app to sell ebooks: πŸ‘‡ Project Scenario We will build an ebook stall from which anyone can buy an ebook on a monthly subscription basis. The buyer will submit his … Read more