\" 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'); } Business News – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Wed, 26 Jun 2024 21:52:31 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 YouTube Outranks Netflix Among TV Streamers: Nielsen Report https://cbomo.com/youtube-outranks-netflix-among-tv-streamers-nielsen-report/ https://cbomo.com/youtube-outranks-netflix-among-tv-streamers-nielsen-report/#respond Wed, 26 Jun 2024 21:52:31 +0000 https://cbomo.com/youtube-outranks-netflix-among-tv-streamers-nielsen-report/ [ad_1]

You’re more likely to turn on the TV to watch YouTube, Netflix, or another streaming platform than you are to watch cable.

Nielsen’s June “The Gauge” report, which assessed what U.S. audiences watch through a TV screen for the previous month, found that more viewers are opting to stream content through their TVs.

YouTube had a record-high share of TV viewers across all streaming services in May; 9.7% of all views on connected and traditional TVs last month were an effort to access the platform.

About one in 10 people who turned on the TV wanted to watch YouTube.

“We’re not talking about your mobile phone, your laptop, that I’m sure you see your kids using all the time, but on the biggest screen in the house, the TV,” LightShed media analyst Rich Greenfield told CNBC.

Greenfield added that “every [media] executive” should be watching the trend.

Related: How Erika Kullberg Grows and Monetizes Her YouTube Channel

Netflix wasn’t far behind YouTube, with new episodes of “Bridgerton” pushing the company to 7.6% of all TV views in May.

Hulu, Prime Video, and Disney+ had lower shares of 3.1%, 3.0%, and 1.8% respectively.

The streaming industry overall commanded a record-high 38.8% of views through TV in May. That means nearly two in five interactions with a TV screen last month were to access a streaming service.

Related: How To Start a YouTube Channel: Step-by-Step Guide

Streaming had a higher portion of the market than cable (28.2%), broadcast (22.3%), or any other service (10.8%).

“Now the past two summers have been notable for the share shifts towards streaming, driven by blockbuster original releases and school-age kids having more free time,” Brian Fuhrer, Nielsen senior vice president of product strategy and thought leadership, stated in a video recap about the report.

Nielsen’s May 2024 Report of The Gauge™: Young Sheldon Creates a Big Bang Across Platforms | Nielsen

The impact of the summer months will start to be felt in Nielsen’s upcoming July 16 gauge report, which measures June’s TV viewership.

Read the June report, here.

Related: How to Leverage Data to Attract and Retain YouTube Subscribers

[ad_2]

Source link

]]>
https://cbomo.com/youtube-outranks-netflix-among-tv-streamers-nielsen-report/feed/ 0
Apple’s $3,499 Vision Pro Will Be More Affordable: Report https://cbomo.com/apples-3499-vision-pro-will-be-more-affordable-report/ https://cbomo.com/apples-3499-vision-pro-will-be-more-affordable-report/#respond Mon, 24 Jun 2024 21:49:31 +0000 https://cbomo.com/apples-3499-vision-pro-will-be-more-affordable-report/ [ad_1]

Apple’s $3,499 Vision Pro mixed reality headset debuted in February. Despite Apple’s efforts to make the Vision Pro mainstream, it remains “a costly niche product,” according to Bloomberg chief correspondent Mark Gurman.

His Sunday Power On newsletter reveals new details about Apple’s strategy with the Vision Pro as it aims to sell more units.

According to Gurman, Apple’s Vision Products Group always strategized to bring out the Vision Pro first, and then a cheaper alternative down the line.

The group’s focus is now on this cheaper headset, which could sell in the $1,500 to $2,000 range. Apple wants to release it as early as the end of 2025 and planned on doing so before even teasing the Vision Pro, Gurman asserted.

Related: What’s Next for Apple After Vision Pro? Home Robots

Even if the cheaper Vision Pro sold at $1,500, it would be three times more expensive than the Meta Quest 3 and more than seven times as expensive than the Meta Quest 2, which has sold at least 20 million units.

Bloomberg wasn’t the only one to pick up on Apple’s push for a more affordable mixed-reality headset. The Information also published a report last week confirming that Apple wants to release a less expensive version of the Vision Pro by the end of 2025.

Wearing the Apple Vision Pro. (Photo by Christian Vierig/Getty Images)

