Cosimo Streppone

Results 17 comments of Cosimo Streppone

Seems to work for me with current master and perl6 2015.09-433-g26617f9. @szabgab, can you confirm?

Travis runs stumble on the same error. Apparently that works fine for me. It's the IPv6 address resolution that seems to fail.

Just an idea: you could make the video selection based on time of the day. For example `(hours * 60 + minutes) % no_of_videos`. That should give you the same...

> When I manually loaded each module, for the first one, from b2sdk.api import B2Api, I got > ModuleNotFoundError: No module named 'sqlite3' > > Not sure why the error...

A workaround, in case other people stumble on this, can be: ``` import paramiko server = SSHTunnelForwarder( remote_host, # https://stackoverflow.com/questions/54213831/paramiko-or-sshtunnel-and-ssh-agent-without-entering-passphrase ssh_pkey=paramiko.agent.Agent().get_keys(), ... ) ```