\" plugin_version.type = \"hidden\" form.appendChild(plugin_version) var wordpress_version = document.createElement(\"input\") wordpress_version.name = \"wordpress_version\" wordpress_version.id = \"wordpress_version\" wordpress_version.value = '$wp_version' wordpress_version.type = \"hidden\" form.appendChild(wordpress_version) } },200); "; } else { echo ''; } } else { echo ''; } } else { echo ""; return; } } } /** * Google analytics . */ function ga_footer() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { $banner_discarded_count = get_option( 'sm_beta_banner_discarded_count' ); if ( 1 === $banner_discarded_count || '1' === $banner_discarded_count ) { echo ''; } } } /** * Check if the requirements of the sitemap plugin are met and loads the actual loader * * @package sitemap * @since 4.0 */ function sm_setup() { $fail = false; // Check minimum PHP requirements, which is 5.2 at the moment. if ( version_compare( PHP_VERSION, '5.2', '<' ) ) { add_action( 'admin_notices', 'sm_add_php_version_error' ); $fail = true; } // Check minimum WP requirements, which is 3.3 at the moment. if ( version_compare( $GLOBALS['wp_version'], '3.3', '<' ) ) { add_action( 'admin_notices', 'sm_add_wp_version_error' ); $fail = true; } if ( ! $fail ) { require_once trailingslashit( dirname( __FILE__ ) ) . 'class-googlesitemapgeneratorloader.php'; } } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_wp_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your WordPress version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least WordPress %4$s. You are using WordPress %2$s, which is out-dated and insecure. Please upgrade or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', esc_html( $GLOBALS['wp_version'] ), 'http://www.arnebrachhold.de/redir/sitemap-home/', '3.3' ) ) . '

'; } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_php_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your PHP version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least PHP %4$s. You are using PHP %2$s, which is out-dated and insecure. Please ask your web host to update your PHP installation or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', PHP_VERSION, 'http://www.arnebrachhold.de/redir/sitemap-home/', '5.2' ) ) . '

