Recent events have shown that the auto-approval for user proxies is way too dangerous.
Security of users' NFTs should come before the convenience of auto approving collection for trading.
This is why I decided to remove the files in this gist.
| <?php | |
| // https://snipt.net/public/tag/php/?page=3 | |
| $countries = array( | |
| "AF" => array("country" => "Afghanistan", "continent" => "Asia"), | |
| "AX" => array("country" => "Åland Islands", "continent" => "Europe"), | |
| "AL" => array("country" => "Albania", "continent" => "Europe"), | |
| "DZ" => array("country" => "Algeria", "continent" => "Africa"), | |
| "AS" => array("country" => "American Samoa", "continent" => "Oceania"), |
| #!/bin/bash | |
| # works with a file called VERSION in the current directory, | |
| # the contents of which should be a semantic version number | |
| # such as "1.2.3" | |
| # this script will display the current version, automatically | |
| # suggest a "minor" version update, and ask for input to use | |
| # the suggestion, or a newly entered value. |