The new app is called watchGPT and as I tipped off already, it gives you access to ChatGPT from your Apple Watch. Now the $10,000 question (or more accurately the $3.99 question, as that is the one-time cost of the app) is why having ChatGPT on your wrist is remotely necessary, so let’s dive into what exactly the app can do.
NEWS
Core Web Vitals Not Really Your Problem? via @martinibuster
You are not alone if you’re struggling to improve Core Web Vitals scores and coming up short. Anecdotal evidence suggests that achieving high Core Web Vitals performance is difficult. The reason is because publishers and SEO are trying to fix something that technically is not broken.
Paradigm Shift in How Sites are Developed
We are in the beginning stages of a major paradigm shift in how web pages are created. A faster web host is helpful but it won’t fix Core Web Vitals issues.
Core Web Vitals are calculated downstream at the mobile device that is slurping down your web pages on a mobile phone at 3G or 4G speeds. That is where Core Web Vitals data comes from and a fast web server is of little use at that point if the download is being throttled by a poor Internet connection at the phone.
Improving Core Web Vitals is less about web hosting and more about fixing the code.
Advertisement
Continue Reading Below
Fixing What Isn’t Broken
WP Rocket recently redesigned their website using Gutenberg. That was a brave and almost reckless move considering that Gutenberg didn’t have full site editing capabilities at the time.
They had to customize how WordPress handles CSS and JavaScript in order to improve Google Page Experience Scores.
In other words, in redesigning their website to score well for Core Web Vitals, WP Rocket had to customize WordPress itself, to make it be something it was not designed to be.
Core Web Vitals-Unfriendly
Core Web Vitals standards are not something that WordPress developers have in mind when creating WordPress. That’s why embedding tweets into a post will trigger Cumulative Layout Shift.
WordPress and themes don’t code for Google. They code for the needs of publishers which until May 2020 was not a publisher need.
It’s not just WordPress, either. Most other content management systems don’t have Core Web Vitals best practices built into them.
Advertisement
Continue Reading Below
That doesn’t mean there’s something wrong with WordPress. There is nothing wrong with WordPress because Google says there’s something wrong.
Core Web Vitals is Not a WordPress Problem
Core Web Vitals are a set of metrics independently developed by Google and pushed onto the publisher and SEO community to work with.
WordPress had nothing to do with it. Core Web Vitals appeared in May 2020, apparently without any coordination or consultation with the developer ecosystem.
On the WordPress side, development is moving forward as if Core Web Vitals do not exist. While on the publisher and SEO side it is the users of WordPress who are burdened with the task of “fixing” WordPress, Drupal, phpBB etc.
In a perfect world, the job of creating a system that addresses the needs of the users lies on the developer side. But that’s not happening.
WordPress doesn’t even see Core Web Vitals as a WordPress issue.
When someone started a support thread in the WordPress forums about it they were told to ask in Google’s support forum.
“You should ask on a Google forum, as WordPress has nothing to do with this.”
Publisher and SEO Community Burdened with Compliance
WordPress Publishers are stuck trying to make websites conform to a standard that those websites were never designed to comply with.
This is the reason why so many are struggling with Core Web Vitals. Publishers and SEOs are burdened with trying to fix something that ideally should be fixed at the code level.
Improving Core Web Vitals scores can feel like trying to upgrade the performance of a Honda Civic to the standards of a Chevy Corvette.
The developers did not build a Corvette. They built a Honda Civic.
But Google is demanding that drivers (not the manufacturers) improve the performance to a Corvette level. Does that seem fair to you?
Is it reasonable to ask the users of a software to improve it rather than the developers of the software?
The problem of software compliance with Core Web Vitals exists at the code level, not at the user level.
Advertisement
Continue Reading Below
So why are publishers and the SEO community burdened with fixing something that they are only users of?
Is Google Helpful?
Google provides a lot of tools for diagnosing the problems and offers in depth articles explaining how to fix those coding problems.
But these are coding problems not user problems.
An example of the disconnect between the development community and Google is the the problem of Cumulative Layout Shift, where the web page shifts and rearranges itself as the page elements are downloaded.
A common reason for Cumulative Layout Shift is that images do not have a height and width sizes declared. Google recommends exotic workarounds like using CSS to style the images using aspect ratio boxes.
The average publisher and SEO is probably not going to understand what aspect ratio boxes are and how to calculate the ratios sitewide in a way that doesn’t break the website.
Take a look at this and description of aspect ratio boxes that Google links and see if it makes sense to you:
Advertisement
Continue Reading Below
“Perfect squares and 16:9 stuff is great, but the values used for those are just simple math. An aspect ratio can be anything, and they commonly are completely arbitrary. A video or image can be cropped to any size.
So how do we figure out the padding-top for our 1127.34 × 591.44 SVG above?
One way is using calc(), like this:
padding-top: calc(591.44 / 1127.34 * 100%);”
Goodness gracious!
Here’s another example. Many web templates routinely set image widths via CSS to be automatic (width: auto;) without setting height and width of images in order to make images like a logo scale in size to fit into a template regardless if it’s viewed on a mobile or a desktop device. That’s a common coding practice that causes Cumulative Layout Shift.
These are the reasons why WP Rocket had to dig in and make changes to the CSS and JavaScript sitewide.
For example, WordPress Gutenberg loads up all the CSS that exists, regardless of whether it is needed or not. So WP Rocket’s developer had to hand code a solution for that.
Advertisement
Continue Reading Below
This is how WP Rocket explained what they did as part of their redesign:
“…we deprecated several blocks that were not used. We created a custom enqueue system to have CSS & JS loaded block only when needed. It took us just a few minutes to develop this system.
We also decided not to use the Gutenberg CSS file. Instead, we “migrated” the CSS we actually needed into our own style sheet, into a dedicated CSS file. That did the trick.”
A Rethink of How Sites are Created
It’s important to understand the Core Web Vitals problem. Google is demanding that publishers and SEOs bolt on solutions that the CMS development community do not show an interest in addressing.
Here’s an example of the kinds of compromises we are faced with and how Google is changing how we develop websites.
Let’s talk about fonts.
Render blocking third party resources can negatively impact Largest Contentful Paint. A common bottleneck is downloading fonts from a third party site like Google Fonts.
Advertisement
Continue Reading Below
There are a number of tricks to apply that are combination of using the preload link attribute and maybe some JavaScript, etc. that makes the process of downloading third party fonts Core Web Vitals friendly.
But would it kill your site to leave that fancy font behind?
A simple solution that will help score better is to switch the website font to a sans serif font that Apple, Windows and Android devices already have loaded up in their system.
Switching to an attractive font that is built into the device means that the site no longer has to wait to download a fancy font.
One approach can be something like this:
font-family: Helvetica, Tahoma, sans-serif;
If Android doesn’t have Helvetica or Tahoma already loaded in the browser then the device will display the site using the Roboto font.
Screenshot of Example of Roboto Font
For people accustomed to using fancy fonts, using system fonts might seem extreme. But it’s an example of the kinds of compromises a web publisher may need to make, particularly publishers that are in highly competitive niches.
Advertisement
Continue Reading Below
This kind of decision is a no-brainer for an affiliate site focused on page speed and conversions.
A Moment of Transition
What is happening today is that we are living in a moment of transition. Things are changing from how we did things in the past to how developers are going to do things (out of the box) in the future.
Developers responded to the demand for mobile friendly sites. In time they may begin responding to the demand for sites that score well for Core Web Vitals.
The way CMS systems, templates and plugins are designed have not caught up to the needs of publishers who require consideration of Core Web Vitals.
For the time being, tech SEOs and the developer community is stuck having to “fix” what isn’t broken in order to make it abide to Google’s idea of what the web should look like.
Of course, a page that loads fast and doesn’t shift around is a good thing. But requiring the users of a software to improve the software itself is a burden.
Advertisement
Continue Reading Below
At this point in time the burden of fixing the code falls on the users of the publishing software and not on the developers of that software. Does that feel right?
What may happen is that some may find it useful to fix as much as they can and leave the rest for when WordPress and other CMS software catches up.
NEWS
We asked ChatGPT what will be Google (GOOG) stock price for 2030