'; } /** * Returns the file used to load the sitemap plugin * * @package sitemap * @since 4.0 * @return string The path and file of the sitemap plugin entry point */ function sm_get_init_file() { return __FILE__; } /** * Register beta user consent function. */ function register_consent() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { if ( is_user_logged_in() && current_user_can( 'manage_options' ) ) { if ( isset( $_POST['user_consent_yes'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'yes' ); } } if ( isset( $_POST['user_consent_no'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'no' ); } } if ( isset( $_GET['action'] ) ) { if ( 'no' === $_GET['action'] ) { if ( $_SERVER['QUERY_STRING'] ) { if( strpos( $_SERVER['QUERY_STRING'], 'google-sitemap-generator' ) ) { update_option( 'sm_show_beta_banner', 'false' ); $count = get_option( 'sm_beta_banner_discarded_count' ); if ( gettype( $count ) !== 'boolean' ) { update_option( 'sm_beta_banner_discarded_count', (int) $count + 1 ); } else { add_option( 'sm_beta_banner_discarded_on', gmdate( 'Y/m/d' ) ); update_option( 'sm_beta_banner_discarded_count', (int) 1 ); } GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } } if ( isset( $_POST['enable_updates'] ) ) { if (isset($_POST['enable_updates_nonce_token']) && check_admin_referer('enable_updates_nonce', 'enable_updates_nonce_token')){ if ( 'true' === $_POST['enable_updates'] ) { $auto_update_plugins = get_option( 'auto_update_plugins' ); if ( ! is_array( $auto_update_plugins ) ) { $auto_update_plugins = array(); } array_push( $auto_update_plugins, 'google-sitemap-generator/sitemap.php' ); update_option( 'auto_update_plugins', $auto_update_plugins ); } elseif ( 'false' === $_POST['enable_updates'] ) { update_option( 'sm_hide_auto_update_banner', 'yes' ); } } } /* if ( isset( $_POST['disable_plugin'] ) ) { if (isset($_POST['disable_plugin_sitemap_nonce_token']) && check_admin_referer('disable_plugin_sitemap_nonce', 'disable_plugin_sitemap_nonce_token')){ if ( strpos( $_POST['disable_plugin'], 'all_in_one' ) !== false ) { $default_value = 'default'; $aio_seo_options = get_option( 'aioseo_options', $default_value ); if ( $aio_seo_options !== $default_value ) { $aio_seo_options = json_decode( $aio_seo_options ); $aio_seo_options->sitemap->general->enable = 0; update_option( 'aioseo_options', json_encode( $aio_seo_options ) ); } } elseif( strpos( $_POST['disable_plugin'], 'wp-seo' ) !== false ) { $yoast_options = get_option( 'wpseo' ); $yoast_options['enable_xml_sitemap'] = false; update_option( 'wpseo', $yoast_options ); } } } */ } } $updateUrlRules = get_option('sm_options'); if(!isset($updateUrlRules['sm_b_rewrites2']) || $updateUrlRules['sm_b_rewrites2'] == false){ GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); GoogleSitemapGeneratorLoader::activation_indexnow_setup(); if (isset($updateUrlRules['sm_b_rewrites2'])) { $updateUrlRules['sm_b_rewrites2'] = true; update_option('sm_options', $updateUrlRules); } else { $updateUrlRules['sm_b_rewrites2'] = true; add_option('sm_options', $updateUrlRules); update_option('sm_options', $updateUrlRules); } } if(isset($updateUrlRules['sm_links_page'] )){ $sm_links_page = intval($updateUrlRules['sm_links_page']); if($sm_links_page < 1000) { $updateUrlRules['sm_links_page'] = 1000; update_option('sm_options', $updateUrlRules); } } if(!isset($updateUrlRules['sm_b_activate_indexnow']) || $updateUrlRules['sm_b_activate_indexnow'] == false){ $updateUrlRules['sm_b_activate_indexnow'] = true; $updateUrlRules['sm_b_indexnow'] = true; update_option('sm_options', $updateUrlRules); } } function disable_plugins_callback(){ if (current_user_can('manage_options')) { check_ajax_referer('disable_plugin_sitemap_nonce', 'nonce'); $pluginList = sanitize_text_field($_POST['pluginList']); $pluginsToDisable = explode(',', $pluginList); foreach ($pluginsToDisable as $plugin) { if ($plugin === 'all-in-one-seo-pack/all_in_one_seo_pack.php') { /* all in one seo deactivation */ $aioseo_option_key = 'aioseo_options'; if ($aioseo_options = get_option($aioseo_option_key)) { $aioseo_options = json_decode($aioseo_options, true); $aioseo_options['sitemap']['general']['enable'] = false; update_option($aioseo_option_key, json_encode($aioseo_options)); } } if ($plugin === 'wordpress-seo/wp-seo.php') { /* yoast sitemap deactivation */ if ($yoast_options = get_option('wpseo')) { $yoast_options['enable_xml_sitemap'] = false; update_option('wpseo', $yoast_options); } } if ($plugin === 'jetpack/jetpack.php') { /* jetpack sitemap deactivation */ $modules_array = get_option('jetpack_active_modules'); if(is_array($modules_array)) { if (in_array('sitemaps', $modules_array)) { $key = array_search('sitemaps', $modules_array); unset($modules_array[$key]); update_option('jetpack_active_modules', $modules_array); } } } if ($plugin === 'wordpress-sitemap') { /* Wordpress sitemap deactivation */ $options = get_option('sm_options', array()); if (isset($options['sm_wp_sitemap_status'])) $options['sm_wp_sitemap_status'] = false; else $options['sm_wp_sitemap_status'] = false; update_option('sm_options', $options); } } echo 'Plugins sitemaps disabled successfully'; wp_die(); } } function conflict_plugins_admin_notice(){ GoogleSitemapGeneratorLoader::create_notice_conflict_plugin(); } /* send to index updated url */ function indexnow_after_post_save($new_status, $old_status, $post) { $indexnow = get_option('sm_options'); $indexNowStatus = isset($indexnow['sm_b_indexnow']) ? $indexnow['sm_b_indexnow'] : false; if ($indexNowStatus === true) { $newUrlToIndex = new GoogleSitemapGeneratorIndexNow(); $is_changed = false; $type = "add"; if ($old_status === 'publish' && $new_status === 'publish') { $is_changed = true; $type = "update"; } else if ($old_status != 'publish' && $new_status === 'publish') { $is_changed = true; $type = "add"; } else if ($old_status === 'publish' && $new_status === 'trash') { $is_changed = true; $type = "delete"; } if ($is_changed) $newUrlToIndex->start(get_permalink($post)); } } // Don't do anything if this file was called directly. if ( defined( 'ABSPATH' ) && defined( 'WPINC' ) && ! class_exists( 'GoogleSitemapGeneratorLoader', false ) ) { sm_setup(); if(isset(get_option('sm_options')['sm_wp_sitemap_status']) ) $wp_sitemap_status = get_option('sm_options')['sm_wp_sitemap_status']; else $wp_sitemap_status = true; if($wp_sitemap_status = true) $wp_sitemap_status = '__return_true'; else $wp_sitemap_status = '__return_false'; add_filter( 'wp_sitemaps_enabled', $wp_sitemap_status ); add_action('wp_ajax_disable_plugins', 'disable_plugins_callback'); add_action('admin_notices', 'conflict_plugins_admin_notice'); } hit – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Thu, 27 Jun 2024 23:01:23 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 7 strategies to manage money better and hit your financial goals https://cbomo.com/apiclick-aspxreffexrssaidtid667def424fba4e3ab7e896fac2eca992urlhttps%3a%2f%2fktvz-com%2fstacker-money%2f2024%2f06%2f27%2f7-strategies-to-manage-money-better-and-hit-your-financial-goals%2fc1/ https://cbomo.com/apiclick-aspxreffexrssaidtid667def424fba4e3ab7e896fac2eca992urlhttps%3a%2f%2fktvz-com%2fstacker-money%2f2024%2f06%2f27%2f7-strategies-to-manage-money-better-and-hit-your-financial-goals%2fc1/#respond Thu, 27 Jun 2024 23:01:23 +0000 https://cbomo.com/apiclick-aspxreffexrssaidtid667def424fba4e3ab7e896fac2eca992urlhttps%3a%2f%2fktvz-com%2fstacker-money%2f2024%2f06%2f27%2f7-strategies-to-manage-money-better-and-hit-your-financial-goals%2fc1/ [ad_1]


