OTF Rejects Request from Ontario to Let Retired Teachers Work More

Key Takeaway

Ontario’s teachers unions have rejected a request from the Ministry of Education to extend the working period for retired teachers, emphasizing the need for the government to address staffing shortages more effectively.

Continue reading “OTF Rejects Request from Ontario to Let Retired Teachers Work More”

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”

Google Gemini vs ChatGPT: Generating Alt-Text. Who Wins?

An illustrative comparison between Google Gemini and ChatGPT for generating alt-text, depicted through a split design. On the left, Google Gemini is symbolized by futuristic, abstract shapes in blues and greens, embodying innovation and digital intelligence. On the right, ChatGPT is represented through a network of interconnected nodes and lines in warm orange and red tones, highlighting advanced AI technology and communication. A bold 'VS' symbol in the center accentuates the competitive analysis between the two technologies, against a backdrop that merges both designs, suggesting a blend of competition and collaboration in the field of alt-text generation.

Introduction

I’m currently subscribing to ChatGPT and Google Gemini to test them both out. One of the tasks I often use chatbots for is creating alt-text for my images.

For the importance of using alt-text in your images, see this post.

The prompt given to Gemini and ChatGPT was: ‘Alt text for this image‘.

Here is the image I used. Note that it includes text instructions and images.

Continue reading “Google Gemini vs ChatGPT: Generating Alt-Text. Who Wins?”

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”

How to Save Python Files in the Same Directory in VS Code (Update)

In a recent post I gave a programmatic solution to how to get Python to write files in the same folder as the Python file itself when working in VS Code. By default, Python programs in VS Code write files in the root folder of the project, not in the folder where the Python file is saved.

My solution involved the use of a built-in variable named “__file__“, which together with some fancy path concatenation, achieved what I was hoping for.

Continue reading “How to Save Python Files in the Same Directory in VS Code (Update)”