bookgin

Results 11 comments of bookgin

+1 please. The bug #1116 (fixed in #1136) is because Android sdk remove the command `android list avds`, which is really annoying.

The following environment works for me: - Ubuntu 20.04 - Python 3.7.13 - tensorflow 1.15.0 - Keras 2.0.8 And manually patch keras encoding/decoding issue: ```diff --- /home/user/anaconda3/envs/taco37/lib/python3.7/site-packages/keras/engine/topology.py 2022-09-20 13:33:37 +0000...

@gonedjur Have you tried passing the `third-party` argument in options? ```python >>> from adblockparser import AdblockRules >>> AdblockRules(['||example.com^$third-party']).should_block('example.com') False >>> AdblockRules(['||example.com^$third-party']).should_block('example.com', {'third-party': True}) True ```

15 stars now. This is too ball.

As a temporary workaround, one can add this command line argument `--proxy-server=socks5://localhost:8123` into OperaOptions and it works well. Here is a Java example: ```java OperaOptions options = new OperaOptions(); options.setBinary("/usr/bin/opera");...

## Android 7.0 I also have problems with Chrome 64 on my Android 7.0 mobile phone. I have installed the user-added mitmproxy CA, but Chrome cannot connect to any website,...

@bharath588 's solution works for me. In case that someone is looking for the Python version of the workaround: ```python #!/usr/bin/env python3 # selenium 3.14.1, Python 3.7.0 from selenium import...

That's cool. Thanks for your confirmation. By the way, this project is very obsolete. I'm trying to implement [Ansible playbook](http://docs.ansible.com/ansible/latest/user_guide/playbooks.html) to substitute this project.

@ypid No, I no longer worked on this.

Yes, Ansible doesn't have similar modules as far as I know. My idea is to rewrite this project as an [Ansible custom module](https://docs.ansible.com/ansible/2.5/dev_guide/developing_modules.html), but not replace it with Ansible. I...