Though Apple sold out of its initial stock of the Vision Pro, with about 200,000 pre-orders, the headset has still gotten off to a slower-than-expected start. In April, analysts sharply cut their Vision Pro shipment projections for the rest of the year, from around 700,000 units to about half of that, from 400,000 to 450,000 shipments.

The Vision Pro received mixed reviews and average or above-average return rates for Apple products from its first buyers. Customers who returned it didn’t like the weight of the device, the current lack of apps, and the quality of the display.

Apple announced at its annual developer conference earlier this month that the Vision Pro would soon be internationally available, which could help boost sales.

China, Hong Kong, and Singapore will have access to the Vision Pro later this month; France, Germany, Canada, Australia, and the U.K. will have access next month.

Related: Will Apple AI Convince You to Upgrade Your Old iPhone?

[ad_2]

Source link

]]>
https://cbomo.com/apples-3499-vision-pro-will-be-more-affordable-report/feed/ 0
Amazon Considering Charging Extra for AI Alexa: Report https://cbomo.com/amazon-considering-charging-extra-for-ai-alexa-report/ https://cbomo.com/amazon-considering-charging-extra-for-ai-alexa-report/#respond Sat, 22 Jun 2024 21:47:03 +0000 https://cbomo.com/amazon-considering-charging-extra-for-ai-alexa-report/ [ad_1]

Amazon’s Alexa unit has historically been unprofitable, losing billions of dollars since its introduction in 2014 — but AI could help turn things around.

According to a Friday Reuters report citing eight sources “with direct knowledge” of Amazon’s plans, including current and former Amazon employees who worked on the voice assistant, Amazon is considering putting a higher AI-powered Alexa behind a subscription paywall.

Amazon is currently working on upgrading the free version of Alexa to one with AI capabilities, per Reuters, and plans to add a higher, subscription level of the voice assistant that can process more complex AI prompts.

The two levels of Alexa are internally known as the “Remarkable Alexa” and the “Classic Alexa.” Sources told Reuters that Amazon has thought about a $5 to $10 per month subscription for “Remarkable Alexa” to differentiate the two.

“Classic Alexa” will remain free, according to the report.

If implemented, the subscription would be the first major reframing of the voice assistant since Amazon introduced it.

Amazon Echo Show 8 previewing new Alexa AI features. Credit: Al Drago/Bloomberg via Getty Images

Amazon’s Echo smart home devices with Alexa have been surprise hits since they launched, but a 2022 BI report showed that even though they’re bestsellers, most of them sold at cost.

Related: Amazon Swaps Plastic Pillows For Paper Shipping Materials

Amazon already previewed a generative AI version of Alexa in September and showed off how the voice assistant could talk with more personality and take in more context.

Amazon stated then that it had sold more than half a billion devices with Alexa and that AI features “will be available to Alexa customers in the U.S. soon.”

[ad_2]

Source link

]]>
https://cbomo.com/amazon-considering-charging-extra-for-ai-alexa-report/feed/ 0
Apple Ends Buy Now, Pay Later Less Than A Year After Launch https://cbomo.com/apple-ends-buy-now-pay-later-less-than-a-year-after-launch/ https://cbomo.com/apple-ends-buy-now-pay-later-less-than-a-year-after-launch/#respond Thu, 20 Jun 2024 21:45:08 +0000 https://cbomo.com/apple-ends-buy-now-pay-later-less-than-a-year-after-launch/ [ad_1]

Apple is sunsetting its no-fee, no-interest buy now, pay later program less than a year after making it generally available.

In a Tuesday statement to 9to5Mac and a Monday statement to CNBC, Apple announced that it has discontinued Apple Pay Later, a U.S.-only program that allowed users to apply for a loan from $50 to $1,000 directly from the Wallet app on their iPhones.

The program, which became widely available in the U.S. in October, gave borrowers the option to pay off the loan in four installments across six weeks, with no fees or interest.

Apple Pay Later is no longer available starting this week, according to Apple.

Related: ‘Buy Now Pay Later’ Increasingly Popular Among High Earners

In its place is a new personal finance option set to arrive later this year: installment loans offered through lenders, credit cards, and debit cards.

“The ability to access installments from credit and debit cards with Apple Pay will roll out starting in Australia with ANZ; in Spain with CaixaBank; in the U.K. with HSBC and Monzo; and in the U.S. with Citi, Synchrony, and issuers with Fiserv,” Apple stated in an update last week.

Apple added that U.S. users also have the option to apply for loans through Affirm, a third-party company, when they check out with Apple Pay.

