Cleanup and see disc usage in Google Drive in a hacky way

And also get disc usage in super easy way
Steps:
1 go to google colab https://colab.research.google.com/
2 create and run python script
from google.colab import drive
drive.mount(‘/content/drive’)
3 open terminal and run
sudo apt install gdu
4 run gdu . in terminal

then empty the bin in google drive

How to fix Request validation failed for action “Magento\Framework\App\Action\Forward\Interceptor” for Controller

To controller add Magento\Framework\App\CsrfAwareActionInterface\CsrfAwareActionInterface and
public function createCsrfValidationException(RequestInterface $request): ?InvalidRequestException
{
return null;
}

public function validateForCsrf(RequestInterface $request): ?bool
{
return true;
}

Magento fix for “No Administrators role was found, data fixture needs to be run”

SQL queries

INSERT INTO authorization_role (role_id, parent_id, tree_level, sort_order, role_type, user_id, user_type, role_name) VALUES (1, 0, 1, 1, 'G', 0, '2', 'Administrators');
INSERT INTO authorization_rule (rule_id, role_id, resource_id, privileges, permission) VALUES (1, 1, 'Magento_Backend::all', null, 'allow');