Danilo de Jesus da Silva Bellini

Results 29 comments of Danilo de Jesus da Silva Bellini

Config file support might have "levels" of fallback (like git config). The config file would be: 1. Local (a config for that specific project), os.curdir 2. User, os.path.expanduser("~") 3. Global,...

Yes, there is. You can bind the resize event to change the font size. To find the font size, this script might help: ``` python import wx max_width = 10...

Thanks for reporting this! Have you tried with `api="yamaha"` instead of `api="asio"`? What are the device names for the remaining indices?

I think there could be both a "white list" and a "black list" behavior for dose.py file watching patterns, called `watch` and `ignore` (or something alike). By default, `.gitignore` and...

These methods can only be called on Linux/OSX/Cygwin, not on Windows (there's a comment otherwhere telling so), but the terminal inside PyCharm never behaves like a Linux/OSX/Cygwin terminal. That's not...

This was addressed by [this commit](https://github.com/danilobellini/fractals/commit/37f3f19). It's still missing some important stuff like installation instructions and an image URL converter to use the URL from the GitHub repository on the...

For now, this project just generates fractals from the Julia and Mandelbrot sets using the escape time algorithm. You can send a pull request implementing other fractal algorithms, if you...

Probably you loaded it with `from audiolazy import lazy_lpc as lpc` or `import audiolazy.lazy_lpc as lpc`, but the `lpc` from the documentation isn't that module. Instead, you should use `from...

You may leave the default `prog_name` as it is (which is probably `sys.argv[0]` removing the leading path and the trailing `.py`). Probably no one will ever call the `__main__.py` file...

I didn't understand the comments, the *there is no need to re-quote* sounds misleading. The [watch command man page](http://man.he.net/?topic=watch&section=all) has just the opposite: > Note that command is given to...