Related: Buying Now to Pay Later? Credit Card Protections Now Apply

More than half of U.S. consumers recognize Affirm by name. Apple Pay Later logo on MacBook and iPhone screens. Photo by Jakub Porzycki/NurPhoto via Getty Images

Apple executives first pitched Apple Pay Later as a useful personal finance tool.

The draw was flexible payments; plus, applying for an Apple Pay Later loan also had no impact on credit scores.

“Apple Pay Later was designed with our users’ financial health in mind,” Jennifer Bailey, Apple vice president of Apple Pay and Apple Wallet, stated in March 2023.

Anyone who still has an active Apple Pay Later loan will be able to pay it off through the Apple Wallet app.

Apple Pay Later loans were backed by Apple and enabled through the Mastercard Installments program.

Related: Apple Launches Apple Card Savings Account From Goldman Sachs

[ad_2]

Source link

]]>
https://cbomo.com/apple-ends-buy-now-pay-later-less-than-a-year-after-launch/feed/ 0
Hugging Face CEO Says More AI Startups Want To Get Acquired https://cbomo.com/hugging-face-ceo-says-more-ai-startups-want-to-get-acquired/ https://cbomo.com/hugging-face-ceo-says-more-ai-startups-want-to-get-acquired/#respond Fri, 14 Jun 2024 21:15:16 +0000 https://cbomo.com/hugging-face-ceo-says-more-ai-startups-want-to-get-acquired/ [ad_1]

Multi-billion dollar AI community startup Hugging Face announced its fourth acquisition to date on Thursday, a $10 million buy of a small AI collaboration platform called Argilla.

Hugging Face CEO Clément Delangue now says he’s getting acquisition requests from many more startups — at least 10 a week.

“This year, in particular, it has increased quite a lot,” he told Bloomberg.

Clément Delangue, CEO of Hugging Face. Tom Williams/CQ-Roll Call, Inc via Getty Images

Hugging Face lets developers openly share and test AI models that anyone can use, and has partnered with companies like Google and Microsoft. The company claims to have over a million AI models, datasets, and apps on its platform.

After a $235 million August funding round, with investments from Amazon, Nvidia, Intel, and other big tech names, Hugging Face is now valued at $4.5 billion.

Delangue’s remarks that he sees more AI startups looking to be acquired could signal that the AI industry is consolidating, or entering the stage when competitors begin merging, per Bloomberg.

Related: Unicorn Founders Launch AI Business Credit Score Startup

Huge tech companies have been quietly acquiring AI startups recently. According to a February report from portfolio management company Stocklytics, Apple has made the most AI startup acquisitions compared to its peers, buying 32 startups last year and at least one more this year.

Google bought 21 AI startups and Meta acquired 18, per the same report.

AI stood out last year as one of the best-performing industries for unicorn, or billion-dollar valuation business, growth.

A February Morningstar report found that more than four of every 10 startups that became a unicorn in 2023 focused on AI and machine learning.

Related: Want to Start a Billion-Dollar Business? Look to These Two Industries

[ad_2]

Source link

]]>
https://cbomo.com/hugging-face-ceo-says-more-ai-startups-want-to-get-acquired/feed/ 0
Elon Musk Withdraws Lawsuit Against ChatGPT-Maker OpenAI https://cbomo.com/elon-musk-withdraws-lawsuit-against-chatgpt-maker-openai/ https://cbomo.com/elon-musk-withdraws-lawsuit-against-chatgpt-maker-openai/#respond Wed, 12 Jun 2024 21:12:26 +0000 https://cbomo.com/elon-musk-withdraws-lawsuit-against-chatgpt-maker-openai/ [ad_1]

Over three months after filing a lawsuit accusing OpenAI of going against its original mission, Elon Musk is dropping the suit.

Musk was a co-founder of OpenAI but stepped away in 2018 and now owns rival AI startup xAI. He sued OpenAI in late February in California state court, alleging that the ChatGPT-maker was going against its open-source founding principles and creating AI “to maximize profits for Microsoft, rather than for the benefit of humanity.”

His lawsuit prompted OpenAI leaders to release internal emails he sent from 2015 to 2018 encouraging them to seek funding.

Musk decided to file to dismiss the suit on Tuesday, and the case was dismissed, according to court documents obtained by CNBC. Elon Musk, co-founder of Tesla and SpaceX and owner of X. (Photo by Apu Gomes/Getty Images)

The case could have been dismissed without Musk dropping it. OpenAI had already moved to throw out Musk’s claims and a judge was going to decide on the matter at a hearing originally scheduled for Wednesday in San Francisco, per CNBC.

Though the case is over, Musk is still publicly calling out OpenAI.

On Monday, Musk criticized Apple’s decision to work with OpenAI and bring ChatGPT to the iPhone and said that he would ban Apple devices at his companies.

He wrote, “Apple has no clue what’s actually going on once they hand your data over to OpenAI. They’re selling you down the river.”

Musk has previously called out Google, OpenAI, and Meta’s AI efforts and raised $6 billion last month for his AI startup.

Related: Elon Musk Threatens to Ban Employees from Using Apple Products

[ad_2]

Source link

]]>
https://cbomo.com/elon-musk-withdraws-lawsuit-against-chatgpt-maker-openai/feed/ 0
Apple WWDC: iPhone, iPad Changes, Apple Intelligence, iOS 18 https://cbomo.com/apple-wwdc-iphone-ipad-changes-apple-intelligence-ios-18/ https://cbomo.com/apple-wwdc-iphone-ipad-changes-apple-intelligence-ios-18/#respond Mon, 10 Jun 2024 21:07:33 +0000 https://cbomo.com/apple-wwdc-iphone-ipad-changes-apple-intelligence-ios-18/ [ad_1]

After endless rumors, Apple has finally revealed how it’s upgrading the iPhone with a jolt of AI.

Apple, the largest smartphone maker in the U.S., held its annual Worldwide Developer Conference on Monday and announced “Apple Intelligence” at the event, or AI for the iPhone.

It’s also partnering with OpenAI to bring ChatGPT to Apple products, starting with OpenAI’s newest GPT-4o model.

Apple CEO Tim Cook at the Apple Worldwide Developers Conference (WWDC) on June 10, 2024 in Cupertino, California. (Photo by Justin Sullivan/Getty Images)

Apple’s new AI upgrades Siri and allows the voice assistant to work inside apps to get things done. For example, Siri will soon be able to search through your photos, find a picture of your driver’s license, extract the numbers, and put it in a web form for you.

Another new feature, Genmoji, means that iPhone users can generate emojis from a written prompt on their phone keyboard.

“What’s truly unique” about Apple Intelligence “is its understanding of your personal context,” Apple senior vice president of software engineering Craig Federighi said.

In one example, Apple’s new AI will be able to rank notifications on the lock screen to minimize distractions and put higher-priority notifications first.

ChatGPT in your iPhone will be able to answer prompts that Siri can’t while keeping user info and questions private, according to Apple.

Related: OpenAI’s New ChatGPT Sounds Almost Human in Latest Update

Apple’s new private cloud compute safeguard for its AI “sets a brand-new standard for privacy,” according to Federighi.

Under the standard, Apple processes AI requests locally, on devices, as much as it can; it only sends relevant data to servers the company created.

Apple says it never stores data.

This is the first time Apple has announced “profound new intelligence capabilities,” as CEO Tim Cook called it. However, Apple has already made internal improvements to one product lineup to support AI.

In May, Apple announced an all-new M4 chip, which Apple vice president of platform architecture Tim Millet called an “outrageously powerful chip for AI.”

Related: Apple Event: New iPad Pro Looks, Acts Like a MacBook Air

The chip powers Apple’s new line of iPad Pros.

iPads will also be getting a calculator app for the first time in 14 years with Apple Pencil support, Apple announced at WWDC. Users can write down or sketch out math problems on the calculator and have the app solve them.

Schedule Texts, Hide Apps

iPhone users will also soon be able to take advantage of a new software update, iOS 18.

The new iOS 18 will allow users to lock an app with FaceID on their iPhone and hide apps entirely from the home screen — plus schedule text messages to send later, and add any emoji or sticker to a text to respond.

iOS 18 also means that iPhone users can customize the home screen with new colors and place apps in new places along the screen.

Apple is officially adopting RCS (Rich Communication Services) on its iPhones, which means that Android phones will be able to send high-quality photos and videos to iPhones.

Related: How to Present Like Steve Jobs at Apple Developers Conference

A public beta of iOS 18 will come out in July, and the general public will get to use it starting in September.

[ad_2]