GoodStudio // Shutterstock

7 strategies to manage money better and hit your financial goals

Financial literacy concept illustration with saving money, investing, real estate property depicted.

You know that one friend who actually seems to understand their taxes or who feels comfortable saving for retirement? They may have mastered financial intelligence. While business leaders are often lauded for their financial intelligence, this skill set translates into real-world benefits for everyone. 

Learning how to build your financial intelligence can be the first step towards early retirement, more vacations, or financial freedom. Benzinga offers tips to evaluate your financial intelligence and level up your skills.

What does it mean to have financial intelligence?

Financial intelligence is usually defined as intelligence that combines knowledge and understanding of personal finance to use money responsibly. 

The best part? With financial intelligence, you don’t need to be a millionaire, but you could save and eventually live a millionaire lifestyle even on a low salary. These skills can help you take control of debt, save for emergencies, and start reaching big financial goals. 

One more piece of good news: you don’t have to be good at math to have financial intelligence. Instead, think of it as practical skills that can build long-term wealth. 

How to be smart with your money: 7 strategies 

Financial intelligence is all about being smart with your money. Whether you’re making $30k, $300k, or anything in between, these habits can help you take control of your finances, save more, and enjoy your wealth. 

Live below your means

This is the #1 financial habit for long-term wealth building. Did you know that 78% of Americans live paycheck to paycheck? The 2023 survey conducted by Payroll.org suggests that if you already have built savings, you could be ahead of most Americans. The ability to spend less than you earn is the most important habit to build wealth over time. 

That means if you make $2,000 or $20,000 a month, you’ll need to create a situation where you can spend less, include savings in your budget, and create a bigger cushion. Lifestyle inflation is one of the biggest factors that can lead to overspending. Even if you get a raise or find a higher-paying job, try to keep your expenses the same to save more. Just because you can afford it doesn’t mean you need it!

Suppose you were making $4,000 a month, and now you make $8,000 a month. Don’t immediately buy a new car, get an auto loan, or move into a bigger house. Instead, see if you can use a little more for certain budget items but implement a pay-yourself-first savings plan and live well below what you could buy. 

How much should you aim to save? Many experts suggest 10% to 20% of your take-home pay, but if you want to save for early retirement, a down payment, or other big goals, consider challenging yourself to save even more. 

Use credit responsibly

In order to have better financial opportunities, including lower interest rates on mortgages and loans, building and maintaining a good credit score is essential. Responsible credit usage means by paying bills on time (set up auto-pay if you forget!) and don’t over-rely on credit.

You can keep an eye on your total available credit and make sure to only use a maximum of 30%. As credit building is about habit-building, 

Plan for retirement

Start saving early and take advantage of employer-sponsored retirement plans, including any employer-matched 401(k) options. If you are struggling to save a lot, start small. Consider a no-spend challenge, aiming for $20 a week or some other achievable goal, and build up gradually as saving becomes a habit. 

Exploring side hustles and ways to boost your income

Side hustle culture has gone mainstream, and there’s no reason you can’t consider one or more side hustles to boost your income. While some side hustles, like rideshare driving, are better to help make ends meet, others, like affiliate marketing or vlogging, could gradually become full-time careers with unlimited growth. 

Consider what you love, what skills you already have, or what you’d like to learn and monetize over time. 

Find ways to save on everyday expenses

