AI
- I’m trying to find the best air purifier for my home. Something that is free standing that can be plugged into the wall. What should I take into consideration when I look at options?
- I’ve got a 4 bedroom that is a total of 2200 sq feet. It’s a semi-open floor plan where the kitchen, living room, dining room, and entry are fairly open and connected. The 4 bedrooms average about 15x15 feet. What are good options for me.
- How much space needs to be given around these air purifiers? Can they be tucked behind a couch or in a corner?
- Can you get too much air purifier for a space, and would that have any negative consequences?
- Can you perform a deep comparison between the Coway and Alen, including a 5-year total cost of ownership?
- Are there any mistakes that people make when purchasing these filters?
- What other common mistakes or regrets do customers typically make that can be easily avoided?
- Why are people most unhappy with the model XXXX?
Google has integrated its Gemini AI model directly into formulas in Sheets.
There’s now an =AI() formula that lets you enter a prompt and apply it to a specific cell—very cool. Here’s a video showing how it works: YouTube - # Master 85% of Google Gemini in 12 Minutes (2025) by Jeff Su
Apply AI: LLMs Reward the Curious
Chat based LLMs like ChatGPT and Google Gemini reward the curious, much more than traditional search engines.
Let’s say you are looking to purchase an air purifier for your home. Google Search is not built for people to be extremely curious. Typically Google Search is a one shot tool. You may type “What’s the best air purifier for a single family home of less than 2500 square feet.” But what comes next is a research project. Clicking on the links, reading the click bait ad pages, trying to navigate and remember the different pros and cons and manually comparing and making notes.
LLMs are different. LLMs reward curiosity.
Today I researched a home air purifier using ChatGPT 4o. The experience was very different than a typical Google Search. Here are the questions I asked:
LLMs like ChatGPT is much more powerful when you think of it as an advisor and not just an answer machine.
I know there are clearly some things that I have missed and deeper ways I could analyze this problem, but I hope this provides an example of how the power of generative AI really comes from being more curious.
Apply AI: Using generative AI for creating test data samples
One powerful yet often overlooked application of generative AI is creating test data samples. Instead of manually crafting data sets, you can leverage tools like ChatGPT to generate realistic sample data quickly and efficiently.
This approach is especially useful when you’re learning frameworks like Python’s pandas and need a structured dataset to experiment with. By using a well-crafted prompt (or even not well crafted), you can produce diverse data samples tailored to your learning objectives.
For example, here’s a prompt I used with ChatGPT 4o to generate sample data:
I want to generate code for a test python DataFrame. The table has two columns Flavor and Scoops. The flavor column is persons favorite flavor. Number of scoops should stay between 1 and 3 scoops. Create 5 common flavors to be used for the test sample. Create 30 examples in the dataframe.
And this was the result.
import pandas as pd
import random
# Define common flavors and scoop range
flavors = ["Vanilla", "Chocolate", "Strawberry", "Mint Chocolate Chip", "Cookie Dough"]
# Generate sample data
data = {
"Flavor": [random.choice(flavors) for _ in range(30)],
"Scoops": [random.randint(1, 3) for _ in range(30)]
}
# Create DataFrame
df = pd.DataFrame(data)
Great example of using ChatGPT Deep Research for understanding zoning laws by state. Deep Research: Supermajority laws around the states
Apply AI: Creating a Quiz Generator in ChatGPT
ChatGPT can be utilized to create an adaptive multiple-choice quiz for students, progressively adjusting difficulty based on their answers while providing feedback and customization options.
Apply AI: Screening Social Media for Negative Behaviors in Application Processes
A friend’s son is applying to a private high school, and as part of the application process, the school requests links to any social media accounts he owns. I’ve heard of similar requirements in sorority recruitment and other selective social organizations.
With AI, it wouldn’t be difficult to analyze social media for potentially negative traits using image recognition models. These models could be trained to detect behaviors such as smoking, drinking, or making offensive hand gestures. For example, a student holding a red Solo cup in a photo could be flagged as a potential concern.
Beyond identifying negative behaviors, AI could also assess social tendencies. It could analyze how many photos feature the applicant alone versus in a group, or how many depict them playing sports, which might indicate teamwork and social engagement. This type of analysis could influence how schools or organizations evaluate an applicant’s personality and fit.