Source link

]]>
https://cbomo.com/apple-wwdc-iphone-ipad-changes-apple-intelligence-ios-18/feed/ 0
Disney Wins Board Battle Against Hedge Funds, Nelson Peltz https://cbomo.com/disney-wins-board-battle-against-hedge-funds-nelson-peltz/ https://cbomo.com/disney-wins-board-battle-against-hedge-funds-nelson-peltz/#respond Wed, 03 Apr 2024 22:26:26 +0000 https://cbomo.com/disney-wins-board-battle-against-hedge-funds-nelson-peltz/ [ad_1]

Hedge fund investors who sought seats on Disney’s board have been defeated.

Disney secured enough votes from shareholders at its annual meeting on Wednesday to win a high-profile board fight against 81-year-old billionaire Nelson Peltz, founder and CEO of Trian Fund Management, and Jay Rasulo, the former chief financial officer of Disney.

Disney’s 12 recommended nominees were elected by shareholders “by a substantial margin” over Trian and Blackwells’ 5 combined nominees, Horacio Gutierrez, senior executive vice president of Disney, announced at the shareholder meeting at around 10:22 a.m. Pacific Standard Time.

Bob Iger, CEO of Disney, on February 12, 2024. (Photo by JC Olivera/Getty Images)

Disney CEO Bob Iger called the matter “this distracting proxy business” after the outcome was announced, and stated that Disney was now “eager” to keep focusing on driving value for shareholders.

Related: Hedge Fund Billionaire and Disney Investor Nelson Peltz Published 133 Pages on How Disney Should Change

Peltz and Rasulo launched a months-long, multimillion-dollar campaign to secure seats on Disney’s 12-person board. Peltz has contested Disney’s business choices and recently spoke to the Financial Times about his opinions against the casting in recent Disney films.

At the board meeting, Peltz spoke for about three minutes and said, “There is no doubt that Disney is an iconic company… All we want is for Disney to get back to making great content.”

Peltz pointed out that this was the second time he was vying for a board position, referring to another attempt last year that he called off, and stated that regardless of the outcome of the vote, Trian would be watching Disney’s performance.

Peltz was interrupted and informed that he was out of time by Gutierrez before he finished giving his statement.

Related: Here’s What Disney CEO Bob Iger Told Employees in a Town Hall Address

A March video from Disney called Peltz’s ambitions “more about vanity than a belief in Disney” and Rasulo “a former Disney employee who was passed over for a promotion nearly a decade ago.” Rasulo stepped down from the Disney CFO position in 2015.

Blackwells Capital, another hedge fund, also nominated three candidates, Craig Hatkoff, Jessica Schell, and Leah Solivan, to the board of directors, according to the annual meeting notice.

Gutierrez announced at the shareholder meeting that Disney did not endorse the nominees from Trian or Blackwell.

Disney instead proposed 12 directors to the board who were ultimately voted in by shareholders: Mary T. Barra, Safra A. Catz, Amy L. Chang, D. Jeremy Darroch, Carolyn N. Everson, Michael B.G. Froman, James P. Gorman, Robert A. Iger, Maria Elena Lagomasino, Calvin R. McDonald, Mark G. Parker, and Derica W. Rice.

Each board director holds the position for one year.

See the annual meeting notice and proxy statement here.

[ad_2]

Source link

]]>
https://cbomo.com/disney-wins-board-battle-against-hedge-funds-nelson-peltz/feed/ 0
What Data Should Investors Focus on Now? https://cbomo.com/what-data-should-investors-focus-on-now/ https://cbomo.com/what-data-should-investors-focus-on-now/#respond Sat, 30 Mar 2024 21:20:16 +0000 https://cbomo.com/what-data-should-investors-focus-on-now/ [ad_1]

The S&P 500 (SPY) is up nearly 50% from the bear market lows. That is a sign the easy money has been made. The next likely catalyst for stocks will probably be the first Fed rate cut…but maybe that is really the final push before a long overdue sell off? Tune in to discover what investment veteran Steve Reitmeister has to say about the market outlook along with his trading plan and top picks to stay ahead of the pack. Read on below for more.

It is clear that the Fed decision to lower rates is the main catalyst everyone is waiting for. The next chance that could happen is on Wednesday May 1st.

Since the Fed is “data dependent” (as they repeat like a skipped record) then we are best served focusing on the calendar of upcoming data…and what that tells us about the rate cut decision and market outlook. Read on below for the full story…

Market Commentary

The backdrop is simple. The Fed seems to be successfully guiding the economy towards a soft landing while at the same time easing inflation back towards the 2% target.