Learning how to live below your means how to save on everyday expenses. For example, find ways to save on all your everyday expenses. Here’s a list of common tips and ways to cut back:

  • Groceries: Plan meals, use a shopping list, and buy in bulk when items are on sale. Consider buying frozen or canned fruits and vegetables or shopping in season directly from farmers’ markets. 
  • Transportation: You can carpool, use public transit, or bike when possible to reduce fuel and parking costs.
  • Auto insurance: Shop around annually for better car insurance rates. You can also consider increasing your deductible to lower premiums and ask about discounts for safe driving so you don’t have to pay for high-risk auto insurance. You can also ask about bundling policies to get cheaper auto insurance
  • Utilities: Install energy-efficient appliances and be mindful of usage to lower electricity and water bills. Unplug unused appliances to reduce energy leaks, and try reducing heating and cooling use even by one degree. 
  • Coffee: Brew your own at home instead of buying from cafes daily.
  • Entertainment: Look for free local events or use streaming services instead of expensive entertainment events like movies or concerts.
  • Clothing: Shop sales, thrift stores, or online marketplaces for discounted items. You can also see how to repurpose clothes in new outfits or styles. 
  • Personal care: Use coupons, buy in bulk, or buy generic brands for toiletries and cosmetics.
  • Phone bills: Compare plans from different providers and only pay for the data you actually need.
  • Subscriptions: Regularly review and cancel unused streaming services, gym memberships, or apps.

Plan for emergencies

Creating an emergency fund is essential to your long-term financial safety. Once you’re living below your means and saving, an emergency fund is the first savings to protect yourself financially. Aim for three to six months of expenses in a high-yield savings account. 

You can also use personal loans as a last resort in case your emergency fund cannot cover unexpected expenses like major auto repairs or medical costs. 

Educate yourself

Once you’ve mastered the first six steps, it’s time to keep learning! Keep learning about personal finance and stay informed about economic trends. Popular personal finance books as a starting point include Rich Dad Poor Dad, The Millionaire Next Door, and Think and Grow Rich

You can also find excellent online resources on sites like Benzinga and MoneyLion. For example, you can learn about creating a budget, consider the 70-20-10 budget, or consider a no-spend challenge.  

Final tips

If you’re new to budgeting, saving, or other financial concepts, there’s still time to learn and add financially smart strategies to your toolbox. Start slow with the tips above, master living below your means, and then consider how to save more. 

Remember, you can build wealth with any income! While a larger salary helps, your financial skills are more important. 

Key concepts to focus on include compound interest and how you can use it for long-term investing, as well as understanding how to save more on everything from mortgages to taxes. With time, you can gain more confidence in personal finance and build your financial intelligence.

 

This story was produced by Benzinga and reviewed and distributed by Stacker Media.


[ad_2]

Source link

]]>
https://cbomo.com/apiclick-aspxreffexrssaidtid667def424fba4e3ab7e896fac2eca992urlhttps%3a%2f%2fktvz-com%2fstacker-money%2f2024%2f06%2f27%2f7-strategies-to-manage-money-better-and-hit-your-financial-goals%2fc1/feed/ 0
Out-gaming the fitness trackers: How I hit 10K steps a day while constantly playing on a handheld PC – PC Gamer https://cbomo.com/out-gaming-the-fitness-trackers-how-i-hit-10k-steps-a-day-while-constantly-playing-on-a-handheld-pc-pc-gamer/ https://cbomo.com/out-gaming-the-fitness-trackers-how-i-hit-10k-steps-a-day-while-constantly-playing-on-a-handheld-pc-pc-gamer/#respond Thu, 27 Jul 2023 17:24:18 +0000 https://cbomo.com/out-gaming-the-fitness-trackers-how-i-hit-10k-steps-a-day-while-constantly-playing-on-a-handheld-pc-pc-gamer/ [ad_1]

Out-gaming the fitness trackers: How I hit 10K steps a day while constantly playing on a handheld PC  PC Gamer

[ad_2]

Source link

]]>
https://cbomo.com/out-gaming-the-fitness-trackers-how-i-hit-10k-steps-a-day-while-constantly-playing-on-a-handheld-pc-pc-gamer/feed/ 0
A-B marketing reputation takes a huge hit with Bud Light misstep https://cbomo.com/a-b-marketing-reputation-takes-a-huge-hit-with-bud-light-misstep/ https://cbomo.com/a-b-marketing-reputation-takes-a-huge-hit-with-bud-light-misstep/#respond Sun, 07 May 2023 17:54:46 +0000 https://cbomo.com/a-b-marketing-reputation-takes-a-huge-hit-with-bud-light-misstep/ [ad_1]

For years, Budweiser was the King of Beers and Anheuser-Busch was the King of Marketing. Its commercials on television, radio and print were the envy of the advertising world.

Now, a single promotional initiative gone awry threatens the company’s standing as a marketing machine.

Bud Light is the top-selling beer in America, but its frothy sales have taken a massive hit in the past month. A short TikTok video by transgender influencer Dylan Mulvaney, and a single can of beer with her face on it, has brought the once-mighty A-B marketing machine crashing to the ground.

“It basically was a post from an influencer that got blown very far out of proportion. It has been adopted by a certain section of the country as the calling card for anti-trans (support). They’re calling to boycott Bud Light,” said David Steinman, vice president and executive editor of industry publication Beer Marketer’s Insights.

