Ivan Savov
Ivan Savov
Travis tests don't seem to be running. Maybe need to switch to travis.org from old travis.com?? Might also need to update python version to 3.7+ because scipy 1.7 is not...
> did you have any thoughts or use cases on why you'd prefer phrase breaks to sentence breaks? The high-level reason is that phrases are the smallest coherent unit, so...
I was excited to try this package but it didn't wrap things accoring to semantic -- e.g. on commas and or other logical clauses. Expected: ``` Data is what makes...
I just ran into this issue where references to a function inside the `tests/` folder do not show up when "Find all references" is invoked. Right click "Find all references":...
How do you plan to make approximate matching work? User provides a function that takes two nodes and returns a "distance" factor? I have a use case in mind for...
Definitely no cross product invovled... cross product is a "hack" for getting perpendicular vectors and only applies for 3D vectors. I'm guessing what is meant is just the "matrix product"...
I'm for `\cdot` over `\times` in general. It would be bonus points to allow an optional `\times` for kids in 5th grade and younger (this was the style guide at...
Running `./manage.py bower_install` produces: ``` AttributeError: type object 'BaseBowerCommand' has no attribute 'option_list' ``` using `django_bower-5.1.0` and `Django-1.10.1`
Monkey patching the file `djangobower/management/commands/bower_install.py` as follows ``` if not hasattr(BaseBowerCommand, 'option_list'): base_opions_list = () else: base_opions_list = BaseBowerCommand.option_list option_list = base_opions_list + ( make_option('-F', # this line and lines...
Just tested, and It's not just for `N` and `Q` it seems, but for any funtion/callable. This fails: ```python >>> def Z(x): return 42 >>> Z = Matrix([1,2,3]) ``` [clickable](https://live.sympy.org/?evaluate=def%20Z(x)%3A%0A%20%20%20%20return%2042%0A%23--%0AZ%20%3D%20Matrix(%5B1%2C2%2C3%5D)%0A%23--%0A)...