As Powell detailed at the last meeting, the Fed can indeed start lowering rates before they arrive at the 2% target because rates would still be restrictive after the first cut. Secondly, there are delayed effects of raised rates and if you waited til you got to precisely 2% you may actually risk doing unnecessary damage to jobs market (which is the other half of their dual mandate of maintaining steady prices and maximum employment).

Right now, virtually no one expects that rate cut to take place at the May 1st meeting as the last round of inflation data was a tad too hot. Thus, just one more serving of monthly inflation data in April would not be enough to get these academics to vote confidently in a rate cut.

Instead, the focus is on whether June 12th will be the starting line for rate cuts. Presently the CME calculates that as a 65% probability. But again, that is data dependent on the roll call of reports taking place in coming weeks…and what Powell shares with the market on his May 1st press conference.

Here are the key economic reports along with some notes to put them into perspective:

3/28 Core PCE- This is the Fed’s preferred measure of inflation which has been at 2.0% the past two quarters. Even better is the non-core reading for Q4 of 1.8% which is down considerably from the 2.6% showing in Q3. This data should go a long way towards a June rate cut.

4/5 Government Employment Situation: What will be even more important than the number of jobs added will be the reading on Wage Inflation. That was too hot last month at +4.3% year over year. Need to keep seeing this sticky form of inflation become unstuck at this high level. The month over month reading will be helpful in appreciating the pace of decline. Anything over 0.2% monthly increase would point to unwanted inflationary pressures from wages.

4/10 Consumer Price Index (CPI): This has been nicely on the decline over the past year, but last month was a tad higher than expected at 3.8% core inflation with 0.4% monthly increase. This needs to start moving under 3% in coming months to improve odds of a cut on the way.

4/10 FOMC Minutes: Its hard to imagine more details emerging than the voluminous comments that Powell made at the March 20th press conference. Yet you can imagine that investors will pick over every word to find any clue that would point to a likely starting line for rate cuts.

4/11 Producer Price Index (PPI): The least followed of the 3 main inflation reports, but what many economists appreciate as the leading indicator of where the other reports will trend in time. Note that this is already on target at 2% and portends well for the continued reduction in PCE and CPI towards that desired level.

5/1 Fed Meeting: 2pm ET is when the press release comes out. And 2:30pm is the even more important press conference with Powell where we get a lot more color commentary. Given the facts in hand investors are right to highly doubt the rate cut is happening at this time. The real key is if they showed improved language that June is in play.

Trading Plan

We are in a bull market. This is a shock to no one.

What is unclear is the pace of forthcoming gains when we are already up 50% in just 1.5 years time. Please remember that closer to 8% annual gains is the expected normal return.

I suspect 5,500 is the top of the S&P 500 (SPY) this year. Meaning that the catalyst for stocks from a rate hike is pretty much already baked into the cake.

This led me to write my previous article, Investor Alert: “Buy the Rumor, Sell the News!”

The short version is that I would not be surprised with stocks rallying into the rate cut announcement followed by a well deserved round of profit taking. Unfortunately, right around the corner form that sell off…is likely another selloff that coincides with the Presidential election pattern.

As stated before, this is not a reason to get bearish or conservative. Best to assume bull market and general upside til proven otherwise. The key is WHAT stocks will see the most gains.

We know that growth stocks generally lead the parade in the early stages of a new bull market. This is especially clear from where gains rolled in back in 2023.

What happens after a growth oriented phase is a return to value. This makes investors work a little harder to find attractive opportunities. This is where the thorough 118 factor review of our POWR Ratings model comes in quite handy.

The model does the heavy lifting by doing this deep dive into the fundamental attractiveness of the firms. The top 5% are A rated which explains why it has produced a +28.56% average annual return going back to 1999 (nearly 4X better than the S&P 500).

That top 5% is the starting point for our stock selection…then continue to drill down from there to find stocks with the most appealing upside potential.

What top stocks are we recommending now?

Read on below for the answers…

What To Do Next?

Discover my current portfolio of 12 stocks packed to the brim with the outperforming benefits found in our exclusive POWR Ratings model. (Nearly 4X better than the S&P 500 going back to 1999)

This includes 5 under the radar small caps recently added with tremendous upside potential.

Plus I have 1 special ETF that is incredibly well positioned to outpace the market in the weeks and months ahead.

This is all based on my 43 years of investing experience seeing bull markets…bear markets…and everything between.