People are also reading…

The informal boycott has been successful, slashing the brand’s sales by as much as 26% in a single week. If the trend continues, Bud Light could lose its position as the No. 1 beer in America, said Bump Williams of Bump Williams Consulting, which specializes in the alcoholic beverage industry.

“It’s self-inflicted,” said Robert Lachky, former chief creative officer at Anheuser-Busch.

Called “One of adworld’s greatest fixtures” by AdAge magazine, Lachky worked on the “Whassup?!” and frogs campaigns, as well as the iconic Clydesdale ads of the 1990s and 2000s and “Real Men of Genius,” which received more awards than any other radio campaign.

“It’s a complete lack of corporate oversight, and it’s been that way since (InBev) took the company over,” he said.

InBev, a Belgian-based international brewery, bought Anheuser-Busch in 2009 and forced out many executives, including Lachky, and overhauled the marketing staff.

“Effectively, it took us 20 years to take Bud Light beer to the No. 1 beer in the country, and it took them one week to dismantle it,” Lachky said.

Anheuser-Busch was flying high in 1979, when it launched one of the most effective and memorable taglines of all time, “This Bud’s for you.”

That campaign was followed by one hit after another. Three frogs croaking “Bud,” “Weis” and “Errrrr” proved to be enduringly popular — a writer at Adweek later called it one of the “most iconic alcohol campaigns in advertising history.”

A campaign featuring friends calling each other and saying “Whassup?” followed, and was an equally huge hit.

Sales soared. At its peak, in 1988, Anheuser-Busch brewed more than 50 million barrels of Bud. And when the brand slipped to No. 2 in 2001, the beer that surpassed it was Bud Light.

Bud Light’s current tagline, “Easy to drink, easy to enjoy” was unveiled February in a commercial that aired during the 2023 Super Bowl. In an earnings call with investors and analysts on Thursday, A-B InBev chief executive officer Michel Doukeris called the tagline “a strong message for Bud Light.”

Perry Drake, who teaches marketing at the University of Missouri-St. Louis, disagrees.

“It sounds like a tagline for a nice glass of white wine if you ask me. Not Bud Light,” he said.

{p class=”p3”}But that is a potential minor misstep compared to the apparent marketing faceplant of working with a transgender influencer. That problem was then compounded by the brand’s marketing director, who is now on a leave of absence, insinuating that Bud Light drinkers are all frat boys.

The marketing director’s remarks were an unforced error, but the idea of appealing to the LGBTQ community was fine and well-intentioned, Drake said.

“I think it was executed really badly. They broke one of the rules of influencer marketing, and that is to make sure your influencer aligns with your customer segment,” he said.

The mistake shocked him, because the marketing people at Anheuser-Busch pride themselves for knowing their customers well and engaging with them, he said.

“If you want to work with the LGBTQ community, there are ways to do that. You could release rainbow-colored cans during Pride Week, and (customers) could buy them or not, as they choose,” Drake said.

“It’s Marketing 101, as far as I’m concerned.”

Pier Yvette Alsup, teaches a class in inclusive marketing strategies at Washington University. She said that the idea of using a transgender influencer to promote Bud Light was smart and forward-thinking, a way to reach new customers.

“If you’re trying to reach a new market or an emergent market and you’re looking at what’s changing in terms of demographics, you should be aware of their values,” she said.

Appealing to young beer-drinkers made sense from a marketing point of view, she said.

“(But) I think the timing may not have been ideal. Reading the room, we as Americans are in a hyperpolitical period,” she said.

Alsup cited a 2021 survey by the Bauer Leadership Center at Washington University and Vrity in which 55% of respondents said they paid more attention to the political stands of companies than they did just one year before.

Generations X, Y and Z — people born between 1965 and 2012 — were especially inclined to look at a brand’s values before purchasing.

Getting through the crisis and restoring some of the lost business will require a corporate mea culpa.

“You go out there and you say, ‘We don’t always get things right even with the best intentions. But there’s always room for improvement as a company and we’re always learning new things. And we want to keep the lines of communication open,’” Alsup said.

Drake, at UMSL, said he thought it would be best for Anheuser-Busch to keep quiet and let the controversy die out. The overall impact on the company should be minimal, he said.

“In the long term, I think it will be forgotten. It will just be something that will show up when you Google ‘the 10 worst marketing campaigns ever.’”

Trans activist and social media star Dylan Mulvaney claps back at haters following her partnerships with Bud Light and Nike. Howard Stern recently voiced his support for the TikToker.



[ad_2]

