How I Built My Web App Using ChatGPT (From Scratch!)
I recently built my web app using ChatGPT, and I had zero experience with Express.js or building full-stack apps before this. 😅 It all started with a simple idea. Thanks to ChatGPT guiding me at every step, I was able to turn it into a real, working product: SnappyQR.com, a QR code scanning and generating […]
Intercepting Network Requests with Puppeteer
Puppeteer can be very handy for getting background requests. There could be several background requests sent by a website. Curl, wget or selenium can not get you all those requests. Using Puppeteer we can collect and filter all requests.
Web scraping with Python 3, Requests and Beautifulsoup (bs4)
Web scraping is the process of extracting data from websites and structuring it into formats like CSV, XLS, XML, or SQL for further analysis and insights. In this guide, I will explain how to perform web scraping using Python 3, along with the requests and BeautifulSoup4 libraries. These powerful Python libraries simplify the process: requests […]
Importing bulk content into WordPress – part 2
On the previous tutorial, we learned about how to import content into a WordPress site. In this tutorial, I will explain how to import bulk images into a WordPress site. I will also put a download link of a script with sample files so you can install and run it on your system. Please go […]
Importing bulk content into WordPress – Part 1
WordPress is shipped with rest API which makes migrating or importing contents into WordPress sites very easy. If you have bulk contents for example 100s of posts. It’s not possible to create post manually however you can use rest API features to automate the task. There are few things required before importing contents, Basic – […]