If you are curious to learn more, and want to see these lucky 13 hand selected trades, then please click the link below to get started now.

Steve Reitmeister’s Trading Plan & Top Picks >

Wishing you a world of investment success!


Steve Reitmeister…but everyone calls me Reity (pronounced “Righty”)
CEO, StockNews.com and Editor, Reitmeister Total Return


SPY shares were trading at $523.36 per share on Thursday afternoon, up $0.19 (+0.04%). Year-to-date, SPY has gained 10.45%, versus a % rise in the benchmark S&P 500 index during the same period.


About the Author: Steve Reitmeister

Steve is better known to the StockNews audience as “Reity”. Not only is he the CEO of the firm, but he also shares his 40 years of investment experience in the Reitmeister Total Return portfolio. Learn more about Reity’s background, along with links to his most recent articles and stock picks.

More…

The post What Data Should Investors Focus on Now? appeared first on StockNews.com

[ad_2]

Source link

]]>
https://cbomo.com/what-data-should-investors-focus-on-now/feed/ 0
Ozempic Could Be Profitably Manufactured Much Cheaper: Study https://cbomo.com/ozempic-could-be-profitably-manufactured-much-cheaper-study/ https://cbomo.com/ozempic-could-be-profitably-manufactured-much-cheaper-study/#respond Thu, 28 Mar 2024 21:18:06 +0000 https://cbomo.com/ozempic-could-be-profitably-manufactured-much-cheaper-study/ [ad_1]

Ozempic, the appetite-suppressing injection also known as semaglutide, currently costs $935.77 in the U.S. without insurance. But a new research report from Yale University, King’s College Hospital in London, and Doctors Without Borders published in JAMA Network Open Wednesday suggests that the price of the prescription drug could be lowered to a fraction of what it is right now, while still generating a profit.

The researchers calculated cost-based prices for one month of Ozempic, administered as an injectable of 0.77 mg weekly, by combining commercial trade shipment data from January 1, 2016 to March 31, 2023 with the cost of creating the drug, other operating expenses, a profit margin, and tax. They found that the cost-based prices of Ozempic ranged from $0.89 to $4.73 per month.

“The findings of this study suggest that insulins, SGLT2Is, and GLP1As can likely be manufactured for prices far below current prices, enabling wider access,” the researchers wrote.

A pharmacist holds a box of Novo Nordisk A/S Ozempic brand semaglutide medication. Photographer: George Frey/Bloomberg via Getty Images

Ozempic costs less outside of the U.S. — a Bloomberg report found that a month’s supply of the injectable costs under $300 in Mexico.

“Outside the US, countries have different regulatory requirements with regard to the pricing of medicines, including negotiating with respective government entities,” Ozempic maker Novo Nordisk told Bloomberg.

Related: FDA Has Seized ‘Thousands’ of Fake Units of Ozempic Amid Reported Cases of ‘Adverse Reactions’ in Patients

Drug markups have long come under national scrutiny, with Martin Shkreli, the former head of Turing Pharmaceuticals, forced to pay $64 million in 2022 after inflating the price of a life-saving drug by 4,000%.

Ozempic falls under the category of a GLP-1 drug, meaning that it addresses type 2 diabetes by improving blood sugar control and also potentially leading to weight loss, according to the Mayo Clinic.

Prescriptions of GLP-1 drugs increased by 300% between 2020 and 2022, Trilliant Health researchers found. Ozempic first made headlines in 2021 when it was featured on the Dr. Oz Show.

Related: Novo Nordisk, the Maker of Ozempic, Is Suing Spas and Clinics For Allegedly Selling Knockoffs

Ozempic and other similar drugs could cause an average weight loss of 15% to 20%, “significantly higher than previous options,” as per Columbia Surgery.

The same publication warns of the life-long commitment Ozempic requires, as discontinuing the drug could lead to gaining all of the weight back. The drug could also cause nausea, cramps, and other unpleasant side effects.

Despite the high cost and potential downsides, Ozempic skyrocketed in popularity last year, with 66% of its more than $13 billion sales coming from the US, according to Novo Nordisk’s 2023 annual report.

Related: Novo Nordisk Is Worth More Than Denmark’s GDP Thanks to America’s Ozempic and Wegovy Craze

[ad_2]

Source link

]]>
https://cbomo.com/ozempic-could-be-profitably-manufactured-much-cheaper-study/feed/ 0