Midjourney vs ChatGPT: Reverse Engineering Sam Altman’s $27-Million Mansion in San Francisco

This article aims to compare the reverse prompting capabilities of GPT-4V versus Midjourney. As a running example, we’ll use pics of a beautiful mansion in San Francisco. As a fun fact, sources like this and this say this is indeed Sam Altman’s house. Altman’s Mansion šŸ”— Original image. First, I passed this image into ChatGPT … Read more

DALLĀ·E 3: Art Professors, Can Machines Truly Not Create Art?

OpenAI’s DALLĀ·E has made impressive progress (Image Credits). Look at one of the first Finxter posts on DALLĀ·E: šŸ”— Recommended: I Created My First DALLĀ·E Image in Python OpenAI Using Four Easy Steps Now look at the new DALLĀ·E images: šŸ”— Recommended: Chat(GPT) with Images – These Five Prompts Will Impress Your Coworkers All of … Read more

Chat(GPT) with Images – These Five Prompts Will Impress Your Coworkers

Example 1 – “Find Bug in Code Screenshot” In the following ChatGPT interaction, I tried pasting an image of a code snippet with a bug. Note that I didn’t paste the code, only the screenshot of the code as an image! I also gave it the prompt “Find the bug!“. First, it does fix the … Read more

5 Easy Ways to Download an Image from a URL in Python

Problem Formulation and Solution Overview In this article, you’ll learn how to download an image from the web in Python. To make it more fun, we have the following running scenario: Sven, a Journalist from Greeland, is writing about Glacier Calving. His editor would like photos of iceberg collapses in the area accompanying his article. … Read more

This Simple Python Script Compressed My Folder of 200 Images by 700% Without Much Loss šŸš€

For my current web project I need to upload 200 images to my website. All of them are in the same folder. Here’s the problem: 🤯 Challenge: My images have file sizes of 2 to 3 MB, so they are far too big and will significantly slow down my website. šŸ‘‰ To reduce the file … Read more

Creating an Advent Calendar App in Python with AI Image Creation

This blog describes a fun mini Python project using AI image creation for creating artwork for an advent calendar implemented using PyGame. Context It’s December 1st, and my daughter has just opened the first door on her physical advent calendar, counting down the days of the festival of general consumerism that some people call Christmas. … Read more

(Fixed) ModuleNotFoundError: No Module Named ‘face_recognition’ in Python

Quick Fix: Python raises the ImportError: No module named ‘face_recognition’ when it cannot find the library face-recognition. It occurs if you haven’t installed face-recognition explicitly with pip install face-recognition, or you have different Python versions on your computer, and face-recognition is not installed for the particular version you’re using. You also need to pip install … Read more

ModuleNotFoundError: No Module Named ‘imutils’ | Python

Quick Fix: Python raises the ImportError: No module named ‘imutils’ when it cannot find the library imutils. The most frequent source of this error is that you haven’t installed imutils explicitly with pip install imutils. Alternatively, you may have different Python versions on your computer, and imutils is not installed for the particular version you’re … Read more