AndCycle

Results 25 comments of AndCycle

well, you can only upload to specific channel due to the oauth give you specific permission, by switching with different credential file means different channel.

the only totp python package that have time skew support is SpookyOTP, this should be easy to make it support, if anyone do the task.

I can see there is such a use case for delete, as I am previous use Eye-Fi, Eye-Fi do download and clear out old picture to maintain enough free space

the alternative is to delay the log until response close, you have to do some counting during the response, I just hit by this now I am searching an alternative.

simple POC ``` def __call__(self, environ, start_response): start = clock() status_codes = [] content_lengths = [] def custom_start_response(status, response_headers, exc_info=None): status_codes.append(int(status.partition(' ')[0])) for name, value in response_headers: if name.lower() ==...