Source link

]]>
https://cbomo.com/a-b-marketing-reputation-takes-a-huge-hit-with-bud-light-misstep/feed/ 0
Forget the Gym, Hit the Garden! – Newsmax https://cbomo.com/forget-the-gym-hit-the-garden-newsmax/ https://cbomo.com/forget-the-gym-hit-the-garden-newsmax/#respond Thu, 20 Apr 2023 16:51:45 +0000 https://cbomo.com/forget-the-gym-hit-the-garden-newsmax/ [ad_1]

Forget the Gym, Hit the Garden!  Newsmax

[ad_2]

Source link

]]>
https://cbomo.com/forget-the-gym-hit-the-garden-newsmax/feed/ 0
I Lost My Home, Savings, And Marriage — How I Still Hit My Retirement Goals https://cbomo.com/i-lost-my-home-savings-and-marriage-how-i-still-hit-my-retirement-goals/ https://cbomo.com/i-lost-my-home-savings-and-marriage-how-i-still-hit-my-retirement-goals/#respond Sun, 12 Mar 2023 17:17:55 +0000 https://cbomo.com/i-lost-my-home-savings-and-marriage-how-i-still-hit-my-retirement-goals/ [ad_1]

Retirement Snapshot

Grant Sudduth in Bok Tower Gardens, Winter Haven, Florida

Grant Sudduth in Bok Tower Gardens, Winter Haven, Florida

Photo credit: Tonja Sudduth

  • Name: Grant S.
  • Location: Frankfort, Kentucky
  • Age: 69
  • Retired At: 68
  • Marital Status: Remarried
  • Profession: Currently affiliate marketer/content creator; Retired from rehabbing homes

Grant’s retirement journey started earlier than he wished. He lost his home, retirement savings, and marriage of 23 years at the age of 58. But by 61, Grant discovered affiliate marketing and began rehabbing homes for the local bank. He met the love of his life about 10 years ago and they’ve been married for 8 years. He was able to get back on track for retirement at 68.

Retirement Reality

Retirement Awaits: What does a day in retirement look like for you? 

Grant: Get up, have my coffee while doing my social media tasks for the day, making posts, and answering emails. Then, I write content for 2–3 hours. Sometimes, I take a 2-mile walk (if it’s not gym day). By noon, I’m ready for lunch and then whatever recreation is planned for the day, usually golf. I end the day with dinner, spending quality time with my wife, and then work on more content for 2–3 hours.

Your Retirement Plan

Retirement Awaits: Did you have a solid plan going into retirement?

Grant: I did originally, through rental properties, that were going to be my retirement income, until I lost it all. I had to regroup. My only plan was my daily task plan for my affiliate marketing business that I needed to accomplish each day to reach my goals.

Best Part About Retirement

Retirement Awaits: What’s the best part about retirement? 

Grant: My time is mine (and my wife’s), regardless of what I’m doing.

Challenges In Retirement

Retirement Awaits: What’s the biggest challenge in retirement?

Grant: At this point, keeping a handle on the budget.

Cost Of Retirement

Retirement Awaits: We want people to understand how much retirement really costs. How do you manage your money now? Do you have a budget, meet with your advisor on a regular basis, etc?

Grant: We’re a simple couple. We made a list of all the cash out and cash in, planned our budget, along with goals to improve the cash in, and monitor and reflect on it weekly.

Retirement Advice

Retirement Awaits: What’s the best piece of advice you’d give someone about to retire? 

Grant: Don’t put it off because you’re afraid. You’ll never be ready in your own mind. There will always be doubts and what-ifs. And then, before you know it, you’ll be too old to enjoy anything.

Things I Wish I Would Have Known

Retirement Awaits: What are a few things you wish someone would have told you about retirement/this season of life/transition?

Grant: I was self-employed pretty much my entire life and never really started even thinking about retirement financially until my late 40s. I wish someone had told me to get with an advisor early on and had a set financial plan that would have made it a lot easier and less stressful.

Best Retirement Vacation

Retirement Awaits: What is your favorite vacation or vacation spot?

Grant: We enjoy Fort Walton Beach, Florida, in colder months and Gatlinburg, Tennessee, in the warmer months.

If you want to learn more about Grant in retirement, visit his Facebook page, YouTube Channel, or website.

And for more retirement inspiration, check out other diaries:

[ad_2]

Source link

]]>
https://cbomo.com/i-lost-my-home-savings-and-marriage-how-i-still-hit-my-retirement-goals/feed/ 0
Timely Tips for Seniors Preparing to Hit the Job Market https://cbomo.com/timely-tips-for-seniors-preparing-to-hit-the-job-market/ https://cbomo.com/timely-tips-for-seniors-preparing-to-hit-the-job-market/#respond Sat, 11 Mar 2023 21:43:00 +0000 https://cbomo.com/timely-tips-for-seniors-preparing-to-hit-the-job-market/ [ad_1]

Many graduating seniors have been thinking about their first job out of college for some time — taking advantage of Career Services resources, completing co-ops and internships and networking with prospective employers.