Investors who have invested in Alphabet Inc. (NASDAQ: GOOG) stock have reaped significant benefits from the company’s robust financial performance over the last five years. Google’s dominance in the online advertising market has been a key driver of the company’s consistent revenue growth and impressive profit margins.
In addition, Google has expanded its operations into related fields such as cloud computing and artificial intelligence. These areas show great promise as future growth drivers, making them increasingly attractive to investors. Notably, Alphabet’s stock price has been rising due to investor interest in the company’s recent initiatives in the fast-developing field of artificial intelligence (AI), adding generative AI features to Gmail and Google Docs.
However, when it comes to predicting the future pricing of a corporation like Google, there are many factors to consider. With this in mind, Finbold turned to the artificial intelligence tool ChatGPT to suggest a likely pricing range for GOOG stock by 2030. Although the tool was unable to give a definitive price range, it did note the following:
“Over the long term, Google has a track record of strong financial performance and has shown an ability to adapt to changing market conditions. As such, it’s reasonable to expect that Google’s stock price may continue to appreciate over time.”
GOOG stock price prediction
While attempting to estimate the price range of future transactions, it is essential to consider a variety of measures in addition to the AI chat tool, which includes deep learning algorithms and stock market experts.
Finbold collected forecasts provided by CoinPriceForecast, a finance prediction tool that utilizes machine self-learning technology, to anticipate Google stock price by the end of 2030 to compare with ChatGPT’s projection.
According to the most recent long-term estimate, which Finbold obtained on March 20, the price of Google will rise beyond $200 in 2030 and touch $247 by the end of the year, which would indicate a 141% gain from today to the end of the year.
Google has been assigned a recommendation of ‘strong buy’ by the majority of analysts working on Wall Street for a more near-term time frame. Significantly, 36 analysts of the 48 have recommended a “strong buy,” while seven people have advocated a “buy.” The remaining five analysts had given a ‘hold’ rating.

The average price projection for Alphabet stock over the last three months has been $125.32; this objective represents a 22.31% upside from its current price. It’s interesting to note that the maximum price forecast for the next year is $160, representing a gain of 56.16% from the stock’s current price of $102.46.
While the outlook for Google stock may be positive, it’s important to keep in mind that some potential challenges and risks could impact its performance, including competition from ChatGPT itself, which could affect Google’s price.
Disclaimer: The content on this site should not be considered investment advice. Investing is speculative. When investing, your capital is at risk.
NEWS
This Apple Watch app brings ChatGPT to your wrist — here’s why you want it

ChatGPT feels like it is everywhere at the moment; the AI-powered tool is rapidly starting to feel like internet connected home devices where you are left wondering if your flower pot really needed Bluetooth. However, after hearing about a new Apple Watch app that brings ChatGPT to your favorite wrist computer, I’m actually convinced this one is worth checking out.
NEWS
Discord goes all in with AI: chatbots, automods, whiteboards and more

AI is the future, at least over on Discord.
The messaging application originally made for gamers has become Gen Z’s favorite online hangout destination of choice, and now it’s rolling out a number of features powered by artificial intelligence.
In an announcement(Opens in a new tab) on Thursday, Discord shared what’s coming to the platform soon: an AI chatbot, an automated AI moderator, a conversation summarizer, an avatar remixer, and a whiteboard. Some of these features begin rolling out today, March 9. Others will launch in the coming weeks and months.
While AI has jumped into the mainstream thanks to the popularity of OpenAI’s ChatGPT chatbot, Discord has had an active AI community for quite a while now. According to the company, third-party AI apps already on the platform already have more than 30 million monthly users. Nearly 3 million servers on Discord have some AI element integrated into the community.
In fact, the biggest community on Discord is Midjourney, a text-to-image AI project which allows users to generate art from right within the server. Discord says Midjourney’s server has more than 13 million members.
So, with AI being such an integral part of Discord already, it seemed like only a matter of time before Discord itself started bringing AI directly into the platform.
AutoMod AI
Credit: Discord
The first feature coming to some Discord servers as soon as today is AutoMod AI. Discord already has an AutoMod feature, which basically automatically moderates rooms for admins based on the rules of the server. Discord has now integrated OpenAI-powered AI into AutoMod, allowing it to search the server and contact moderators when it thinks rules are possibly being broken. According to Discord, AutoMod AI can also consider the context of a conversation so, for example, users don’t get penalized for posts that are misconstrued.
Clyde is a bot that Discord users may already be familiar with, and starting next week, Clyde is getting an AI upgrade. Currently, the Clyde bot provides information, such as server error messages, and also responds to timeout or ban requests from users and mods. However, that’s pretty much all Clyde was able to do. Until now.

Clyde
Credit: Discord
Clyde will now be able to answer all sorts of questions from users, much like OpenAI’s ChatGPT chatbot. Users simply have to type “@Clyde” followed by their prompt. Clyde will be able to pull up information and also help find specific emojis or GIFs based on a user’s description.
Another AI feature coming to Discord next week is Conversation Summaries. Again, the name is fairly descriptive of what it does. With users all over the world, many Discord channels are always moving regardless of time of day. Conversation Summaries will allow users to catch up on what they missed on a Discover Server. The AI-powered feature will “bundle” chats into topics so users can easily read up on what they find most interesting.

Conversation Summaries
Credit: Discord
Starting today, developers can start playing with Avatar Remix, an open-source Discord app that integrates AI art into the messaging app. Avatar Remix allows users to take a fellow user’s avatar and change it up “using the power of generative image models.” What does that mean? In the demo that Discord showed Mashable, a user was able to add a party hat or a mustache to a friend’s avatar by simply mentioning their username and describing what changes they’d like to make.

Avatar Remix
Credit: Discord
The company is also launching an “AI incubator,” offering support for developers creating AI-powered apps on Discord.
Finally, Discord revealed a feature that’s coming soon that has long been requested by the Discord community: a whiteboard. But, of course, this won’t be just any collaborative whiteboard feature. It’s going to be AI-powered, allowing users to collaborate in generating AI art and more.
-
FACEBOOK5 days ago
Indian Government Warns Facebook, YouTube About Deepfakes, Misinformation Violations
-
MARKETING4 days ago
Whiteboard Friday Recap 2023: AI Edition
-
MARKETING7 days ago
“Undercover” Case Studies: Why the Future of Marketing Is Proving Yourself in the Field
-
SOCIAL6 days ago
17-Year-Old Claims To Make 6 Figures A Year
-
SEARCHENGINES7 days ago
Follower Count Is Not A Google Search Ranking Factor
-
SOCIAL6 days ago
Meta Stock: Still Room For Upside In A Maturing Market (NASDAQ:META)
-
SEARCHENGINES6 days ago
Google Testing “Simple Search” Refinement Option
-
SOCIAL7 days ago
X Withdraws From MRC Brand Safety Accreditation