Paolo D'Apice
Paolo D'Apice
Allow a whitelist of addresses to access the network. Pass a list of tuples `(host, port)` as `whitelist` argument. ```py whitelist = [ ('localhost', 1234), ('127.0.0.1', 8080), ] httpretty.enable(allow_net_connect=False, whitelist=whitelist)...
In [this page of the docs](https://betamax.readthedocs.io/en/latest/configuring.html) I see a reference to `after_start` and `before_stop` hooks available in version 0.9.0: Has that version been released yet?
I am using the `set_properties_value` and `increment_version_code_in_properties_file`. The values got correctly updated but the actions deleted all the formatting (empty lines) and comments in the properties file. That is unexpected...
Hi, I am using django 1.10 with pyodbc/freetds to connect with Sqlserver. I am able to reproduce the error in the object any time I use django ORM `annotate()` and...
Hi, I am using django 1.10 with pyodbc/freetds to connect with Sqlserver. I need to run a query similar to this: ```sql SELECT * FROM users WHERE email LIKE '%@[gb]mail.com'...
I spent some time trying to figure this out, and turned out to be very simple. Unfortunately I couldn't find any documentation for this. I hope writing some doc here...
Hi, we have found out that the package is no longer in npm: https://www.npmjs.com/package/webpack-aliyun-oss The above link gives 404.
Hi, I have compiled `opencv-3.1.0` enabling the `opencv_contrib` module so that I can use SIFT and SURF, for example using the Python wrapper with the official tutorials. Is it possible...
Instantiating a new `FlannBasedMatcher`: ``` ruby require 'ropencv' include OpenCV matcher = cv::FlannBasedMatcher.new ``` the following error occurs: ``` NameError: undefined local variable or method `flann' for OpenCV::Cv::FlannBasedMatcher:Class from /home/paolo/.rvm/gems/ruby-2.0.0-p598/gems/ropencv-0.0.21/lib/ropencv/ropencv_types.rb:32672:in...
I think it would be useful to display the current temperature, maybe in the ballon on mouse hover rather than on the icon. Is it feasible?