This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| switch pub := cert.PublicKey.(type) { | |
| case *rsa.PublicKey: | |
| fmt.Println(pub.N) | |
| case default: | |
| fmt.Println("Error, not an RSA public key") | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "ab": { | |
| "name": "Abkhaz", | |
| "nativeName": "аҧсуа" | |
| }, | |
| "aa": { | |
| "name": "Afar", | |
| "nativeName": "Afaraf" | |
| }, | |
| "af": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $url = "BCBT_Dec_2021.csv"; | |
| $csv = file_get_contents($url); | |
| $csv = explode("\n", $csv); | |
| $csv = array_filter($csv, "strlen"); | |
| $csv = array_map('str_getcsv', $csv); | |
| $keys = array_shift($csv); | |
| foreach ($csv as $i=>$row) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Latn": { | |
| "iso_code": "Latn", | |
| "iso_number": 215, | |
| "name": "Latin", | |
| "unicode_ranges": ["U+0000–U+007F", "U+0080–U+00FF", "U+0100–U+017F", "U+0180–U+024F", "U+1E00–U+1EFF", "U+2C60–U+2C7F", "U+A720–U+A7FF"], | |
| "languages": ["en", "fr", "de", "es", "pt", "it", "nl", "pl", "sv", "da", "no", "fi", "hu", "ro", "cs", "sk", "hr", "bs", "sl", "is"], | |
| "direction": "ltr", | |
| "casing": true, | |
| "family": "Latin", |
OlderNewer