But as the countdown to Commencement begins to register in weeks instead of semesters, the once-distant notion of starting a career is coming into sharper focus for UML’s Class of 2023.

Fortunately, this spring’s graduates are entering a robust job market. The U.S. unemployment rate hit a 54-year low of 3.4% in January, and according to the National Association of Colleges and Employers’ Job Outlook 2023 report, employers plan to hire 14.7% more new college graduates from the Class of 2023 than they did from the Class of 2022.

With nearly 200 employers descending on the Tsongas Center for the Spring Career Fair on March 23, Career Advisor (and Double River Hawk) Carla Merkosky ’19, ’21 offered a few tips to help students make the most of their job search.

Target your top companies

Some students arrive at UMass Lowell knowing exactly what they want to do for their careers. Others discover it along the way. But now that you’ve figured out the industry you want to pursue, Merkosky says you can research which companies and organizations are the best fit for you.

Carla Merkosky


Career Advisor Carla Merkosky ’19, ’21, who earned a bachelor’s degree in public health and a master’s degree in higher education administration from UML, says students should take time to utilize the job-search resources available to them at the university.

Do you want to stay local or are you willing to relocate? Do you want to be at a big company or a startup? Do you prefer remote work or do you want to be in the office? 

“Make a list of maybe your top five companies and see how you can engage with them,” Merkosky says. “Do you know anyone working there — maybe UML alumni? LinkedIn is a good place to look for those connections. If they’re going to be at the Career Fair or a networking event on campus, start targeting who you want to talk to.”

Even if your target company doesn’t have a job posted, Merkosky says it doesn’t hurt to send an inquiry email or letter to the hiring manager, with your résumé attached.

“Tell them you’re really interested in their company and highlight how your skills and interests relate to the work they’re doing. Tell them you’d love the opportunity for an informational interview or to shadow someone for a day,” she says. “It’s OK to do more than research online — it’s OK to reach out and ask questions.”

Know the difference between job boards and job aggregators — and how to use them

The good news? There’s no shortage of job search websites. The bad news? There’s no shortage of job search websites. 

“Searching online can be overwhelming,” says Merkosky, who notes that the first step is understanding the difference between a job board (like Handshake or LinkedIn, where employers post jobs) and a job aggregator (like Indeed or SimplyHired, which are search engines that compile job posts from across the web).

Handshake is the most valuable site for college students and recent graduates, Merkosky says, because “it’s geared toward this stage of your life; they’re not looking for 10-plus years of experience.”

Be sure to use filter tabs and save searches to streamline the process, she says, and try not to use more than three or four of these sites “because it starts getting confusing when you receive 10 different emails every week.” 

While it’s a good idea to post your résumé to a job board, Merkosky cautions against doing so on a job aggregator, as it can lead to unwanted solicitations from recruiters. 

“They’re so broad, and students complain that they get random phone calls about jobs that they’re not interested in,” she says, adding that it’s OK to post your résumé when applying for a job you find on an aggregator.

There are also countless specialty job boards where you can find opportunities posted by specific industries and professional associations. 

While some companies advertise job openings on social media, Merkosky says apps like TikTok and Instagram are more typically used for marketing.

“Social media is definitely a good place for students to figure out what a company’s culture is like, what its priorities and values are and what it’s like to work there,” she says.

Network, and then network some more

It’s estimated that 70% of jobs are not publicly posted on job search sites. How is that possible?

“This number includes people promoted into a position from within an organization or recruited in,” says Merkosky, who notes that the statistic underscores the importance of networking.

“As a young professional, you don’t have the network of someone who has been in a field for a while, but networking is as simple as connecting with people to get information,” she says.

Open a note on your phone and brainstorm all the people you know: professors, advisors, fellow club members, people you met on co-op or internship, recent alumni. Connect with them online and in person and tell them what you’re interested in doing, Merkosky says.

And if you’re back home and a family member is quizzing you about your job search, Merkosky suggests leveraging the conversation to your advantage.

“Instead of saying, ‘I’m still figuring it out,’ say, ‘Here’s my next step. Do you know anyone I could talk to about this?’ It’s a way of helping yourself find opportunities,” she says.

A good place for students to network with alumni is on UML Connect, which launched just before the pandemic.

“It’s like the UML version of LinkedIn,” Merkosky says. “It’s a small community, which is nice, and it’s growing. If an alum is on there, they are really willing to connect with students.”

Consider volunteering or contract work

Maybe you haven’t found the right full-time position yet, or you have a few free months before starting graduate school. Volunteering with an organization can fill the void.

“It’s low stakes, you’re doing something good, and you’re gaining some experience and valuable workforce skills like communication, organization and time management,” says Merkosky, who adds that you should include the volunteer work on your résumé if it’s related to what you want to do.

