Giggle GPT Joke Search Engine – Basic Setup (1/6)

Hey there! I’m Dirk van Meerveld, your host and guide for this Python Django tutorial series. In this tutorial, we’ll build a fun project while exploring the fundamental concepts of Django and how we can leverage ChatGPT to our advantage, both in our projects and our development environment. This is part 1 of the following … Read more

Giggle – Creating a Joke Search Engine from Scratch with ChatGPT (0/6)

I’m pleased to introduce this ‘Giggle Search’ tutorial series: πŸŽ“ Full 6-video course with downloadable PDF certificates: Giggle – Creating a Joke Search Engine from Scratch with ChatGPT We will be creating a funny joke search engine called Giggle Search using Python, Django, ChatGPT, and a little bit of HTML and CSS. You don’t need … Read more

How I Created a Calculator App Using Django – Part 3

We have finished designing the calculator app. Using a hypertext markup language (HTML), we set the structure of the calculator. The Cascading Style Sheet (CSS) was used to beautify the calculator and to design the layout. Finally, we used JavaScript to make the app interact with other buttons and perform basic calculations. Our task is … Read more

Graphviz Executables Not Found Error (Fixed)

Are you having trouble running Graphviz executables? Are you encountering an error message that says “Graphviz’s executables not found”? This is a common issue that can occur when working with Graphviz, a popular open-source graph visualization software. Graphviz is a powerful tool used for creating diagrams, flowcharts, and other visual representations of data. However, it … Read more

PEP 8 Guidelines: Essential Tips for Clean Python Code

The PEP 8 guidelines are an essential aspect of writing clean and readable Python code. Developed in 2001 by Guido van Rossum, Barry Warsaw, and Nick Coghlan, these guidelines focus on enhancing the readability and consistency of Python code for all programmers. πŸ’‘ PEP 8, which stands for Python Enhancement Proposal 8, has significantly contributed … Read more

How I Created a Face-Detection App Using the Flask Framework

Advancement in technology has witnessed the application of artificial intelligence to detect and recognize human faces. πŸ‘©πŸ‘©β€πŸ¦²πŸ‘¨β€πŸ¦° This is accomplished using OpenCV, a Python library for computer vision and image processing. In the previous tutorials, we use OpenCV to process images and turn them into pencil drawings and cartoons. We will learn how to use … Read more

Python – How to Create a Category in WordPress if it Doesn’t Already Exist?

To create a new category in WordPress using Python, you can use the WordPress REST API. Here’s a basic function that checks if a category already exists and creates it if it doesn’t: In this code, replace ‘http://your-site-url’, ‘your-username’, and ‘your-application-password’ with your WordPress site URL, your WordPress username, and the application password you generated. … Read more