pixel eg.
https://app.thespace.game/@123,456
playback eg.
https://app.thespace.game/#playback/2X/16Z/123,456/12345/30000/QmdTzRdbGeEnWW2yS8kHiwF5YFUfbU4FXqDEhTAtVVtdUq
pixel eg.
https://app.thespace.game/@123,456
playback eg.
https://app.thespace.game/#playback/2X/16Z/123,456/12345/30000/QmdTzRdbGeEnWW2yS8kHiwF5YFUfbU4FXqDEhTAtVVtdUq
| #! python3 | |
| # -*- coding: utf-8 -*- | |
| from collections import Counter | |
| import sys | |
| import os | |
| import codecs | |
| import getopt | |
| import jieba |
| #! /usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| """ | |
| This script sync all files of a given dir to a given aliyun oss bucket | |
| and keep all the sub-dir as part of the keys. | |
| """ | |
| from __future__ import print_function | |
| from os import path, walk |
| #BlueBook code decryption | |
| import sys | |
| def sieve(n): | |
| x = [1] * n | |
| x[1] = 0 | |
| for i in range(2,n/2): | |
| j = 2 * i | |
| while j < n: | |
| x[j]=0 |