New Custom GPT: Find Keywords – A Powerful Tool for Content Analysis

New Custom GPT: Find Keywords

I’ve created a new Custom GPT that will reduce text to just the keywords. The GPT is named Find Keywords and can be found at https://chat.openai.com/g/g-mL985wIE7-find-keywords.

Note that it requires a subscription to ChatGPT Plus. Unfortunately, OpenAI does not offer trial subscriptions, and subscriptions cost $20 USD per month. Personally, I find the subscription well worth it for both personal programming projects and for personal productivity.

Continue reading “New Custom GPT: Find Keywords – A Powerful Tool for Content Analysis”

The Importance of Alt-Text in Enhancing Digital Accessibility and Engagement

An engaging feature image showcasing a computer screen displaying alt-text symbols, surrounded by diverse users engaging with digital content. The scene highlights inclusivity and accessibility in the digital realm, with a modern and professional style suitable for a blog post on the importance of alt-text for images.

This blog post, created by ChatGPT, supports another post of mine where I test ChatGPT and Google Gemini to see which is better at generating alt-text.


In the digital age, images are ubiquitous, serving as a powerful tool for storytelling, marketing, and communication across various online platforms. However, the visual nature of images can inadvertently exclude a significant portion of the audience, particularly individuals with visual impairments who rely on screen readers to navigate the internet. This is where alternative text, commonly known as alt-text, becomes a critical element in creating inclusive and accessible digital content. This blog post delves into the importance of using alt-text when posting images in blog posts or on social media, highlighting its impact on accessibility, search engine optimization (SEO), and user engagement.

Continue reading “The Importance of Alt-Text in Enhancing Digital Accessibility and Engagement”

Using AI Chatbots to Solve my Pixel 7 Pro Charging Problem

A Pixel 7 Pro smartphone is displayed on a wireless charging pad, not charging, indicated by a visible red cross or question mark on the screen. In the background, various AI chatbot icons are depicted in speech bubbles, each providing different pieces of advice or troubleshooting steps. The setting is tech-focused, with a lighthearted yet informative tone, highlighting the diversity of AI assistance in solving technical issues.

My Pixel 7 Pro phone decided to stop charging wirelessly. I think I’ve exhausted any logical troubleshooting ideas I have so decided to turn the problem over to some AI chatbots before I bring the phone back to Telus while it’s still under warranty.

Following is a comparison of the different AI chatbots I used. As part of my troubleshooting prompt, it was important that the solution cite any sources that is uses. My prompt was….

Continue reading “Using AI Chatbots to Solve my Pixel 7 Pro Charging Problem”

Using Python To Quickly Open Multiple Websites In Your Browser

Generated with AI ∙ January 18, 2024 at 1:10 p.m.

I had a problem where I was opening about a dozen bookmarks at the same time in Brave, and in doing so, it was giving me a “503 Service Temporarily Unavailable” error.

To fix this, I turned to Copilot Pro with this prompt:

Write a Python program that opens in my web browser (using Django?) that has a list of URLs that it opens in new tabs with a pause of 0.5 seconds between them. For the initial URLs, use Google and Microsoft.

Continue reading “Using Python To Quickly Open Multiple Websites In Your Browser”

Why AI Won’t Be Replacing Teachers Anytime Soon

Read the original article here.

While AI has made significant progress in recent years, it is unlikely to replace teachers anytime soon. One reason for this is that AI lacks the ability to understand human emotions and social cues, which are essential for effective teaching. Additionally, AI is not capable of providing the same level of personalized attention that human teachers can provide.

Continue reading “Why AI Won’t Be Replacing Teachers Anytime Soon”

How can I use Bing Chat AI in Chrome?

Bing Chat AI is a new feature that allows you to interact with Bing in a conversational way, using natural language and ChatGPT technology. You can ask Bing anything, from factual questions to creative requests, and get personalized and engaging responses. However, Bing Chat AI is currently only available on Microsoft Edge, which means you have to switch browsers if you want to try it out. But what if you prefer to use Google Chrome as your default browser? Is there a way to access Bing Chat AI in Chrome without having to install Edge? The answer is yes, using some simple hacks and extensions.

One way is to use the Bing Chat for All Browsers extension³, which lets you access Bing Chat AI from any website. Another way is to use the Bing AI for Chrome extension⁴, which shows you Bing Chat answers alongside Google results. A third way is to change the browser’s user agent to trick Bing into thinking you are using Edge². You can find detailed instructions on how to do that in the article by How-To Geek².

Source: Conversation with Bing, 2023-06-03

1. Bing AI for Chrome – Chrome Web Store. https://chrome.google.com/webstore/detail/bing-ai-for-chrome/oofdkcckpabclngcdjnkhlldcfadlfmh

2. Bing Chat (GPT-4) in Google – Chrome Web Store. https://chrome.google.com/webstore/detail/bing-chat-gpt-4-in-google/pcnhobmoglanpljipbomknafhdlcgcng

3. How to Use Bing AI Chat in Google Chrome – How-To Geek. https://www.howtogeek.com/876422/how-to-use-bing-ai-chat-in-google-chrome/

4. How to use Microsoft Bing AI Chat in Google Chrome – TECH POINT MAGAZINE. https://techpointmag.com/use-microsoft-bing-ai-chat-in-google-chrome/

5. How to access Bing Chat AI on Chrome or Firefox – Pureinfotech. https://pureinfotech.com/access-bing-chat-ai-chrome-firefox/

Hey Bing Chat: How can I compile a Python program into an executable file?

Bing Chat is an AI alternative to Chat-GPT. I’ve been testing it quite a bit since, at least for now, it is completely free and in most cases does an excellent job.

Here is a test case that worked perfectly for me…

Prompt: How can I compile a Python program into an executable file?

There are several ways to compile Python code into an executable file. One of the most popular ways is to use PyInstaller² which can be installed using pip package manager². Once installed, you can use it to create an executable file by running the following command in your terminal:

Continue reading “Hey Bing Chat: How can I compile a Python program into an executable file?”