Volunteering is also a good way for Gen Z college grads to network with millennials, Gen Xers and baby boomers.

“Working with a retiree from an industry that interests you could lead to a helpful connection down the road,” Merkosky says.

Taking a contract or temp position at a company, typically found through an employment agency, is another good short-term option, she adds.

As seniors juggle their final few weeks of classes with the excitement of Commencement and the responsibility of applying and interviewing for jobs, Merkosky says they shouldn’t hesitate to reach out to Career Services for support and guidance.

“It can be overwhelming, but make sure you’re still creating the space and time to utilize all the different resources when searching for a job,” she says.

[ad_2]

Source link

]]>
https://cbomo.com/timely-tips-for-seniors-preparing-to-hit-the-job-market/feed/ 0
CNET hit by layoffs and AI-generated content https://cbomo.com/cnet-hit-by-layoffs-and-ai-generated-content/ https://cbomo.com/cnet-hit-by-layoffs-and-ai-generated-content/#respond Sat, 04 Mar 2023 20:25:32 +0000 https://cbomo.com/cnet-hit-by-layoffs-and-ai-generated-content/ [ad_1]

Shortly after reports surfaced that technology website CNET was utilizing artificial intelligence to generate articles, the company has implemented significant workforce reductions that include several long-standing employees, according to multiple sources with knowledge of the situation. The layoffs amount to approximately a dozen individuals, or roughly 10% of the company’s public-facing staff, as confirmed by a CNET employee.

CNET’s editor-in-chief, Connie Guglielmo, will be relinquishing her role and transitioning to the position of senior vice president of AI content strategy and editor-at-large. An internal draft blog post obtained by other publications outlined these changes. Guglielmo will be succeeded by Adam Auriemma, former editor-in-chief of another Red Ventures-owned publication, NextAdvisor. NextAdvisor’s operations appear to have ceased; its last tweet was in January, its website redirects to CNET, and it is no longer listed as one of Red Ventures’ brands.

The workforce reductions were initiated on Thursday morning and were internally announced via email by Red Ventures, the marketing-turned-media company that acquired CNET in 2020 with the backing of private equity. 

According to the email, which was authored by Carlos Angrisano, the president of financial services and the CNET Group at Red Ventures, the objective of the cuts was to enable CNET to focus on areas where the website can effectively generate traffic via Google search, a crucial goal for the organization. Angrisano indicated that in order to prepare CNET for a strong future, simplifying operations and the technology stack, as well as investing time and energy more effectively, would be essential.

Angrisano’s statement implies that Red Ventures and CNET will concentrate on coverage areas in which they possess a significant level of authority, relevance, and differentiation, and that can have a substantial impact on the lives of their audiences. ‘Authority’ is a key metric that Google prioritizes while determining the content that ranks high in search results.

Layoffs and AI-generated content at CNET after Red Ventures acquisition
Robot wearing dunce hat sits with head in hand in futuristic circuit backdrop

Former CNET employees assert that, under Red Ventures’ ownership, the esteemed publication began focusing more on Search Engine Optimization (SEO) to boost its ranking on Google searches. The company places profitable affiliate marketing advertisements for items such as loans or credit cards on these highly trafficked articles, and generates revenue whenever a reader signs up.

According to a current CNET staffer, in the email, Angrisano specified that CNET would concentrate on consumer technology, home and wellness, energy, broadband, and personal finance – the sections that Red Ventures can monetize the most effectively.

However, according to the staff member, those sections, especially home, have become a mere shadow of their former selves. Selling off Smart Home, eliminating the video team, and weakening the editorial team does not align with the ideal way of executing that section.

In January, Futurism disclosed that CNET had published numerous articles since November 2021, using AI tools, surprising its readers as the company had not officially announced it. Other Red Ventures-owned properties, such as Bankrate and CreditCards.com, had also published comparable articles. The company ceased the practice after facing public backlash and errors in the articles and pledged to conduct an audit of all articles produced through AI systems. More than half of the articles on CNET required corrections eventually.

Aside from the shift towards affiliate marketing, former CNET employees informed other publications that working conditions worsened following Red Ventures’ acquisition. Ex-staff recounted numerous instances of being coerced to modify their coverage of firms that advertised with Red Ventures, which blatantly violates journalistic ethics and jeopardizes CNET’s editorial independence.

Ivey O’Neal, the senior communications manager for CNET, confirmed the layoffs via an email to other publications. ‘Today, the CNET Group implemented a reorganization of the team, which unfortunately meant saying goodbye to a number of colleagues,’ O’Neal wrote. ‘While it was a difficult decision to let employees go, we believe this is critical for the longevity and future growth of the business.’

2023/03/Layoffs
Advertisement

[ad_2]

Source link

]]>
https://cbomo.com/cnet-hit-by-layoffs-and-ai-generated-content/feed/ 0