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
| import sys | |
| if __name__ == "__main__": | |
| if len(sys.argv) < 1: | |
| sys.stderr.write("Usage: %s tsvtoaddr.py blockchair_*_addresses_latest.tsv\n" % sys.argv[0]) | |
| sys.exit(1) | |
| for addr in open(sys.argv[1], 'r').readlines(): | |
| print(str.split(addr,'\t')[0]) |
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
| public MainPage() | |
| { | |
| this.InitializeComponent(); | |
| Loaded += MainPage_Loaded; | |
| } | |
| private async void MainPage_Loaded(object sender, RoutedEventArgs e) | |
| { | |
| string url = "https://p.bigstockphoto.com/GeFvQkBbSLaMdpKXF1Zv_bigstock-Aerial-View-Of-Blue-Lakes-And--227291596.jpg"; | |
| var file = await Windows.Storage.ApplicationData.Current.LocalFolder.CreateFileAsync("photo.jpg"); |
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
| import NSKeyedUnArchiver, json | |
| def decodePlist(data): | |
| if data[:2]=='0x': data=data[2:] | |
| data=bytes.fromhex(data) | |
| my_dict=NSKeyedUnArchiver.unserializeNSKeyedArchiver(data) | |
| return(json.dumps(my_dict, indent=4, sort_keys=True, default=str)) | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer